Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4134995 | 6 days ago | 0 ETH | ||||
4134995 | 6 days ago | 0 ETH | ||||
4134995 | 6 days ago | 0 ETH | ||||
4134995 | 6 days ago | 0 ETH | ||||
4134995 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 6 days ago | 0 ETH | ||||
4134907 | 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:
GigaNoobNFT
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {GameNFT} from "../gamenft/GameNFT.sol"; import {LEVEL_CID, IS_NOOB_CID} from "../../constants/ColumnConstants.sol"; import {MINTER_ROLE, GAME_LOGIC_CONTRACT_ROLE, DEPLOYER_ROLE} from "../../constants/RoleConstants.sol"; import {IGigaNoobNFT, ID } from "./IGigaNoobNFT.sol"; /** @title GigaNoob NFTs on L2 */ contract GigaNoobNFT is GameNFT, IGigaNoobNFT { // 0 max supply = infinite uint256 constant MAX_SUPPLY = 0; /** SETUP */ constructor(address gameRegistryAddress) GameNFT(MAX_SUPPLY, "NOOB", "NOOB", "Noob #", gameRegistryAddress, ID) {} function initialize() external override onlyRole(DEPLOYER_ROLE) { initializeTable("GigaNoobNFT", ID); _initialize(); } /** Initializes traits for the given tokenId */ function _initializeTraits(uint256 tokenId) internal override { _setDocBoolValue(tokenId, IS_NOOB_CID, true); _setDocUint256Value(tokenId, LEVEL_CID, 1); } /** * Mints the ERC721 token * * @param to Recipient of the token */ function mint( address to ) external onlyRole(MINTER_ROLE) whenNotPaused returns (uint256) { uint256 nextTokenId = _getAndIncrementAutoIncId(); _safeMint(to, nextTokenId); return nextTokenId; } /** * Burn a token - any payment / game logic should be handled in the game contract. * * @param id Id of the token to burn */ function burn( uint256 id ) external onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused { _burn(id); } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeCast.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {IGameNFT} from "./IGameNFT.sol"; import {MANAGER_ROLE, DEPLOYER_ROLE} from "../../constants/RoleConstants.sol"; import {BALANCE_CID, NAME_CID, ADDRESS_CID, MAX_SUPPLY_CID, IS_SOULBOUND_CID, INITIALIZED_CID, OWNER_CID, BASE_NAME_CID, BASE_URI_CID, LAST_TRANSFER_TIME_CID, OWNER_CID} from "../../constants/ColumnConstants.sol"; import {DataTable} from "../../db/DataTable.sol"; import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import {IERC721UpdateHandler} from "../IERC721UpdateHandler.sol"; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** @title NFT base contract for all game NFTs. Exposes traits for the NFT and respects GameRegistry/Soulbound access control */ abstract contract GameNFT is ERC721, DataTable, IGameNFT { using Strings for uint256; address public beforeUpdateHandler; address public afterUpdateHandler; /** ERRORS **/ /// @notice Account must be non-null error InvalidAccountAddress(); /// @notice Token id is not valid error InvalidTokenId(); /// @notice tokenId exceeds max supply for this NFT error TokenIdExceedsMaxSupply(); /// @notice Amount to mint exceeds max supply error NotEnoughSupply(uint256 needed, uint256 actual); /** EVENTS **/ /// @notice Emitted when time held time is updated event TimeHeldSet(uint256 tokenId, address account, uint32 timeHeld); /// @notice Emitted when last transfer time is updated event LastTransferSet(uint256 tokenId, uint32 lastTransferTime); uint256 private _tokenMaxSupply; string private _baseTokenName; /** SETUP **/ constructor(uint256 tokenMaxSupply, string memory nameToSet, string memory symbol, string memory baseTokenName, address gameRegistryAddress, uint256 id) DataTable(gameRegistryAddress, id) ERC721(nameToSet, symbol) { _tokenMaxSupply = tokenMaxSupply; _baseTokenName = baseTokenName; } function _initialize() internal { _setTableUint256Value(MAX_SUPPLY_CID, _tokenMaxSupply); _setTableStringValue(BASE_NAME_CID, _baseTokenName); } /** * @param tokenId token id to check * @return Whether or not the given tokenId has been minted */ function exists(uint256 tokenId) public view returns (bool) { return _ownerOf(tokenId) != address(0); } function name() public view override(DataTable, ERC721) returns (string memory) { return DataTable.name(); } function setBaseURI(string memory uri) external onlyRole(MANAGER_ROLE) { _setTableStringValue(BASE_URI_CID, uri); } /** * @param tokenId token id to check * @return Whether or not the given tokenId has had its traits initialized */ /** * @return Generates a dynamic tokenURI based on the traits associated with the given token */ function tokenURI( uint256 tokenId ) public view override returns (string memory) { // Make sure this still errors according to ERC721 spec require( exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return super.tokenURI(tokenId); } function _baseURI() internal override view returns (string memory) { return getTableStringValue(BASE_URI_CID); } /** * @dev a method that bulk sets initialized imported NFTs * @param tokenIds List of TokenIds to be initialized */ function setTraitsInitialized( uint256[] calldata tokenIds ) external onlyRole(MANAGER_ROLE) { for (uint256 i = 0; i < tokenIds.length; i++) { _setDocBoolValue(tokenIds[i], INITIALIZED_CID, true); } } function getAccountKey(address account) internal pure returns (uint256) { return uint256(keccak256(abi.encode(account))); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override(ERC721, IERC721) returns (uint256) { return getDocUint256Value(getAccountKey(owner), BALANCE_CID); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view override returns (address) { return getDocAddressValue(tokenId, OWNER_CID); } /** * @param account Account to check hold time of * @param tokenId Id of the token * @return The time in seconds a given account has held a token */ function getTimeHeld( address account, uint256 tokenId ) external view override returns (uint32) { address owner = ownerOf(tokenId); if (account == address(0)) { revert InvalidAccountAddress(); } if (owner == account) { uint32 lastTransferTime = uint32(getDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID)); uint32 currentTime = SafeCast.toUint32(block.timestamp); return currentTime - lastTransferTime; } return 0; } /** @return Token name for the given tokenId */ function tokenName( uint256 tokenId ) public view virtual returns (string memory) { if (hasDocStringValue(tokenId, NAME_CID)) { // If token has a name trait set, use that return getDocStringValue(tokenId, NAME_CID); } else { return string(abi.encodePacked(getTableStringValue(BASE_NAME_CID), tokenId.toString())); } } /** * @inheritdoc IERC165 */ function supportsInterface( bytes4 interfaceId ) public view virtual override( ERC721, IERC165 ) returns (bool) { return interfaceId == type(IGameNFT).interfaceId || ERC721.supportsInterface(interfaceId); } /** * Sets the before token transfer handler * * @param handlerAddress Address to the transfer hook handler contract */ function setUpdateHandler( address handlerAddress, bool before ) external onlyRole(MANAGER_ROLE) { if (before) { beforeUpdateHandler = handlerAddress; } else { afterUpdateHandler = handlerAddress; } } /** INTERNAL **/ /** Initializes traits for the given tokenId */ function _initializeTraits(uint256 tokenId) internal virtual { // Do nothing by default } function maxSupply() public view returns (uint256) { return getTableUint256Value(MAX_SUPPLY_CID); } /** * Mint token to recipient * * @param to The recipient of the token * @param tokenId Id of the token to mint */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal override { uint256 _maxSupply = maxSupply(); if (_maxSupply != 0 && tokenId > _maxSupply) { revert TokenIdExceedsMaxSupply(); } if (tokenId == 0) { revert InvalidTokenId(); } super._safeMint(to, tokenId, data); // Conditionally initialize traits if (getDocBoolValue(tokenId, INITIALIZED_CID) == false) { _initializeTraits(tokenId); _setDocBoolValue(tokenId, INITIALIZED_CID, true); } } /** * @notice Checks for soulbound status before transfer * @inheritdoc ERC721 */ function _update( address to, uint256 tokenId, address auth ) internal virtual override( ERC721 ) returns (address) { if (beforeUpdateHandler != address(0)) { IERC721UpdateHandler( beforeUpdateHandler ).update( address(this), to, tokenId, auth ); } address prevOwner = _ownerOf(tokenId); _setDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID, SafeCast.toUint32(block.timestamp)); bool isSoulbound = getDocBoolValue(tokenId, IS_SOULBOUND_CID); require(!isSoulbound, "GameNFT: Token is soulbound"); address result = super._update(to, tokenId, auth); _incrementAmount(getAccountKey(to), BALANCE_CID, 1); if (prevOwner != address(0)) { _decrementAmount(getAccountKey(prevOwner), BALANCE_CID, 1); } if (afterUpdateHandler != address(0)) { IERC721UpdateHandler( afterUpdateHandler ).update( address(this), to, tokenId, auth ); } _setDocAddressValue(tokenId, OWNER_CID, to); return result; } function getLastTransfer( uint256 tokenId ) external view returns (uint32) { return uint32(getDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID)); } function mintBatch(address /*to*/, uint256 /*amount*/) pure external returns (uint256[] memory) { return new uint256[](0); } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; uint256 constant NAME_CID = uint256(keccak256("name")); uint256 constant DESCRIPTION_CID = uint256(keccak256("description")); uint256 constant LEVEL_CID = uint256(keccak256("level")); uint256 constant IS_NOOB_CID = uint256(keccak256("is_noob")); uint256 constant NOOB_TOKEN_CID = uint256(keccak256("noob_tokend_id")); uint256 constant GIGA_NAME_TOKENDID_CID = uint256(keccak256("giganame_tokend_id")); uint256 constant IS_GIGA_NAME_CID = uint256(keccak256("is_giga_name")); uint256 constant GAME_ITEM_ID_CID = uint256(keccak256("game_item_id")); uint256 constant UINT256_CID = uint256(keccak256("int256")); uint256 constant ETH_MINT_PRICE_CID = uint256(keccak256("eth_mint_price")); uint256 constant NEXT_DOCID_CID = uint256(keccak256("next_token_id")); uint256 constant ID_CID = uint256(keccak256("id")); uint256 constant BASE_NAME_CID = uint256(keccak256("base_name")); uint256 constant BASE_URI_CID = uint256(keccak256("base_uri")); uint256 constant LAST_TRANSFER_TIME_CID = uint256(keccak256("last_transfer_time")); uint256 constant OWNER_CID = uint256(keccak256("owner")); uint256 constant INITIALIZED_CID = uint256(keccak256("initialized")); uint256 constant MAX_SUPPLY_CID = uint256(keccak256("max_supply")); uint256 constant ADDRESS_CID = uint256(keccak256("address")); uint256 constant IS_SOULBOUND_CID = uint256(keccak256("soulbound")); uint256 constant TIME_BETWEEN_CID = uint256(keccak256("time_between")); uint256 constant TIMESTAMP_CID = uint256(keccak256("timestamp")); uint256 constant IMG_URL_CID = uint256(keccak256("img_url")); uint256 constant PLAYER_CID = uint256(keccak256("player")); uint256 constant MINT_COUNT_CID = uint256(keccak256("mint_count")); uint256 constant CONTRACT_URI_CID = uint256(keccak256("contract_uri")); uint256 constant IS_RECYCLABLE_CID = uint256(keccak256("is_recyclable")); uint256 constant BURN_COUNT_CID = uint256(keccak256("burn_count")); uint256 constant BALANCE_CID = uint256(keccak256("balance")); uint256 constant ICON_URL_CID = uint256(keccak256("icon_url")); uint256 constant DUNGEON_ID_CID = uint256(keccak256("dungeon_id")); uint256 constant ENERGY_CID = uint256(keccak256("energy")); uint256 constant IS_CANCELLED_CID = uint256(keccak256("is_cancelled")); uint256 constant SPRITE_SHEET_URL_CID = uint256(keccak256("sprite_sheet_url")); uint256 constant IMPORT_AMOUNT_CID = uint256(keccak256("import_amount")); uint256 constant EXPORT_AMOUNT_CID = uint256(keccak256("export_amount")); uint256 constant EXPORT_LICENSE_CID = uint256(keccak256("export_license"));
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; // Pauser Role - Can pause the game bytes32 constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); // Minter Role - Can mint items, NFTs, and ERC20 currency bytes32 constant MINTER_ROLE = keccak256("MINTER_ROLE"); // Manager Role - Can manage the shop, loot tables, and other game data bytes32 constant MANAGER_ROLE = keccak256("MANAGER_ROLE"); // Depoloyer Role - Can Deploy new Systems bytes32 constant DEPLOYER_ROLE = keccak256("DEPLOYER_ROLE"); // Game Logic Contract - Contract that executes game logic and accesses other systems bytes32 constant GAME_LOGIC_CONTRACT_ROLE = keccak256("GAME_LOGIC_CONTRACT_ROLE"); // For functions callable from game server bytes32 constant SERVER_JUDGE_ROLE = keccak256("SERVER_JUDGE_ROLE");
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {IGameNFT} from "../gamenft/IGameNFT.sol"; uint256 constant ID = uint256(keccak256("game.gigaverse.giganoobnft")); interface IGigaNoobNFT is IGameNFT { function mint(address to) external returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.20; /** * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeCast { /** * @dev Value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value); /** * @dev An int value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedIntToUint(int256 value); /** * @dev Value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedIntDowncast(uint8 bits, int256 value); /** * @dev An uint value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedUintToInt(uint256 value); /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits */ function toUint248(uint256 value) internal pure returns (uint248) { if (value > type(uint248).max) { revert SafeCastOverflowedUintDowncast(248, value); } return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits */ function toUint240(uint256 value) internal pure returns (uint240) { if (value > type(uint240).max) { revert SafeCastOverflowedUintDowncast(240, value); } return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits */ function toUint232(uint256 value) internal pure returns (uint232) { if (value > type(uint232).max) { revert SafeCastOverflowedUintDowncast(232, value); } return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { if (value > type(uint224).max) { revert SafeCastOverflowedUintDowncast(224, value); } return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits */ function toUint216(uint256 value) internal pure returns (uint216) { if (value > type(uint216).max) { revert SafeCastOverflowedUintDowncast(216, value); } return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits */ function toUint208(uint256 value) internal pure returns (uint208) { if (value > type(uint208).max) { revert SafeCastOverflowedUintDowncast(208, value); } return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits */ function toUint200(uint256 value) internal pure returns (uint200) { if (value > type(uint200).max) { revert SafeCastOverflowedUintDowncast(200, value); } return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits */ function toUint192(uint256 value) internal pure returns (uint192) { if (value > type(uint192).max) { revert SafeCastOverflowedUintDowncast(192, value); } return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits */ function toUint184(uint256 value) internal pure returns (uint184) { if (value > type(uint184).max) { revert SafeCastOverflowedUintDowncast(184, value); } return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits */ function toUint176(uint256 value) internal pure returns (uint176) { if (value > type(uint176).max) { revert SafeCastOverflowedUintDowncast(176, value); } return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits */ function toUint168(uint256 value) internal pure returns (uint168) { if (value > type(uint168).max) { revert SafeCastOverflowedUintDowncast(168, value); } return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits */ function toUint160(uint256 value) internal pure returns (uint160) { if (value > type(uint160).max) { revert SafeCastOverflowedUintDowncast(160, value); } return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits */ function toUint152(uint256 value) internal pure returns (uint152) { if (value > type(uint152).max) { revert SafeCastOverflowedUintDowncast(152, value); } return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits */ function toUint144(uint256 value) internal pure returns (uint144) { if (value > type(uint144).max) { revert SafeCastOverflowedUintDowncast(144, value); } return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits */ function toUint136(uint256 value) internal pure returns (uint136) { if (value > type(uint136).max) { revert SafeCastOverflowedUintDowncast(136, value); } return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { if (value > type(uint128).max) { revert SafeCastOverflowedUintDowncast(128, value); } return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits */ function toUint120(uint256 value) internal pure returns (uint120) { if (value > type(uint120).max) { revert SafeCastOverflowedUintDowncast(120, value); } return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits */ function toUint112(uint256 value) internal pure returns (uint112) { if (value > type(uint112).max) { revert SafeCastOverflowedUintDowncast(112, value); } return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits */ function toUint104(uint256 value) internal pure returns (uint104) { if (value > type(uint104).max) { revert SafeCastOverflowedUintDowncast(104, value); } return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { if (value > type(uint96).max) { revert SafeCastOverflowedUintDowncast(96, value); } return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits */ function toUint88(uint256 value) internal pure returns (uint88) { if (value > type(uint88).max) { revert SafeCastOverflowedUintDowncast(88, value); } return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits */ function toUint80(uint256 value) internal pure returns (uint80) { if (value > type(uint80).max) { revert SafeCastOverflowedUintDowncast(80, value); } return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits */ function toUint72(uint256 value) internal pure returns (uint72) { if (value > type(uint72).max) { revert SafeCastOverflowedUintDowncast(72, value); } return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { if (value > type(uint64).max) { revert SafeCastOverflowedUintDowncast(64, value); } return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits */ function toUint56(uint256 value) internal pure returns (uint56) { if (value > type(uint56).max) { revert SafeCastOverflowedUintDowncast(56, value); } return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits */ function toUint48(uint256 value) internal pure returns (uint48) { if (value > type(uint48).max) { revert SafeCastOverflowedUintDowncast(48, value); } return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits */ function toUint40(uint256 value) internal pure returns (uint40) { if (value > type(uint40).max) { revert SafeCastOverflowedUintDowncast(40, value); } return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { if (value > type(uint32).max) { revert SafeCastOverflowedUintDowncast(32, value); } return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits */ function toUint24(uint256 value) internal pure returns (uint24) { if (value > type(uint24).max) { revert SafeCastOverflowedUintDowncast(24, value); } return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { if (value > type(uint16).max) { revert SafeCastOverflowedUintDowncast(16, value); } return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits */ function toUint8(uint256 value) internal pure returns (uint8) { if (value > type(uint8).max) { revert SafeCastOverflowedUintDowncast(8, value); } return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { if (value < 0) { revert SafeCastOverflowedIntToUint(value); } return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(248, value); } } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(240, value); } } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(232, value); } } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(224, value); } } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(216, value); } } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(208, value); } } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(200, value); } } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(192, value); } } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(184, value); } } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(176, value); } } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(168, value); } } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(160, value); } } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(152, value); } } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(144, value); } } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(136, value); } } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(128, value); } } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(120, value); } } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(112, value); } } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(104, value); } } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(96, value); } } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(88, value); } } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(80, value); } } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(72, value); } } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(64, value); } } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(56, value); } } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(48, value); } } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(40, value); } } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(32, value); } } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(24, value); } } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(16, value); } } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(8, value); } } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive if (value > uint256(type(int256).max)) { revert SafeCastOverflowedUintToInt(value); } return int256(value); } /** * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump. */ function toUint(bool b) internal pure returns (uint256 u) { assembly ("memory-safe") { u := iszero(iszero(b)) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SafeCast} from "./math/SafeCast.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { using SafeCast for *; bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev The string being parsed contains characters that are not in scope of the given base. */ error StringsInvalidChar(); /** * @dev The string being parsed is not a properly formatted address. */ error StringsInvalidAddressFormat(); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; assembly ("memory-safe") { ptr := add(buffer, add(32, length)) } while (true) { ptr--; assembly ("memory-safe") { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal * representation, according to EIP-55. */ function toChecksumHexString(address addr) internal pure returns (string memory) { bytes memory buffer = bytes(toHexString(addr)); // hash the hex part of buffer (skip length + 2 bytes, length 40) uint256 hashValue; assembly ("memory-safe") { hashValue := shr(96, keccak256(add(buffer, 0x22), 40)) } for (uint256 i = 41; i > 1; --i) { // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f) if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) { // case shift by xoring with 0x20 buffer[i] ^= 0x20; } hashValue >>= 4; } return string(buffer); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } /** * @dev Parse a decimal string and returns the value as a `uint256`. * * Requirements: * - The string must be formatted as `[0-9]*` * - The result must fit into an `uint256` type */ function parseUint(string memory input) internal pure returns (uint256) { return parseUint(input, 0, bytes(input).length); } /** * @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `[0-9]*` * - The result must fit into an `uint256` type */ function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) { (bool success, uint256 value) = tryParseUint(input, begin, end); if (!success) revert StringsInvalidChar(); return value; } /** * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) { return _tryParseUintUncheckedBounds(input, 0, bytes(input).length); } /** * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid * character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseUint( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, uint256 value) { if (end > bytes(input).length || begin > end) return (false, 0); return _tryParseUintUncheckedBounds(input, begin, end); } /** * @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that * `begin <= end <= input.length`. Other inputs would result in undefined behavior. */ function _tryParseUintUncheckedBounds( string memory input, uint256 begin, uint256 end ) private pure returns (bool success, uint256 value) { bytes memory buffer = bytes(input); uint256 result = 0; for (uint256 i = begin; i < end; ++i) { uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i))); if (chr > 9) return (false, 0); result *= 10; result += chr; } return (true, result); } /** * @dev Parse a decimal string and returns the value as a `int256`. * * Requirements: * - The string must be formatted as `[-+]?[0-9]*` * - The result must fit in an `int256` type. */ function parseInt(string memory input) internal pure returns (int256) { return parseInt(input, 0, bytes(input).length); } /** * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `[-+]?[0-9]*` * - The result must fit in an `int256` type. */ function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) { (bool success, int256 value) = tryParseInt(input, begin, end); if (!success) revert StringsInvalidChar(); return value; } /** * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if * the result does not fit in a `int256`. * * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`. */ function tryParseInt(string memory input) internal pure returns (bool success, int256 value) { return _tryParseIntUncheckedBounds(input, 0, bytes(input).length); } uint256 private constant ABS_MIN_INT256 = 2 ** 255; /** * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid * character or if the result does not fit in a `int256`. * * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`. */ function tryParseInt( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, int256 value) { if (end > bytes(input).length || begin > end) return (false, 0); return _tryParseIntUncheckedBounds(input, begin, end); } /** * @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that * `begin <= end <= input.length`. Other inputs would result in undefined behavior. */ function _tryParseIntUncheckedBounds( string memory input, uint256 begin, uint256 end ) private pure returns (bool success, int256 value) { bytes memory buffer = bytes(input); // Check presence of a negative sign. bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty bool positiveSign = sign == bytes1("+"); bool negativeSign = sign == bytes1("-"); uint256 offset = (positiveSign || negativeSign).toUint(); (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end); if (absSuccess && absValue < ABS_MIN_INT256) { return (true, negativeSign ? -int256(absValue) : int256(absValue)); } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) { return (true, type(int256).min); } else return (false, 0); } /** * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as a `uint256`. * * Requirements: * - The string must be formatted as `(0x)?[0-9a-fA-F]*` * - The result must fit in an `uint256` type. */ function parseHexUint(string memory input) internal pure returns (uint256) { return parseHexUint(input, 0, bytes(input).length); } /** * @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `(0x)?[0-9a-fA-F]*` * - The result must fit in an `uint256` type. */ function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) { (bool success, uint256 value) = tryParseHexUint(input, begin, end); if (!success) revert StringsInvalidChar(); return value; } /** * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) { return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length); } /** * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an * invalid character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseHexUint( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, uint256 value) { if (end > bytes(input).length || begin > end) return (false, 0); return _tryParseHexUintUncheckedBounds(input, begin, end); } /** * @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that * `begin <= end <= input.length`. Other inputs would result in undefined behavior. */ function _tryParseHexUintUncheckedBounds( string memory input, uint256 begin, uint256 end ) private pure returns (bool success, uint256 value) { bytes memory buffer = bytes(input); // skip 0x prefix if present bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty uint256 offset = hasPrefix.toUint() * 2; uint256 result = 0; for (uint256 i = begin + offset; i < end; ++i) { uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i))); if (chr > 15) return (false, 0); result *= 16; unchecked { // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check). // This guaratees that adding a value < 16 will not cause an overflow, hence the unchecked. result += chr; } } return (true, result); } /** * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as an `address`. * * Requirements: * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}` */ function parseAddress(string memory input) internal pure returns (address) { return parseAddress(input, 0, bytes(input).length); } /** * @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}` */ function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) { (bool success, address value) = tryParseAddress(input, begin, end); if (!success) revert StringsInvalidAddressFormat(); return value; } /** * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly * formatted address. See {parseAddress} requirements. */ function tryParseAddress(string memory input) internal pure returns (bool success, address value) { return tryParseAddress(input, 0, bytes(input).length); } /** * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly * formatted address. See {parseAddress} requirements. */ function tryParseAddress( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, address value) { if (end > bytes(input).length || begin > end) return (false, address(0)); bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty uint256 expectedLength = 40 + hasPrefix.toUint() * 2; // check that input is the correct length if (end - begin == expectedLength) { // length guarantees that this does not overflow, and value is at most type(uint160).max (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end); return (s, address(uint160(v))); } else { return (false, address(0)); } } function _tryParseChr(bytes1 chr) private pure returns (uint8) { uint8 value = uint8(chr); // Try to parse `chr`: // - Case 1: [0-9] // - Case 2: [a-f] // - Case 3: [A-F] // - otherwise not supported unchecked { if (value > 47 && value < 58) value -= 48; else if (value > 96 && value < 103) value -= 87; else if (value > 64 && value < 71) value -= 55; else return type(uint8).max; } return value; } /** * @dev Reads a bytes32 from a bytes array without bounds checking. * * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the * assembly block as such would prevent some optimizations. */ function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) { // This is not memory safe in the general case, but all calls to this private function are within bounds. assembly ("memory-safe") { value := mload(add(buffer, add(0x20, offset))) } } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.13; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; /** * @title Interface for game NFTs that have stats and other properties */ interface IGameNFT is IERC721 { /** * @param account Account to check hold time of * @param tokenId Id of the token * @return The time in seconds a given account has held a token */ function getTimeHeld( address account, uint256 tokenId ) external view returns (uint32); function getLastTransfer( uint256 tokenId ) external view returns (uint32); /** * Mints a batch of ERC721 token * * @param to Recipient of the token * @param amount Quantity of token to mint */ function mintBatch(address to, uint256 amount) external returns (uint256[] memory); function exists(uint256 tokenId) external view returns (bool); }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {DataStore, ID as DATA_STORE_ID} from "./DataStore.sol"; import {DEPLOYER_ROLE} from "../constants/RoleConstants.sol"; import {NAME_CID, ADDRESS_CID, ID_CID, NEXT_DOCID_CID, OWNER_CID} from "../constants/ColumnConstants.sol"; import {GameRegistryConsumer} from "../core/GameRegistryConsumer.sol"; contract DataTable is GameRegistryConsumer { error AlreadyInitialized(); bool private _initialized; constructor(address gameRegistryAddress, uint256 ID) GameRegistryConsumer(gameRegistryAddress, ID) {} function owner() public view virtual returns (address) { return getTableAddressValue(OWNER_CID); } function name() public view virtual returns (string memory) { return getTableStringValue(NAME_CID); } function initializeTable(string memory nameToSet, uint256 id) internal { if (_initialized) { revert AlreadyInitialized(); } _setTableAddressValue(ADDRESS_CID, address(this)); _setTableAddressValue(OWNER_CID, msg.sender); _setTableStringValue(NAME_CID, nameToSet); _setTableUint256Value(ID_CID, id); _initialized = true; } function getTableId() public virtual view returns (uint256) { return getId(); } function _getAndIncrementAutoIncId() internal returns (uint256) { uint256 currentId = getTableUint256Value(NEXT_DOCID_CID); _setTableUint256Value(NEXT_DOCID_CID, currentId + 1); return currentId + 1; } function _incrementAmount(uint256 docId, uint256 columnId, uint256 amount) internal { uint256 currentAmount = getDocUint256Value(docId, columnId); _setDocUint256Value(docId, columnId, currentAmount + amount); } function _decrementAmount(uint256 docId, uint256 columnId, uint256 amount) internal { uint256 currentAmount = getDocUint256Value(docId, columnId); _setDocUint256Value(docId, columnId, currentAmount - amount); } function _setTableStringValue(uint256 columnId, string memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setString(getTableId(), 0, columnId, value); } function _setTableUint256Value(uint256 columnId, uint256 value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256(getTableId(), 0, columnId, value); } function _setTableAddressValue(uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), 0, columnId, value); } function _setTableBoolValue(uint256 columnId, bool value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBool(getTableId(), 0, columnId, value); } function _setTableAdddressValue(uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), 0, columnId, value); } function _setTableUint256ArrayValue(uint256 columnId, uint256[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256ArrayValue(getTableId(), 0, columnId, value); } function _setTableBoolArrayValue(uint256 columnId, bool[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBoolArrayValue(getTableId(), 0, columnId, value); } function _setTableAddressArrayValue(uint256 columnId, address[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddressArrayValue(getTableId(), 0, columnId, value); } function _setDocAddressArrayValue(uint256 docId, uint256 columnId, address[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddressArrayValue(getTableId(), docId, columnId, value); } function _setDocBoolArrayValue(uint256 docId, uint256 columnId, bool[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBoolArrayValue(getTableId(), docId, columnId, value); } function _setDocStringValue(uint256 docId, uint256 columnId, string memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setString(getTableId(), docId, columnId, value); } function _setDocUint256Value(uint256 docId, uint256 columnId, uint256 value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256(getTableId(), docId, columnId, value); } function _setDocUint256ArrayValue(uint256 docId, uint256 columnId, uint256[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256ArrayValue(getTableId(), docId, columnId, value); } function _setDocBoolValue(uint256 docId, uint256 columnId, bool value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBool(getTableId(), docId, columnId, value); } function _setDocAddressValue(uint256 docId, uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), docId, columnId, value); } function getTableBoolValue(uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getBool(getTableId(), 0, columnId); } function getTableUint256Value(uint256 columnId) public view returns (uint256) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256(getTableId(), 0, columnId); } function getTableStringValue(uint256 columnId) public view returns (string memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getString(getTableId(), 0, columnId); } function getTableAddressValue(uint256 columnId) public view returns (address) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getAddress(getTableId(), 0, columnId); } function getTableUint256ArrayValue(uint256 columnId) public view returns (uint256[] memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256Array(getTableId(), 0, columnId); } function getDocUint256ArrayValue(uint256 docId, uint256 columnId) public view returns (uint256[] memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256Array(getTableId(), docId, columnId); } function getDocStringValue(uint256 docId, uint256 columnId) public view returns (string memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getString(getTableId(), docId, columnId); } function getDocUint256Value(uint256 docId, uint256 columnId) public view returns (uint256) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256(getTableId(), docId, columnId); } function getDocBoolValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getBool(getTableId(), docId, columnId); } function getDocAddressValue(uint256 docId, uint256 columnId) public view returns (address) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getAddress(getTableId(), docId, columnId); } function hasDocStringValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).hasStringValue(getTableId(), docId, columnId); } function hasDocValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).hasValue(getTableId(), docId, columnId); } function getPlayerDocId(address player) public pure returns (uint256) { return uint256(uint160(player)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; import {IERC721} from "./IERC721.sol"; import {IERC721Metadata} from "./extensions/IERC721Metadata.sol"; import {ERC721Utils} from "./utils/ERC721Utils.sol"; import {Context} from "../../utils/Context.sol"; import {Strings} from "../../utils/Strings.sol"; import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol"; import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if: * - `spender` does not have approval from `owner` for `tokenId`. * - `spender` does not have approval to manage all of `owner`'s assets. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); ERC721Utils.checkOnERC721Received(_msgSender(), address(0), to, tokenId, data); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC-721 standard to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; interface IERC721UpdateHandler { /** * Before transfer hook for NFTs. Performs any trait checks needed before transfer * * @param tokenContract Address of the token contract * @param to Address of the recipient * @param tokenId Token ID * @param auth Auth address */ function update( address tokenContract, address to, uint256 tokenId, address auth ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC-721 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 ERC-721 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 ERC-721 * 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 address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * 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[ERC 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 // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol) pragma solidity ^0.8.20; import {Panic} from "../Panic.sol"; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an success flag (no overflow). */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow). */ function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow). */ function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a success flag (no division by zero). */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero). */ function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * SafeCast.toUint(condition)); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a < b, a, b); } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. Panic.panic(Panic.DIVISION_BY_ZERO); } // The following calculation ensures accurate ceiling division without overflow. // Since a is non-zero, (a - 1) / b will not overflow. // The largest possible result occurs when (a - 1) / b is type(uint256).max, // but the largest value we can obtain is type(uint256).max - 1, which happens // when a = type(uint256).max and b = 1. unchecked { return SafeCast.toUint(a > 0) * ((a - 1) / b + 1); } } /** * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2²⁵⁶ + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0. if (denominator <= prod1) { Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW)); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv ≡ 1 mod 2⁴. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2⁸ inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶ inverse *= 2 - denominator * inverse; // inverse mod 2³² inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴ inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸ inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶ // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @dev Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0); } /** * @dev Calculate the modular multiplicative inverse of a number in Z/nZ. * * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0. * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible. * * If the input value is not inversible, 0 is returned. * * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}. */ function invMod(uint256 a, uint256 n) internal pure returns (uint256) { unchecked { if (n == 0) return 0; // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version) // Used to compute integers x and y such that: ax + ny = gcd(a, n). // When the gcd is 1, then the inverse of a modulo n exists and it's x. // ax + ny = 1 // ax = 1 + (-y)n // ax ≡ 1 (mod n) # x is the inverse of a modulo n // If the remainder is 0 the gcd is n right away. uint256 remainder = a % n; uint256 gcd = n; // Therefore the initial coefficients are: // ax + ny = gcd(a, n) = n // 0a + 1n = n int256 x = 0; int256 y = 1; while (remainder != 0) { uint256 quotient = gcd / remainder; (gcd, remainder) = ( // The old remainder is the next gcd to try. remainder, // Compute the next remainder. // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd // where gcd is at most n (capped to type(uint256).max) gcd - remainder * quotient ); (x, y) = ( // Increment the coefficient of a. y, // Decrement the coefficient of n. // Can overflow, but the result is casted to uint256 so that the // next value of y is "wrapped around" to a value between 0 and n - 1. x - y * int256(quotient) ); } if (gcd != 1) return 0; // No inverse exists. return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative. } } /** * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`. * * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that * `a**(p-2)` is the modular multiplicative inverse of a in Fp. * * NOTE: this function does NOT check that `p` is a prime greater than `2`. */ function invModPrime(uint256 a, uint256 p) internal view returns (uint256) { unchecked { return Math.modExp(a, p - 2, p); } } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m) * * Requirements: * - modulus can't be zero * - underlying staticcall to precompile must succeed * * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make * sure the chain you're using it on supports the precompiled contract for modular exponentiation * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, * the underlying function will succeed given the lack of a revert, but the result may be incorrectly * interpreted as 0. */ function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) { (bool success, uint256 result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m). * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying * to operate modulo 0 or if the underlying precompile reverted. * * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack * of a revert, but the result may be incorrectly interpreted as 0. */ function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) { if (m == 0) return (false, 0); assembly ("memory-safe") { let ptr := mload(0x40) // | Offset | Content | Content (Hex) | // |-----------|------------|--------------------------------------------------------------------| // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x60:0x7f | value of b | 0x<.............................................................b> | // | 0x80:0x9f | value of e | 0x<.............................................................e> | // | 0xa0:0xbf | value of m | 0x<.............................................................m> | mstore(ptr, 0x20) mstore(add(ptr, 0x20), 0x20) mstore(add(ptr, 0x40), 0x20) mstore(add(ptr, 0x60), b) mstore(add(ptr, 0x80), e) mstore(add(ptr, 0xa0), m) // Given the result < m, it's guaranteed to fit in 32 bytes, // so we can use the memory scratch space located at offset 0. success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20) result := mload(0x00) } } /** * @dev Variant of {modExp} that supports inputs of arbitrary length. */ function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) { (bool success, bytes memory result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Variant of {tryModExp} that supports inputs of arbitrary length. */ function tryModExp( bytes memory b, bytes memory e, bytes memory m ) internal view returns (bool success, bytes memory result) { if (_zeroBytes(m)) return (false, new bytes(0)); uint256 mLen = m.length; // Encode call args in result and move the free memory pointer result = abi.encodePacked(b.length, e.length, mLen, b, e, m); assembly ("memory-safe") { let dataPtr := add(result, 0x20) // Write result on top of args to avoid allocating extra memory. success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen) // Overwrite the length. // result.length > returndatasize() is guaranteed because returndatasize() == m.length mstore(result, mLen) // Set the memory pointer after the returned data. mstore(0x40, add(dataPtr, mLen)) } } /** * @dev Returns whether the provided byte array is zero. */ function _zeroBytes(bytes memory byteArray) private pure returns (bool) { for (uint256 i = 0; i < byteArray.length; ++i) { if (byteArray[i] != 0) { return false; } } return true; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * This method is based on Newton's method for computing square roots; the algorithm is restricted to only * using integer operations. */ function sqrt(uint256 a) internal pure returns (uint256) { unchecked { // Take care of easy edge cases when a == 0 or a == 1 if (a <= 1) { return a; } // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between // the current value as `ε_n = | x_n - sqrt(a) |`. // // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is // bigger than any uint256. // // By noticing that // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)` // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar // to the msb function. uint256 aa = a; uint256 xn = 1; if (aa >= (1 << 128)) { aa >>= 128; xn <<= 64; } if (aa >= (1 << 64)) { aa >>= 64; xn <<= 32; } if (aa >= (1 << 32)) { aa >>= 32; xn <<= 16; } if (aa >= (1 << 16)) { aa >>= 16; xn <<= 8; } if (aa >= (1 << 8)) { aa >>= 8; xn <<= 4; } if (aa >= (1 << 4)) { aa >>= 4; xn <<= 2; } if (aa >= (1 << 2)) { xn <<= 1; } // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1). // // We can refine our estimation by noticing that the middle of that interval minimizes the error. // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2). // This is going to be our x_0 (and ε_0) xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2) // From here, Newton's method give us: // x_{n+1} = (x_n + a / x_n) / 2 // // One should note that: // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a // = ((x_n² + a) / (2 * x_n))² - a // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²) // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²) // = (x_n² - a)² / (2 * x_n)² // = ((x_n² - a) / (2 * x_n))² // ≥ 0 // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n // // This gives us the proof of quadratic convergence of the sequence: // ε_{n+1} = | x_{n+1} - sqrt(a) | // = | (x_n + a / x_n) / 2 - sqrt(a) | // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) | // = | (x_n - sqrt(a))² / (2 * x_n) | // = | ε_n² / (2 * x_n) | // = ε_n² / | (2 * x_n) | // // For the first iteration, we have a special case where x_0 is known: // ε_1 = ε_0² / | (2 * x_0) | // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2))) // ≤ 2**(2*e-4) / (3 * 2**(e-1)) // ≤ 2**(e-3) / 3 // ≤ 2**(e-3-log2(3)) // ≤ 2**(e-4.5) // // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n: // ε_{n+1} = ε_n² / | (2 * x_n) | // ≤ (2**(e-k))² / (2 * 2**(e-1)) // ≤ 2**(2*e-2*k) / 2**e // ≤ 2**(e-2*k) xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5 xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9 xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18 xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36 xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72 // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either // sqrt(a) or sqrt(a) + 1. return xn - SafeCast.toUint(xn > a / xn); } } /** * @dev Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; uint256 exp; unchecked { exp = 128 * SafeCast.toUint(value > (1 << 128) - 1); value >>= exp; result += exp; exp = 64 * SafeCast.toUint(value > (1 << 64) - 1); value >>= exp; result += exp; exp = 32 * SafeCast.toUint(value > (1 << 32) - 1); value >>= exp; result += exp; exp = 16 * SafeCast.toUint(value > (1 << 16) - 1); value >>= exp; result += exp; exp = 8 * SafeCast.toUint(value > (1 << 8) - 1); value >>= exp; result += exp; exp = 4 * SafeCast.toUint(value > (1 << 4) - 1); value >>= exp; result += exp; exp = 2 * SafeCast.toUint(value > (1 << 2) - 1); value >>= exp; result += exp; result += SafeCast.toUint(value > 1); } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; uint256 isGt; unchecked { isGt = SafeCast.toUint(value > (1 << 128) - 1); value >>= isGt * 128; result += isGt * 16; isGt = SafeCast.toUint(value > (1 << 64) - 1); value >>= isGt * 64; result += isGt * 8; isGt = SafeCast.toUint(value > (1 << 32) - 1); value >>= isGt * 32; result += isGt * 4; isGt = SafeCast.toUint(value > (1 << 16) - 1); value >>= isGt * 16; result += isGt * 2; result += SafeCast.toUint(value > (1 << 8) - 1); } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * int256(SafeCast.toUint(condition))); } } /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return ternary(a < b, a, b); } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson. // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift, // taking advantage of the most significant (or "sign" bit) in two's complement representation. // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result, // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative). int256 mask = n >> 255; // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it. return uint256((n + mask) ^ mask); } } }
// 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/utils/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 v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; import {IERC721} from "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/utils/ERC721Utils.sol) pragma solidity ^0.8.20; import {IERC721Receiver} from "../IERC721Receiver.sol"; import {IERC721Errors} from "../../../interfaces/draft-IERC6093.sol"; /** * @dev Library that provide common ERC-721 utility functions. * * See https://eips.ethereum.org/EIPS/eip-721[ERC-721]. * * _Available since v5.1._ */ library ERC721Utils { /** * @dev Performs an acceptance check for the provided `operator` by calling {IERC721-onERC721Received} * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`). * * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA). * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept * the transfer. */ function checkOnERC721Received( address operator, address from, address to, uint256 tokenId, bytes memory data ) internal { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(operator, from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { // Token rejected revert IERC721Errors.ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { // non-IERC721Receiver implementer revert IERC721Errors.ERC721InvalidReceiver(to); } else { assembly ("memory-safe") { revert(add(32, reason), mload(reason)) } } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol) pragma solidity ^0.8.20; /** * @dev Helper library for emitting standardized panic codes. * * ```solidity * contract Example { * using Panic for uint256; * * // Use any of the declared internal constants * function foo() { Panic.GENERIC.panic(); } * * // Alternatively * function foo() { Panic.panic(Panic.GENERIC); } * } * ``` * * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. * * _Available since v5.1._ */ // slither-disable-next-line unused-state library Panic { /// @dev generic / unspecified error uint256 internal constant GENERIC = 0x00; /// @dev used by the assert() builtin uint256 internal constant ASSERT = 0x01; /// @dev arithmetic underflow or overflow uint256 internal constant UNDER_OVERFLOW = 0x11; /// @dev division or modulo by zero uint256 internal constant DIVISION_BY_ZERO = 0x12; /// @dev enum conversion error uint256 internal constant ENUM_CONVERSION_ERROR = 0x21; /// @dev invalid encoding in storage uint256 internal constant STORAGE_ENCODING_ERROR = 0x22; /// @dev empty array pop uint256 internal constant EMPTY_ARRAY_POP = 0x31; /// @dev array out of bounds access uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32; /// @dev resource error (too large allocation or too large array) uint256 internal constant RESOURCE_ERROR = 0x41; /// @dev calling invalid internal function uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51; /// @dev Reverts with a panic code. Recommended to use with /// the internal constants with predefined codes. function panic(uint256 code) internal pure { assembly ("memory-safe") { mstore(0x00, 0x4e487b71) mstore(0x20, code) revert(0x1c, 0x24) } } }
// 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 v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @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 EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * 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; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); 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 if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // 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; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * Defines a system the game engine */ interface ISystem { /** @return The ID for the system. Ex: a uint256 casted keccak256 hash */ function getId() external view returns (uint256); function initialize() external; }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; // @title Interface the game's ACL / Management Layer interface IGameRegistry is IERC165 { /** * @dev Returns `true` if `account` has been granted `role`. * @param role The role to query * @param account The address to query */ function hasAccessRole( bytes32 role, address account ) external view returns (bool); /** * @return Whether or not the registry is paused */ function paused() external view returns (bool); /** * Registers a system by id * * @param systemId Id of the system * @param systemAddress Address of the system contract */ function registerSystem(uint256 systemId, address systemAddress, bool isGameLogicContract) external; /** * @param systemId Id of the system * @return System based on an id */ function getSystem(uint256 systemId) external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @title ERC-721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC-721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be * reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
{ "viaIR": false, "codegen": "yul", "remappings": [ "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "forge-zksync-std/=lib/forge-zksync-std/src/", "halmos-cheatcodes/=lib/openzeppelin-contracts-upgradeable/lib/halmos-cheatcodes/src/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts/" ], "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":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"InvalidAccountAddress","type":"error"},{"inputs":[],"name":"InvalidGameRegistry","type":"error"},{"inputs":[],"name":"InvalidTokenId","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"expectedRole","type":"bytes32"}],"name":"MissingRole","type":"error"},{"inputs":[{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"NotEnoughSupply","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[],"name":"TokenIdExceedsMaxSupply","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"lastTransferTime","type":"uint32"}],"name":"LastTransferSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"timeHeld","type":"uint32"}],"name":"TimeHeldSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"afterUpdateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeUpdateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGameRegistry","outputs":[{"internalType":"contract IGameRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLastTransfer","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"}],"name":"getPlayerDocId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTableId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimeHeld","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"hasDocStringValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"hasDocValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","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":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"setTraitsInitialized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"bool","name":"before","type":"bool"}],"name":"setUpdateHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000ee7c03fec8b62d8b80534b55f5d9777a10d59571e84b1ae24d26f72d45600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6
Deployed Bytecode
0x0004000000000002000a000000000002000000000401034f000000600110027000000e290010019d00000e2903100197000300000034035500020000000403550000008001000039000000400010043f0000000100200190000000340000c13d000000040030008c000000560000413d000000000134034f000000000204043b000000e00220027000000e3c0020009c000000580000a13d00000e3d0020009c0000007e0000213d00000e4d0020009c000001080000213d00000e550020009c000001f20000213d00000e590020009c000004670000613d00000e5a0020009c000003c20000613d00000e5b0020009c000000560000c13d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c00000c900000c13d0000000103000031000000200030008c0000002004000039000000000403401900000cb50000013d0000000002000416000000000002004b000000560000c13d0000001f0230003900000e2a022001970000008002200039000000400020043f0000001f0530018f00000e2b063001980000008002600039000000440000613d000000000704034f000000007807043c0000000001810436000000000021004b000000400000c13d000000000005004b000000510000613d000000000164034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c000000560000413d000000800600043d00000e2c0060009c000000a70000a13d0000000001000019000038a00001043000000e5c0020009c000000ce0000a13d00000e5d0020009c000000f70000213d00000e650020009c000001900000213d00000e690020009c000002f70000613d00000e6a0020009c000002800000613d00000e6b0020009c000000560000c13d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d0000000701000039000000000201041a00000e9c01000041000000800010043f00000ecf01000041000000840010043f0000000001000411000000a40010043f0000000001000414000000080220027000000e2c02200197000000040020008c000006b10000c13d0000000103000031000000200030008c00000020040000390000000004034019000006d60000013d00000e3e0020009c000001290000213d00000e460020009c000002220000213d00000e4a0020009c0000047c0000613d00000e4b0020009c000003dd0000613d00000e4c0020009c000000560000c13d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d389e31470000040f00000e2c0010019800000cda0000c13d000000400100043d000000640210003900000ea4030000410000000000320435000000440210003900000ea503000041000000000032043500000024021000390000002f03000039000000000032043500000ea602000041000000000021043500000004021000390000002003000039000000000032043500000e290010009c00000e2901008041000000400110021000000ea7011001c7000038a000010430000000400500043d00000e2d0050009c000000c80000213d0000004001500039000000400010043f0000000402000039000000000125043600000e2e030000410000000000310435000000400700043d00000e2d0070009c000000c80000213d0000004004700039000000400040043f0000000002270436000700000002001d0000000000320435000000400200043d000800000002001d00000e2d0020009c000000c80000213d00000008030000290000004002300039000000400020043f0000000602000039000000000323043600000e2f02000041000500000003001d00000000002304350000000002050433000600000002001d00000e300020009c000005210000a13d00000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a00001043000000e6c0020009c0000014e0000a13d00000e6d0020009c000001d70000213d00000e710020009c000003a50000613d00000e720020009c000003870000613d00000e730020009c000000560000c13d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000800000002001d000000000012004b000000560000c13d0000000701000039000000000201041a00000e9c01000041000000800010043f00000ed201000041000000840010043f0000000001000411000000a40010043f0000000001000414000000080220027000000e2c02200197000000040020008c00000df20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e170000013d00000e5e0020009c000001bc0000213d00000e620020009c000003120000613d00000e630020009c000002780000613d00000e640020009c000000560000c13d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b389e344c0000040f0000036c0000013d00000e4e0020009c0000022d0000213d00000e520020009c000004860000613d00000e530020009c000003f80000613d00000e540020009c000000560000c13d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d00000e2c0010009c000000560000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b000000560000c13d000000080000006b00000f9d0000c13d00000ead01000041000000000010043f000000040000043f00000e8201000041000038a00001043000000e3f0020009c000002530000213d00000e430020009c000004b20000613d00000e440020009c000004130000613d00000e450020009c000000560000c13d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d00000e2c0010009c000000560000213d0000002401400370000000000101043b000700000001001d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c00000e990000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ebe0000013d00000e740020009c000002630000a13d00000e750020009c000003740000613d00000e760020009c0000035b0000613d00000e770020009c000000560000c13d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d00000e2c0010009c000000560000213d0000002401400370000000000101043b000700000001001d389e344c0000040f00000e2c051001970000000001000411000000000001004b00000cf90000613d000000000015004b00000cf90000613d000600000005001d000000000050043f0000000501000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000200041100000e2c02200197000000000020043f000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000101041a000000ff001001900000000605000029000000000200041100000cf90000c13d00000ed601000041000000000010043f000000040020043f00000e8201000041000038a00001043000000e660020009c000003180000613d00000e670020009c0000029a0000613d00000e680020009c000000560000c13d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d00000e2c0010009c000000560000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b000000560000c13d0000000701000039000000000201041a00000e9c01000041000000800010043f00000e9d01000041000000840010043f000000000100041100000e2c03100197000000a40030043f0000000001000414000000080220027000000e2c02200197000000040020008c000600000003001d00000f4e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f730000013d00000e5f0020009c000003240000613d00000e600020009c000002eb0000613d00000e610020009c000000560000c13d000000240030008c000000560000413d0000000002000416000000000002004b000000560000c13d0000000702000039000000000202041a00000e7c03000041000000800030043f00000e7d03000041000000840030043f0000000003000414000000080220027000000e2c02200197000000040020008c000006ed0000c13d0000000103000031000000200030008c00000020040000390000000004034019000007120000013d00000e6e0020009c000003ba0000613d00000e6f0020009c000003910000613d00000e700020009c000000560000c13d000000240030008c000000560000413d0000000002000416000000000002004b000000560000c13d0000000702000039000000000202041a00000e7c03000041000000800030043f00000e7d03000041000000840030043f0000000003000414000000080220027000000e2c02200197000000040020008c00000af40000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b190000013d00000e560020009c000002780000613d00000e570020009c0000042b0000613d00000e580020009c000000560000c13d0000000001000416000000000001004b000000560000c13d0000000101000039000000000601041a000000010360019000000001056002700000007f0250018f00000000050260190000001f0050008c00000000040000390000000104002039000000000446013f00000001004001900000052a0000c13d000000800050043f000000000003004b00000e880000c13d00000edd01600197000000a00010043f000000000002004b000000c001000039000000a001006039000000800210008a0000008001000039389e27970000040f0000002001000039000000400200043d000800000002001d00000000021204360000008001000039389e27440000040f0000000802000029000000000121004900000e290010009c00000e2901008041000000600110021000000e290020009c00000e29020080410000004002200210000000000121019f0000389f0001042e00000e470020009c000004d00000613d00000e480020009c0000043e0000613d00000e490020009c000000560000c13d0000000001000416000000000001004b000000560000c13d389e28bf0000040f0000036d0000013d00000e4f0020009c000004eb0000613d00000e500020009c000004470000613d00000e510020009c000000560000c13d000000840030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d00000e2c0010009c000000560000213d0000002401400370000000000101043b000700000001001d00000e2c0010009c000000560000213d0000006401400370000000000101043b00000e300010009c000000560000213d0000002302100039000000000032004b000000560000813d0000000402100039000000000224034f000000000202043b0000004404400370000000000404043b000600000004001d0000002401100039389e27a90000040f000500000001001d0000028e0000013d00000e400020009c000005000000613d00000e410020009c000004620000613d00000e420020009c000000560000c13d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b389e33730000040f00000e29011001970000036d0000013d00000e780020009c000003400000613d00000e790020009c000000560000c13d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000201043b00000ec800200198000000560000c13d000000010100003900000ed80020009c00000d8b0000213d00000edb0020009c000004830000613d00000edc0020009c000004830000613d00000d8f0000013d0000000001000416000000000001004b000000560000c13d0000000801000039000000000101041a000000800010043f00000e7b010000410000389f0001042e0000000001000416000000000001004b000000560000c13d0000000001030019389e27760000040f000800000001001d000700000002001d000600000003001d000000400100043d000500000001001d0000002002000039389e27970000040f00000005010000290000000000010435000000080100002900000007020000290000000603000029389e29960000040f00000000010004110000000802000029000000070300002900000006040000290000000505000029389e36030000040f00000000010000190000389f0001042e000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000201043b00000e300020009c000000560000213d0000002301200039000000000031004b000000560000813d0000000405200039000000000154034f000000000101043b00000e300010009c000000c80000213d0000001f0610003900000ede066001970000003f0660003900000ede0660019700000ece0060009c000000c80000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000000560000213d0000002002500039000000000324034f00000ede041001980000001f0510018f000000a002400039000002c40000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000002c00000c13d000000000005004b000002d10000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000701000039000000000201041a000000400400043d00000e9c010000410000000000140435000000040140003900000e9d030000410000000000310435000000000100041100000e2c03100197000800000004001d0000002401400039000600000003001d00000000003104350000000001000414000000080220027000000e2c02200197000000040020008c000014630000c13d0000000103000031000000200030008c000000200400003900000000040340190000148d0000013d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b00000e2c0010009c000000560000213d389e351e0000040f389e329a0000040f0000036d0000013d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000002401400370000000000101043b000700000001001d0000000401400370000000000101043b000800000001001d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c0000055a0000c13d0000000103000031000000200030008c000000200400003900000000040340190000057f0000013d0000000001000416000000000001004b000000560000c13d389e32220000040f000000000001004b000003210000013d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b389e31470000040f00000e2c001001980000000001000039000000010100c0390000036d0000013d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d00000e2c0010009c000000560000213d0000000701000039000000000201041a00000e9c01000041000000800010043f00000ebd01000041000000840010043f0000000001000411000000a40010043f0000000001000414000000080220027000000e2c02200197000000040020008c00000d130000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d380000013d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000002401400370000000000101043b000700000001001d0000000401400370000000000101043b000800000001001d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c000006430000c13d0000000103000031000000200030008c00000020040000390000000004034019000006680000013d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d389e344c0000040f0000000801000029000000000010043f0000000401000039000000200010043f00000040020000390000000001000019389e387f0000040f000000000101041a00000e2c01100197000000400200043d000000000012043500000e290020009c00000e2902008041000000400120021000000e7a011001c70000389f0001042e0000000002000416000000000002004b000000560000c13d0000000702000039000000000202041a00000e7c03000041000000800030043f00000e7d03000041000000840030043f0000000003000414000000080220027000000e2c02200197000000040020008c0000059d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000005c20000013d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b00000e2c0010009c000004830000a13d000000560000013d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b00000e2c0010009c000000560000213d000000a001000039000000400010043f000000800000043f0000008002000039389e27880000040f000000a00110008a00000e290010009c00000e2901008041000000600110021000000ed1011001c70000389f0001042e000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c0000078c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000007b10000013d0000000001000416000000000001004b000000560000c13d0000000001030019389e27760000040f389e29960000040f00000000010000190000389f0001042e000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000002401400370000000000101043b000700000001001d0000000401400370000000000101043b000800000001001d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c0000087f0000c13d0000000103000031000000200030008c00000020040000390000000004034019000008a40000013d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000002401400370000000000101043b000700000001001d0000000401400370000000000101043b000800000001001d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c000008c30000c13d0000000103000031000000200030008c00000020040000390000000004034019000008e80000013d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000002401400370000000000101043b000700000001001d0000000401400370000000000101043b000800000001001d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c000009360000c13d0000000103000031000000200030008c000000200400003900000000040340190000095b0000013d000000240030008c000000560000413d0000000002000416000000000002004b000000560000c13d0000000402400370000000000202043b000800000002001d0000000702000039000000000202041a00000e7c03000041000000800030043f00000e7d03000041000000840030043f0000000003000414000000080220027000000e2c02200197000000040020008c000009790000c13d0000000103000031000000200030008c000000200400003900000000040340190000099e0000013d0000000001000416000000000001004b000000560000c13d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c000007d10000c13d0000000103000031000000200030008c00000020040000390000000004034019000007f60000013d0000000001000416000000000001004b000000560000c13d0000000a01000039000000000101041a00000e2c01100197000000800010043f00000e7b010000410000389f0001042e000000440030008c000000560000413d0000000002000416000000000002004b000000560000c13d0000002402400370000000000202043b000700000002001d0000000402400370000000000202043b000800000002001d0000000702000039000000000202041a00000e7c03000041000000800030043f00000e7d03000041000000840030043f0000000003000414000000080220027000000e2c02200197000000040020008c00000a530000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a780000013d0000000001000416000000000001004b000000560000c13d0000000701000039000004800000013d0000000001000416000000000001004b000000560000c13d0000000701000039000000000201041a00000e9c01000041000000800010043f00000eb301000041000000840010043f0000000001000411000000a40010043f0000000001000414000000080220027000000e2c02200197000000040020008c000008430000c13d0000000103000031000000200030008c00000020040000390000000004034019000008680000013d0000000001000416000000000001004b000000560000c13d0000000901000039000000000101041a000000080110027000000e2c01100197000000800010043f00000e7b010000410000389f0001042e000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b00000e300010009c000000560000213d0000002302100039000000000032004b000000560000813d0000000402100039000000000224034f000000000202043b000400000002001d00000e300020009c000000560000213d00000004020000290000000502200210000300240010003d0000000301200029000000000031004b000000560000213d0000000701000039000000000201041a00000e9c01000041000000800010043f00000e9d01000041000000840010043f000000000100041100000e2c01100197000800000001001d000000a40010043f0000000001000414000000080220027000000e2c02200197000000040020008c000012820000c13d0000000103000031000000200030008c00000020040000390000000004034019000012a70000013d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b000800000001001d00000e2c0010009c000000560000213d0000000701000039000000000201041a00000e9c01000041000000800010043f00000e9d01000041000000840010043f000000000100041100000e2c03100197000000a40030043f0000000001000414000000080220027000000e2c02200197000000040020008c000700000003001d00000e390000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e5e0000013d000000440030008c000000560000413d0000000002000416000000000002004b000000560000c13d0000002402400370000000000502043b0000000402400370000000000402043b0000000702000039000000000202041a00000e7c03000041000000800030043f00000e7d03000041000000840030043f0000000003000414000000080220027000000e2c02200197000000040020008c000800000004001d000700000005001d00000b9c0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000bc10000013d000000240030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000701000039000000000201041a00000e7c01000041000000800010043f00000e7d01000041000000840010043f0000000001000414000000080220027000000e2c02200197000000040020008c00000c460000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c6b0000013d000000440030008c000000560000413d0000000001000416000000000001004b000000560000c13d0000000401400370000000000101043b00000e2c0010009c000000560000213d0000002402400370000000000202043b000800000002001d00000e2c0020009c000000560000213d000000000010043f0000000501000039000000200010043f00000040020000390000000001000019389e387f0000040f0000000802000029000000000020043f000000200010043f00000000010000190000004002000039389e387f0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000e7b010000410000389f0001042e000000000200041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000005300000613d00000ebc01000041000000000010043f0000002201000039000000040010043f00000e8201000041000038a000010430000000200030008c0000000604000029000005420000413d0000001f02400039000000050220027000000e310220009a000000200040008c00000e3202004041000000000000043f0000001f03300039000000050330027000000e310330009a000000000032004b000005420000813d000000000002041b0000000102200039000000000032004b0000053e0000413d0000001f0040008c00000cee0000a13d000200000005001d000300000007001d000000000000043f000000000100041400000e290010009c00000e2901008041000000c00110021000000e33011001c70000801002000039000400000006001d389e38990000040f00000004060000290000000100200190000000560000613d000000060900002900000ede02900198000000000101043b00000002080000290000120b0000c13d00000020030000390000000307000029000012180000013d00000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000056e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000056a0000c13d000000000006004b0000057b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d4f0000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000e7f040000410000000605000029000000000045043500000084041001bf0000000000340435000000c40310003900000007040000290000000000430435000000a403100039000000080400002900000000004304350000000003000414000000040020008c00000fe90000c13d0000000001150019000000400010043f000000060200002900000cd30000013d00000e290030009c00000e2903008041000000c00130021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000005b10000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000005ad0000c13d000000000006004b000005be0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d5b0000613d0000001f02400039000000600420018f00000080024001bf000800000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000805000039000000000505041a00000e8f06000041000000080a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000e8e060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c000005e90000613d0000004001a0021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c7389e38990000040f000000600310027000010e290030019d00000e290330019700030000000103550000000100200190000013720000613d000000080a00002900000ede053001980000001f0630018f00000000045a0019000005f30000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000005ef0000c13d000000000006004b000006000000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900000ede041001970000000001a40019000000000041004b0000000004000039000000010400403900000e300010009c000000c80000213d0000000100400190000000c80000c13d000000400010043f00000e900030009c000000560000213d000000200030008c000000560000413d0000000804000029000000000404043300000e300040009c000000560000213d000000080630002900000008034000290000001f04300039000000000064004b000000000500001900000e910500804100000e910440019700000e9107600197000000000874013f000000000074004b000000000400001900000e910400404100000e910080009c000000000405c019000000000004004b000000560000c13d000000004303043400000e300030009c000000c80000213d0000001f0530003900000ede055001970000003f0550003900000ede05500197000000000515001900000e300050009c000000c80000213d000000400050043f00000000053104360000000007430019000000000067004b000000560000213d00000ede063001970000001f0230018f000000000054004b00001a980000813d000000000006004b00000c420000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000063c0000c13d00000c420000013d00000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006570000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006530000c13d000000000006004b000006640000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d670000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000eaa040000410000000605000029000000000045043500000084041001bf0000000000340435000000c40310003900000007040000290000000000430435000000a403100039000000080400002900000000004304350000000003000414000000040020008c000009750000613d00000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000060b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000006990000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000006950000c13d000000000006004b000006a60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000137e0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000000560000413d000009770000013d00000e290010009c00000e2901008041000000c00110021000000e9e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006c50000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006c10000c13d000000000006004b000006d20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d730000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000000560000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b000000560000c13d000000000002004b000010180000c13d00000ea101000041000000000010043f0000000001000411000000040010043f00000ecf01000041000000240010043f00000e8901000041000038a00001043000000e290030009c00000e2903008041000000c00130021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007010000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006fd0000c13d000000000006004b0000070e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d7f0000613d0000001f02400039000000600420018f00000080024001bf000800000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000805000039000000000505041a00000ea806000041000000080a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c0000073b0000613d0000004001a0021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c7389e38990000040f000000600310027000010e290030019d00000e2903300197000300000001035500000001002001900000138a0000613d000000080a00002900000ede053001980000001f0630018f00000000045a0019000007450000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000007410000c13d000000000006004b000007520000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900000ede011001970000000002a10019000000000012004b0000000001000039000000010100403900000e300020009c000000c80000213d0000000100100190000000c80000c13d000000400020043f00000e900030009c000000560000213d000000200030008c000000560000413d0000000801000029000000000101043300000e300010009c000000560000213d000000080330002900000008011000290000001f04100039000000000034004b000000000500001900000e910500804100000e910440019700000e9106300197000000000764013f000000000064004b000000000400001900000e910400404100000e910070009c000000000405c019000000000004004b000000560000c13d000000001501043400000e300050009c000000c80000213d00000005045002100000003f0640003900000ea906600197000000000626001900000e300060009c000000c80000213d000000400060043f00000000005204350000000004140019000000000034004b000000560000213d000000000005004b00000af00000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b000007860000413d00000af00000013d00000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007a00000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000079c0000c13d000000000006004b000007ad0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d920000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000e83040000410000000805000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c0000104c0000c13d0000000001150019000000400010043f0000000802000029000000000202043300000cd60000013d00000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007e50000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000007e10000c13d000000000006004b000007f20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d9e0000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000e7f040000410000000805000029000000000045043500000084041001bf0000000000340435000000c40310003900000e80040000410000000000430435000000a40310003900000000000304350000000003000414000000040020008c00000cd00000613d00000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000080b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000008260000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000008220000c13d000000000006004b000008330000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012040000c13d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000083e0000c13d00001c360000013d00000e290010009c00000e2901008041000000c00110021000000e9e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008570000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008530000c13d000000000006004b000008640000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000daa0000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c000000560000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000560000c13d000000000002004b0000107b0000c13d00000ea101000041000000000010043f0000000001000411000000040010043f00000eb301000041000000240010043f00000e8901000041000038a00001043000000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008930000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000088f0000c13d000000000006004b000008a00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000db60000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000e83040000410000000605000029000000000045043500000084041001bf0000000000340435000000c40310003900000007040000290000000000430435000000a403100039000000080400002900000000004304350000000003000414000000040020008c0000111f0000c13d0000000001150019000000400010043f0000000602000029000000000202043300000cd60000013d00000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008d70000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008d30000c13d000000000006004b000008e40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000dc20000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000e8d040000410000000605000029000000000045043500000084041001bf0000000000340435000000c40310003900000007040000290000000000430435000000a403100039000000080400002900000000004304350000000003000414000000040020008c000009750000613d00000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000060b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000009190000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000009150000c13d000000000006004b000009260000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011760000c13d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009310000c13d00001c360000013d00000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000094a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009460000c13d000000000006004b000009570000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000dce0000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000eae040000410000000605000029000000000045043500000084041001bf0000000000340435000000c40310003900000007040000290000000000430435000000a403100039000000080400002900000000004304350000000003000414000000040020008c0000114e0000c13d0000000001150019000000400010043f000000060200002900000c890000013d00000e290030009c00000e2903008041000000c00130021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000098d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009890000c13d000000000006004b0000099a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000dda0000613d0000001f02400039000000600420018f00000080024001bf000700000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000805000039000000000505041a00000e8d060000410000000707000029000000000067043500000084064001bf0000000000560435000000c40540003900000e8e060000410000000000650435000000a405400039000000080600002900000000006504350000000005000414000000040020008c0000117d0000c13d0000000002470019000600000002001d000000400020043f00000007020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b000000560000c13d0000000702000039000000000202041a00000e7c060000410000000607000029000000000067043500000004067001bf00000e7d070000410000000000760435000000080220027000000e2c02200197000000000005004b000014c00000c13d0000000005000414000000040020008c0000168a0000c13d0000000602400029000700000002001d000000400020043f0000000602000029000000000202043300000e2c0020009c000000560000213d0000000804000039000000000404041a0000000707000029000000440570003900000e9206000041000000000065043500000e8f05000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c000009f50000613d0000000701000029000000400110021000000e290040009c00000e2904008041000000c003400210000000000131019f00000e81011001c7389e38990000040f000000600310027000010e290030019d00000e290330019700030000000103550000000100200190000018a00000613d000000200200008a00000000052301700000001f0630018f000000070450002900000a000000613d000000000701034f0000000708000029000000007907043c0000000008980436000000000048004b000009fc0000c13d000000000006004b00000a0d0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000701400029000000000041004b0000000004000039000000010400403900000e300010009c000000c80000213d0000000100400190000000c80000c13d000000400010043f00000e900030009c000000560000213d000000200030008c000000560000413d0000000704000029000000000404043300000e300040009c000000560000213d000000070630002900000007034000290000001f04300039000000000064004b000000000500001900000e910500804100000e910440019700000e9107600197000000000874013f000000000074004b000000000400001900000e910400404100000e910080009c000000000405c019000000000004004b000000560000c13d000000005403043400000e300040009c000000c80000213d0000001f03400039000000000323016f0000003f03300039000000000323016f000000000313001900000e300030009c000000c80000213d000000400030043f00000000034104360000000007540019000000000067004b000000560000213d000000000724016f0000001f0640018f000000000035004b00001d230000813d000000000007004b00000a4f0000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00000a490000c13d000000000006004b00001d390000613d000000000803001900001d2f0000013d00000e290030009c00000e2903008041000000c00130021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a670000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a630000c13d000000000006004b00000a740000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000de60000613d0000001f02400039000000600420018f00000080024001bf000600000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000805000039000000000505041a00000ea806000041000000060a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000007060000290000000000650435000000a404400039000000080500002900000000005404350000000004000414000000040020008c00000aa00000613d0000004001a0021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c7389e38990000040f000000600310027000010e290030019d00000e290330019700030000000103550000000100200190000013b20000613d000000060a00002900000ede053001980000001f0630018f00000000045a001900000aaa0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000aa60000c13d000000000006004b00000ab70000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900000ede011001970000000002a10019000000000012004b0000000001000039000000010100403900000e300020009c000000c80000213d0000000100100190000000c80000c13d000000400020043f00000e900030009c000000560000213d000000200030008c000000560000413d0000000601000029000000000101043300000e300010009c000000560000213d000000060330002900000006011000290000001f04100039000000000034004b000000000500001900000e910500804100000e910440019700000e9106300197000000000764013f000000000064004b000000000400001900000e910400404100000e910070009c000000000405c019000000000004004b000000560000c13d000000001501043400000e300050009c000000c80000213d00000005045002100000003f0640003900000ea906600197000000000626001900000e300060009c000000c80000213d000000400060043f00000000005204350000000004140019000000000034004b000000560000213d000000000005004b00000af00000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000aeb0000413d000000400100043d000800000001001d389e27880000040f000002180000013d00000e290030009c00000e2903008041000000c00130021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b080000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b040000c13d000000000006004b00000b150000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e2d0000613d0000001f02400039000000600420018f00000080024001bf000800000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000805000039000000000505041a00000e8f06000041000000080a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000b420000613d0000004001a0021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c7389e38990000040f000000600310027000010e290030019d00000e290330019700030000000103550000000100200190000013e20000613d000000080a00002900000ede053001980000001f0630018f00000000045a001900000b4c0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000b480000c13d000000000006004b00000b590000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900000ede041001970000000001a40019000000000041004b0000000004000039000000010400403900000e300010009c000000c80000213d0000000100400190000000c80000c13d000000400010043f00000e900030009c000000560000213d000000200030008c000000560000413d0000000804000029000000000404043300000e300040009c000000560000213d000000080630002900000008034000290000001f04300039000000000064004b000000000500001900000e910500804100000e910440019700000e9107600197000000000874013f000000000074004b000000000400001900000e910400404100000e910080009c000000000405c019000000000004004b000000560000c13d000000004303043400000e300030009c000000c80000213d0000001f0530003900000ede055001970000003f0550003900000ede05500197000000000515001900000e300050009c000000c80000213d000000400050043f00000000053104360000000007430019000000000067004b000000560000213d00000ede063001970000001f0230018f000000000054004b00001aa20000813d000000000006004b00000c420000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000b950000c13d00000c420000013d00000e290030009c00000e2903008041000000c00130021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bb00000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bac0000c13d000000000006004b00000bbd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e700000613d0000001f02400039000000600420018f00000080024001bf000600000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000805000039000000000505041a00000e8f06000041000000060a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000007060000290000000000650435000000a404400039000000080500002900000000005404350000000004000414000000040020008c00000be90000613d0000004001a0021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c7389e38990000040f000000600310027000010e290030019d00000e290330019700030000000103550000000100200190000013ee0000613d000000060a00002900000ede053001980000001f0630018f00000000045a001900000bf30000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000bef0000c13d000000000006004b00000c000000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900000ede041001970000000001a40019000000000041004b0000000004000039000000010400403900000e300010009c000000c80000213d0000000100400190000000c80000c13d000000400010043f00000e900030009c000000560000213d000000200030008c000000560000413d0000000604000029000000000404043300000e300040009c000000560000213d000000060630002900000006034000290000001f04300039000000000064004b000000000500001900000e910500804100000e910440019700000e9107600197000000000874013f000000000074004b000000000400001900000e910400404100000e910080009c000000000405c019000000000004004b000000560000c13d000000004303043400000e300030009c000000c80000213d0000001f0530003900000ede055001970000003f0550003900000ede05500197000000000515001900000e300050009c000000c80000213d000000400050043f00000000053104360000000007430019000000000067004b000000560000213d00000ede063001970000001f0230018f000000000054004b00001aac0000813d000000000006004b00000c420000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000c3c0000c13d000000000002004b00001ac20000613d000000000705001900001ab80000013d00000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c5a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c560000c13d000000000006004b00000c670000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e7c0000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000eaa040000410000000805000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000011ad0000c13d0000000001150019000000400010043f00000008020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000560000c13d00000cd60000013d00000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ca40000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ca00000c13d000000000006004b00000cb10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000ee70000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000e7f040000410000000805000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000011dc0000c13d0000000001150019000000400010043f0000000802000029000000000202043300000e2c0020009c000000560000213d0000000000210435000000400110021000000e7a011001c70000389f0001042e0000000801000029389e344c0000040f0000000701000039000000000201041a000000400b00043d00000e7c0100004100000000001b04350000000401b0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c00000ef30000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f1f0000013d000000000004004b000000000200001900000cf20000613d0000000002010433000000030140021000000edf0110027f00000edf01100167000000000112016f0000000102400210000000000121019f000012240000013d000000000100041400000e290010009c00000e2901008041000000c00110021000000ec3011001c70000800d02000039000000040300003900000ed70400004100000008060000290000000707000029389e38940000040f0000000100200190000000560000613d0000000701000029000000000010043f0000000401000039000000200010043f00000040020000390000000001000019389e387f0000040f000000000201041a00000ec20220019700000008022001af000000000021041b00000000010000190000389f0001042e00000e290010009c00000e2901008041000000c00110021000000e9e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d270000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d230000c13d000000000006004b00000d340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f420000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000000560000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000560000c13d000000000002004b000012bd0000c13d00000ea101000041000000000010043f0000000001000411000000040010043f00000ebd01000041000000240010043f00000e8901000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d560000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d620000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d6e0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d7a0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d860000c13d00001c360000013d00000ed90020009c000004830000613d00000eda0020009c000004830000613d000000800000043f00000e7b010000410000389f0001042e0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d990000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000da50000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000db10000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000dbd0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000dc90000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000dd50000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000de10000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000ded0000c13d00001c360000013d00000e290010009c00000e2901008041000000c00110021000000e9e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e060000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e020000c13d000000000006004b00000e130000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f850000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000560000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000560000c13d000000000003004b000013fa0000c13d00000ea101000041000000000010043f0000000001000411000000040010043f00000ed201000041000000240010043f00000e8901000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e340000c13d00001c360000013d00000e290010009c00000e2901008041000000c00110021000000e9e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e4d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e490000c13d000000000006004b00000e5a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f910000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000560000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000560000c13d000000000001004b000014100000c13d00000ea101000041000000000010043f0000000701000029000012b80000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e770000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e830000c13d00001c360000013d000800000006001d000700000005001d000000000010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000e33011001c70000801002000039389e38990000040f0000000100200190000000560000613d0000000802000029000000020020008c000012750000813d000000a0010000390000020f0000013d00000e290010009c00000e2901008041000000c00110021000000e7e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ead0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ea90000c13d000000000006004b00000eba0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000fd10000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c000000560000413d000000800200043d00000e2c0020009c000000560000213d0000000803000039000000000303041a00000e7f040000410000000605000029000000000045043500000084041001bf0000000000340435000000c40310003900000e80040000410000000000430435000000a403100039000000070400002900000000004304350000000003000414000000040020008c000014270000c13d0000000001150019000500000001001d000000400010043f0000000601000029000000000101043300000e2c0010009c000000560000213d000000000001004b000016ec0000c13d00000e8c01000041000000000010043f0000000701000029000000040010043f00000e8201000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000eee0000c13d00001c360000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700070000000b001d389e38990000040f000000070b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000f0e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000f0a0000c13d000000000006004b00000f1b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000fdd0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000700000002001d00000e300020009c000000c80000213d0000000100100190000000c80000c13d0000000701000029000000400010043f000000200030008c000000560000413d00000000020b043300000e2c0020009c000000560000213d0000000801000039000000000101041a0000000706000029000000440460003900000ea205000041000000000054043500000e8f04000041000000000046043500000004046000390000000000140435000000240160003900000000000104350000000001000414000000040020008c000015a60000c13d0000000301000367000015b60000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f490000c13d00001c360000013d00000e290010009c00000e2901008041000000c00110021000000e9e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f620000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f5e0000c13d000000000006004b00000f6f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012690000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000560000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000560000c13d000000000001004b000015450000c13d00000ea101000041000000000010043f0000000601000029000012b80000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f8c0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f980000c13d00001c360000013d0000000001000411000000000010043f0000000501000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b0000000802000029000000000020043f000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000201041a00000edd022001970000000703000029000000000232019f000000000021041b000000400100043d000000000031043500000e290010009c00000e29010080410000004001100210000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000e33011001c70000800d02000039000000030300003900000eac0400004100000000050004110000000806000029389e38940000040f0000000100200190000017450000c13d000000560000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fd80000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fe40000c13d00001c360000013d00000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000060b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000010000000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000ffc0000c13d000000000006004b0000100d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013660000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000059b0000813d000000560000013d0000000702000039000000000202041a000000ff00200190000013960000c13d00000ebe03000041000000070400002900000000003404350000000003000414000000080220027000000e2c02200197000000040020008c000015490000c13d0000000001140019000000400010043f00000007020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000560000c13d000000000002004b000013970000c13d0000000901000039000000000101041a000000080110027000070e2c0010019c000018540000c13d0000000801000029389e31470000040f00000e85020000410000000000200443000700000001001d000000000100041400000e290010009c00000e2901008041000000c00110021000000e86011001c70000800b02000039389e38990000040f00000001002001900000272a0000613d000000000201043b00000e870020009c000019ad0000413d00000e8801000041000000000010043f0000002001000039000000040010043f000000240020043f00000e8901000041000038a00001043000000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000080b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000010630000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000105f0000c13d000000000006004b000010700000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013a20000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000007ce0000813d000000560000013d000000c002100039000000400020043f0000000b0200003900000008040000290000000000240435000000a00410003900000eb40200004100000000002404350000000902000039000000000202041a000000ff00200190000013ae0000c13d000700000004001d0000000702000039000000000202041a000000400b00043d00000e7c0400004100000000004b04350000000404b0003900000e7d0500004100000000005404350000000004000414000000080220027000000e2c02200197000000040020008c000010c30000613d00000e2900b0009c00000e290100004100000000010b4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e82011001c700060000000b001d389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060b0000290000000605700029000010b00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000010ac0000c13d000000000006004b000010bd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017370000613d0000001f01400039000000600110018f0000000002b10019000000000012004b0000000001000039000000010100403900000e300020009c000000c80000213d0000000100100190000000c80000c13d000000400020043f000000200030008c000000560000413d00000000010b0433000600000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000500000001001d00000eaf01000041000000000010044300000006010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d000000640130003900000000020004100000000000210435000000440130003900000eb602000041000000000021043500000eb70100004100000000001304350000000401300039000300000001001d00000005020000290000000000210435000400000003001d0000002401300039000000000001043500000000010004140000000602000029000000040020008c000011090000613d000000040200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000602000029389e38940000040f000000600310027000010e290030019d0003000000010355000000010020019000001b2a0000613d000000040100002900000e300010009c000000c80000213d0000000403000029000000400030043f0000000701000039000000000201041a00000e7c01000041000000000013043500000e7d01000041000000030300002900000000001304350000000001000414000000080220027000000e2c02200197000000040020008c00001b670000c13d0000000103000031000000200030008c0000002004000039000000000403401900001b910000013d00000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000060b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011360000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011320000c13d000000000006004b000011430000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013be0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000008c00000813d000000560000013d00000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000060b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011650000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011610000c13d000000000006004b000011720000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013ca0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000009770000813d000000560000013d00000e290050009c00000e2905008041000000c0015002100000004003700210000000000131019f00000e81011001c7389e38990000040f000000070b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011940000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011900000c13d000000000006004b000011a10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013d60000613d0000001f02400039000000600420018f0000000002b40019000600000002001d000000400020043f000000200030008c000009bb0000813d000000560000013d00000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000080b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011c40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011c00000c13d000000000006004b000011d10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000141b0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000c880000813d000000560000013d00000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000080b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011f30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011ef0000c13d000000000006004b000012000000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014570000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000cd20000813d000000560000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030700002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000012110000c13d000000000092004b000012220000813d0000000302900210000000f80220018f00000edf0220027f00000edf0220016700000000038300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf000000000010041b0000000001070433000600000001001d00000e300010009c000000c80000213d0000000104000039000000000204041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000052a0000c13d000000200010008c0000000605000029000012470000413d0000000102000039000000000020043f0000001f02500039000000050220027000000e340220009a000000200050008c00000e35020040410000001f01100039000000050110027000000e340110009a000000000012004b000012470000813d000000000002041b0000000102200039000000000012004b000012430000413d0000001f0050008c0000125d0000a13d000300000007001d0000000101000039000000000010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000e33011001c70000801002000039000400000006001d389e38990000040f0000000100200190000000560000613d000000200200008a0000000602200180000000000101043b000016140000c13d00000020030000390000000306000029000016210000013d000000000005004b0000000001000019000012620000613d00000007010000290000000001010433000000030250021000000edf0220027f00000edf02200167000000000121016f0000000102500210000000000121019f000016300000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012700000c13d00001c360000013d000000000101043b000000000300001900000007050000290000000002030019000000000301041a000000a004200039000000000034043500000001011000390000002003200039000000000053004b000012780000413d000000c0012000390000020f0000013d00000e290010009c00000e2901008041000000c00110021000000e9e011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012960000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012920000c13d000000000006004b000012a30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014b40000613d0000001f01400039000000600110018f00000080041001bf000000400040043f000000200030008c000000560000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000560000c13d000000000001004b000017430000c13d00000ea101000041000000000010043f0000000801000029000000040010043f00000e9d01000041000000240010043f00000e8901000041000038a0000104300000000702000039000000000202041a000000ff002001900000188e0000c13d00000ebe04000041000000070500002900000000004504350000000004000414000000080220027000000e2c02200197000000040020008c000016f20000c13d0000000001150019000600000001001d000000400010043f00000007010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000560000c13d000000000001004b0000188d0000c13d0000000701000039000000000201041a00000e7c010000410000000604000029000000000014043500000004014001bf00000e7d0400004100000000004104350000000001000414000000080220027000000e2c02200197000000040020008c000018b80000c13d000000200030008c00000020030080390000001f01300039000000600110018f00000006021000290000002001000039000700000002001d000000400020043f0000000602000029000000000202043300000e2c0020009c000000560000213d0000000803000039000000000303041a00000e83040000410000000705000029000000000045043500000004045001bf0000000000340435000000440350003900000ec0040000410000000000430435000000240350003900000000000304350000000003000414000000040020008c00001a370000c13d0000000702100029000600000002001d000000400020043f00000007020000290000000002020433000700000002001d000000010020003a00001bf00000413d0000000702000039000000000202041a00000e7c030000410000000604000029000000000034043500000004034001bf00000e7d0400004100000000004304350000000003000414000000080220027000000e2c02200197000000040020008c00001ae20000c13d0000000601100029000000400010043f00000006010000290000000001010433000600000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000500000001001d00000eaf01000041000000000010044300000006010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d00000007010000290000000102100039000000400300043d0000006401300039000400000002001d0000000000210435000000440130003900000ec002000041000000000021043500000eba010000410000000001130436000300000001001d000000040130003900000005020000290000000000210435000700000003001d0000002401300039000000000001043500000000010004140000000602000029000000040020008c000013520000613d000000070200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000602000029389e38940000040f000000600310027000010e290030019d0003000000010355000000010020019000001dc10000613d000000070100002900000e300010009c000000c80000213d0000000701000029000000400010043f00000ea30010009c000000c80000213d0000000301000029000000400010043f00000007010000290000000000010435389e28bf0000040f000000000001004b00001e240000613d000000040010006b00001e240000a13d00000ecd01000041000000000010043f00000e8b01000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000136d0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013790000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013850000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013910000c13d00001c360000013d0000000701000029000000440210003900000ebf03000041000000000032043500000024021000390000001003000039000000000032043500000ea602000041000000000021043500000004021000390000002003000039000015960000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013a90000c13d00001c360000013d00000eb501000041000000000010043f00000e8b01000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013b90000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013c50000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013d10000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013dd0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013e90000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013f50000c13d00001c360000013d0000000705000039000000000305041a000000ff0430018f000000080000006b000015770000c13d000000000004004b0000158c0000613d00000edd02300197000000000025041b000000000200041100000000002104350000004001100210000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000e33011001c70000800d02000039000000010300003900000ed404000041000015880000013d0000000803000029000000080130021000000e37011001970000000704000039000000000204041a00000e9f02200197000000000112019f000000000014041b000000000003004b000017450000c13d000016360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014220000c13d00001c360000013d00000e290030009c00000e2903008041000000c0013002100000004003500210000000000131019f00000e81011001c7389e38990000040f000000060b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000143e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000143a0000c13d000000000006004b0000144b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000159a0000613d0000001f01400039000000600110018f0000000001b10019000500000001001d000000400010043f000000200030008c00000edb0000813d000000560000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000145e0000c13d00001c360000013d000000080300002900000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e89011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000008057000290000147c0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000014780000c13d000000000006004b000014890000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000167e0000613d0000001f01400039000000600110018f0000000802100029000000000012004b00000000010000390000000101004039000700000002001d00000e300020009c000000c80000213d0000000100100190000000c80000c13d0000000701000029000000400010043f000000200030008c000000560000413d00000008010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000560000c13d000000000001004b00000f810000613d0000000701000039000000000201041a00000e7c0100004100000007040000290000000000140435000000040140003900000e7d0400004100000000004104350000000001000414000000080220027000000e2c02200197000000040020008c0000193c0000c13d0000002004000039000019660000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014bb0000c13d00001c360000013d0000000005000414000000040020008c000016bb0000c13d0000000602400029000700000002001d000000400020043f0000000602000029000000000202043300000e2c0020009c000000560000213d0000000804000039000000000404041a0000000707000029000000440570003900000e8e06000041000000000065043500000024057000390000000806000029000000000065043500000e8f050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c000014e80000613d0000000701000029000000400110021000000e290040009c00000e2904008041000000c003400210000000000131019f00000e81011001c7389e38990000040f000000600310027000010e290030019d00000e290330019700030000000103550000000100200190000018ac0000613d00000ede053001980000001f0630018f0000000704500029000014f20000613d000000000701034f0000000708000029000000007907043c0000000008980436000000000048004b000014ee0000c13d000000000006004b000014ff0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900000ede041001970000000701400029000000000041004b0000000004000039000000010400403900000e300010009c000000c80000213d0000000100400190000000c80000c13d000000400010043f00000e900030009c000000560000213d000000200030008c000000560000413d0000000704000029000000000404043300000e300040009c000000560000213d000000070630002900000007034000290000001f04300039000000000064004b000000000500001900000e910500804100000e910440019700000e9107600197000000000874013f000000000074004b000000000400001900000e910400404100000e910080009c000000000405c019000000000004004b000000560000c13d000000004303043400000e300030009c000000c80000213d0000001f0530003900000ede055001970000003f0550003900000ede05500197000000000515001900000e300050009c000000c80000213d000000400050043f00000000053104360000000007430019000000000067004b000000560000213d00000ede063001970000001f0230018f000000000054004b00001d420000813d000000000006004b000015410000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000153b0000c13d000000000002004b00001d580000613d000000000705001900001d4e0000013d000000070000006b000017210000c13d0000000a0100003900000d0d0000013d00000e290030009c00000e2903008041000000c0013002100000004003400210000000000131019f00000e8b011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000007057000290000155f0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b0000155b0000c13d000000000006004b0000156c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000172b0000613d0000001f01400039000000600110018f0000000701100029000000400010043f000000200030008c000010260000813d000000560000013d000000000004004b0000158c0000c13d00000edd0230019700000001022001bf000000000025041b000000000200041100000000002104350000004001100210000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000e33011001c70000800d02000039000000010300003900000ed304000041389e38940000040f0000000100200190000000560000613d000017450000013d00000ea603000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900000ed5040000410000000000430435000000a40220003900000014030000390000000000320435000000400110021000000e81011001c7000038a0000104300000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015a10000c13d00001c360000013d000000070300002900000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e81011001c7389e38990000040f000000600310027000010e290030019d00000e290330019700030000000103550000000100200190000017470000613d000000200200008a00000000052301700000001f0630018f0000000704500029000015c10000613d000000000701034f0000000708000029000000007907043c0000000008980436000000000048004b000015bd0000c13d000000000006004b000015ce0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000701400029000000000041004b0000000004000039000000010400403900000e300010009c000000c80000213d0000000100400190000000c80000c13d000000400010043f00000e900030009c000000560000213d000000200030008c000000560000413d0000000704000029000000000404043300000e300040009c000000560000213d000000070630002900000007034000290000001f04300039000000000064004b000000000500001900000e910500804100000e910440019700000e9107600197000000000874013f000000000074004b000000000400001900000e910400404100000e910080009c000000000405c019000000000004004b000000560000c13d000000005403043400000e300040009c000000c80000213d0000001f03400039000000000323016f0000003f03300039000000000323016f000000000313001900000e300030009c000000c80000213d000000400030043f00000000034104360000000007540019000000000067004b000000560000213d000000000724016f0000001f0640018f000000000035004b00001c020000813d000000000007004b000016100000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c0000160a0000c13d000000000006004b00001c180000613d000000000803001900001c0e0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000161a0000c13d0000000605000029000000000052004b0000162c0000813d0000000302500210000000f80220018f00000edf0220027f00000edf0220016700000000036300190000000003030433000000000223016f000000000021041b000000010150021000000001011001bf0000000406000029000000010400003900000e2c00600198000000000014041b0000000601000039000700000004001d000000000041041b0000163a0000c13d00000ea001000041000000000010043f00000e8b01000041000038a0000104300000000701000039000000000201041a00000e3602200197000000080360021000000e3703300197000000000223019f00000001022001bf000000000021041b00000e38010000410000000802000039000000000012041b0000000b01000039000000000001041b00000008010000290000000001010433000600000001001d00000e300010009c000000c80000213d0000000c01000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000052a0000c13d000000200010008c0000166a0000413d0000000c02000039000000000020043f00000006030000290000001f02300039000000050220027000000e390220009a000000200030008c00000e3a020040410000001f01100039000000050110027000000e390110009a000000000012004b0000166a0000813d000000000002041b0000000102200039000000000012004b000016660000413d00000006010000290000001f0010008c000017ac0000a13d0000000c01000039000000000010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000e33011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000200200008a0000000602200180000000000101043b0000191a0000c13d0000002003000039000019270000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016850000c13d00001c360000013d00000e290050009c00000e2905008041000000c0015002100000000603000029000600000003001d0000004003300210000000000113019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000016a20000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b0000169e0000c13d000000000006004b000016af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017530000613d0000001f02400039000000600220018f0000000602200029000700000002001d000000400020043f000000200030008c000009d40000813d000000560000013d00000e290050009c00000e2905008041000000c0015002100000000603000029000600000003001d0000004003300210000000000113019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000016d30000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000016cf0000c13d000000000006004b000016e00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000175f0000613d0000001f02400039000000600220018f0000000602200029000700000002001d000000400020043f000000200030008c000014c60000813d000000560000013d000000080000006b0000176b0000c13d00000e8a01000041000000000010043f00000e8b01000041000038a00001043000000e290040009c00000e2904008041000000c0014002100000004003500210000000000131019f00000e8b011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000017080000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000017040000c13d000000000006004b000017150000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017b80000613d0000001f01400039000000600110018f0000000701100029000600000001001d000000400010043f000000200030008c000012cc0000813d000000560000013d0000000801000029000000080110021000000e37011001970000000902000039000000000302041a00000e9f03300197000000000113019f000000000012041b00000000010000190000389f0001042e0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017320000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000173e0000c13d00001c360000013d000000040000006b000017c40000c13d00000000010000190000389f0001042e0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000174e0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000175a0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017660000c13d00001c360000013d000000080010006c0000189d0000c13d0000000701000039000000000201041a00000e7c0100004100000005030000290000000001130436000800000001001d00000004013001bf00000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c000018e90000c13d00000020010000390000000802000029000000400020043f0000000502000029000000000202043300000e2c0020009c000000560000213d0000000803000039000000000303041a00000e83040000410000000805000029000000000045043500000004045001bf0000000000340435000000440350003900000e840400004100000000004304350000002403500039000000070400002900000000004304350000000003000414000000040020008c00001a680000c13d0000000801100029000000400010043f00000008010000290000000001010433000800000001001d00000e85010000410000000000100443000000000100041400000e290010009c00000e2901008041000000c00110021000000e86011001c70000800b02000039389e38990000040f00000001002001900000272a0000613d000000000101043b00000e870010009c00001beb0000413d00000e8802000041000000000020043f0000002002000039000000040020043f000000240010043f00000e8901000041000038a000010430000000060000006b0000000001000019000017b10000613d000000050100002900000000010104330000000604000029000000030240021000000edf0220027f00000edf02200167000000000121016f0007000100400218000019340000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017bf0000c13d00001c360000013d000000000a040019000800000000001d0000000801000029000000050110021000000003011000290000000201100367000000000101043b000600000001001d0000000701000039000000000201041a00000e7c0100004100000000001a04350000000401a0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c000017dd0000c13d0000000103000031000000200030008c00000020040000390000000004034019000018080000013d00000e2900a0009c00000e290300004100000000030a4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700070000000a001d389e38990000040f000000070a000029000000600310027000000e2903300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000017f70000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000017f30000c13d0000001f07400190000018040000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ac90000613d0000001f01400039000000600110018f0000000001a1001900000e300010009c000000c80000213d000000400010043f000000200030008c000000560000413d00000000020a043300000e2c0020009c000000560000213d0000000801000039000000000101041a000500000001001d00000eaf010000410000000000100443000700000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b0000000703000029000000560000613d000000400a00043d0000006401a00039000000010200003900000000002104350000004401a0003900000eb10200004100000000002104350000002401a000390000000602000029000000000021043500000eb20100004100000000001a04350000000401a00039000000050200002900000000002104350000000001000414000000040030008c0000184b0000613d00000e2900a0009c00000e290200004100000000020a4019000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c7000000000203001900070000000a001d389e38940000040f000000070a000029000000600310027000010e290030019d0003000000010355000000010020019000001ad50000613d00000e3000a0009c000000c80000213d0000004000a0043f00000008020000290000000102200039000800000002001d000000040020006c000017c60000413d000017450000013d00000eaf01000041000000000010044300000007010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d00000044013000390000000802000029000000000021043500000ec1010000410000000000130435000000000100041000000e2c011001970000000402300039000000000012043500000064013000390000000000010435000600000003001d0000002401300039000000000001043500000000010004140000000702000029000000040020008c000018870000613d000000060200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000702000029389e38940000040f000000600310027000010e290030019d0003000000010355000000010020019000001b5a0000613d000000060100002900000e300010009c000000c80000213d0000000601000029000000400010043f000010340000013d000700060000002d0000000703000029000000440130003900000ebf02000041000000000021043500000024013000390000001002000039000000000021043500000ea6010000410000000000130435000000040130003900000020020000390000000000210435000000400130021000000e81011001c7000038a000010430000000000100001900000005020000290000036e0000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018a70000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018b30000c13d00001c360000013d00000e290010009c00000e2901008041000000c0011002100000000603000029000600000003001d0000004003300210000000000113019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000018d00000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000018cc0000c13d000000000006004b000018dd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001a130000613d0000001f01400039000000600110018f0000000602100029000700000002001d000000400020043f000000200030008c000012ea0000813d000000560000013d00000e290010009c00000e2901008041000000c0011002100000000503000029000500000003001d0000004003300210000000000113019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000019010000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000018fd0000c13d000000000006004b0000190e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001a1f0000613d0000001f01400039000000600110018f0000000502100029000800000002001d000000400020043f000000200030008c0000177e0000813d000000560000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000080600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000019200000c13d000000060020006c000019320000813d00000006020000290000000302200210000000f80220018f00000edf0220027f00000edf0220016700000008033000290000000003030433000000000223016f000000000021041b0000000601000029000000010110021000000007011001af0000000c02000039000000000012041b00000020010000390000010000100443000001200000044300000e3b010000410000389f0001042e000000070300002900000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000019550000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000019510000c13d000000000006004b000019620000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001a2b0000613d0000001f01400039000000600110018f000000070110002900000e300010009c000000c80000213d000000400010043f000000200030008c000000560000413d00000007010000290000000001010433000800000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000700000001001d00000eaf01000041000000000010044300000008010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400500043d000000640150003900000080020000390000000000210435000000440150003900000ea202000041000000000021043500000eb8010000410000000000150435000000040150003900000007020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d000000000012043500000ede041001970000001f0310018f000700000005001d000000a402500039000000a10020008c00001ca50000413d000000000004004b000019a80000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c000019a20000c13d000000000003004b00001cbb0000613d000000a004000039000000000502001900001cb10000013d0000000801000029389e36fc0000040f0000000801000029389e27e10000040f000000000001004b00001f350000c13d0000000801000029389e31470000040f00060e2c0010019c00001b370000c13d0000000801000029000000000010043f0000000201000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000201041a00000ec202200197000000000021041b000000000100041400000e290010009c00000e2901008041000000c00110021000000ec3011001c70000800d02000039000000040300003900000ec404000041000000060500002900000000060000190000000807000029389e38940000040f0000000100200190000000560000613d000000400100043d00000020020000390000000002210436000000000002043500000e2d0010009c000000c80000213d0000004003100039000000400030043f00000e290020009c00000e29020080410000004002200210000000000101043300000e290010009c00000e29010080410000006001100210000000000121019f000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000ec3011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000500000001001d389e329a0000040f000000010210003a00001bf00000613d0000000501000029389e37bd0000040f000000070100002900000e2c0310019800001e280000c13d0000000a01000039000000000101041a00050e2c0010019c00001e4b0000c13d000000400100043d000700000001001d000400040010003d0000000701000039000000000201041a00000e7c010000410000000703000029000000000013043500000e7d01000041000000040300002900000000001304350000000001000414000000080220027000000e2c02200197000000040020008c00001fc60000c13d0000000103000031000000200030008c0000002004000039000000000403401900001ff10000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a1a0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a260000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a320000c13d00001c360000013d00000e290030009c00000e2903008041000000c0013002100000000703000029000700000003001d0000004003300210000000000113019f00000e81011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900001a4f0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00001a4b0000c13d000000000006004b00001a5c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b120000613d0000001f01400039000000600110018f0000000702100029000600000002001d000000400020043f000000200030008c000013000000813d000000560000013d00000e290030009c00000e2903008041000000c0013002100000000803000029000800000003001d0000004003300210000000000113019f00000e81011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900001a800000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00001a7c0000c13d000000000006004b00001a8d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b1e0000613d0000001f01400039000000600110018f0000000801100029000000400010043f000000200030008c000017940000813d000000560000013d0000000007650019000000000006004b00001ab50000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001a9d0000c13d00001ab50000013d0000000007650019000000000006004b00001ab50000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001aa70000c13d00001ab50000013d0000000007650019000000000006004b00001ab50000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001ab10000c13d000000000002004b00001ac20000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f0000000000270435000000000253001900000000000204350000002002000039000000400300043d000800000003001d0000000002230436000002170000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ad00000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001add0000c13d00001c360000013d00000e290030009c00000e2903008041000000c0013002100000000603000029000600000003001d0000004003300210000000000113019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900001afa0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001af60000c13d000000000006004b00001b070000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001bf60000613d0000001f01400039000000600110018f0000000601100029000000400010043f000000200030008c000013140000813d000000560000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b190000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b250000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b320000c13d00001c360000013d0000000801000029000000000010043f0000000401000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000201041a00000ec202200197000000000021041b0000000601000029000000000010043f0000000301000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000201041a000000010220008a000000000021041b000019b70000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b620000c13d00001c360000013d000000040300002900000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040570002900001b800000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b00001b7c0000c13d000000000006004b00001b8d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001c2b0000613d0000001f01400039000000600110018f000000040110002900000e300010009c000000c80000213d000000400010043f000000200030008c000000560000413d00000004010000290000000001010433000600000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000500000001001d00000eaf01000041000000000010044300000006010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d000000640130003900000000020004110000000000210435000000440130003900000e8002000041000000000021043500000eb70100004100000000001304350000000401300039000300000001001d00000005020000290000000000210435000400000003001d0000002401300039000000000001043500000000010004140000000602000029000000040020008c00001bd50000613d000000040200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000602000029389e38940000040f000000600310027000010e290030019d0003000000010355000000010020019000001f460000613d000000040100002900000e300010009c000000c80000213d0000000403000029000000400030043f0000000701000039000000000201041a00000e7c01000041000000000013043500000e7d01000041000000030300002900000000001304350000000001000414000000080220027000000e2c02200197000000040020008c00001f530000c13d0000000103000031000000200030008c0000002004000039000000000403401900001f7d0000013d000000080200002900000e2902200197000000000121004900000e290010009c00001c490000a13d00000ebc01000041000000000010043f0000001101000039000000040010043f00000e8201000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bfd0000c13d00001c360000013d0000000008730019000000000007004b00001c0b0000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b00001c070000c13d000000000006004b00001c180000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000004010433000000000004004b00001c240000c13d000000400100043d00000ea30010009c000000c80000213d0000002002100039000000400020043f000000000001043500001d5a0000013d000000080400002900000e930040009c00001c4d0000413d0000004006000039000000080400002900000e930440012a00001c560000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c320000c13d000000000005004b00001c430000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a000010430000000400200043d000500000002001d00000005020000290000036e0000013d000000080400002900000e950040009c00000e940440212a0000000006000039000000200600203900000e960040009c00000010066081bf00000e970440819700000e960440812a00000e980040009c000000080660803900000e300440819700000e980440812a000027100040008c000000040660803900000e2904408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b0000000008000039000000010800403900000e300040009c000000c80000213d0000000100800190000000c80000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f00001c7f0000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b00001c7b0000c13d000000000007004b000000000665001900000021066000390000000809000029000000090090008c0000000a7990011a0000000307700210000000010660008a000000000806043300000e990880019700000e9a0770021f00000e9b07700197000000000787019f000000000076043500001c830000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b00001cde0000813d000000000009004b00001ca10000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c00001c9b0000c13d000000000008004b00001cf40000613d000000000a07001900001cea0000013d0000000005420019000000000004004b00001cae0000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b00001caa0000c13d000000000003004b00001cbb0000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000803000029000000040030008c00001cd70000613d0000001f0110003900000ede01100197000000a40110003900000e290010009c00000e29010080410000006001100210000000070300002900000e290030009c00000e29030080410000004003300210000000000131019f00000e290020009c00000e2902008041000000c002200210000000000121019f0000000802000029389e38940000040f000000600310027000010e290030019d0003000000010355000000010020019000001db40000613d000000070100002900000e300010009c000000c80000213d0000000701000029000000400010043f00000000010000190000389f0001042e000000000a970019000000000009004b00001ce70000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b00001ce30000c13d000000000008004b00001cf40000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b00001d0b0000813d000000000007004b00001d070000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001d010000c13d000000000006004b00001d210000613d000000000803001900001d170000013d0000000008730019000000000007004b00001d140000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b00001d100000c13d000000000006004b00001d210000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000353001900001e120000013d0000000008730019000000000007004b00001d2c0000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b00001d280000c13d000000000006004b00001d390000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f000000000058043500000000043400190000000000040435000000080400002900000e930040009c00001d5c0000413d0000004006000039000000080400002900000e930440012a00001d650000013d0000000007650019000000000006004b00001d4b0000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001d470000c13d000000000002004b00001d580000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d00001e220000013d000000080400002900000e950040009c00000e940440212a0000000006000039000000200600203900000e960040009c00000010066081bf00000e970440819700000e960440812a00000e980040009c000000080660803900000e300440819700000e980440812a000027100040008c000000040660803900000e2904408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b0000000008000039000000010800403900000e300040009c000000c80000213d0000000100800190000000c80000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f00001d8e0000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b00001d8a0000c13d000000000007004b000000000665001900000021066000390000000809000029000000090090008c0000000a7990011a0000000307700210000000010660008a000000000806043300000e990880019700000e9a0770021f00000e9b07700197000000000787019f000000000076043500001d920000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b00001dce0000813d000000000009004b00001db00000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c00001daa0000c13d000000000008004b00001de40000613d000000000a07001900001dda0000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001dbc0000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001dc90000c13d00001c360000013d000000000a970019000000000009004b00001dd70000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b00001dd30000c13d000000000008004b00001de40000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b00001dfb0000813d000000000007004b00001df70000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001df10000c13d000000000006004b00001e110000613d000000000803001900001e070000013d0000000008730019000000000007004b00001e040000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b00001e000000c13d000000000006004b00001e110000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000335001900000000000304350000000003130049000000200430008a00000000004104350000001f03300039000000000223016f0000000004120019000000000024004b0000000002000039000000010200403900000e300040009c000000c80000213d0000000100200190000000c80000c13d0000000003040019000000400040043f000000200200003900001ac60000013d000000080000006b00001e850000c13d00000eca01000041000001250000013d000000400100043d00000020020000390000000002210436000000000032043500000e2d0010009c000000c80000213d0000004003100039000000400030043f00000e290020009c00000e29020080410000004002200210000000000101043300000e290010009c00000e29010080410000006001100210000000000121019f000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000ec3011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000700000001001d389e329a0000040f000000000001004b00001bf00000613d000000010210008a0000000701000029389e37bd0000040f000019fa0000013d00000eaf01000041000000000010044300000005010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d00000044013000390000000802000029000000000021043500000ec1010000410000000000130435000000000100041000000e2c011001970000000402300039000400000002001d000000000012043500000064013000390000000000010435000700000003001d0000002401300039000000000001043500000000010004140000000502000029000000040020008c00001e7f0000613d000000070200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000502000029389e38940000040f000000600310027000010e290030019d00030000000103550000000100200190000020980000613d000000070100002900000e300010009c000000c80000213d0000000701000029000000400010043f00001a010000013d0000000901000039000000000101041a000000080110027000060e2c0010019c000020460000c13d0000000401000029389e31470000040f00000e85020000410000000000200443000600000001001d000000000100041400000e290010009c00000e2901008041000000c00110021000000e86011001c70000800b02000039389e38990000040f00000001002001900000272a0000613d000000000201043b00000e870020009c000010450000813d0000000401000029389e36fc0000040f0000000401000029389e27e10000040f000000000001004b00001f350000c13d0000000401000029389e31470000040f00050e2c0010019c00001ec70000613d0000000401000029000000000010043f0000000401000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000201041a00000ec202200197000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000801000029000000000010043f0000000301000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000000000201041a00000ec2022001970000000806000029000000000262019f000000000021041b000000000100041400000e290010009c00000e2901008041000000c00110021000000ec3011001c70000800d02000039000000040300003900000ec40400004100000005050000290000000407000029389e38940000040f0000000100200190000000560000613d000000400100043d000000200200003900000000022104360000000803000029000000000032043500000e2d0010009c000000c80000213d0000004003100039000000400030043f00000e290020009c00000e29020080410000004002200210000000000101043300000e290010009c00000e29010080410000006001100210000000000121019f000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000ec3011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000200000001001d389e329a0000040f000000010210003a00001bf00000613d0000000201000029389e37bd0000040f000000060100002900000e2c03100198000021ad0000c13d0000000a01000039000000000101041a00020e2c0010019c000021d00000c13d000000400100043d000600000001001d000100040010003d0000000701000039000000000201041a00000e7c010000410000000603000029000000000013043500000e7d01000041000000010300002900000000001304350000000001000414000000080220027000000e2c02200197000000040020008c0000220b0000c13d0000000104000031000000200040008c0000002004008039000022360000013d000000400100043d000000440210003900000ed003000041000000000032043500000024021000390000001b03000039000000000032043500000ea602000041000000000021043500000004021000390000002003000039000000000032043500000e290010009c00000e2901008041000000400110021000000e81011001c7000038a00001043000000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f4e0000c13d00001c360000013d000000040300002900000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040570002900001f6c0000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b00001f680000c13d000000000006004b00001f790000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020800000613d0000001f01400039000000600110018f000000040110002900000e300010009c000000c80000213d000000400010043f000000200030008c000000560000413d00000004010000290000000001010433000600000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000500000001001d00000eaf01000041000000000010044300000006010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400500043d000000640150003900000080020000390000000000210435000000440150003900000e8e02000041000000000021043500000eb80100004100000000001504350000000401500039000300000001001d0000000502000029000000000021043500000024015000390000000000010435000000080100002900000000010104330000008402500039000000000012043500000ede041001970000001f0310018f000400000005001d000000a402500039000000070020006b000020b20000813d000000000004004b00001fc20000613d00000007063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00001fbc0000c13d000000000003004b000020c90000613d0000000005020019000020be0000013d0000000703000029000700000003001d00000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900001fe00000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00001fdc0000c13d000000000006004b00001fed0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000208c0000613d0000001f01400039000000600210018f0000000701200029000000000021004b0000000002000039000000010200403900000e300010009c000000c80000213d0000000100200190000000c80000c13d000000400010043f000000200030008c000000560000413d00000007010000290000000001010433000700000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000500000001001d00000eaf01000041000000000010044300000007010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d000000440130003900000e8002000041000000000021043500000024013000390000000802000029000000000021043500000eb7010000410000000000130435000000040130003900000005020000290000000000210435000500000003001d0000006401300039000000000001043500000000010004140000000702000029000000040020008c000020390000613d000000050200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000702000029389e38940000040f000000600310027000010e290030019d00030000000103550000000100200190000021080000613d000000050100002900000e300010009c000000c80000213d0000000501000029000000400010043f000000060000006b000017450000c13d00000e8c01000041000000000010043f0000000801000029000000040010043f00000e8201000041000038a00001043000000eaf01000041000000000010044300000006010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d00000044013000390000000402000029000000000021043500000024013000390000000802000029000000000021043500000ec1010000410000000000130435000000000100041000000e2c0110019700000004023000390000000000120435000500000003001d0000006401300039000000000001043500000000010004140000000602000029000000040020008c0000207a0000613d000000050200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000602000029389e38940000040f000000600310027000010e290030019d00030000000103550000000100200190000020a50000613d000000050100002900000e300010009c000000c80000213d0000000501000029000000400010043f00001e8a0000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020870000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020930000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020a00000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020ad0000c13d00001c360000013d0000000005420019000000000004004b000020bb0000613d0000000706000029000000000702001900000000680604340000000007870436000000000057004b000020b70000c13d000000000003004b000020c90000613d000700070040002d0000000303300210000000000405043300000000043401cf000000000434022f000000070600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000603000029000000040030008c000020e50000613d0000001f0110003900000ede01100197000000a40110003900000e290010009c00000e29010080410000006001100210000000040300002900000e290030009c00000e29030080410000004003300210000000000131019f00000e290020009c00000e2902008041000000c002200210000000000112019f0000000602000029389e38940000040f000000600310027000010e290030019d00030000000103550000000100200190000020fb0000613d000000040100002900000e300010009c000000c80000213d0000000403000029000000400030043f0000000701000039000000000201041a00000e7c01000041000000000013043500000e7d01000041000000030300002900000000001304350000000001000414000000080220027000000e2c02200197000000040020008c000021150000c13d0000000103000031000000200030008c000000200400003900000000040340190000213f0000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021030000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021100000c13d00001c360000013d000000040300002900000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000004057000290000212e0000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b0000212a0000c13d000000000006004b0000213b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000021a10000613d0000001f01400039000000600110018f000000040110002900000e300010009c000000c80000213d000000400010043f000000200030008c000000560000413d00000004010000290000000001010433000800000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000700000001001d00000eaf01000041000000000010044300000008010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d000000640130003900000e38020000410000000000210435000000440130003900000eb902000041000000000021043500000eba0100004100000000001304350000000401300039000500000001001d00000007020000290000000000210435000600000003001d0000002401300039000000000001043500000000010004140000000802000029000000040020008c000021830000613d000000060200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000802000029389e38940000040f000000600310027000010e290030019d000300000001035500000001002001900000229a0000613d000000060100002900000e300010009c000000c80000213d0000000604000029000000400040043f0000000902000039000000000102041a00000edd0110019700000001011001bf000000000012041b0000000b01000039000000000101041a000800000001001d0000000701000039000000000201041a00000e7c01000041000000000014043500000e7d01000041000000050300002900000000001304350000000001000414000000080220027000000e2c02200197000000040020008c000022a70000c13d0000000103000031000000200030008c00000020040000390000000004034019000022d10000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021a80000c13d00001c360000013d000000400100043d00000020020000390000000002210436000000000032043500000e2d0010009c000000c80000213d0000004003100039000000400030043f00000e290020009c00000e29020080410000004002200210000000000101043300000e290010009c00000e29010080410000006001100210000000000121019f000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000ec3011001c70000801002000039389e38990000040f0000000100200190000000560000613d000000000101043b000600000001001d389e329a0000040f000000000001004b00001bf00000613d000000010210008a0000000601000029389e37bd0000040f00001f1d0000013d00000eaf01000041000000000010044300000002010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d00000044013000390000000402000029000000000021043500000024013000390000000802000029000000000021043500000ec1010000410000000000130435000000000100041000000e2c011001970000000402300039000100000002001d0000000000120435000600000003001d0000006401300039000000000001043500000000010004140000000202000029000000040020008c000022050000613d000000060200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000202000029389e38940000040f000000600310027000010e290030019d000300000001035500000001002001900000234d0000613d000000060100002900000e300010009c000000c80000213d0000000601000029000000400010043f00001f240000013d0000000603000029000600000003001d00000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000022250000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000022210000c13d000000000006004b000022320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023350000613d0000001f01400039000000600210018f0000000601200029000000000021004b0000000002000039000000010200403900000e300010009c000000c80000213d0000000100200190000000c80000c13d000000400010043f000000200040008c000000560000413d00000006010000290000000001010433000600000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000200000001001d00000eaf01000041000000000010044300000006010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d000000640130003900000008020000290000000000210435000000440130003900000e8002000041000000000021043500000024013000390000000402000029000000000021043500000eb7010000410000000000130435000100000003001d00000004013000390000000202000029000000000021043500000000010004140000000602000029000000040020008c0000227f0000613d000000010200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000602000029389e38940000040f000000600310027000010e290030019d000300000001035500000001002001900000235a0000613d000000010100002900000e300010009c000000c80000213d0000000101000029000000400010043f000000050000006b000023670000c13d00000eaf01000041000000000010044300000008010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000400200043d000600000002001d000000000101043b000000000001004b000023690000c13d000700060000002d0000244b0000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022a20000c13d00001c360000013d000000060300002900000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000022c00000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000022bc0000c13d000000000006004b000022cd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023410000613d0000001f01400039000000600110018f000000060110002900000e300010009c000000c80000213d000000400010043f000000200030008c000000560000413d00000006010000290000000001010433000700000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000600000001001d00000eaf01000041000000000010044300000007010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d000000640130003900000008020000290000000000210435000000440130003900000ebb02000041000000000021043500000eba010000410000000001130436000500000001001d000000040130003900000006020000290000000000210435000800000003001d0000002401300039000000000001043500000000010004140000000702000029000000040020008c000023150000613d000000080200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000702000029389e38940000040f000000600310027000010e290030019d00030000000103550000000100200190000023910000613d000000080100002900000e300010009c000000c80000213d0000000801000029000000400010043f0000000c01000039000000000501041a000000010350019000000001045002700000007f0240018f0000000004026019000700000004001d0000001f0040008c00000000040000390000000104002039000600000005001d000000000445013f00000001004001900000052a0000c13d000000080400002900000007050000290000000000540435000000000003004b0000239e0000c13d000001000100008a000000060110017f00000005030000290000000000130435000000000002004b0000000001030019000000200110c039000023df0000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000233c0000c13d00001c360000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023480000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023550000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023620000c13d00001c360000013d00000ec501000041000001250000013d000000060300002900000064013000390000008002000039000500000002001d000000000021043500000044013000390000000402000029000000000021043500000ec601000041000000000013043500000004013000390000000002000411000000000021043500000024013000390000000000010435000000070100002900000000010104330000008402300039000000000012043500000ede051001970000001f0410018f000000a403300039000000030030006b000023ad0000813d000000000005004b0000238d0000613d00000003074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000023870000c13d000000000004004b000023c40000613d0000000006030019000023b90000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023990000c13d00001c360000013d000000000010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000e33011001c70000801002000039389e38990000040f0000000100200190000000560000613d0000000602000029000000020020008c000023d30000813d0000002001000039000023de0000013d0000000006530019000000000005004b000023b60000613d0000000307000029000000000803001900000000790704340000000008980436000000000068004b000023b20000c13d000000000004004b000023c40000613d000300030050002d0000000304400210000000000506043300000000054501cf000000000545022f000000030700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000000003310019000000000003043500000000030004140000000804000029000000040040008c000023fe0000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000a00000000003d000024330000013d000000000101043b0000000002000019000000000302001900000020022000390000000804200029000000000501041a00000000005404350000000101100039000000070020006c000023d50000413d00000040013000390000000801100029000000080110006a0000001f0110003900000ede011001970000000802100029000000000012004b00000000010000390000000101004039000700000002001d00000e300020009c000000c80000213d0000000100100190000000c80000c13d0000000703000029000000400030043f0000000701000039000000000201041a00000e7c010000410000000000130435000000040130003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c0000245c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000024860000013d0000001f0110003900000ede01100197000000a40110003900000e290010009c00000e29010080410000006001100210000000060200002900000e290020009c00000e29020080410000004002200210000000000121019f00000e290030009c00000e2903008041000000c002300210000000000112019f0000000802000029389e38940000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000006057000290000241e0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b0000241a0000c13d000000000006004b0000242b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000090550008a0000000505500210000900000000003d0000000100200190000024ce0000613d0000001f01400039000000600110018f0000000602100029000000000012004b00000000010000390000000101004039000700000002001d00000e300020009c000000c80000213d0000000100100190000000c80000c13d0000000701000029000000400010043f000000200030008c000000560000413d0000000601000029000000000101043300000ec800100198000000560000c13d0000000502500270000000000201001f00000ec90110019700000ec60010009c000025970000c13d0000000701000039000000000201041a00000e7c0100004100000007030000290000000000130435000000040130003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c000024d20000c13d0000000104000031000000200040008c0000002004008039000024fd0000013d000000070300002900000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000024750000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000024710000c13d000000000006004b000024820000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025270000613d0000001f01400039000000600110018f000000070110002900000e300010009c000000c80000213d000000400010043f000000200030008c000000560000413d00000007010000290000000001010433000700000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000600000001001d00000eaf01000041000000000010044300000007010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400500043d000000640150003900000080020000390000000000210435000000440150003900000e9202000041000000000021043500000eb801000041000000000015043500000004015000390000000602000029000000000021043500000024015000390000000000010435000000840250003900000008010000290000000001010433000000000012043500000ede041001970000001f0310018f000800000005001d000000a402500039000000050020006b000025330000813d000000000004004b000024ca0000613d00000005063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000024c40000c13d000000000003004b0000254a0000613d00000000050200190000253f0000013d000000000003004b0000256d0000c13d0000006002000039000025940000013d0000000703000029000700000003001d00000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000024ec0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000024e80000c13d000000000006004b000024f90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025990000613d0000001f01400039000000600110018f0000000703100029000000000013004b00000000020000390000000102004039000600000003001d00000e300030009c000000c80000213d0000000100200190000000c80000c13d0000000602000029000000400020043f000000200040008c000000560000413d0000000702000029000000000202043300000e2c0020009c000000560000213d0000000803000039000000000303041a0000000606000029000000440460003900000eb105000041000000000054043500000024046000390000000405000029000000000054043500000eaa040000410000000000460435000000040460003900000000003404350000000003000414000000040020008c000025a50000c13d0000000602100029000800000002001d00000e300020009c000000c80000213d0000000802000029000000400020043f000025d90000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000252e0000c13d00001c360000013d0000000005420019000000000004004b0000253c0000613d0000000506000029000000000702001900000000680604340000000007870436000000000057004b000025380000c13d000000000003004b0000254a0000613d000500050040002d0000000303300210000000000405043300000000043401cf000000000434022f000000050600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000703000029000000040030008c000025660000613d0000001f0110003900000ede01100197000000a40110003900000e290010009c00000e29010080410000006001100210000000080300002900000e290030009c00000e29030080410000004003300210000000000131019f00000e290020009c00000e2902008041000000c002200210000000000112019f0000000702000029389e38940000040f000000600310027000010e290030019d00030000000103550000000100200190000025f40000613d000000080100002900000e300010009c000000c80000213d0000000801000029000000400010043f00000000010000190000389f0001042e0000001f0230003900000e2a022001970000003f0220003900000ec704200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000e300040009c000000c80000213d0000000100500190000000c80000c13d000000400040043f0000001f0430018f000000000632043600000e2b05300198000500000006001d0000000003560019000025870000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b000025830000c13d000000000004004b000025940000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000026010000c13d00000eca01000041000020410000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025a00000c13d00001c360000013d000000060100002900000e290010009c00000e2901008041000000400110021000000e290030009c00000e2903008041000000c003300210000000000113019f00000e81011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000025be0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000025ba0000c13d000000000006004b000025cb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000026060000613d0000001f01400039000000600110018f0000000602100029000800000002001d00000e300020009c000000c80000213d0000000802000029000000400020043f000000200030008c000000560000413d00000006020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000560000c13d000000000002004b000027270000c13d0000000702000039000000000202041a00000e7c0300004100000008040000290000000000340435000000040340003900000e7d0400004100000000004304350000000003000414000000080220027000000e2c02200197000000040020008c000026120000c13d000000080110002900000e300010009c000000c80000213d000000400010043f000026450000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025fc0000c13d00001c360000013d00000e290010009c00000e29010080410000006001100210000000050200002900001c440000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000260d0000c13d00001c360000013d0000000801000029000800000001001d00000e290010009c00000e2901008041000000400110021000000e290030009c00000e2903008041000000c003300210000000000113019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000008057000290000262c0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000026280000c13d000000000006004b000026390000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000026970000613d0000001f01400039000000600110018f000000080110002900000e300010009c000000c80000213d000000400010043f000000200030008c000000560000413d00000008010000290000000001010433000700000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000600000001001d00000eaf01000041000000000010044300000007010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d000000640130003900000001020000390000000000210435000000440130003900000ecb02000041000000000021043500000024013000390000000402000029000000000021043500000eb2010000410000000000130435000800000003001d00000004023000390000000601000029000500000002001d000000000012043500000000010004140000000702000029000000040020008c000026820000613d000000080200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000702000029389e38940000040f000000600310027000010e290030019d00030000000103550000000100200190000026a30000613d000000080100002900000e300010009c000000c80000213d0000000803000029000000400030043f0000000701000039000000000201041a00000e7c01000041000000000013043500000e7d01000041000000050300002900000000001304350000000001000414000000080220027000000e2c02200197000000040020008c000026b00000c13d0000000104000031000000200040008c0000002004008039000026da0000013d0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000269e0000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026ab0000c13d00001c360000013d000000080300002900000e290030009c00000e2903008041000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000026c90000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000026c50000c13d000000000006004b000026d60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000272b0000613d0000001f01400039000000600110018f000000080110002900000e300010009c000000c80000213d000000400010043f000000200040008c000000560000413d00000008010000290000000001010433000800000001001d00000e2c0010009c000000560000213d0000000801000039000000000101041a000600000001001d00000eaf01000041000000000010044300000008010000290000000400100443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f00000001002001900000272a0000613d000000000101043b000000000001004b000000560000613d000000400300043d000000640130003900000001020000390000000000210435000000440130003900000ecc02000041000000000021043500000024013000390000000402000029000000000021043500000eba010000410000000000130435000700000003001d00000004013000390000000602000029000000000021043500000000010004140000000802000029000000040020008c0000271e0000613d000000070200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000802000029389e38940000040f000000600310027000010e290030019d00030000000103550000000100200190000027370000613d000000070100002900000e300010009c000000c80000213d0000000701000029000000400010043f0000000401000029389e35430000040f000000400100043d000800000001001d000000040100002900000008020000290000036e0000013d000000000001042f0000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027320000c13d00001c360000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d000000000462001900001c360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000273f0000c13d00001c360000013d0000000043010434000000000132043600000ede063001970000001f0530018f000000000014004b0000275a0000813d000000000006004b000027560000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000027500000c13d000000000005004b000027700000613d0000000007010019000027660000013d0000000007610019000000000006004b000027630000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b0000275f0000c13d000000000005004b000027700000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900000ede023001970000000001210019000000000001042d00000e900010009c000027860000213d000000630010008c000027860000a13d00000002030003670000000401300370000000000101043b00000e2c0010009c000027860000213d0000002402300370000000000202043b00000e2c0020009c000027860000213d0000004403300370000000000303043b000000000001042d0000000001000019000038a00001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b000027960000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b000027900000413d000000000001042d0000001f0220003900000ede022001970000000001120019000000000021004b0000000002000039000000010200403900000e300010009c000027a30000213d0000000100200190000027a30000c13d000000400010043f000000000001042d00000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a00001043000000ee00020009c000027d90000813d00000000040100190000001f0120003900000ede011001970000003f0110003900000ede05100197000000400100043d0000000005510019000000000015004b0000000007000039000000010700403900000e300050009c000027d90000213d0000000100700190000027d90000c13d000000400050043f00000000052104360000000007420019000000000037004b000027df0000213d00000ede062001980000001f0720018f00000002044003670000000003650019000027c90000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000027c50000c13d000000000007004b000027d60000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a0000104300000000001000019000038a00001043000020000000000020000000702000039000000000202041a000000400c00043d00000e7c0300004100000000003c04350000000404c0003900000e7d0300004100000000003404350000000004000414000000080220027000000e2c02200197000000040020008c000027f40000c13d0000000103000031000000200030008c00000020040000390000000004034019000028220000013d000100000001001d00000e2900c0009c00000e290300004100000000030c4019000000400330021000000e290040009c00000e2904008041000000c001400210000000000131019f00000e82011001c700020000000c001d389e38990000040f000000020c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000028100000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000280c0000c13d000000000006004b0000281d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000028830000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b0000000002000039000000010200403900000e3000b0009c0000287d0000213d00000001002001900000287d0000c13d0000004000b0043f0000001f0030008c0000287b0000a13d00000000020c043300000e2c0020009c0000287b0000213d0000000804000039000000000404041a0000004405b0003900000ee10600004100000000006504350000002405b00039000000000015043500000eaa0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000286e0000613d00000e2900b0009c00000e290100004100000000010b4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700020000000b001d389e38990000040f000000020b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000285b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000028570000c13d000000000006004b000028680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000028a10000613d0000001f01400039000000600710018f0000000001b7001900000e300010009c0000287d0000213d000000400010043f000000200030008c0000287b0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000287b0000c13d000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d00000000046200190000288e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000288a0000c13d000000000005004b0000289b0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000028ac0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028a80000c13d000000000005004b000028b90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000121019f000038a00001043000010000000000020000000701000039000000000201041a000000400c00043d00000e7c0100004100000000001c04350000000401c0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c000028d20000c13d0000000103000031000000200030008c00000020040000390000000004034019000028fe0000013d00000e2900c0009c00000e290300004100000000030c4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700010000000c001d389e38990000040f000000010c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000028ed0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000028e90000c13d000000000006004b000028fa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000295a0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b0000000002000039000000010200403900000e3000b0009c000029540000213d0000000100200190000029540000c13d0000004000b0043f0000001f0030008c000029520000a13d00000000020c043300000e2c0020009c000029520000213d0000000804000039000000000404041a0000004405b0003900000ebb06000041000000000065043500000e830500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c0000294a0000613d00000e2900b0009c00000e290100004100000000010b4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700010000000b001d389e38990000040f000000010b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000029370000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000029330000c13d000000000006004b000029440000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000029780000613d0000001f01400039000000600110018f0000000001b1001900000e300010009c000029540000213d000000400010043f000000200030008c000029520000413d00000000010b0433000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000029650000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029610000c13d000000000005004b000029720000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000029830000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000297f0000c13d000000000005004b000029900000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000121019f000038a0000104300009000000000002000900000003001d00080e2c0020019c00002ffa0000613d000200000001001d0000000901000039000000000101041a000000080110027000000e2c02100198000029dc0000613d00000eaf010000410000000000100443000700000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f000000010020019000002ff30000613d000000000101043b000000000001004b00002feb0000613d000000000100041100000e2c01100197000000400b00043d0000006402b0003900000000001204350000004401b00039000000090200002900000000002104350000002401b000390000000802000029000000000021043500000ec10100004100000000001b0435000000000100041000000e2c011001970000000404b00039000000000014043500000000010004140000000702000029000000040020008c000029d80000613d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000ea7011001c700070000000b001d000600000004001d389e38940000040f0000000604000029000000070b000029000000600310027000010e290030019d00030000000103550000000100200190000030c80000613d00000e3000b0009c00002fed0000213d0000004000b0043f000029de0000013d000000400b00043d0000000404b000390000000701000039000000000201041a00000e7c0100004100000000001b043500000e7d0100004100000000001404350000000001000414000000080220027000000e2c02200197000000040020008c000029ee0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002a1a0000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700070000000b001d389e38990000040f000000070b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002a090000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002a050000c13d000000000006004b00002a160000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000301d0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b0000000002000039000000010200403900000e3000c0009c00002fed0000213d000000010020019000002fed0000c13d0000004000c0043f0000001f0030008c00002feb0000a13d00000000020b043300000e2c0020009c00002feb0000213d0000000804000039000000000404041a0000004405c0003900000e800600004100000000006504350000002405c000390000000906000029000000000065043500000e7f0500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00002a670000613d00000e2900c0009c00000e290100004100000000010c4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700070000000c001d389e38990000040f000000070c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002a540000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002a500000c13d000000000006004b00002a610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030290000613d0000001f01400039000000600110018f0000000001c1001900000e300010009c00002fed0000213d000000400010043f000000200030008c00002feb0000413d00000000010c0433000300000001001d00000e2c0010009c00002feb0000213d00000e85010000410000000000100443000000000100041400000e290010009c00000e2901008041000000c00110021000000e86011001c70000800b02000039389e38990000040f000000010020019000002ff30000613d000000000201043b00000e870020009c00002fff0000813d000700000002001d0000000701000039000000000201041a000000400b00043d00000e7c0100004100000000001b04350000000401b0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c00002a920000c13d0000000103000031000000200030008c0000002004000039000000000403401900002abe0000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700060000000b001d389e38990000040f000000060b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002aad0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002aa90000c13d000000000006004b00002aba0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030350000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000e300010009c00002fed0000213d000000010020019000002fed0000c13d000000400010043f000000200030008c00002feb0000413d00000000020b043300000e2c0020009c00002feb0000213d0000000801000039000000000101041a000500000001001d00000eaf010000410000000000100443000600000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f000000010020019000002ff30000613d000000000101043b000000000001004b000000060300002900002feb0000613d000000400b00043d0000006401b00039000000070200002900000000002104350000004401b0003900000e840200004100000000002104350000002401b000390000000902000029000000000021043500000eba0100004100000000001b04350000000404b00039000000050100002900000000001404350000000001000414000000040030008c00040000000b001d00002b080000613d00000e2900b0009c00000e290200004100000000020b4019000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000002030019000700000004001d389e38940000040f0000000704000029000000040b000029000000600310027000010e290030019d00030000000103550000000100200190000030410000613d00000e3000b0009c00002fed0000213d0000004000b0043f0000000701000039000000000201041a00000e7c0100004100000000001b043500000e7d0100004100000000001404350000000001000414000000080220027000000e2c02200197000000040020008c00002b1b0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002b460000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c7389e38990000040f000000040b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002b350000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002b310000c13d000000000006004b00002b420000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000304e0000613d0000001f01400039000000600110018f000000000cb1001900000e3000c0009c00002fed0000213d0000004000c0043f000000200030008c00002feb0000413d00000000020b043300000e2c0020009c00002feb0000213d0000000804000039000000000404041a0000004405c0003900000ee10600004100000000006504350000002405c000390000000906000029000000000065043500000eaa0500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00002b8e0000613d00000e2900c0009c00000e290100004100000000010c4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700070000000c001d389e38990000040f000000070c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002b7b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002b770000c13d000000000006004b00002b880000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000305a0000613d0000001f01400039000000600110018f000000000bc1001900000e3000b0009c00002fed0000213d0000004000b0043f000000200030008c00002feb0000413d00000000020c0433000000000002004b0000000001000039000000010100c039000000000012004b00002feb0000c13d0000000401b00039000000000002004b000030060000c13d0000000702000039000000000202041a00000e7c0400004100000000004b043500000e7d0400004100000000004104350000000001000414000000080220027000000e2c02200197000000040020008c00002baa0000c13d000000200400003900002bd60000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700070000000b001d389e38990000040f000000070b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002bc50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002bc10000c13d000000000006004b00002bd20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030660000613d0000001f01400039000000600110018f000000000cb1001900000e3000c0009c00002fed0000213d0000004000c0043f000000200030008c00002feb0000413d00000000020b043300000e2c0020009c00002feb0000213d0000000804000039000000000404041a0000004405c0003900000e800600004100000000006504350000002405c000390000000906000029000000000065043500000e7f0500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00002c1e0000613d00000e2900c0009c00000e290100004100000000010c4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700070000000c001d389e38990000040f000000070c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002c0b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002c070000c13d000000000006004b00002c180000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030720000613d0000001f01400039000000600110018f0000000001c1001900000e300010009c00002fed0000213d000000400010043f000000200030008c00002feb0000413d00000000010c0433000700000001001d00000e2c0010009c00002feb0000213d0000000001000411000000000001004b000000070200002900002c610000613d000000000012004b00002c610000613d000000000020043f0000000501000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f000000010020019000002feb0000613d000000000101043b000000000200041100000e2c02200197000000000020043f000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f000000010020019000002feb0000613d000000000101043b000000000101041a000000ff00100190000000070200002900002c610000c13d0000000901000029000000000010043f0000000401000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f000000010020019000002feb0000613d000000000101043b000000000101041a00000e2c011001970000000002000411000000000021004b0000000702000029000031370000c13d000000000002004b000000030200003900002c870000613d0000000901000029000000000010043f0000000401000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f000000010020019000002feb0000613d000000000101043b000000000201041a00000ec202200197000000000021041b0000000701000029000000000010043f0000000301000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f000000010020019000002feb0000613d000000000101043b000000000201041a000000010220008a000000000021041b00000003020000390000000801000029000000000010043f000000200020043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f000000010020019000002feb0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000901000029000000000010043f0000000201000039000000200010043f000000000100041400000e290010009c00000e2901008041000000c00110021000000eab011001c70000801002000039389e38990000040f000000010020019000002feb0000613d000000000101043b000000000201041a00000ec2022001970000000806000029000000000262019f000000000021041b000000000100041400000e290010009c00000e2901008041000000c00110021000000ec3011001c70000800d02000039000000040300003900000ec40400004100000007050000290000000907000029389e38940000040f000000010020019000002feb0000613d000000400100043d0000002002000039000500000002001d00000000022104360000000803000029000000000032043500000e2d0010009c00002fed0000213d0000004003100039000000400030043f00000e290020009c00000e29020080410000004002200210000000000101043300000e290010009c00000e29010080410000006001100210000000000121019f000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000ec3011001c70000801002000039389e38990000040f000000010020019000002feb0000613d000000000101043b000600000001001d0000000701000039000000000201041a000000400c00043d00000e7c0100004100000000001c04350000000401c0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c00002ce70000c13d0000000103000031000000200030008c0000002004000039000000000403401900002d130000013d00000e2900c0009c00000e290300004100000000030c4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700040000000c001d389e38990000040f000000040c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002d020000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002cfe0000c13d000000000006004b00002d0f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000307e0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b0000000002000039000000010200403900000e3000b0009c00002fed0000213d000000010020019000002fed0000c13d0000004000b0043f000000200030008c00002feb0000413d00000000020c043300000e2c0020009c00002feb0000213d0000000804000039000000000404041a0000004405b0003900000ee30600004100000000006504350000002405b000390000000606000029000000000065043500000e830500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002d600000613d00000e2900b0009c00000e290100004100000000010b4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700040000000b001d389e38990000040f000000040b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002d4d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002d490000c13d000000000006004b00002d5a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000308a0000613d0000001f01400039000000600110018f000000000ab1001900000e3000a0009c00002fed0000213d0000004000a0043f000000200030008c00002feb0000413d00000000010b0433000400010010003e00002ff40000613d0000000701000039000000000201041a00000e7c0100004100000000001a04350000000401a0003900000e7d0400004100000000004104350000000001000414000000080220027000000e2c02200197000000040020008c00002da20000613d00000e2900a0009c00000e290300004100000000030a4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700010000000a001d389e38990000040f000000010a000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0540018f000500000004001d000000200640019000000000046a001900002d910000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00002d8d0000c13d000000000005004b00002d9e0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000030960000613d00000005010000290000001f01100039000000600110018f0000000001a1001900000e300010009c00002fed0000213d000000400010043f000000200030008c00002feb0000413d00000000020a043300000e2c0020009c00002feb0000213d0000000801000039000000000101041a000100000001001d00000eaf010000410000000000100443000500000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f000000010020019000002ff30000613d000000000101043b000000000001004b000000050300002900002feb0000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b0003900000ee30200004100000000002104350000002401b000390000000602000029000000000021043500000eba0100004100000000051b04360000000404b00039000000010100002900000000001404350000000001000414000000040030008c00002dea0000613d00000e2900b0009c00000e290200004100000000020b4019000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c7000000000203001900060000000b001d000500000004001d000400000005001d389e38940000040f00000004050000290000000504000029000000060b000029000000600310027000010e290030019d00030000000103550000000100200190000030a20000613d00000e3000b0009c00002fed0000213d0000004000b0043f0000000301000029000000000001004b00002f240000613d0000002002000039000500000002001d00000000002b0435000000000015043500000e2d00b0009c00002fed0000213d0000004001b00039000000400010043f00000e290050009c00000e2905008041000000400150021000000000020b043300000e290020009c00000e29020080410000006002200210000000000112019f000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000ec3011001c70000801002000039389e38990000040f000000010020019000002feb0000613d000000000101043b000600000001001d0000000701000039000000000201041a000000400c00043d00000e7c0100004100000000001c04350000000401c0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c00002e1e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002e4a0000013d00000e2900c0009c00000e290300004100000000030c4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700040000000c001d389e38990000040f000000040c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002e390000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002e350000c13d000000000006004b00002e460000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030e70000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b0000000002000039000000010200403900000e3000b0009c00002fed0000213d000000010020019000002fed0000c13d0000004000b0043f000000200030008c00002feb0000413d00000000020c043300000e2c0020009c00002feb0000213d0000000804000039000000000404041a0000004405b0003900000ee30600004100000000006504350000002405b000390000000606000029000000000065043500000e830500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002e970000613d00000e2900b0009c00000e290100004100000000010b4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700040000000b001d389e38990000040f000000040b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002e840000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002e800000c13d000000000006004b00002e910000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030f30000613d0000001f01400039000000600110018f000000000ab1001900000e3000a0009c00002fed0000213d0000004000a0043f000000200030008c00002feb0000413d00000000010b0433000400000001001d000000000001004b00002ff40000613d0000000701000039000000000201041a00000e7c0100004100000000001a04350000000401a0003900000e7d0400004100000000004104350000000001000414000000080220027000000e2c02200197000000040020008c00002eda0000613d00000e2900a0009c00000e290300004100000000030a4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700030000000a001d389e38990000040f000000030a000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0540018f000500000004001d000000200640019000000000046a001900002ec90000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00002ec50000c13d000000000005004b00002ed60000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000030ff0000613d00000005010000290000001f01100039000000600110018f0000000001a1001900000e300010009c00002fed0000213d000000400010043f000000200030008c00002feb0000413d00000000020a043300000e2c0020009c00002feb0000213d0000000801000039000000000101041a000300000001001d00000eaf010000410000000000100443000500000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f000000010020019000002ff30000613d000000000101043b000000000001004b000000050300002900002feb0000613d0000000401000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b0003900000ee30200004100000000002104350000002401b000390000000602000029000000000021043500000eba0100004100000000001b04350000000404b00039000000030100002900000000001404350000000001000414000000040030008c00002f210000613d00000e2900b0009c00000e290200004100000000020b4019000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c7000000000203001900060000000b001d000500000004001d389e38940000040f0000000504000029000000060b000029000000600310027000010e290030019d000300000001035500000001002001900000310b0000613d00000e3000b0009c00002fed0000213d0000004000b0043f0000000a01000039000000000101041a00000e2c0210019800002f630000613d00000eaf010000410000000000100443000600000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f000000010020019000002ff30000613d000000000101043b000000000001004b00002feb0000613d000000000100041100000e2c01100197000000400b00043d0000006402b0003900000000001204350000004401b00039000000090200002900000000002104350000002401b000390000000802000029000000000021043500000ec10100004100000000001b0435000000000100041000000e2c011001970000000404b00039000000000014043500000000010004140000000602000029000000040020008c00002f600000613d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000ea7011001c700060000000b001d000500000004001d389e38940000040f0000000504000029000000060b000029000000600310027000010e290030019d00030000000103550000000100200190000031180000613d00000e3000b0009c00002fed0000213d0000004000b0043f0000000701000039000000000201041a00000e7c0100004100000000001b043500000e7d0100004100000000001404350000000001000414000000080220027000000e2c02200197000000040020008c00002f730000c13d0000000103000031000000200030008c0000002004000039000000000403401900002f9f0000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700060000000b001d389e38990000040f000000060b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002f8e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f8a0000c13d000000000006004b00002f9b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030af0000613d0000001f01400039000000600110018f0000000001b1001900000e300010009c00002fed0000213d000000400010043f000000200030008c00002feb0000413d00000000020b043300000e2c0020009c00002feb0000213d0000000801000039000000000101041a000500000001001d00000eaf010000410000000000100443000600000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f000000010020019000002ff30000613d000000000101043b000000000001004b000000060300002900002feb0000613d000000400400043d000000640140003900000008020000290000000000210435000000440140003900000e8002000041000000000021043500000024014000390000000902000029000000000021043500000eb70100004100000000001404350000000401400039000000050200002900000000002104350000000001000414000000040030008c00002fe20000613d00000e290040009c00000e29020000410000000002044019000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000002030019000800000004001d389e38940000040f0000000804000029000000600310027000010e290030019d00030000000103550000000100200190000030bb0000613d00000e300040009c00002fed0000213d000000400040043f000000020100002900000e2c011001970000000703000029000000000013004b000030150000c13d000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a000010430000000000001042f00000ebc01000041000000000010043f0000001101000039000000040010043f00000e8201000041000038a00001043000000eca01000041000000000010043f000000040000043f00000e8201000041000038a00001043000000e8801000041000000000010043f0000002001000039000000040010043f000000240020043f00000e8901000041000038a00001043000000ea60200004100000000002b0435000000200200003900000000002104350000004401b0003900000ed00200004100000000002104350000002401b000390000001b02000039000000000021043500000e2900b0009c00000e290b0080410000004001b0021000000e81011001c7000038a00001043000000ee402000041000000000020043f000000040010043f0000000901000029000000240010043f000000440030043f00000e8101000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030240000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030300000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000303c0000c13d000031240000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030490000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030550000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030610000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000306d0000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030790000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030850000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030910000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000309d0000c13d000031240000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030aa0000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000030d40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030b60000c13d000030d40000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030c30000c13d000031240000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d0000000004620019000030d40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030d00000c13d000000000005004b000030e10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000121019f000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030ee0000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030fa0000c13d000031240000013d0000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031060000c13d000031240000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031130000c13d000031240000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d0000000004620019000031240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031200000c13d000000000005004b000031310000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a000010430000000000002004b0000313f0000c13d00000e8c01000041000000000010043f0000000901000029000000040010043f00000e8201000041000038a00001043000000ee201000041000000000010043f0000000001000411000000040010043f0000000901000029000000240010043f00000e8901000041000038a00001043000020000000000020000000702000039000000000202041a000000400c00043d00000e7c0300004100000000003c04350000000404c0003900000e7d0300004100000000003404350000000004000414000000080220027000000e2c02200197000000040020008c0000315a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000031880000013d000100000001001d00000e2900c0009c00000e290300004100000000030c4019000000400330021000000e290040009c00000e2904008041000000c001400210000000000131019f00000e82011001c700020000000c001d389e38990000040f000000020c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031760000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000031720000c13d000000000006004b000031830000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000031e60000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b0000000002000039000000010200403900000e3000b0009c000031e00000213d0000000100200190000031e00000c13d0000004000b0043f0000001f0030008c000031de0000a13d00000000020c043300000e2c0020009c000031de0000213d0000000804000039000000000404041a0000004405b0003900000e800600004100000000006504350000002405b00039000000000015043500000e7f0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000031d40000613d00000e2900b0009c00000e290100004100000000010b4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700020000000b001d389e38990000040f000000020b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000031c10000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031bd0000c13d000000000006004b000031ce0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000032040000613d0000001f01400039000000600710018f0000000001b7001900000e300010009c000031e00000213d000000400010043f000000200030008c000031de0000413d00000000010b043300000e2c0010009c000031de0000213d000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000031f10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031ed0000c13d000000000005004b000031fe0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a0000104300000001f0530018f00000e2b06300198000000400200043d00000000046200190000320f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000320b0000c13d000000000005004b0000321c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000121019f000038a00001043000010000000000020000000701000039000000000201041a000000ff01200190000032730000c13d000000400b00043d00000ebe0100004100000000001b04350000000001000414000000080220027000000e2c02200197000000040020008c000032340000c13d0000000103000031000000200030008c00000020040000390000000004034019000032600000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e8b011001c700010000000b001d389e38990000040f000000010b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000324f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000324b0000c13d000000000006004b0000325c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000327c0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000e300010009c000032760000213d0000000100200190000032760000c13d000000400010043f0000001f0030008c000032740000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000032740000c13d000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000032870000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032830000c13d000000000005004b000032940000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000121019f000038a00001043000020000000000020000000702000039000000000202041a000000400c00043d00000e7c0300004100000000003c04350000000404c0003900000e7d0300004100000000003404350000000004000414000000080220027000000e2c02200197000000040020008c000032ad0000c13d0000000103000031000000200030008c00000020040000390000000004034019000032db0000013d000100000001001d00000e2900c0009c00000e290300004100000000030c4019000000400330021000000e290040009c00000e2904008041000000c001400210000000000131019f00000e82011001c700020000000c001d389e38990000040f000000020c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000032c90000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000032c50000c13d000000000006004b000032d60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033370000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b0000000002000039000000010200403900000e3000b0009c000033310000213d0000000100200190000033310000c13d0000004000b0043f0000001f0030008c0000332f0000a13d00000000020c043300000e2c0020009c0000332f0000213d0000000804000039000000000404041a0000004405b0003900000ee30600004100000000006504350000002405b00039000000000015043500000e830500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000033270000613d00000e2900b0009c00000e290100004100000000010b4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700020000000b001d389e38990000040f000000020b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000033140000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000033100000c13d000000000006004b000033210000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033550000613d0000001f01400039000000600710018f0000000001b7001900000e300010009c000033310000213d000000400010043f000000200030008c0000332f0000413d00000000010b0433000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000033420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000333e0000c13d000000000005004b0000334f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000033600000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000335c0000c13d000000000005004b0000336d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000121019f000038a00001043000020000000000020000000702000039000000000202041a000000400c00043d00000e7c0300004100000000003c04350000000404c0003900000e7d0300004100000000003404350000000004000414000000080220027000000e2c02200197000000040020008c000033860000c13d0000000103000031000000200030008c00000020040000390000000004034019000033b40000013d000100000001001d00000e2900c0009c00000e290300004100000000030c4019000000400330021000000e290040009c00000e2904008041000000c001400210000000000131019f00000e82011001c700020000000c001d389e38990000040f000000020c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000033a20000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000339e0000c13d000000000006004b000033af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034100000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b0000000002000039000000010200403900000e3000b0009c0000340a0000213d00000001002001900000340a0000c13d0000004000b0043f0000001f0030008c000034080000a13d00000000020c043300000e2c0020009c000034080000213d0000000804000039000000000404041a0000004405b0003900000e840600004100000000006504350000002405b00039000000000015043500000e830500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000034000000613d00000e2900b0009c00000e290100004100000000010b4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700020000000b001d389e38990000040f000000020b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000033ed0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000033e90000c13d000000000006004b000033fa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000342e0000613d0000001f01400039000000600710018f0000000001b7001900000e300010009c0000340a0000213d000000400010043f000000200030008c000034080000413d00000000010b0433000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d00000000046200190000341b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034170000c13d000000000005004b000034280000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a0000104300000001f0530018f00000e2b06300198000000400200043d0000000004620019000034390000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034350000c13d000000000005004b000034460000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000121019f000038a000010430000200000000000200000000070100190000000701000039000000000201041a000000400c00043d00000e7c0100004100000000001c04350000000401c0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c000200000007001d000034610000c13d0000000103000031000000200030008c000000200400003900000000040340190000348e0000013d00000e2900c0009c00000e290300004100000000030c4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700010000000c001d389e38990000040f000000010c000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000347c0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000034780000c13d000000000006004b000034890000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034f40000613d00000002070000290000001f01400039000000600110018f000000000bc1001900000000001b004b0000000002000039000000010200403900000e3000b0009c000034e90000213d0000000100200190000034e90000c13d0000004000b0043f0000001f0030008c000034e70000a13d00000000020c043300000e2c0020009c000034e70000213d0000000804000039000000000404041a0000004405b0003900000e800600004100000000006504350000002405b00039000000000075043500000e7f0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000034db0000613d00000e2900b0009c00000e290100004100000000010b4019000000400110021000000e290040009c00000e2904008041000000c003400210000000000113019f00000e81011001c700010000000b001d389e38990000040f000000010b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034c70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034c30000c13d000000000006004b000034d40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000035000000613d0000001f01400039000000600110018f00000002070000290000000001b1001900000e300010009c000034e90000213d000000400010043f000000200030008c000034e70000413d00000000010b043300000e2c0010009c000034e70000213d000000000001004b000034ef0000613d000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a00001043000000e8c01000041000000000010043f000000040070043f00000e8201000041000038a0000104300000001f0530018f00000e2b06300198000000400200043d00000000046200190000350b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034fb0000c13d0000350b0000013d0000001f0530018f00000e2b06300198000000400200043d00000000046200190000350b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035070000c13d000000000005004b000035180000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a000010430000000400200043d0000002003000039000000000332043600000e2c01100197000000000013043500000ee50020009c0000353b0000813d0000004001200039000000400010043f00000e290030009c00000e29030080410000004001300210000000000202043300000e290020009c00000e29020080410000006002200210000000000112019f000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000ec3011001c70000801002000039389e38990000040f0000000100200190000035410000613d000000000101043b000000000001042d00000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a0000104300000000001000019000038a0000104300003000000000002000300000001001d0000000701000039000000000201041a000000400b00043d00000e7c0100004100000000001b04350000000401b0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c000035570000c13d0000000103000031000000200030008c00000020040000390000000004034019000035830000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700020000000b001d389e38990000040f000000020b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000035720000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000356e0000c13d000000000006004b0000357f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000035d80000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000e300010009c000035d10000213d0000000100200190000035d10000c13d000000400010043f0000001f0030008c000035cf0000a13d00000000020b043300000e2c0020009c000035cf0000213d0000000801000039000000000101041a000100000001001d00000eaf010000410000000000100443000200000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f0000000100200190000035d70000613d000000000101043b000000000001004b0000000203000029000035cf0000613d000000400400043d000000640140003900000001020000390000000000210435000000440140003900000eb102000041000000000021043500000024014000390000000302000029000000000021043500000eb20100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c000035cb0000613d00000e290040009c00000e29020000410000000002044019000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000002030019000300000004001d389e38940000040f0000000304000029000000600310027000010e290030019d00030000000103550000000100200190000035e40000613d00000e300040009c000035d10000213d000000400040043f000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a000010430000000000001042f0000001f0530018f00000e2b06300198000000400200043d0000000004620019000035f00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035df0000c13d000035f00000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d0000000004620019000035f00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035ec0000c13d000000000005004b000035fd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a0000104300007000000000002000400000005001d000200000004001d000100000002001d000300000001001d00000eaf010000410000000000100443000500000003001d0000000400300443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f0000000100200190000036b80000613d000000000101043b000000000001004b000036b50000613d000000400d00043d0000006401d00039000000800c0000390000000000c104350000004401d0003900000002020000290000000000210435000000010100002900000e2c011001970000002402d00039000000000012043500000ec60100004100000000001d0435000000030100002900000e2c011001970000000402d0003900000000001204350000008402d00039000000040100002900000000410104340000000000120435000000050200002900000e2c02200197000000200b00008a0000000006b1016f0000001f0510018f000000a403d00039000000000034004b000036450000813d000000000006004b000036410000613d00000000085400190000000007530019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000363b0000c13d000000000005004b0000365b0000613d0000000007030019000036510000013d0000000007630019000000000006004b0000364e0000613d00000000080400190000000009030019000000008a0804340000000009a90436000000000079004b0000364a0000c13d000000000005004b0000365b0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000331001900000000000304350000000003000414000000040020008c000036680000c13d0000000005000415000000070550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000036a00000013d00030000000c001d0000001f011000390000000001b1016f000000a40110003900000e290010009c00000e2901008041000000600110021000000e2900d0009c00000e290400004100000000040d40190000004004400210000000000141019f00000e290030009c00000e2903008041000000c003300210000000000131019f000500000002001d00040000000d001d389e38940000040f000000040d000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057d00190000368b0000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b000036870000c13d000000000006004b000036980000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000060550008a000000050550021000000001002001900000000502000029000036b90000613d0000001f01400039000000600410018f0000000001d40019000000000041004b0000000004000039000000010400403900000e300010009c000036ed0000213d0000000100400190000036ed0000c13d000000400010043f0000001f0030008c000036b60000a13d00000000010d043300000ec800100198000036b60000c13d0000000503500270000000000301001f00000ec90110019700000ec60010009c000036e80000c13d000000000001042d0000000001000019000038a000010430000000000001042f000000000003004b000036bd0000c13d0000006002000039000036e40000013d0000001f0230003900000e2a022001970000003f0220003900000ec704200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000e300040009c000036ed0000213d0000000100500190000036ed0000c13d000000400040043f0000001f0430018f000000000632043600000e2b05300198000300000006001d0000000003560019000036d70000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b000036d30000c13d000000000004004b000036e40000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000000502000029000036f30000c13d00000eca01000041000000000010043f000000040020043f00000e8201000041000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a000010430000000030200002900000e290020009c00000e2902008041000000400220021000000e290010009c00000e29010080410000006001100210000000000121019f000038a0000104300004000000000002000300000002001d000400000001001d0000000701000039000000000201041a000000400b00043d00000e7c0100004100000000001b04350000000401b0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c000037110000c13d0000000103000031000000200030008c000000200400003900000000040340190000373d0000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700020000000b001d389e38990000040f000000020b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000372c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037280000c13d000000000006004b000037390000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000037920000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000e300010009c0000378b0000213d00000001002001900000378b0000c13d000000400010043f0000001f0030008c000037890000a13d00000000020b043300000e2c0020009c000037890000213d0000000801000039000000000101041a000100000001001d00000eaf010000410000000000100443000200000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f0000000100200190000037910000613d000000000101043b000000000001004b0000000203000029000037890000613d000000400400043d000000640140003900000003020000290000000000210435000000440140003900000e8402000041000000000021043500000024014000390000000402000029000000000021043500000eba0100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c000037850000613d00000e290040009c00000e29020000410000000002044019000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000002030019000400000004001d389e38940000040f0000000404000029000000600310027000010e290030019d000300000001035500000001002001900000379e0000613d00000e300040009c0000378b0000213d000000400040043f000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a000010430000000000001042f0000001f0530018f00000e2b06300198000000400200043d0000000004620019000037aa0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000037990000c13d000037aa0000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d0000000004620019000037aa0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000037a60000c13d000000000005004b000037b70000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a0000104300004000000000002000300000002001d000400000001001d0000000701000039000000000201041a000000400b00043d00000e7c0100004100000000001b04350000000401b0003900000e7d0300004100000000003104350000000001000414000000080220027000000e2c02200197000000040020008c000037d20000c13d0000000103000031000000200030008c00000020040000390000000004034019000037fe0000013d00000e2900b0009c00000e290300004100000000030b4019000000400330021000000e290010009c00000e2901008041000000c001100210000000000131019f00000e82011001c700020000000b001d389e38990000040f000000020b000029000000600310027000000e2903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000037ed0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037e90000c13d000000000006004b000037fa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000038530000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000e300010009c0000384c0000213d00000001002001900000384c0000c13d000000400010043f0000001f0030008c0000384a0000a13d00000000020b043300000e2c0020009c0000384a0000213d0000000801000039000000000101041a000100000001001d00000eaf010000410000000000100443000200000002001d0000000400200443000000000100041400000e290010009c00000e2901008041000000c00110021000000eb0011001c70000800202000039389e38990000040f0000000100200190000038520000613d000000000101043b000000000001004b00000002030000290000384a0000613d000000400400043d000000640140003900000003020000290000000000210435000000440140003900000ee302000041000000000021043500000024014000390000000402000029000000000021043500000eba0100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c000038460000613d00000e290040009c00000e29020000410000000002044019000000400220021000000e290010009c00000e2901008041000000c001100210000000000121019f00000ea7011001c70000000002030019000400000004001d389e38940000040f0000000404000029000000600310027000010e290030019d000300000001035500000001002001900000385f0000613d00000e300040009c0000384c0000213d000000400040043f000000000001042d0000000001000019000038a00001043000000ebc01000041000000000010043f0000004101000039000000040010043f00000e8201000041000038a000010430000000000001042f0000001f0530018f00000e2b06300198000000400200043d00000000046200190000386b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000385a0000c13d0000386b0000013d00000e29033001970000001f0530018f00000e2b06300198000000400200043d00000000046200190000386b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038670000c13d000000000005004b000038780000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000e290020009c00000e29020080410000004002200210000000000112019f000038a000010430000000000001042f00000e290010009c00000e2901008041000000400110021000000e290020009c00000e29020080410000006002200210000000000112019f000000000200041400000e290020009c00000e2902008041000000c002200210000000000112019f00000ec3011001c70000801002000039389e38990000040f0000000100200190000038920000613d000000000101043b000000000001042d0000000001000019000038a00001043000003897002104210000000102000039000000000001042d0000000002000019000000000001042d0000389c002104230000000102000039000000000001042d0000000002000019000000000001042d0000389e000004320000389f0001042e000038a00001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4e4f4f42000000000000000000000000000000000000000000000000000000004e6f6f6220230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffd6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56302000000000000000000000000000000000000200000000000000000000000004ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6ffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00b0cb9d5bac7bb96102c1a0cec12a57e96e86034b9716b99ca2ed9d81e61bb9db209699368efae3c2ab13a6e9d9f9aceb6c5aebfb5ffd7bd0a9ff6281a30b5739df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000008129fc1b00000000000000000000000000000000000000000000000000000000bb997f2600000000000000000000000000000000000000000000000000000000dd898b2e00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000f0e56f0d00000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000e7277dd700000000000000000000000000000000000000000000000000000000ce62bc8b00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000d3b551d000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000bb997f2700000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000c87b56dd0000000000000000000000000000000000000000000000000000000099d3a88500000000000000000000000000000000000000000000000000000000a485b4ce00000000000000000000000000000000000000000000000000000000a485b4cf00000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000b88d4fde0000000000000000000000000000000000000000000000000000000099d3a88600000000000000000000000000000000000000000000000000000000a16ad7da00000000000000000000000000000000000000000000000000000000a22cb4650000000000000000000000000000000000000000000000000000000088e4f1ca0000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000008129fc1c000000000000000000000000000000000000000000000000000000008245e4720000000000000000000000000000000000000000000000000000000082840eed000000000000000000000000000000000000000000000000000000002fb0b873000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000006a627841000000000000000000000000000000000000000000000000000000006a6278420000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca631000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000004f558e78000000000000000000000000000000000000000000000000000000004f558e790000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000005633a363000000000000000000000000000000000000000000000000000000002fb0b8740000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000001328357e0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248b71fc00000000000000000000000000000000000000000000000000000000267659e2000000000000000000000000000000000000000000000000000000001328357f0000000000000000000000000000000000000000000000000000000015be71ff0000000000000000000000000000000000000000000000000000000016c38b3c0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000035a9ae0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd0000000000000000000000000000000000000024000000800000000000000000e81b22ea0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a1b9224c0000000000000000000000000000000000000000000000000000000030ae2c83fb63a1d7345739c2148d1bd925ce1b962c11197a573f48712e3c42d6796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000001000000006dfcc650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000401b6ade0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000007e2732890000000000000000000000000000000000000000000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d608a4bcc90000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9f0000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e10000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000c36dd7ea00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b080000000000000000000000000000000000000044000000800000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b91481000000000000000000000000000000000000000000000000000000000161a64a000000000000000000000000000000000000000000000000000000006818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaf000000000000000000000000000000000000000000000000ffffffffffffffdf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6f08c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000bfa2ccd2000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06516897000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000004000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c315b08ba180000000000000000000000000000000000000000000000000000000007b920aa000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000093c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068f2c071ca00000000000000000000000000000000000000000000000000000000fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c476967614e6f6f624e46540000000000000000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f00000000000000000000000000000000000000000000000000000000e95c048700000000000000000000000000000000000000000000000000000000a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9b29de69000000000000000000000000000000000000000000000000000000007e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a24e487b71000000000000000000000000000000000000000000000000000000009f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a65c975abb000000000000000000000000000000000000000000000000000000005061757361626c653a2070617573656400000000000000000000000000000000a2a9f6940e96680af2fe721eb59341cde71d9b7ae61dc834d205d6c59360268ecdcba5b500000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef73c6ac6e00000000000000000000000000000000000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000064a0ae9200000000000000000000000000000000000000000000000000000000608e8583c5619bbc3db921ebeaef749afb02ec159f0152f9091151af16e87a3cd7fe74ba2795604f471717a6182ac81070ad95ecee0b7d8ebcfbec785af7e7966454417100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7fd3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb5347616d654e46543a20546f6b656e20697320736f756c626f756e6400000000000000000000000000000000000000000000000000000000a0000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000a9fbf51f000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9257c1ced5effffffffffffffffffffffffffffffffffffffffffffffffffffffff80ac58cd000000000000000000000000000000000000000000000000000000007c1ced5f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000100000000000000009e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bd177e802f00000000000000000000000000000000000000000000000000000000ea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a09164283d7b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc09149f102d9d70ca4e3f95f9e31a6987b22c4efa445d9a71f7fe62f44f365b312
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.