Abstract Testnet

Token

GigaNameNFT (NAME)
ERC-721

Overview

Max Total Supply

0 NAME

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
0 NAME
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
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:
GigaNameNFT

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)

File 1 of 29 : GigaNameNFT.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/utils/Strings.sol";

import {GameNFT} from "../gamenft/GameNFT.sol";
import {NAME_CID, ETH_MINT_PRICE_CID, IS_GIGA_NAME_CID, ID_CID} from "../../constants/ColumnConstants.sol";
import {MINTER_ROLE, GAME_LOGIC_CONTRACT_ROLE} from "../../constants/RoleConstants.sol";
import { IGigaNameNFT, ID } from "./IGigaNameNFT.sol";
import {DEPLOYER_ROLE} from "../../constants/RoleConstants.sol";

/** @title GigaName NFTs on L2 */
contract GigaNameNFT is GameNFT, IGigaNameNFT {
    using Strings for uint256;

    // 0 max supply = infinite
    uint256 constant MAX_SUPPLY = 0;

    /** SETUP */
    constructor(address gameRegistryAddress) GameNFT(MAX_SUPPLY, "NAME", "NAME", "Name #", gameRegistryAddress, ID) {}

    function initialize() external override onlyRole(DEPLOYER_ROLE) {
        initializeTable("GigaNameNFT", ID);
        _initialize();
    }

    /** Initializes traits for the given tokenId */
    function _initializeTraits(uint256 tokenId, string memory username) internal nonReentrant onlyRole(GAME_LOGIC_CONTRACT_ROLE) {
        require(validateUsername(username), "Invalid username");
        require(tokenId == uint256(keccak256(abi.encodePacked(username))), "Token ID does not match name");

        _setDocBoolValue(tokenId, IS_GIGA_NAME_CID, true);
        validateUsername(username);
        _setDocStringValue(tokenId, NAME_CID, username);
    }

    function validateUsername(string memory username) public pure returns (bool) {
        bytes memory usernameBytes = bytes(username);
        
        // Check length
        if (usernameBytes.length < 4 || usernameBytes.length > 15) {
            return false;
        }

        // Check first character is not underscore
        if (usernameBytes[0] == '_') {
            return false;
        }

        // Check each character
        for (uint i = 0; i < usernameBytes.length; i++) {
            bytes1 char = usernameBytes[i];
            if (!(
                (char >= 'a' && char <= 'z') || 
                (char >= '0' && char <= '9') ||
                char == '_'
            )) {
                return false;
            }
        }

        return true;
    }

    function confirmMint(address to, string memory username) public onlyRole(MINTER_ROLE) returns (uint256) {
        uint256 tokenId = uint256(keccak256(abi.encodePacked(username)));
        _initializeTraits(tokenId, username);
        _mint(to, uint256(keccak256(abi.encodePacked(username))));
        return tokenId;
    }


    function mintUsername(address to, string memory username) external payable {
        require(msg.value >= getTableUint256Value(ETH_MINT_PRICE_CID), "Insufficient payment");
        confirmMint(to, username);
    }
    
    /**
     * Mints the ERC721 token
     *
     * @param to        Recipient of the token
     * @param id        Id of token to mint
     */
    function mint(
        address to,
        uint256 id
    ) external onlyRole(MINTER_ROLE) whenNotPaused {
        _safeMint(to, id);
    }

    /**
     * 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);
    }
}

File 2 of 29 : Strings.sol
// 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)))
        }
    }
}

File 3 of 29 : GameNFT.sol
// 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);
    }
}

File 4 of 29 : ColumnConstants.sol
// 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"));

File 5 of 29 : RoleConstants.sol
// 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");

File 6 of 29 : IGigaNameNFT.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.9;

import {IGameNFT} from "../gamenft/IGameNFT.sol";

uint256 constant ID = uint256(keccak256("game.gigaverse.giganamenft"));

interface IGigaNameNFT is IGameNFT {
    function confirmMint(address to, string memory username) external returns (uint256);
}

File 7 of 29 : Math.sol
// 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;
    }
}

File 8 of 29 : SafeCast.sol
// 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))
        }
    }
}

File 9 of 29 : SignedMath.sol
// 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);
        }
    }
}

File 10 of 29 : IGameNFT.sol
// 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);
}

File 11 of 29 : DataTable.sol
// 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));
    }
}

File 12 of 29 : ERC721.sol
// 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;
    }
}

File 13 of 29 : IERC721UpdateHandler.sol
// 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;
}

File 14 of 29 : IERC721.sol
// 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);
}

File 15 of 29 : IERC165.sol
// 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);
}

File 16 of 29 : Panic.sol
// 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)
        }
    }
}

File 17 of 29 : DataStore.sol
// 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(""));
    }
}

File 18 of 29 : GameRegistryConsumer.sol
// 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;
    }

}

File 19 of 29 : IERC721Metadata.sol
// 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);
}

File 20 of 29 : ERC721Utils.sol
// 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))
                    }
                }
            }
        }
    }
}

File 21 of 29 : Context.sol
// 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;
    }
}

File 22 of 29 : ERC165.sol
// 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;
    }
}

File 23 of 29 : draft-IERC6093.sol
// 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);
}

File 24 of 29 : DataTypes.sol
// 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;
    }
}

File 25 of 29 : IDataStore.sol
// 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);
}

File 26 of 29 : ReentrancyGuard.sol
// 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;
    }
}

File 27 of 29 : ISystem.sol
// 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;
}

File 28 of 29 : IGameRegistry.sol
// 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);
}

File 29 of 29 : IERC721Receiver.sol
// 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);
}

Settings
{
  "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
}

Contract ABI

[{"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":"address","name":"to","type":"address"},{"internalType":"string","name":"username","type":"string"}],"name":"confirmMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"mint","outputs":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"username","type":"string"}],"name":"mintUsername","outputs":[],"stateMutability":"payable","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"},{"inputs":[{"internalType":"string","name":"username","type":"string"}],"name":"validateUsername","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100111b72676e050a9d860251cc71c47c2d1b7fd33ae70cf60cce686f53549b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6

Deployed Bytecode

0x00040000000000020009000000000002000000000401034f00000060011002700000104e0010019d0000104e03100197000300000034035500020000000403550000008001000039000000400010043f00000001002001900000002b0000c13d000000040030008c0000004d0000413d000000000134034f000000000204043b000000e002200270000010610020009c0000004f0000213d000010830020009c000000a30000a13d000010840020009c000000df0000a13d000010850020009c000001590000a13d000010860020009c000002710000213d000010890020009c0000033e0000613d0000108a0020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000010510010009c0000004d0000213d41343db40000040f413433d60000040f000005650000013d0000000002000416000000000002004b0000004d0000c13d0000001f023000390000104f022001970000008002200039000000400020043f0000001f0530018f000010500630019800000080026000390000003b0000613d000000000704034f000000007807043c0000000001810436000000000021004b000000370000c13d000000000005004b000000480000613d000000000164034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c0000004d0000413d000000800600043d000010510060009c0000007c0000a13d00000000010000190000413600010430000010620020009c000000c00000a13d000010630020009c000001010000a13d000010640020009c000001600000a13d000010650020009c000002830000213d000010680020009c000003470000613d000010690020009c0000004d0000c13d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000010510010009c0000004d0000213d0000002402400370000000000202043b000700000002001d000010510020009c0000004d0000213d000000000010043f0000000501000039000000200010043f00000040020000390000000001000019413441150000040f0000000702000029000000000020043f000000200010043f00000000010000190000004002000039413441150000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000010a501000041000041350001042e000000400500043d000010520050009c0000009d0000213d0000004001500039000000400010043f0000000402000039000000000125043600001053030000410000000000310435000000400700043d000010520070009c0000009d0000213d0000004004700039000000400040043f0000000002270436000600000002001d0000000000320435000000400200043d000700000002001d000010520020009c0000009d0000213d00000007030000290000004002300039000000400020043f000000060200003900000000032304360000105402000041000400000003001d00000000002304350000000002050433000500000002001d000010550020009c000005950000a13d000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000010950020009c000001280000213d0000109d0020009c000001df0000213d000010a10020009c000004ed0000613d000010a20020009c0000040a0000613d000010a30020009c0000004d0000c13d0000000002000416000000000002004b0000004d0000c13d0000000702000039000000000202041a000010a603000041000000800030043f000010a703000041000000840030043f000000000300041400000008022002700000105102200197000000040020008c0000072f0000c13d0000000103000031000000200030008c00000020040000390000000004034019000007540000013d000010740020009c000001380000213d0000107c0020009c000001fa0000213d000010800020009c000005080000613d000010810020009c0000041b0000613d000010820020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c000008740000c13d0000000103000031000000200030008c00000020040000390000000004034019000008990000013d0000108e0020009c0000017e0000213d000010920020009c000003c20000613d000010930020009c000002ed0000613d000010940020009c0000004d0000c13d0000000001000416000000000001004b0000004d0000c13d00000000010300194134242f0000040f000700000001001d000600000002001d000500000003001d000000400100043d000400000001001d0000002002000039413424500000040f00000004010000290000000000010435000000070100002900000006020000290000000503000029413426e60000040f0000000001000411000000070200002900000006030000290000000504000029000000040500002941343e990000040f0000000001000019000041350001042e0000106d0020009c000001d40000213d000010710020009c000003c90000613d000010720020009c0000030e0000613d000010730020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000700000001001d41342e970000040f0000105100100198000006a80000c13d000000400100043d0000006402100039000010d20300004100000000003204350000004402100039000010d303000041000000000032043500000024021000390000002f030000390000000000320435000010c90200004100000000002104350000000402100039000000200300003900000000003204350000104e0010009c0000104e010080410000004001100210000010d4011001c70000413600010430000010960020009c0000022a0000213d0000109a0020009c0000051d0000613d0000109b0020009c000004360000613d0000109c0020009c0000004d0000c13d0000000001000416000000000001004b0000004d0000c13d00000000010300194134242f0000040f413426e60000040f0000000001000019000041350001042e000010750020009c0000024b0000213d000010790020009c000005270000613d0000107a0020009c000004550000613d0000107b0020009c0000004d0000c13d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000700000001001d000010510010009c0000004d0000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000600000002001d000000000012004b0000004d0000c13d000000070000006b00000fda0000c13d000010da01000041000000000010043f000000040000043f000010ac0100004100004136000104300000108b0020009c0000037e0000613d0000108c0020009c000002990000613d0000108d0020009c000002910000613d0000004d0000013d0000106a0020009c000003a40000613d0000106b0020009c0000029f0000613d0000106c0020009c0000004d0000c13d000000240030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000402400370000000000402043b0000000702000039000000000202041a000010a603000041000000800030043f000010a703000041000000840030043f000000000300041400000008022002700000105102200197000000040020008c000700000004001d000005ce0000c13d0000000103000031000000200030008c00000020040000390000000004034019000005f30000013d0000108f0020009c000003d30000613d000010900020009c000003290000613d000010910020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000201043b000010550020009c0000004d0000213d0000002301200039000000000031004b0000004d0000813d0000000405200039000000000154034f000000000101043b000010550010009c0000009d0000213d0000001f0610003900001106066001970000003f066000390000110606600197000010c60060009c0000009d0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000004d0000213d0000002002500039000000000324034f00001106041001980000001f0510018f000000a002400039000001ae0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000001aa0000c13d000000000005004b000001bb0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000701000039000000000201041a000000400500043d000010ca0100004100000000001504350000000401500039000010cb030000410000000000310435000000000100041100001051031001970000002401500039000600000003001d0000000000310435000000000100041400000008022002700000105102200197000000040020008c0000145c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000014890000013d0000106e0020009c000003ef0000613d0000106f0020009c000003350000613d000010700020009c0000004d0000c13d0000000001000416000000000001004b0000004d0000c13d4134260f0000040f000005650000013d0000109e0020009c000005530000613d0000109f0020009c000004700000613d000010a00020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c000008e80000c13d0000000103000031000000200030008c000000200400003900000000040340190000090d0000013d0000107d0020009c000002910000613d0000107e0020009c000004aa0000613d0000107f0020009c0000004d0000c13d0000000001000416000000000001004b0000004d0000c13d0000000101000039000000000601041a000000010360019000000001056002700000007f0250018f00000000050260190000001f0050008c00000000040000390000000104002039000000000446013f00000001004001900000059e0000c13d000000800050043f000000000003004b00000e2a0000c13d0000110701600197000000a00010043f000000000002004b000000c001000039000000a001006039000000800210008a0000008001000039413424500000040f0000002001000039000000400200043d000700000002001d00000000021204360000008001000039413423fd0000040f000000070200002900000000012100490000104e0010009c0000104e0100804100000060011002100000104e0020009c0000104e020080410000004002200210000000000121019f000041350001042e000010970020009c0000056c0000613d000010980020009c000004bd0000613d000010990020009c0000004d0000c13d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c000700000003001d000600000005001d0000092d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000009520000013d000010760020009c000005800000613d000010770020009c000004d20000613d000010780020009c0000004d0000c13d000000840030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000700000001001d000010510010009c0000004d0000213d0000002401400370000000000101043b000600000001001d000010510010009c0000004d0000213d0000006401400370000000000101043b000010550010009c0000004d0000213d0000002302100039000000000032004b0000004d0000813d0000000402100039000000000224034f000000000202043b0000004404400370000000000404043b000500000004001d0000002401100039413424620000040f000400000001001d000000f50000013d000010870020009c000003640000613d000010880020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000010550010009c0000004d0000213d000000040110003900000000020300194134249a0000040f413433980000040f0000029d0000013d000010660020009c000003790000613d000010670020009c0000004d0000c13d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b413434af0000040f0000104e01100197000005650000013d0000000001000416000000000001004b0000004d0000c13d0000000801000039000000000101041a000000800010043f000010a501000041000041350001042e0000000001000416000000000001004b0000004d0000c13d413433200000040f000000000001004b000003320000013d000000440030008c0000004d0000413d0000000401400370000000000101043b000700000001001d000010510010009c0000004d0000213d0000002401400370000000000201043b000010550020009c0000004d0000213d0000002301200039000000000031004b0000004d0000813d0000000405200039000000000154034f000000000101043b000010550010009c0000009d0000213d0000001f0710003900001106077001970000003f077000390000110607700197000010c60070009c0000009d0000213d00000024022000390000008007700039000000400070043f000000800010043f0000000002210019000000000032004b0000004d0000213d0000002002500039000000000324034f00001106041001980000001f0510018f000000a002400039000002cb0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000002c70000c13d000000000005004b000002d80000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000701000039000000000201041a000000400300043d000010a6010000410000000000130435000600000003001d0000000401300039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c0000167a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000016a40000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000700000001001d000010510010009c0000004d0000213d0000002401400370000000000101043b000500000001001d0000000701000039000000000201041a000010ca01000041000000800010043f000010f201000041000000840010043f00000000010004110000105101100197000600000001001d000000a40010043f000000000100041400000008022002700000105102200197000000040020008c00000de20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e070000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c000700000003001d000600000005001d000006bc0000c13d0000000103000031000000200030008c00000020040000390000000004034019000006e10000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b41342e970000040f00001051001001980000000001000039000000010100c039000005650000013d0000000001000416000000000001004b0000004d0000c13d0000000a01000039000000000101041a0000105101100197000000800010043f000010a501000041000041350001042e000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b413435880000040f000005640000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000700000001001d000010510010009c0000004d0000213d0000002401400370000000000101043b000500000001001d0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c00000e470000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e6c0000013d000000240030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000702000039000000000202041a000010a603000041000000800030043f000010a703000041000000840030043f000000000300041400000008022002700000105102200197000000040020008c000007d50000c13d0000000103000031000000200030008c00000020040000390000000004034019000007fa0000013d0000000001000416000000000001004b0000004d0000c13d0000000701000039000003cd0000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000700000001001d000010510010009c0000004d0000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000600000002001d000000000012004b0000004d0000c13d0000000701000039000000000201041a000010ca01000041000000800010043f000010cb01000041000000840010043f00000000010004110000105103100197000000a40030043f000000000100041400000008022002700000105102200197000000040020008c000500000003001d0000100e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000010330000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000700000001001d000010510010009c0000004d0000213d0000000701000039000000000201041a000010ca01000041000000800010043f000010cb01000041000000840010043f00000000010004110000105103100197000000a40030043f000000000100041400000008022002700000105102200197000000040020008c000600000003001d00000ec50000c13d0000000103000031000000200030008c0000002004000039000000000403401900000eea0000013d0000000001000416000000000001004b0000004d0000c13d0000000001030019413424e40000040f41342f720000040f000005650000013d0000000001000416000000000001004b0000004d0000c13d0000000901000039000000000101041a00000008011002700000105101100197000000800010043f000010a501000041000041350001042e000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000600000001001d0000000701000039000000000201041a000010ca01000041000000800010043f000010eb01000041000000840010043f00000000010004110000105101100197000700000001001d000000a40010043f000000000100041400000008022002700000105102200197000000040020008c000009b50000c13d0000000103000031000000200030008c00000020040000390000000004034019000009da0000013d000000440030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000002402400370000000000202043b000600000002001d0000000402400370000000000202043b000700000002001d0000000702000039000000000202041a000010a603000041000000800030043f000010a703000041000000840030043f000000000300041400000008022002700000105102200197000000040020008c000009f10000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a160000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000201043b000010f5002001980000004d0000c13d0000000101000039000011010020009c00000f200000213d000011040020009c000003d00000613d000011050020009c000003d00000613d00000f240000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c000700000003001d000600000005001d00000a980000c13d0000000103000031000000200030008c0000002004000039000000000403401900000abd0000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b0000004d0000c13d0000000701000039000000000201041a000010ca01000041000000800010043f000010fb01000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000105102200197000000040020008c00000f270000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f4c0000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c000700000003001d000600000005001d00000adc0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b010000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000700000001001d000010510010009c0000004d0000213d0000002401400370000000000101043b000600000001001d413435880000040f00001051051001970000000001000411000000000001004b00000d6d0000613d000000000015004b00000d6d0000613d000500000005001d000000000050043f0000000501000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000000101043b00000000020004110000105102200197000000000020043f000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000000101043b000000000101041a000000ff001001900000000505000029000000000200041100000d6d0000c13d000010ff01000041000000000010043f000000040020043f000010ac0100004100004136000104300000000001000416000000000001004b0000004d0000c13d0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c000009700000c13d0000000103000031000000200030008c00000020040000390000000004034019000009950000013d000000240030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000000702000039000000000202041a000010a603000041000000800030043f000010a703000041000000840030043f000000000300041400000008022002700000105102200197000000040020008c00000b4a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b6f0000013d000000440030008c0000004d0000413d0000000002000416000000000002004b0000004d0000c13d0000002402400370000000000502043b0000000402400370000000000402043b0000000702000039000000000202041a000010a603000041000000800030043f000010a703000041000000840030043f000000000300041400000008022002700000105102200197000000040020008c000700000004001d000600000005001d00000bf50000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c1a0000013d000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c000700000003001d000600000005001d00000cd20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000cf70000013d0000000001000416000000000001004b0000004d0000c13d0000000701000039000000000201041a000010ca01000041000000800010043f000010e001000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000105102200197000000040020008c00000c960000c13d0000000103000031000000200030008c0000002004000039000000000403401900000cbb0000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000010510010009c000003d00000a13d0000004d0000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000010550010009c0000004d0000213d0000002302100039000000000032004b0000004d0000813d0000000402100039000000000224034f000000000202043b000300000002001d000010550020009c0000004d0000213d00000003020000290000000502200210000200240010003d0000000201200029000000000031004b0000004d0000213d0000000701000039000000000201041a000010ca01000041000000800010043f000010cb01000041000000840010043f00000000010004110000105101100197000700000001001d000000a40010043f000000000100041400000008022002700000105102200197000000040020008c000012fa0000c13d0000000103000031000000200030008c000000200400003900000000040340190000131f0000013d000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000700000001001d413435880000040f0000000701000029000000000010043f0000000401000039000000200010043f00000040020000390000000001000019413441150000040f000000000101041a0000105101100197000000400200043d00000000001204350000104e0020009c0000104e020080410000004001200210000010a4011001c7000041350001042e000000440030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401400370000000000101043b000010510010009c0000004d0000213d000000a001000039000000400010043f000000800000043f0000008002000039413424410000040f000000a00110008a0000104e0010009c0000104e010080410000006001100210000010fa011001c7000041350001042e000000240030008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000701000039000000000201041a000010a601000041000000800010043f000010a701000041000000840010043f000000000100041400000008022002700000105102200197000000040020008c00000d150000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d3a0000013d000000000200041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000005a40000613d000010e901000041000000000010043f0000002201000039000000040010043f000010ac010000410000413600010430000000200030008c0000000504000029000005b60000413d0000001f024000390000000502200270000010560220009a000000200040008c0000105702004041000000000000043f0000001f033000390000000503300270000010560330009a000000000032004b000005b60000813d000000000002041b0000000102200039000000000032004b000005b20000413d0000001f0040008c00000d620000a13d000100000005001d000200000007001d000000000000043f00000000010004140000104e0010009c0000104e01008041000000c00110021000001058011001c70000801002000039000300000006001d4134412f0000040f000000030600002900000001002001900000004d0000613d00000005090000290000110602900198000000000101043b00000001080000290000105d0000c13d000000200300003900000002070000290000106a0000013d0000104e0030009c0000104e03008041000000c001300210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000005e20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000005de0000c13d000000000006004b000005ef0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d870000613d0000001f02400039000000600420018f00000080024001bf000600000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000805000039000000000505041a000010b7060000410000000607000029000000000067043500000084064001bf0000000000560435000000c405400039000010b8060000410000000000650435000000a405400039000000070600002900000000006504350000000005000414000000040020008c000010af0000c13d0000000002470019000500000002001d000000400020043f00000006020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b0000004d0000c13d0000000702000039000000000202041a000010a6060000410000000507000029000000000067043500000004067001bf000010a707000041000000000076043500000008022002700000105102200197000000000005004b000014bb0000c13d0000000005000414000000040020008c0000170f0000c13d0000000502400029000600000002001d000000400020043f00000005020000290000000002020433000010510020009c0000004d0000213d0000000804000039000000000404041a00000006070000290000004405700039000010bc060000410000000000650435000010b905000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c0000064a0000613d000000060100002900000040011002100000104e0040009c0000104e04008041000000c003400210000000000131019f000010ab011001c74134412f0000040f00000060031002700001104e0030019d0000104e0330019700030000000103550000000100200190000019050000613d000000200200008a00000000052301700000001f0630018f0000000604500029000006550000613d000000000701034f0000000608000029000000007907043c0000000008980436000000000048004b000006510000c13d000000000006004b000006620000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000601400029000000000041004b00000000040000390000000104004039000010550010009c0000009d0000213d00000001004001900000009d0000c13d000000400010043f000010ba0030009c0000004d0000213d000000200030008c0000004d0000413d00000006040000290000000004040433000010550040009c0000004d0000213d000000060630002900000006034000290000001f04300039000000000064004b0000000005000019000010bb05008041000010bb04400197000010bb07600197000000000874013f000000000074004b0000000004000019000010bb04004041000010bb0080009c000000000405c019000000000004004b0000004d0000c13d0000000054030434000010550040009c0000009d0000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000010550030009c0000009d0000213d000000400030043f00000000034104360000000007540019000000000067004b0000004d0000213d000000000724016f0000001f0640018f000000000035004b00001ec30000813d000000000007004b000006a40000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c0000069e0000c13d000000000006004b00001ed90000613d000000000803001900001ecf0000013d0000000701000029413435880000040f0000000701000039000000000201041a000000400b00043d000010a60100004100000000001b04350000000401b00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c00000d930000c13d0000000103000031000000200030008c0000002004000039000000000403401900000dbf0000013d0000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006d00000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006cc0000c13d000000000006004b000006dd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e1e0000613d0000001f01400039000000600110018f00000080021001bf000500000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010b7040000410000000505000029000000000045043500000084041001bf0000000000340435000000c40310003900000006040000290000000000430435000000a403100039000000070400002900000000004304350000000003000414000000040020008c00000d110000613d0000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f000000050b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000007120000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000070e0000c13d000000000006004b0000071f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000b430000c13d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000072a0000c13d00001d880000013d0000104e0030009c0000104e03008041000000c001300210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007430000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000073f0000c13d000000000006004b000007500000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e3b0000613d0000001f02400039000000600420018f00000080024001bf000700000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000805000039000000000505041a000010b906000041000000070a00002900000000006a043500000084064001bf0000000000560435000000c405400039000010b8060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c0000077b0000613d0000004001a002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c74134412f0000040f00000060031002700001104e0030019d0000104e03300197000300000001035500000001002001900000136b0000613d000000070a00002900001106053001980000001f0630018f00000000045a0019000007850000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000007810000c13d000000000006004b000007920000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001106041001970000000001a40019000000000041004b00000000040000390000000104004039000010550010009c0000009d0000213d00000001004001900000009d0000c13d000000400010043f000010ba0030009c0000004d0000213d000000200030008c0000004d0000413d00000007040000290000000004040433000010550040009c0000004d0000213d000000070630002900000007034000290000001f04300039000000000064004b0000000005000019000010bb05008041000010bb04400197000010bb07600197000000000874013f000000000074004b0000000004000019000010bb04004041000010bb0080009c000000000405c019000000000004004b0000004d0000c13d0000000043030434000010550030009c0000009d0000213d0000001f0530003900001106055001970000003f0550003900001106055001970000000005150019000010550050009c0000009d0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004d0000213d00001106063001970000001f0230018f000000000054004b00001b180000813d000000000006004b00000bf10000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000007ce0000c13d00000bf10000013d0000104e0030009c0000104e03008041000000c001300210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007e90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000007e50000c13d000000000006004b000007f60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e950000613d0000001f02400039000000600420018f00000080024001bf000700000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000805000039000000000505041a000010d506000041000000070a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c000008230000613d0000004001a002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c74134412f0000040f00000060031002700001104e0030019d0000104e0330019700030000000103550000000100200190000013770000613d000000070a00002900001106053001980000001f0630018f00000000045a00190000082d0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000008290000c13d000000000006004b0000083a0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001106011001970000000002a10019000000000012004b00000000010000390000000101004039000010550020009c0000009d0000213d00000001001001900000009d0000c13d000000400020043f000010ba0030009c0000004d0000213d000000200030008c0000004d0000413d00000007010000290000000001010433000010550010009c0000004d0000213d000000070330002900000007011000290000001f04100039000000000034004b0000000005000019000010bb05008041000010bb04400197000010bb06300197000000000764013f000000000064004b0000000004000019000010bb04004041000010bb0070009c000000000405c019000000000004004b0000004d0000c13d0000000015010434000010550050009c0000009d0000213d00000005045002100000003f06400039000010d6066001970000000006260019000010550060009c0000009d0000213d000000400060043f00000000005204350000000004140019000000000034004b0000004d0000213d000000000005004b00000c920000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b0000086e0000413d00000c920000013d0000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008880000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008840000c13d000000000006004b000008950000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000ea10000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010a9040000410000000705000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000009ae0000613d0000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f000000070b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000008cb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000008c70000c13d000000000006004b000008d80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011650000c13d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000008e30000c13d00001d880000013d0000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008fc0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008f80000c13d000000000006004b000009090000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000ead0000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010ad040000410000000705000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000010df0000c13d0000000001150019000000400010043f0000000702000029000000000202043300000d5e0000013d0000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009410000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000093d0000c13d000000000006004b0000094e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000eb90000613d0000001f01400039000000600110018f00000080021001bf000500000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010a9040000410000000505000029000000000045043500000084041001bf0000000000340435000000c40310003900000006040000290000000000430435000000a403100039000000070400002900000000004304350000000003000414000000040020008c0000110e0000c13d0000000001150019000000400010043f0000000502000029000009b10000013d0000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009840000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009800000c13d000000000006004b000009910000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000efc0000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010a9040000410000000705000029000000000045043500000084041001bf0000000000340435000000c403100039000010aa040000410000000000430435000000a40310003900000000000304350000000003000414000000040020008c0000113d0000c13d0000000001150019000000400010043f00000007020000290000000002020433000010510020009c0000004d0000213d00000d5e0000013d0000104e0010009c0000104e01008041000000c001100210000010cc011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009c90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009c50000c13d000000000006004b000009d60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f080000613d0000001f01400039000000600110018f00000080011001bf000500000001001d000000400010043f000000200030008c0000004d0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b0000116c0000c13d000010cf01000041000000000010043f0000000701000029000000040010043f000010eb01000041000000240010043f000010b30100004100004136000104300000104e0030009c0000104e03008041000000c001300210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a050000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a010000c13d000000000006004b00000a120000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f140000613d0000001f02400039000000600420018f00000080024001bf000500000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000805000039000000000505041a000010b906000041000000050a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000006060000290000000000650435000000a404400039000000070500002900000000005404350000000004000414000000040020008c00000a3e0000613d0000004001a002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c74134412f0000040f00000060031002700001104e0030019d0000104e0330019700030000000103550000000100200190000013e10000613d000000050a00002900001106053001980000001f0630018f00000000045a001900000a480000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000a440000c13d000000000006004b00000a550000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001106041001970000000001a40019000000000041004b00000000040000390000000104004039000010550010009c0000009d0000213d00000001004001900000009d0000c13d000000400010043f000010ba0030009c0000004d0000213d000000200030008c0000004d0000413d00000005040000290000000004040433000010550040009c0000004d0000213d000000050630002900000005034000290000001f04300039000000000064004b0000000005000019000010bb05008041000010bb04400197000010bb07600197000000000874013f000000000074004b0000000004000019000010bb04004041000010bb0080009c000000000405c019000000000004004b0000004d0000c13d0000000043030434000010550030009c0000009d0000213d0000001f0530003900001106055001970000003f0550003900001106055001970000000005150019000010550050009c0000009d0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004d0000213d00001106063001970000001f0230018f000000000054004b00001b220000813d000000000006004b00000bf10000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000a910000c13d00000bf10000013d0000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000aac0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000aa80000c13d000000000006004b00000ab90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f620000613d0000001f01400039000000600110018f00000080021001bf000500000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010ad040000410000000505000029000000000045043500000084041001bf0000000000340435000000c40310003900000006040000290000000000430435000000a403100039000000070400002900000000004304350000000003000414000000040020008c000011a40000c13d0000000001150019000000400010043f0000000502000029000000000202043300000d5e0000013d0000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000af00000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000aec0000c13d000000000006004b00000afd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f6e0000613d0000001f01400039000000600110018f00000080021001bf000500000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010db040000410000000505000029000000000045043500000084041001bf0000000000340435000000c40310003900000006040000290000000000430435000000a403100039000000070400002900000000004304350000000003000414000000040020008c00000d110000613d0000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f000000050b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000b320000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000b2e0000c13d000000000006004b00000b3f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013f90000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000d130000813d0000004d0000013d0000104e0030009c0000104e03008041000000c001300210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b5e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b5a0000c13d000000000006004b00000b6b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f7a0000613d0000001f02400039000000600420018f00000080024001bf000700000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000805000039000000000505041a000010b906000041000000070a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000b980000613d0000004001a002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c74134412f0000040f00000060031002700001104e0030019d0000104e0330019700030000000103550000000100200190000014050000613d000000070a00002900001106053001980000001f0630018f00000000045a001900000ba20000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000b9e0000c13d000000000006004b00000baf0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001106041001970000000001a40019000000000041004b00000000040000390000000104004039000010550010009c0000009d0000213d00000001004001900000009d0000c13d000000400010043f000010ba0030009c0000004d0000213d000000200030008c0000004d0000413d00000007040000290000000004040433000010550040009c0000004d0000213d000000070630002900000007034000290000001f04300039000000000064004b0000000005000019000010bb05008041000010bb04400197000010bb07600197000000000874013f000000000074004b0000000004000019000010bb04004041000010bb0080009c000000000405c019000000000004004b0000004d0000c13d0000000043030434000010550030009c0000009d0000213d0000001f0530003900001106055001970000003f0550003900001106055001970000000005150019000010550050009c0000009d0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004d0000213d00001106063001970000001f0230018f000000000054004b00001b2c0000813d000000000006004b00000bf10000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000beb0000c13d000000000002004b00001b420000613d000000000705001900001b380000013d0000104e0030009c0000104e03008041000000c001300210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c090000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c050000c13d000000000006004b00000c160000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f860000613d0000001f02400039000000600420018f00000080024001bf000500000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000805000039000000000505041a000010d506000041000000050a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000006060000290000000000650435000000a404400039000000070500002900000000005404350000000004000414000000040020008c00000c420000613d0000004001a002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c74134412f0000040f00000060031002700001104e0030019d0000104e0330019700030000000103550000000100200190000014110000613d000000050a00002900001106053001980000001f0630018f00000000045a001900000c4c0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000c480000c13d000000000006004b00000c590000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001106011001970000000002a10019000000000012004b00000000010000390000000101004039000010550020009c0000009d0000213d00000001001001900000009d0000c13d000000400020043f000010ba0030009c0000004d0000213d000000200030008c0000004d0000413d00000005010000290000000001010433000010550010009c0000004d0000213d000000050330002900000005011000290000001f04100039000000000034004b0000000005000019000010bb05008041000010bb04400197000010bb06300197000000000764013f000000000064004b0000000004000019000010bb04004041000010bb0070009c000000000405c019000000000004004b0000004d0000c13d0000000015010434000010550050009c0000009d0000213d00000005045002100000003f06400039000010d6066001970000000006260019000010550060009c0000009d0000213d000000400060043f00000000005204350000000004140019000000000034004b0000004d0000213d000000000005004b00000c920000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000c8d0000413d000000400100043d000700000001001d413424410000040f000002200000013d0000104e0010009c0000104e01008041000000c001100210000010cc011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000caa0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ca60000c13d000000000006004b00000cb70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f920000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004d0000c13d000000000002004b000011d30000c13d000010cf01000041000000000010043f0000000001000411000000040010043f000010e001000041000000240010043f000010b30100004100004136000104300000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ce60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ce20000c13d000000000006004b00000cf30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f9e0000613d0000001f01400039000000600110018f00000080021001bf000500000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010d7040000410000000505000029000000000045043500000084041001bf0000000000340435000000c40310003900000006040000290000000000430435000000a403100039000000070400002900000000004304350000000003000414000000040020008c000012770000c13d0000000001150019000000400010043f000000050200002900000d580000013d0000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d290000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d250000c13d000000000006004b00000d360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000faa0000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010d7040000410000000705000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000012a60000c13d0000000001150019000000400010043f00000007020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000004d0000c13d00000000002104350000004001100210000010a4011001c7000041350001042e000000000004004b000000000200001900000d660000613d00000000020104330000000301400210000011080110027f0000110801100167000000000112016f0000000102400210000000000121019f000010760000013d00000000010004140000104e0010009c0000104e01008041000000c001100210000010f0011001c70000800d0200003900000004030000390000110004000041000000070600002900000006070000294134412a0000040f00000001002001900000004d0000613d0000000601000029000000000010043f0000000401000039000000200010043f00000040020000390000000001000019413441150000040f000000000201041a000010ea0220019700000007022001af000000000021041b0000000001000019000041350001042e0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d8e0000c13d00001d880000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700060000000b001d4134412f0000040f000000060b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000dae0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000daa0000c13d000000000006004b00000dbb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000fb60000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000600000002001d000010550020009c0000009d0000213d00000001001001900000009d0000c13d0000000601000029000000400010043f000000200030008c0000004d0000413d00000000020b0433000010510020009c0000004d0000213d0000000801000039000000000101041a00000006060000290000004404600039000010d0050000410000000000540435000010b904000041000000000046043500000004046000390000000000140435000000240160003900000000000104350000000001000414000000040020008c000015400000c13d0000000301000367000015500000013d0000104e0010009c0000104e01008041000000c001100210000010cc011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000df60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000df20000c13d000000000006004b00000e030000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000fc20000613d0000001f01400039000000600110018f00000080011001bf000400000001001d000000400010043f000000200030008c0000004d0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000013410000c13d000010cf01000041000000000010043f0000000601000029000000040010043f000010f201000041000000240010043f000010b30100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e250000c13d00001d880000013d000700000006001d000600000005001d000000000010043f00000000010004140000104e0010009c0000104e01008041000000c00110021000001058011001c700008010020000394134412f0000040f00000001002001900000004d0000613d0000000702000029000000020020008c000012e10000813d000000a001000039000002170000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e420000c13d00001d880000013d0000104e0010009c0000104e01008041000000c001100210000010a8011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e5b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e570000c13d000000000006004b00000e680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000fce0000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000004d0000413d000000800200043d000010510020009c0000004d0000213d0000000803000039000000000303041a000010a9040000410000000605000029000000000045043500000084041001bf0000000000340435000000c403100039000010aa040000410000000000430435000000a403100039000000050400002900000000004304350000000003000414000000040020008c000013830000c13d0000000001150019000400000001001d000000400010043f00000006010000290000000001010433000010510010009c0000004d0000213d000000000001004b000017710000c13d000010b601000041000000000010043f0000000501000029000000040010043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e9c0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000ea80000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000eb40000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000ec00000c13d00001d880000013d0000104e0010009c0000104e01008041000000c001100210000010cc011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ed90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ed50000c13d000000000006004b00000ee60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010450000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004d0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000013ca0000c13d000010cf01000041000000000010043f0000000601000029000013300000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f030000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f0f0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f1b0000c13d00001d880000013d000011020020009c000003d00000613d000011030020009c000003d00000613d000000800000043f000010a501000041000041350001042e0000104e0010009c0000104e01008041000000c001100210000010cc011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f3b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f370000c13d000000000006004b00000f480000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010510000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000004d0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000004d0000c13d000000000003004b0000141d0000c13d000010cf01000041000000000010043f0000000001000411000000040010043f000010fb01000041000000240010043f000010b30100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f690000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f750000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f810000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f8d0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f990000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fa50000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fb10000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fbd0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fc90000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fd50000c13d00001d880000013d0000000001000411000000000010043f0000000501000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000000101043b0000000702000029000000000020043f000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000000101043b000000000201041a00001107022001970000000603000029000000000232019f000000000021041b000000400100043d00000000003104350000104e0010009c0000104e01008041000000400110021000000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f00001058011001c70000800d020000390000000303000039000010d904000041000000000500041100000007060000294134412a0000040f0000000100200190000017d70000c13d0000004d0000013d0000104e0010009c0000104e01008041000000c001100210000010cc011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010220000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000101e0000c13d000000000006004b0000102f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012ee0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004d0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000015ba0000c13d000010cf01000041000000000010043f0000000501000029000013300000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000104c0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010580000c13d00001d880000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000020700002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000010630000c13d000000000092004b000010740000813d0000000302900210000000f80220018f000011080220027f000011080220016700000000038300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf000000000010041b0000000001070433000500000001001d000010550010009c0000009d0000213d0000000104000039000000000204041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000059e0000c13d000000200010008c0000000505000029000010990000413d0000000102000039000000000020043f0000001f025000390000000502200270000010590220009a000000200050008c0000105a020040410000001f011000390000000501100270000010590110009a000000000012004b000010990000813d000000000002041b0000000102200039000000000012004b000010950000413d0000001f0050008c000012d50000a13d000200000007001d0000000101000039000000000010043f00000000010004140000104e0010009c0000104e01008041000000c00110021000001058011001c70000801002000039000300000006001d4134412f0000040f00000001002001900000004d0000613d000000200200008a0000000502200180000000000101043b000016100000c13d000000200300003900000002060000290000161d0000013d0000104e0050009c0000104e05008041000000c0015002100000004003700210000000000131019f000010ab011001c74134412f0000040f000000060b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000010c60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000010c20000c13d000000000006004b000010d30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013350000613d0000001f02400039000000600420018f0000000002b40019000500000002001d000000400020043f000000200030008c000006100000813d0000004d0000013d0000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f000000070b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000010f60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000010f20000c13d000000000006004b000011030000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013b20000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000092a0000813d0000004d0000013d0000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f000000050b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011250000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011210000c13d000000000006004b000011320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013be0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000096e0000813d0000004d0000013d0000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f000000070b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011540000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011500000c13d000000000006004b000011610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013d50000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000009b00000813d0000004d0000013d0000000701000039000000000201041a000000ff00200190000013ed0000c13d000010ec0100004100000005040000290000000000140435000000000100041400000008022002700000105102200197000000040020008c000015be0000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001410019000000400010043f00000005020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000004d0000c13d000000000002004b000013ee0000c13d0000000901000039000000000101041a0000000801100270000710510010019c000018cc0000c13d000000060100002941342e970000040f000010af020000410000000000200443000700000001001d00000000010004140000104e0010009c0000104e01008041000000c001100210000010b0011001c70000800b020000394134412f0000040f0000000100200190000023a90000613d000000000201043b000010b10020009c000019fd0000413d000010b201000041000000000010043f0000002001000039000000040010043f000000240020043f000010b30100004100004136000104300000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f000000050b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011bb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011b70000c13d000000000006004b000011c80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014340000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000ad90000813d0000004d0000013d000000c002100039000000400020043f0000000b0200003900000007040000290000000000240435000000a004100039000010e10200004100000000002404350000000902000039000000000202041a000000ff00200190000014400000c13d000600000004001d0000000702000039000000000202041a000000400b00043d000010a60400004100000000004b04350000000404b00039000010a7050000410000000000540435000000000400041400000008022002700000105102200197000000040020008c0000121b0000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ac011001c700050000000b001d4134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050b0000290000000505700029000012080000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000012040000c13d000000000006004b000012150000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017c90000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000010550020009c0000009d0000213d00000001001001900000009d0000c13d000000400020043f000000200030008c0000004d0000413d00000000010b0433000500000001001d000010510010009c0000004d0000213d0000000801000039000000000101041a000400000001001d000010dc0100004100000000001004430000000501000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400300043d0000006401300039000000000200041000000000002104350000004401300039000010e3020000410000000000210435000010e40100004100000000001304350000000401300039000200000001001d00000004020000290000000000210435000300000003001d0000002401300039000000000001043500000000010004140000000502000029000000040020008c000012610000613d00000003020000290000104e0020009c0000104e0200804100000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c700000005020000294134412a0000040f00000060031002700001104e0030019d0003000000010355000000010020019000001b7f0000613d0000000301000029000010550010009c0000009d0000213d0000000303000029000000400030043f0000000701000039000000000201041a000010a6010000410000000000130435000010a70100004100000002030000290000000000130435000000000100041400000008022002700000105102200197000000040020008c00001bc60000c13d0000000103000031000000200030008c0000002004000039000000000403401900001bf00000013d0000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f000000050b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000128e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000128a0000c13d000000000006004b0000129b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014440000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004d0000413d00000d130000013d0000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f000000070b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000012bd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000012b90000c13d000000000006004b000012ca0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014500000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000d570000813d0000004d0000013d000000000005004b0000000001000019000012da0000613d000000060100002900000000010104330000000302500210000011080220027f0000110802200167000000000121016f0000000102500210000000000121019f0000162c0000013d000000000101043b000000000300001900000006050000290000000002030019000000000301041a000000a004200039000000000034043500000001011000390000002003200039000000000053004b000012e40000413d000000c001200039000002170000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012f50000c13d00001d880000013d0000104e0010009c0000104e01008041000000c001100210000010cc011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000130e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000130a0000c13d000000000006004b0000131b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014af0000613d0000001f01400039000000600110018f00000080041001bf000000400040043f000000200030008c0000004d0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000017d50000c13d000010cf01000041000000000010043f0000000701000029000000040010043f000010cb01000041000000240010043f000010b30100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000133c0000c13d00001d880000013d0000000701000039000000000201041a000000ff00200190000018ba0000c13d000010ec0100004100000004040000290000000000140435000000000100041400000008022002700000105102200197000000040020008c000017770000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000401100029000600000001001d000000400010043f00000004010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000018b90000c13d00000006020000290000002001200039000400000001001d000000400010043f00000000000204354134260f0000040f000000000001004b0000191d0000613d000000050010006b0000191d0000a13d000010f901000041000000000010043f000010b50100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013720000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000137e0000c13d00001d880000013d0000104e0030009c0000104e03008041000000c0013002100000004003500210000000000131019f000010ab011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000013990000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000013950000c13d000000000006004b000013a60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015ae0000613d0000001f01400039000000600110018f0000000601100029000400000001001d000000400010043f000000200030008c00000e890000813d0000004d0000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013b90000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013c50000c13d00001d880000013d000000070300002900000008013002100000105c011001970000000704000039000000000204041a000010cd02200197000000000112019f000000000014041b000000000003004b000017d70000c13d000016320000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013dc0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013e80000c13d00001d880000013d00000005010000290000004402100039000010ed030000410000000000320435000000240210003900000010030000390000000000320435000010c9020000410000000000210435000000040210003900000020030000390000160c0000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014000000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000140c0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014180000c13d00001d880000013d0000000703000039000000000303041a000000ff0430018f000000070000006b000015ec0000c13d000000000004004b000016020000613d00001107023001970000000703000039000000000023041b00000000020004110000000000210435000000400110021000000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f00001058011001c70000800d020000390000000103000039000010fd04000041000015fe0000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000143b0000c13d00001d880000013d000010e201000041000000000010043f000010b50100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000144b0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014570000c13d00001d880000013d0000104e0050009c0000104e03000041000000000305401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010b3011001c7000700000005001d4134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070b0000290000000705700029000014770000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014730000c13d000000000006004b000014840000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017030000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000700000002001d000010550020009c0000009d0000213d00000001001001900000009d0000c13d0000000701000029000000400010043f000000200030008c0000004d0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b00000ef80000613d0000000701000039000000000201041a000010a601000041000000070400002900000000001404350000000401400039000010a7040000410000000000410435000000000100041400000008022002700000105102200197000000040020008c0000198c0000c13d0000002004000039000019b60000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014b60000c13d00001d880000013d0000000005000414000000040020008c000017400000c13d0000000502400029000600000002001d000000400020043f00000005020000290000000002020433000010510020009c0000004d0000213d0000000804000039000000000404041a00000006070000290000004405700039000010b8060000410000000000650435000000240570003900000007060000290000000000650435000010b9050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c000014e30000613d000000060100002900000040011002100000104e0040009c0000104e04008041000000c003400210000000000131019f000010ab011001c74134412f0000040f00000060031002700001104e0030019d0000104e0330019700030000000103550000000100200190000019110000613d00001106053001980000001f0630018f0000000604500029000014ed0000613d000000000701034f0000000608000029000000007907043c0000000008980436000000000048004b000014e90000c13d000000000006004b000014fa0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001106041001970000000601400029000000000041004b00000000040000390000000104004039000010550010009c0000009d0000213d00000001004001900000009d0000c13d000000400010043f000010ba0030009c0000004d0000213d000000200030008c0000004d0000413d00000006040000290000000004040433000010550040009c0000004d0000213d000000060630002900000006034000290000001f04300039000000000064004b0000000005000019000010bb05008041000010bb04400197000010bb07600197000000000874013f000000000074004b0000000004000019000010bb04004041000010bb0080009c000000000405c019000000000004004b0000004d0000c13d0000000043030434000010550030009c0000009d0000213d0000001f0530003900001106055001970000003f0550003900001106055001970000000005150019000010550050009c0000009d0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004d0000213d00001106063001970000001f0230018f000000000054004b00001ee20000813d000000000006004b0000153c0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000015360000c13d000000000002004b00001ef80000613d000000000705001900001eee0000013d00000006030000290000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ab011001c74134412f0000040f00000060031002700001104e0030019d0000104e0330019700030000000103550000000100200190000017a70000613d000000200200008a00000000052301700000001f0630018f00000006045000290000155b0000613d000000000701034f0000000608000029000000007907043c0000000008980436000000000048004b000015570000c13d000000000006004b000015680000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000601400029000000000041004b00000000040000390000000104004039000010550010009c0000009d0000213d00000001004001900000009d0000c13d000000400010043f000010ba0030009c0000004d0000213d000000200030008c0000004d0000413d00000006040000290000000004040433000010550040009c0000004d0000213d000000060630002900000006034000290000001f04300039000000000064004b0000000005000019000010bb05008041000010bb04400197000010bb07600197000000000874013f000000000074004b0000000004000019000010bb04004041000010bb0080009c000000000405c019000000000004004b0000004d0000c13d0000000054030434000010550040009c0000009d0000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000010550030009c0000009d0000213d000000400030043f00000000034104360000000007540019000000000067004b0000004d0000213d000000000724016f0000001f0640018f000000000035004b00001c550000813d000000000007004b000015aa0000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000015a40000c13d000000000006004b00001c6b0000613d000000000803001900001c610000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015b50000c13d00001d880000013d000000060000006b000017b30000c13d0000000a0100003900000d810000013d0000104e0010009c0000104e01008041000000c0011002100000004003400210000000000131019f000010b5011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000015d40000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000015d00000c13d000000000006004b000015e10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017bd0000613d0000001f01400039000000600110018f0000000501100029000000400010043f000000200030008c0000117e0000813d0000004d0000013d000000000004004b000016020000c13d000011070230019700000001022001bf0000000703000039000000000023041b00000000020004110000000000210435000000400110021000000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f00001058011001c70000800d020000390000000103000039000010fc040000414134412a0000040f00000001002001900000004d0000613d000017d70000013d000010c903000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000010fe040000410000000000430435000000a402200039000000140300003900000000003204350000004001100210000010ab011001c70000413600010430000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000020600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000016160000c13d0000000505000029000000000052004b000016280000813d0000000302500210000000f80220018f000011080220027f000011080220016700000000036300190000000003030433000000000223016f000000000021041b000000010150021000000001011001bf000000030600002900000001040000390000105100600198000000000014041b0000000601000039000600000004001d000000000041041b000016360000c13d000010ce01000041000000000010043f000010b50100004100004136000104300000000701000039000000000201041a0000105b0220019700000008036002100000105c03300197000000000223019f00000001022001bf000000000021041b0000105d010000410000000802000039000000000012041b0000000b01000039000000000001041b00000007010000290000000001010433000500000001001d000010550010009c0000009d0000213d0000000c01000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000059e0000c13d000000200010008c000016660000413d0000000c02000039000000000020043f00000005030000290000001f0230003900000005022002700000105e0220009a000000200030008c0000105f020040410000001f0110003900000005011002700000105e0110009a000000000012004b000016660000813d000000000002041b0000000102200039000000000012004b000016620000413d00000005010000290000001f0010008c000018110000a13d0000000c01000039000000000010043f00000000010004140000104e0010009c0000104e01008041000000c00110021000001058011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000200200008a0000000502200180000000000101043b0000196a0000c13d0000002003000039000019770000013d00000006030000290000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000016930000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b0000168f0000c13d000000000006004b000016a00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017d90000613d0000001f01400039000000600110018f0000000604100029000000000014004b00000000020000390000000102004039000500000004001d000010550040009c0000009d0000213d00000001002001900000009d0000c13d0000000502000029000000400020043f000000200030008c0000004d0000413d00000006020000290000000002020433000010510020009c0000004d0000213d0000000804000039000000000404041a00000005070000290000004405700039000010c7060000410000000000650435000010ad05000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c000016f20000613d00000005010000290000104e0010009c0000104e0100804100000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000016df0000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000016db0000c13d000000000006004b000016ec0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ab90000613d0000001f01400039000000600110018f0000000501100029000010550010009c0000009d0000213d000000400010043f000000200030008c0000004d0000413d000000050200002900000000020204330000000003000416000000000023004b00001b8c0000813d0000004402100039000010c80300004100000000003204350000002402100039000000140300003900001b4f0000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000170a0000c13d00001d880000013d0000104e0050009c0000104e05008041000000c0015002100000000503000029000500000003001d0000004003300210000000000113019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000017270000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000017230000c13d000000000006004b000017340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017e50000613d0000001f02400039000000600220018f0000000502200029000600000002001d000000400020043f000000200030008c000006290000813d0000004d0000013d0000104e0050009c0000104e05008041000000c0015002100000000503000029000500000003001d0000004003300210000000000113019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000017580000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000017540000c13d000000000006004b000017650000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017f10000613d0000001f02400039000000600220018f0000000502200029000600000002001d000000400020043f000000200030008c000014c10000813d0000004d0000013d000000070000006b000017fd0000c13d000010b401000041000000000010043f000010b50100004100004136000104300000104e0010009c0000104e01008041000000c00110021000000004030000290000004003300210000000000131019f000010b5011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000004057000290000178e0000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b0000178a0000c13d000000000006004b0000179b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000181d0000613d0000001f01400039000000600110018f0000000401100029000600000001001d000000400010043f000000200030008c000013540000813d0000004d0000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017ae0000c13d00001d880000013d000000070100002900000008011002100000105c011001970000000902000039000000000302041a000010cd03300197000000000113019f000000000012041b0000000001000019000041350001042e0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017c40000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017d00000c13d00001d880000013d000000030000006b000018290000c13d0000000001000019000041350001042e0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017e00000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017ec0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017f80000c13d00001d880000013d000000070010006c000018c90000c13d0000000701000039000000000201041a000010a60100004100000004030000290000000001130436000700000001001d00000004013001bf000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c000019230000c13d00000020010000390000000702000029000000400020043f000019530000013d000000050000006b0000000001000019000018160000613d0000000401000029000000000101043300000005040000290000000302400210000011080220027f0000110802200167000000000121016f0006000100400218000019840000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018240000c13d00001d880000013d000000000a040019000700000000001d0000000701000029000000050110021000000002011000290000000201100367000000000101043b000500000001001d0000000701000039000000000201041a000010a60100004100000000001a04350000000401a00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c000018420000c13d0000000103000031000000200030008c000000200400003900000000040340190000186d0000013d0000104e00a0009c0000104e0300004100000000030a401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700060000000a001d4134412f0000040f000000060a00002900000060031002700000104e03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a00190000185c0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000018580000c13d0000001f07400190000018690000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b5a0000613d0000001f01400039000000600110018f0000000001a10019000010550010009c0000009d0000213d000000400010043f000000200030008c0000004d0000413d00000000020a0433000010510020009c0000004d0000213d0000000801000039000000000101041a000400000001001d000010dc010000410000000000100443000600000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b00000006030000290000004d0000613d000000400a00043d0000006401a00039000000010200003900000000002104350000004401a00039000010de0200004100000000002104350000002401a0003900000005020000290000000000210435000010df0100004100000000001a04350000000401a00039000000040200002900000000002104350000000001000414000000040030008c000018b00000613d0000104e00a0009c0000104e0200004100000000020a401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c7000000000203001900060000000a001d4134412a0000040f000000060a00002900000060031002700001104e0030019d0003000000010355000000010020019000001b660000613d0000105500a0009c0000009d0000213d0000004000a0043f00000007020000290000000102200039000700000002001d000000030020006c0000182b0000413d000017d70000013d000400060000002d00000004030000290000004401300039000010ed020000410000000000210435000000240130003900000010020000390000000000210435000010c90100004100000000001304350000000401300039000000200200003900000000002104350000004001300210000010ab011001c7000041360001043000000000010000190000000402000029000005660000013d000010dc0100004100000000001004430000000701000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400300043d000000440130003900000006020000290000000000210435000010ee010000410000000000130435000000000100041000001051011001970000000402300039000000000012043500000064013000390000000000010435000500000003001d0000002401300039000000000001043500000000010004140000000702000029000000040020008c000018ff0000613d00000005020000290000104e0020009c0000104e0200804100000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c700000007020000294134412a0000040f00000060031002700001104e0030019d0003000000010355000000010020019000001b910000613d0000000501000029000010550010009c0000009d0000213d0000000501000029000000400010043f0000118c0000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000190c0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019180000c13d00001d880000013d000000050000006b00001a850000c13d000010f801000041000000000010043f000010b50100004100004136000104300000104e0010009c0000104e01008041000000c0011002100000000403000029000400000003001d0000004003300210000000000113019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000004057000290000193b0000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b000019370000c13d000000000006004b000019480000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001aad0000613d0000001f01400039000000600110018f0000000402100029000700000002001d000000400020043f000000200030008c0000004d0000413d00000004020000290000000002020433000010510020009c0000004d0000213d0000000803000039000000000303041a000010ad040000410000000705000029000000000045043500000004045001bf00000000003404350000004403500039000010ae0400004100000000004304350000002403500039000000050400002900000000004304350000000003000414000000040020008c00001ad10000c13d0000000701100029000000400010043f00001b000000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000070600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000019700000c13d000000050020006c000019820000813d00000005020000290000000302200210000000f80220018f000011080220027f000011080220016700000007033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000006011001af0000000c02000039000000000012041b0000002001000039000001000010044300000120000004430000106001000041000041350001042e00000007030000290000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000019a50000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000019a10000c13d000000000006004b000019b20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ac50000613d0000001f01400039000000600110018f0000000701100029000010550010009c0000009d0000213d000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000700000001001d000010510010009c0000004d0000213d0000000801000039000000000101041a000600000001001d000010dc0100004100000000001004430000000701000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000010d0020000410000000000210435000010e5010000410000000000150435000000040150003900000006020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d000000000012043500001106041001970000001f0310018f000600000005001d000000a402500039000000a10020008c00001e1d0000413d000000000004004b000019f80000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c000019f20000c13d000000000003004b00001e330000613d000000a004000039000000000502001900001e290000013d000000060100002941343f920000040f0000000601000029413425310000040f000000000001004b00001b490000c13d000000060100002941342e970000040f000510510010019c00001a290000613d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000000101043b000000000201041a000010ea02200197000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000000101043b000000000201041a000010ea02200197000000000021041b00000000010004140000104e0010009c0000104e01008041000000c001100210000010f0011001c70000800d020000390000000403000039000010f1040000410000000505000029000000000600001900000006070000294134412a0000040f00000001002001900000004d0000613d000000400100043d000000200200003900000000022104360000000000020435000010520010009c0000009d0000213d0000004003100039000000400030043f0000104e0020009c0000104e02008041000000400220021000000000010104330000104e0010009c0000104e010080410000006001100210000000000121019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000000101043b000400000001001d413433d60000040f000000010210003a00001c4f0000613d0000000401000029413440530000040f0000000701000029000010510310019800001fcc0000c13d0000000a01000039000000000101041a000410510010019c00001fef0000c13d000000400100043d000700000001001d000300040010003d0000000701000039000000000201041a000010a60100004100000007030000290000000000130435000010a70100004100000003030000290000000000130435000000000100041400000008022002700000105102200197000000040020008c000020a90000c13d0000000103000031000000200030008c00000020040000390000000004034019000020d40000013d000000070100002900000005020000294134365a0000040f000010dc0100004100000000001004430000000701000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000400200043d000300000002001d000000000101043b000000000001004b00001b9e0000c13d000600030000002d0000000701000039000000000201041a000010a601000041000000060300002900000000001304350000000401300039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c00001c7e0000c13d0000000104000031000000200040008c0000002003000039000000000304401900001ca90000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ab40000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ac00000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001acc0000c13d00001d880000013d0000104e0030009c0000104e03008041000000c0013002100000000703000029000700000003001d0000004003300210000000000113019f000010ab011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900001ae90000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00001ae50000c13d000000000006004b00001af60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b730000613d0000001f01400039000000600110018f0000000701100029000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000700000001001d000010af01000041000000000010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010b0011001c70000800b020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000010b10010009c00001c4a0000413d000010b202000041000000000020043f0000002002000039000000040020043f000000240010043f000010b30100004100004136000104300000000007650019000000000006004b00001b350000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001b1d0000c13d00001b350000013d0000000007650019000000000006004b00001b350000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001b270000c13d00001b350000013d0000000007650019000000000006004b00001b350000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001b310000c13d000000000002004b00001b420000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f0000000000270435000000000253001900000000000204350000002002000039000000400300043d000700000003001d00000000022304360000021f0000013d000000400100043d0000004402100039000010ef03000041000000000032043500000024021000390000001b030000390000000000320435000010c90200004100000000002104350000000402100039000000200300003900000000003204350000104e0010009c0000104e010080410000004001100210000010ab011001c700004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b610000c13d00001d880000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b6e0000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b7a0000c13d00001d880000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b870000c13d00001d880000013d0000008002000039000000070100002941342f720000040f0000000001000019000041350001042e0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b990000c13d00001d880000013d000000030300002900000064013000390000008002000039000200000002001d0000000000210435000000440130003900000005020000290000000000210435000010f301000041000000000013043500000004013000390000000002000411000000000021043500000024013000390000000000010435000000060100002900000000010104330000008402300039000000000012043500001106051001970000001f0410018f000000a403300039000000040030006b00001d0b0000813d000000000005004b00001bc20000613d00000004074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00001bbc0000c13d000000000004004b00001d220000613d000000000603001900001d170000013d00000003030000290000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000030570002900001bdf0000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b00001bdb0000c13d000000000006004b00001bec0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001d7d0000613d0000001f01400039000000600110018f0000000301100029000010550010009c0000009d0000213d000000400010043f000000200030008c0000004d0000413d00000003010000290000000001010433000500000001001d000010510010009c0000004d0000213d0000000801000039000000000101041a000400000001001d000010dc0100004100000000001004430000000501000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400300043d0000006401300039000000000200041100000000002104350000004401300039000010aa020000410000000000210435000010e40100004100000000001304350000000401300039000200000001001d00000004020000290000000000210435000300000003001d0000002401300039000000000001043500000000010004140000000502000029000000040020008c00001c340000613d00000003020000290000104e0020009c0000104e0200804100000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c700000005020000294134412a0000040f00000060031002700001104e0030019d00030000000103550000000100200190000020290000613d0000000301000029000010550010009c0000009d0000213d0000000303000029000000400030043f0000000701000039000000000201041a000010a6010000410000000000130435000010a70100004100000002030000290000000000130435000000000100041400000008022002700000105102200197000000040020008c000020360000c13d0000000103000031000000200030008c00000020040000390000000004034019000020600000013d00000007020000290000104e0220019700000000012100490000104e0010009c00001d9b0000a13d000010e901000041000000000010043f0000001101000039000000040010043f000010ac0100004100004136000104300000000008730019000000000007004b00001c5e0000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b00001c5a0000c13d000000000006004b00001c6b0000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000004010433000000000004004b00001c770000c13d000000400100043d000010d10010009c0000009d0000213d0000002002100039000000400020043f000000000001043500001efa0000013d0000000704000029000010bd0040009c00001d9f0000413d00000040060000390000000704000029000010bd0440012a00001da80000013d0000000603000029000600000003001d0000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f00000060031002700000104e04300197000000200040008c000000200300003900000000030440190000001f0630018f0000002007300190000000060570002900001c980000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001c940000c13d000000000006004b00001ca50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f0003000000010355000000010020019000001df70000613d0000001f01300039000000600210018f0000000605200029000000000025004b00000000020000390000000102004039000700000005001d000010550050009c0000009d0000213d00000001002001900000009d0000c13d0000000702000029000000400020043f000000200040008c0000004d0000413d00000006020000290000000002020433000010510020009c0000004d0000213d0000000804000039000000000404041a00000007070000290000004405700039000010de060000410000000000650435000000240570003900000005060000290000000000650435000010d7050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00001cf70000613d00000007010000290000104e0010009c0000104e0100804100000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c74134412f0000040f00000060031002700000104e04300197000000200040008c000000200300003900000000030440190000001f0630018f0000002007300190000000070570002900001ce50000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00001ce10000c13d000000000006004b00001cf20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f0003000000010355000000010020019000001fc00000613d0000001f0130003900001106011001970000000701100029000010550010009c0000009d0000213d000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004d0000c13d000000000001004b000017d70000c13d000000050100002941343dd90000040f0000000001000019000041350001042e0000000006530019000000000005004b00001d140000613d0000000407000029000000000803001900000000790704340000000008980436000000000068004b00001d100000c13d000000000004004b00001d220000613d000400040050002d0000000304400210000000000506043300000000054501cf000000000545022f000000040700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000000003310019000000000003043500000000030004140000000704000029000000040040008c00001d300000c13d0000000005000415000000090550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001d640000013d0000001f011000390000110601100197000000a4011000390000104e0010009c0000104e01008041000000600110021000000003020000290000104e0020009c0000104e020080410000004002200210000000000121019f0000104e0030009c0000104e03008041000000c002300210000000000121019f00000007020000294134412a0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000030570002900001d500000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b00001d4c0000c13d000000000006004b00001d5d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000080550008a0000000505500210000000010020019000001e110000613d0000001f01400039000000600110018f0000000302100029000000000012004b00000000010000390000000101004039000600000002001d000010550020009c0000009d0000213d00000001001001900000009d0000c13d0000000601000029000000400010043f000000200030008c0000004d0000413d00000003010000290000000001010433000010f5001001980000004d0000c13d0000000502500270000000000201001f000010f601100197000010f30010009c00001a9b0000613d00001e170000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001d840000c13d000000000005004b00001d950000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f0000413600010430000000400200043d000400000002001d0000000402000029000005660000013d0000000704000029000010bf0040009c000010be0440212a00000000060000390000002006002039000010c00040009c00000010066081bf000010c104408197000010c00440812a000010c20040009c00000008066080390000105504408197000010c20440812a000027100040008c00000004066080390000104e04408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000010550040009c0000009d0000213d00000001008001900000009d0000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f00001dd10000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b00001dcd0000c13d000000000007004b000000000665001900000021066000390000000709000029000000090090008c0000000a7990011a0000000307700210000000010660008a0000000008060433000010c308800197000010c40770021f000010c507700197000000000787019f000000000076043500001dd50000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b00001e560000813d000000000009004b00001df30000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c00001ded0000c13d000000000008004b00001e6c0000613d000000000a07001900001e620000013d0000001f0540018f0000105006400198000000400200043d000000000362001900001e020000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001dfe0000c13d000000000005004b00001e0f0000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000130435000000600140021000001d960000013d000000000003004b00001e9b0000c13d00000060020000390000000001020433000000000001004b00001f540000c13d000010f701000041000000000010043f0000000701000029000000040010043f000010ac0100004100004136000104300000000005420019000000000004004b00001e260000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b00001e220000c13d000000000003004b00001e330000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000703000029000000040030008c00001e4f0000613d0000001f011000390000110601100197000000a4011000390000104e0010009c0000104e01008041000000600110021000000006030000290000104e0030009c0000104e030080410000004003300210000000000131019f0000104e0020009c0000104e02008041000000c002200210000000000121019f00000007020000294134412a0000040f00000060031002700001104e0030019d0003000000010355000000010020019000001f5d0000613d0000000601000029000010550010009c0000009d0000213d0000000601000029000000400010043f0000000001000019000041350001042e000000000a970019000000000009004b00001e5f0000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b00001e5b0000c13d000000000008004b00001e6c0000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b00001e830000813d000000000007004b00001e7f0000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001e790000c13d000000000006004b00001e990000613d000000000803001900001e8f0000013d0000000008730019000000000007004b00001e8c0000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b00001e880000c13d000000000006004b00001e990000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000353001900001fae0000013d0000001f023000390000104f022001970000003f02200039000010f404200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000010550040009c0000009d0000213d00000001005001900000009d0000c13d000000400040043f0000001f0430018f00000000063204360000105005300198000200000006001d000000000356001900001eb50000613d000000000601034f0000000207000029000000006806043c0000000007870436000000000037004b00001eb10000c13d000000000004004b00001e140000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500001e140000013d0000000008730019000000000007004b00001ecc0000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b00001ec80000c13d000000000006004b00001ed90000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000704000029000010bd0040009c00001efc0000413d00000040060000390000000704000029000010bd0440012a00001f050000013d0000000007650019000000000006004b00001eeb0000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001ee70000c13d000000000002004b00001ef80000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d00001fbe0000013d0000000704000029000010bf0040009c000010be0440212a00000000060000390000002006002039000010c00040009c00000010066081bf000010c104408197000010c00440812a000010c20040009c00000008066080390000105504408197000010c20440812a000027100040008c00000004066080390000104e04408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000010550040009c0000009d0000213d00000001008001900000009d0000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f00001f2e0000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b00001f2a0000c13d000000000007004b000000000665001900000021066000390000000709000029000000090090008c0000000a7990011a0000000307700210000000010660008a0000000008060433000010c308800197000010c40770021f000010c507700197000000000787019f000000000076043500001f320000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b00001f6a0000813d000000000009004b00001f500000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c00001f4a0000c13d000000000008004b00001f800000613d000000000a07001900001f760000013d00000002020000290000104e0020009c0000104e0200804100000040022002100000104e0010009c0000104e010080410000006001100210000000000121019f00004136000104300000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f650000c13d00001d880000013d000000000a970019000000000009004b00001f730000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b00001f6f0000c13d000000000008004b00001f800000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b00001f970000813d000000000007004b00001f930000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001f8d0000c13d000000000006004b00001fad0000613d000000000803001900001fa30000013d0000000008730019000000000007004b00001fa00000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b00001f9c0000c13d000000000006004b00001fad0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000335001900000000000304350000000003130049000000200430008a00000000004104350000001f03300039000000000223016f0000000004120019000000000024004b00000000020000390000000102004039000010550040009c0000009d0000213d00000001002001900000009d0000c13d0000000003040019000000400040043f000000200200003900001b460000013d0000001f0540018f0000105006400198000000400200043d000000000362001900001e020000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001fc70000c13d00001e020000013d000000400100043d000000200200003900000000022104360000000000320435000010520010009c0000009d0000213d0000004003100039000000400030043f0000104e0020009c0000104e02008041000000400220021000000000010104330000104e0010009c0000104e010080410000006001100210000000000121019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f00000001002001900000004d0000613d000000000101043b000700000001001d413433d60000040f000000000001004b00001c4f0000613d000000010210008a0000000701000029413440530000040f00001a6c0000013d000010dc0100004100000000001004430000000401000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400300043d000000440130003900000006020000290000000000210435000010ee010000410000000000130435000000000100041000001051011001970000000402300039000300000002001d000000000012043500000064013000390000000000010435000700000003001d0000002401300039000000000001043500000000010004140000000402000029000000040020008c000020230000613d00000007020000290000104e0020009c0000104e0200804100000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c700000004020000294134412a0000040f00000060031002700001104e0030019d00030000000103550000000100200190000021410000613d0000000701000029000010550010009c0000009d0000213d0000000701000029000000400010043f00001a730000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020310000c13d00001d880000013d00000003030000290000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000003057000290000204f0000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b0000204b0000c13d000000000006004b0000205c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000021290000613d0000001f01400039000000600110018f0000000301100029000010550010009c0000009d0000213d000000400010043f000000200030008c0000004d0000413d00000003010000290000000001010433000500000001001d000010510010009c0000004d0000213d0000000801000039000000000101041a000400000001001d000010dc0100004100000000001004430000000501000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000010b8020000410000000000210435000010e50100004100000000001504350000000401500039000200000001001d0000000402000029000000000021043500000024015000390000000000010435000000070100002900000000010104330000008402500039000000000012043500001106041001970000001f0310018f000300000005001d000000a402500039000000060020006b0000214e0000813d000000000004004b000020a50000613d00000006063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c0000209f0000c13d000000000003004b000021650000613d00000000050200190000215a0000013d0000000703000029000700000003001d0000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000020c30000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000020bf0000c13d000000000006004b000020d00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000021350000613d0000001f01400039000000600210018f0000000701200029000000000021004b00000000020000390000000102004039000010550010009c0000009d0000213d00000001002001900000009d0000c13d000000400010043f000000200030008c0000004d0000413d00000007010000290000000001010433000700000001001d000010510010009c0000004d0000213d0000000801000039000000000101041a000400000001001d000010dc0100004100000000001004430000000701000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400300043d0000004401300039000010aa020000410000000000210435000000240130003900000006020000290000000000210435000010e4010000410000000000130435000000040130003900000004020000290000000000210435000400000003001d0000006401300039000000000001043500000000010004140000000702000029000000040020008c0000211c0000613d00000004020000290000104e0020009c0000104e0200804100000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c700000007020000294134412a0000040f00000060031002700001104e0030019d00030000000103550000000100200190000021a40000613d0000000401000029000010550010009c0000009d0000213d0000000401000029000000400010043f000000050000006b000017d70000c13d000010b601000041000000000010043f0000000601000029000000040010043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021300000c13d00001d880000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000213c0000c13d00001d880000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021490000c13d00001d880000013d0000000005420019000000000004004b000021570000613d0000000606000029000000000702001900000000680604340000000007870436000000000057004b000021530000c13d000000000003004b000021650000613d000600060040002d0000000303300210000000000405043300000000043401cf000000000434022f000000060600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000503000029000000040030008c000021810000613d0000001f011000390000110601100197000000a4011000390000104e0010009c0000104e01008041000000600110021000000003030000290000104e0030009c0000104e030080410000004003300210000000000131019f0000104e0020009c0000104e02008041000000c002200210000000000112019f00000005020000294134412a0000040f00000060031002700001104e0030019d00030000000103550000000100200190000021970000613d0000000301000029000010550010009c0000009d0000213d0000000303000029000000400030043f0000000701000039000000000201041a000010a6010000410000000000130435000010a70100004100000002030000290000000000130435000000000100041400000008022002700000105102200197000000040020008c000021b10000c13d0000000103000031000000200030008c00000020040000390000000004034019000021db0000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000219f0000c13d00001d880000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021ac0000c13d00001d880000013d00000003030000290000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000305700029000021ca0000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b000021c60000c13d000000000006004b000021d70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000223d0000613d0000001f01400039000000600110018f0000000301100029000010550010009c0000009d0000213d000000400010043f000000200030008c0000004d0000413d00000003010000290000000001010433000700000001001d000010510010009c0000004d0000213d0000000801000039000000000101041a000600000001001d000010dc0100004100000000001004430000000701000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400300043d00000064013000390000105d0200004100000000002104350000004401300039000010e6020000410000000000210435000010e70100004100000000001304350000000401300039000400000001001d00000006020000290000000000210435000500000003001d0000002401300039000000000001043500000000010004140000000702000029000000040020008c0000221f0000613d00000005020000290000104e0020009c0000104e0200804100000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c700000007020000294134412a0000040f00000060031002700001104e0030019d00030000000103550000000100200190000022490000613d0000000501000029000010550010009c0000009d0000213d0000000504000029000000400040043f0000000902000039000000000102041a000011070110019700000001011001bf000000000012041b0000000b01000039000000000101041a000700000001001d0000000701000039000000000201041a000010a6010000410000000000140435000010a70100004100000004030000290000000000130435000000000100041400000008022002700000105102200197000000040020008c000022560000c13d0000000103000031000000200030008c00000020040000390000000004034019000022800000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022440000c13d00001d880000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022510000c13d00001d880000013d00000005030000290000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000005057000290000226f0000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b0000226b0000c13d000000000006004b0000227c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000022e40000613d0000001f01400039000000600110018f0000000501100029000010550010009c0000009d0000213d000000400010043f000000200030008c0000004d0000413d00000005010000290000000001010433000600000001001d000010510010009c0000004d0000213d0000000801000039000000000101041a000500000001001d000010dc0100004100000000001004430000000601000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400300043d0000006401300039000000070200002900000000002104350000004401300039000010e8020000410000000000210435000010e7010000410000000001130436000400000001001d000000040130003900000005020000290000000000210435000700000003001d0000002401300039000000000001043500000000010004140000000602000029000000040020008c000022c40000613d00000007020000290000104e0020009c0000104e0200804100000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c700000006020000294134412a0000040f00000060031002700001104e0030019d00030000000103550000000100200190000022f00000613d0000000701000029000010550010009c0000009d0000213d0000000701000029000000400010043f0000000c01000039000000000501041a000000010350019000000001045002700000007f0240018f0000000004026019000600000004001d0000001f0040008c00000000040000390000000104002039000500000005001d000000000445013f00000001004001900000059e0000c13d000000070400002900000006050000290000000000540435000000000003004b000022fd0000c13d000001000100008a000000050110017f00000004030000290000000000130435000000000002004b0000000001030019000000200110c039000023180000013d0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022eb0000c13d00001d880000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022f80000c13d00001d880000013d000000000010043f00000000010004140000104e0010009c0000104e01008041000000c00110021000001058011001c700008010020000394134412f0000040f00000001002001900000004d0000613d0000000502000029000000020020008c0000230c0000813d0000002001000039000023170000013d000000000101043b0000000002000019000000000302001900000020022000390000000704200029000000000501041a00000000005404350000000101100039000000060020006c0000230e0000413d00000040013000390000000701100029000000070110006a0000001f0110003900001106011001970000000702100029000000000012004b00000000010000390000000101004039000600000002001d000010550020009c0000009d0000213d00000001001001900000009d0000c13d0000000603000029000000400030043f0000000701000039000000000201041a000010a60100004100000000001304350000000401300039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c000023370000c13d0000000103000031000000200030008c00000020040000390000000004034019000023610000013d00000006030000290000104e0030009c0000104e0300804100000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f00000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000023500000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b0000234c0000c13d000000000006004b0000235d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023aa0000613d0000001f01400039000000600110018f0000000601100029000010550010009c0000009d0000213d000000400010043f000000200030008c0000004d0000413d00000006010000290000000001010433000600000001001d000010510010009c0000004d0000213d0000000801000039000000000101041a000500000001001d000010dc0100004100000000001004430000000601000029000000040010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000023a90000613d000000000101043b000000000001004b0000004d0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000010bc020000410000000000210435000010e501000041000000000015043500000004015000390000000502000029000000000021043500000024015000390000000000010435000000840250003900000007010000290000000001010433000000000012043500001106041001970000001f0310018f000700000005001d000000a402500039000000040020006b000023b60000813d000000000004004b000023a50000613d00000004063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c0000239f0000c13d000000000003004b000023cd0000613d0000000005020019000023c20000013d000000000001042f0000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023b10000c13d00001d880000013d0000000005420019000000000004004b000023bf0000613d0000000406000029000000000702001900000000680604340000000007870436000000000057004b000023bb0000c13d000000000003004b000023cd0000613d000400040040002d0000000303300210000000000405043300000000043401cf000000000434022f000000040600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000603000029000000040030008c000023e90000613d0000001f011000390000110601100197000000a4011000390000104e0010009c0000104e01008041000000600110021000000007030000290000104e0030009c0000104e030080410000004003300210000000000131019f0000104e0020009c0000104e02008041000000c002200210000000000112019f00000006020000294134412a0000040f00000060031002700001104e0030019d00030000000103550000000100200190000023f00000613d0000000701000029000010550010009c0000009d0000213d0000000701000029000000400010043f0000000001000019000041350001042e0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900001d880000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023f80000c13d00001d880000013d0000000043010434000000000132043600001106063001970000001f0530018f000000000014004b000024130000813d000000000006004b0000240f0000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000024090000c13d000000000005004b000024290000613d00000000070100190000241f0000013d0000000007610019000000000006004b0000241c0000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000024180000c13d000000000005004b000024290000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900001106023001970000000001210019000000000001042d000010ba0010009c0000243f0000213d000000630010008c0000243f0000a13d00000002030003670000000401300370000000000101043b000010510010009c0000243f0000213d0000002402300370000000000202043b000010510020009c0000243f0000213d0000004403300370000000000303043b000000000001042d0000000001000019000041360001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b0000244f0000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b000024490000413d000000000001042d0000001f0220003900001106022001970000000001120019000000000021004b00000000020000390000000102004039000010550010009c0000245c0000213d00000001002001900000245c0000c13d000000400010043f000000000001042d000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000011090020009c000024920000813d00000000040100190000001f0120003900001106011001970000003f011000390000110605100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000010550050009c000024920000213d0000000100700190000024920000c13d000000400050043f00000000052104360000000007420019000000000037004b000024980000213d00001106062001980000001f0720018f00000002044003670000000003650019000024820000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b0000247e0000c13d000000000007004b0000248f0000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d000010e901000041000000000010043f0000004101000039000000040010043f000010ac0100004100004136000104300000000001000019000041360001043000000000030100190000001f01100039000000000021004b0000000004000019000010bb04004041000010bb05200197000010bb01100197000000000651013f000000000051004b0000000001000019000010bb01002041000010bb0060009c000000000104c019000000000001004b000024e20000613d0000000205000367000000000135034f000000000401043b000011090040009c000024dc0000813d0000001f0140003900001106011001970000003f011000390000110607100197000000400100043d0000000007710019000000000017004b00000000080000390000000108004039000010550070009c000024dc0000213d0000000100800190000024dc0000c13d0000002008300039000000400070043f00000000034104360000000007840019000000000027004b000024e20000213d000000000585034f00001106064001980000001f0740018f0000000002630019000024cc0000613d000000000805034f0000000009030019000000008a08043c0000000009a90436000000000029004b000024c80000c13d000000000007004b000024d90000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000052043500000000024300190000000000020435000000000001042d000010e901000041000000000010043f0000004101000039000000040010043f000010ac01000041000041360001043000000000010000190000413600010430000010ba0010009c000025290000213d0000000003010019000000430010008c000025290000a13d00000002050003670000000401500370000000000101043b000010510010009c000025290000213d0000002402500370000000000602043b000010550060009c000025290000213d0000002302600039000000000032004b000025290000813d0000000407600039000000000275034f000000000402043b000011090040009c0000252b0000813d0000001f0240003900001106022001970000003f022000390000110609200197000000400200043d0000000009920019000000000029004b000000000a000039000000010a004039000010550090009c0000252b0000213d0000000100a001900000252b0000c13d000000240a600039000000400090043f00000000064204360000000009a40019000000000039004b000025290000213d0000002003700039000000000535034f00001106074001980000001f0840018f0000000003760019000025190000613d000000000905034f000000000a060019000000009b09043c000000000aba043600000000003a004b000025150000c13d000000000008004b000025260000613d000000000575034f0000000307800210000000000803043300000000087801cf000000000878022f000000000505043b0000010007700089000000000575022f00000000057501cf000000000585019f000000000053043500000000034600190000000000030435000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac01000041000041360001043000020000000000020000000702000039000000000202041a000000400c00043d000010a60300004100000000003c04350000000404c00039000010a7030000410000000000340435000000000400041400000008022002700000105102200197000000040020008c000025440000c13d0000000103000031000000200030008c00000020040000390000000004034019000025720000013d000100000001001d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0040009c0000104e04008041000000c001400210000000000131019f000010ac011001c700020000000c001d4134412f0000040f000000020c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000025600000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000255c0000c13d000000000006004b0000256d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025d30000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000105500b0009c000025cd0000213d0000000100200190000025cd0000c13d0000004000b0043f0000001f0030008c000025cb0000a13d00000000020c0433000010510020009c000025cb0000213d0000000804000039000000000404041a0000004405b000390000110a0600004100000000006504350000002405b000390000000000150435000010d70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000025be0000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700020000000b001d4134412f0000040f000000020b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000025ab0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000025a70000c13d000000000006004b000025b80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025f10000613d0000001f01400039000000600710018f0000000001b70019000010550010009c000025cd0000213d000000400010043f000000200030008c000025cb0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000025cb0000c13d000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d0000000004620019000025de0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025da0000c13d000000000005004b000025eb0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f00004136000104300000001f0530018f0000105006300198000000400200043d0000000004620019000025fc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025f80000c13d000000000005004b000026090000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000121019f000041360001043000010000000000020000000701000039000000000201041a000000400c00043d000010a60100004100000000001c04350000000401c00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c000026220000c13d0000000103000031000000200030008c000000200400003900000000040340190000264e0000013d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700010000000c001d4134412f0000040f000000010c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000263d0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000026390000c13d000000000006004b0000264a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000026aa0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000105500b0009c000026a40000213d0000000100200190000026a40000c13d0000004000b0043f0000001f0030008c000026a20000a13d00000000020c0433000010510020009c000026a20000213d0000000804000039000000000404041a0000004405b00039000010e8060000410000000000650435000010ad0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c0000269a0000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700010000000b001d4134412f0000040f000000010b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000026870000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000026830000c13d000000000006004b000026940000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000026c80000613d0000001f01400039000000600110018f0000000001b10019000010550010009c000026a40000213d000000400010043f000000200030008c000026a20000413d00000000010b0433000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d0000000004620019000026b50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026b10000c13d000000000005004b000026c20000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f00004136000104300000001f0530018f0000105006300198000000400200043d0000000004620019000026d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026cf0000c13d000000000005004b000026e00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000121019f00004136000104300009000000000002000900000003001d000810510020019c00002d4a0000613d000200000001001d0000000901000039000000000101041a000000080110027000001051021001980000272c0000613d000010dc010000410000000000100443000700000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000002d430000613d000000000101043b000000000001004b00002d3b0000613d00000000010004110000105101100197000000400b00043d0000006402b0003900000000001204350000004401b00039000000090200002900000000002104350000002401b0003900000008020000290000000000210435000010ee0100004100000000001b0435000000000100041000001051011001970000000404b00039000000000014043500000000010004140000000702000029000000040020008c000027280000613d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010d4011001c700070000000b001d000600000004001d4134412a0000040f0000000604000029000000070b00002900000060031002700001104e0030019d0003000000010355000000010020019000002e180000613d0000105500b0009c00002d3d0000213d0000004000b0043f0000272e0000013d000000400b00043d0000000404b000390000000701000039000000000201041a000010a60100004100000000001b0435000010a7010000410000000000140435000000000100041400000008022002700000105102200197000000040020008c0000273e0000c13d0000000103000031000000200030008c000000200400003900000000040340190000276a0000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700070000000b001d4134412f0000040f000000070b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000027590000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000027550000c13d000000000006004b000027660000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d6d0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000105500c0009c00002d3d0000213d000000010020019000002d3d0000c13d0000004000c0043f0000001f0030008c00002d3b0000a13d00000000020b0433000010510020009c00002d3b0000213d0000000804000039000000000404041a0000004405c00039000010aa0600004100000000006504350000002405c0003900000009060000290000000000650435000010a90500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000027b70000613d0000104e00c0009c0000104e0100004100000000010c401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700070000000c001d4134412f0000040f000000070c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000027a40000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000027a00000c13d000000000006004b000027b10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d790000613d0000001f01400039000000600110018f0000000001c10019000010550010009c00002d3d0000213d000000400010043f000000200030008c00002d3b0000413d00000000010c0433000300000001001d000010510010009c00002d3b0000213d000010af01000041000000000010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010b0011001c70000800b020000394134412f0000040f000000010020019000002d430000613d000000000201043b000010b10020009c00002d4f0000813d000700000002001d0000000701000039000000000201041a000000400b00043d000010a60100004100000000001b04350000000401b00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c000027e20000c13d0000000103000031000000200030008c000000200400003900000000040340190000280e0000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700060000000b001d4134412f0000040f000000060b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000027fd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000027f90000c13d000000000006004b0000280a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d850000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000010550010009c00002d3d0000213d000000010020019000002d3d0000c13d000000400010043f000000200030008c00002d3b0000413d00000000020b0433000010510020009c00002d3b0000213d0000000801000039000000000101041a000500000001001d000010dc010000410000000000100443000600000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000002d430000613d000000000101043b000000000001004b000000060300002900002d3b0000613d000000400b00043d0000006401b00039000000070200002900000000002104350000004401b00039000010ae0200004100000000002104350000002401b0003900000009020000290000000000210435000010e70100004100000000001b04350000000404b00039000000050100002900000000001404350000000001000414000000040030008c00040000000b001d000028580000613d0000104e00b0009c0000104e0200004100000000020b401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c70000000002030019000700000004001d4134412a0000040f0000000704000029000000040b00002900000060031002700001104e0030019d0003000000010355000000010020019000002d910000613d0000105500b0009c00002d3d0000213d0000004000b0043f0000000701000039000000000201041a000010a60100004100000000001b0435000010a7010000410000000000140435000000000100041400000008022002700000105102200197000000040020008c0000286b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000028960000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f000000040b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000028850000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000028810000c13d000000000006004b000028920000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d9e0000613d0000001f01400039000000600110018f000000000cb100190000105500c0009c00002d3d0000213d0000004000c0043f000000200030008c00002d3b0000413d00000000020b0433000010510020009c00002d3b0000213d0000000804000039000000000404041a0000004405c000390000110a0600004100000000006504350000002405c0003900000009060000290000000000650435000010d70500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000028de0000613d0000104e00c0009c0000104e0100004100000000010c401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700070000000c001d4134412f0000040f000000070c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000028cb0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000028c70000c13d000000000006004b000028d80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002daa0000613d0000001f01400039000000600110018f000000000bc100190000105500b0009c00002d3d0000213d0000004000b0043f000000200030008c00002d3b0000413d00000000020c0433000000000002004b0000000001000039000000010100c039000000000012004b00002d3b0000c13d0000000401b00039000000000002004b00002d560000c13d0000000702000039000000000202041a000010a60400004100000000004b0435000010a7040000410000000000410435000000000100041400000008022002700000105102200197000000040020008c000028fa0000c13d0000002004000039000029260000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700070000000b001d4134412f0000040f000000070b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000029150000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000029110000c13d000000000006004b000029220000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002db60000613d0000001f01400039000000600110018f000000000cb100190000105500c0009c00002d3d0000213d0000004000c0043f000000200030008c00002d3b0000413d00000000020b0433000010510020009c00002d3b0000213d0000000804000039000000000404041a0000004405c00039000010aa0600004100000000006504350000002405c0003900000009060000290000000000650435000010a90500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c0000296e0000613d0000104e00c0009c0000104e0100004100000000010c401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700070000000c001d4134412f0000040f000000070c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000295b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000029570000c13d000000000006004b000029680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002dc20000613d0000001f01400039000000600110018f0000000001c10019000010550010009c00002d3d0000213d000000400010043f000000200030008c00002d3b0000413d00000000010c0433000700000001001d000010510010009c00002d3b0000213d0000000001000411000000000001004b0000000702000029000029b10000613d000000000012004b000029b10000613d000000000020043f0000000501000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000002d3b0000613d000000000101043b00000000020004110000105102200197000000000020043f000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000002d3b0000613d000000000101043b000000000101041a000000ff001001900000000702000029000029b10000c13d0000000901000029000000000010043f0000000401000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000002d3b0000613d000000000101043b000000000101041a00001051011001970000000002000411000000000021004b000000070200002900002e870000c13d000000000002004b0000000302000039000029d70000613d0000000901000029000000000010043f0000000401000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000002d3b0000613d000000000101043b000000000201041a000010ea02200197000000000021041b0000000701000029000000000010043f0000000301000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000002d3b0000613d000000000101043b000000000201041a000000010220008a000000000021041b00000003020000390000000801000029000000000010043f000000200020043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000002d3b0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000901000029000000000010043f0000000201000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000002d3b0000613d000000000101043b000000000201041a000010ea022001970000000806000029000000000262019f000000000021041b00000000010004140000104e0010009c0000104e01008041000000c001100210000010f0011001c70000800d020000390000000403000039000010f104000041000000070500002900000009070000294134412a0000040f000000010020019000002d3b0000613d000000400100043d0000002002000039000500000002001d000000000221043600000008030000290000000000320435000010520010009c00002d3d0000213d0000004003100039000000400030043f0000104e0020009c0000104e02008041000000400220021000000000010104330000104e0010009c0000104e010080410000006001100210000000000121019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f000000010020019000002d3b0000613d000000000101043b000600000001001d0000000701000039000000000201041a000000400c00043d000010a60100004100000000001c04350000000401c00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c00002a370000c13d0000000103000031000000200030008c0000002004000039000000000403401900002a630000013d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700040000000c001d4134412f0000040f000000040c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002a520000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002a4e0000c13d000000000006004b00002a5f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002dce0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000105500b0009c00002d3d0000213d000000010020019000002d3d0000c13d0000004000b0043f000000200030008c00002d3b0000413d00000000020c0433000010510020009c00002d3b0000213d0000000804000039000000000404041a0000004405b000390000110c0600004100000000006504350000002405b0003900000006060000290000000000650435000010ad0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002ab00000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700040000000b001d4134412f0000040f000000040b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002a9d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002a990000c13d000000000006004b00002aaa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002dda0000613d0000001f01400039000000600110018f000000000ab100190000105500a0009c00002d3d0000213d0000004000a0043f000000200030008c00002d3b0000413d00000000010b0433000400010010003e00002d440000613d0000000701000039000000000201041a000010a60100004100000000001a04350000000401a00039000010a7040000410000000000410435000000000100041400000008022002700000105102200197000000040020008c00002af20000613d0000104e00a0009c0000104e0300004100000000030a401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700010000000a001d4134412f0000040f000000010a00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0540018f000500000004001d000000200640019000000000046a001900002ae10000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00002add0000c13d000000000005004b00002aee0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000002de60000613d00000005010000290000001f01100039000000600110018f0000000001a10019000010550010009c00002d3d0000213d000000400010043f000000200030008c00002d3b0000413d00000000020a0433000010510020009c00002d3b0000213d0000000801000039000000000101041a000100000001001d000010dc010000410000000000100443000500000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000002d430000613d000000000101043b000000000001004b000000050300002900002d3b0000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b000390000110c0200004100000000002104350000002401b0003900000006020000290000000000210435000010e70100004100000000051b04360000000404b00039000000010100002900000000001404350000000001000414000000040030008c00002b3a0000613d0000104e00b0009c0000104e0200004100000000020b401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c7000000000203001900060000000b001d000500000004001d000400000005001d4134412a0000040f00000004050000290000000504000029000000060b00002900000060031002700001104e0030019d0003000000010355000000010020019000002df20000613d0000105500b0009c00002d3d0000213d0000004000b0043f0000000301000029000000000001004b00002c740000613d0000002002000039000500000002001d00000000002b043500000000001504350000105200b0009c00002d3d0000213d0000004001b00039000000400010043f0000104e0050009c0000104e05008041000000400150021000000000020b04330000104e0020009c0000104e020080410000006002200210000000000112019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f000000010020019000002d3b0000613d000000000101043b000600000001001d0000000701000039000000000201041a000000400c00043d000010a60100004100000000001c04350000000401c00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c00002b6e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002b9a0000013d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700040000000c001d4134412f0000040f000000040c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002b890000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002b850000c13d000000000006004b00002b960000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e370000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000105500b0009c00002d3d0000213d000000010020019000002d3d0000c13d0000004000b0043f000000200030008c00002d3b0000413d00000000020c0433000010510020009c00002d3b0000213d0000000804000039000000000404041a0000004405b000390000110c0600004100000000006504350000002405b0003900000006060000290000000000650435000010ad0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002be70000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700040000000b001d4134412f0000040f000000040b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002bd40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002bd00000c13d000000000006004b00002be10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e430000613d0000001f01400039000000600110018f000000000ab100190000105500a0009c00002d3d0000213d0000004000a0043f000000200030008c00002d3b0000413d00000000010b0433000400000001001d000000000001004b00002d440000613d0000000701000039000000000201041a000010a60100004100000000001a04350000000401a00039000010a7040000410000000000410435000000000100041400000008022002700000105102200197000000040020008c00002c2a0000613d0000104e00a0009c0000104e0300004100000000030a401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700030000000a001d4134412f0000040f000000030a00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0540018f000500000004001d000000200640019000000000046a001900002c190000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00002c150000c13d000000000005004b00002c260000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000002e4f0000613d00000005010000290000001f01100039000000600110018f0000000001a10019000010550010009c00002d3d0000213d000000400010043f000000200030008c00002d3b0000413d00000000020a0433000010510020009c00002d3b0000213d0000000801000039000000000101041a000300000001001d000010dc010000410000000000100443000500000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000002d430000613d000000000101043b000000000001004b000000050300002900002d3b0000613d0000000401000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b000390000110c0200004100000000002104350000002401b0003900000006020000290000000000210435000010e70100004100000000001b04350000000404b00039000000030100002900000000001404350000000001000414000000040030008c00002c710000613d0000104e00b0009c0000104e0200004100000000020b401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c7000000000203001900060000000b001d000500000004001d4134412a0000040f0000000504000029000000060b00002900000060031002700001104e0030019d0003000000010355000000010020019000002e5b0000613d0000105500b0009c00002d3d0000213d0000004000b0043f0000000a01000039000000000101041a000010510210019800002cb30000613d000010dc010000410000000000100443000600000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000002d430000613d000000000101043b000000000001004b00002d3b0000613d00000000010004110000105101100197000000400b00043d0000006402b0003900000000001204350000004401b00039000000090200002900000000002104350000002401b0003900000008020000290000000000210435000010ee0100004100000000001b0435000000000100041000001051011001970000000404b00039000000000014043500000000010004140000000602000029000000040020008c00002cb00000613d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010d4011001c700060000000b001d000500000004001d4134412a0000040f0000000504000029000000060b00002900000060031002700001104e0030019d0003000000010355000000010020019000002e680000613d0000105500b0009c00002d3d0000213d0000004000b0043f0000000701000039000000000201041a000010a60100004100000000001b0435000010a7010000410000000000140435000000000100041400000008022002700000105102200197000000040020008c00002cc30000c13d0000000103000031000000200030008c0000002004000039000000000403401900002cef0000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700060000000b001d4134412f0000040f000000060b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002cde0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002cda0000c13d000000000006004b00002ceb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002dff0000613d0000001f01400039000000600110018f0000000001b10019000010550010009c00002d3d0000213d000000400010043f000000200030008c00002d3b0000413d00000000020b0433000010510020009c00002d3b0000213d0000000801000039000000000101041a000500000001001d000010dc010000410000000000100443000600000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000002d430000613d000000000101043b000000000001004b000000060300002900002d3b0000613d000000400400043d0000006401400039000000080200002900000000002104350000004401400039000010aa020000410000000000210435000000240140003900000009020000290000000000210435000010e40100004100000000001404350000000401400039000000050200002900000000002104350000000001000414000000040030008c00002d320000613d0000104e0040009c0000104e02000041000000000204401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c70000000002030019000800000004001d4134412a0000040f000000080400002900000060031002700001104e0030019d0003000000010355000000010020019000002e0b0000613d000010550040009c00002d3d0000213d000000400040043f000000020100002900001051011001970000000703000029000000000013004b00002d650000c13d000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000000000001042f000010e901000041000000000010043f0000001101000039000000040010043f000010ac010000410000413600010430000010f701000041000000000010043f000000040000043f000010ac010000410000413600010430000010b201000041000000000010043f0000002001000039000000040010043f000000240020043f000010b3010000410000413600010430000010c90200004100000000002b0435000000200200003900000000002104350000004401b00039000010ef0200004100000000002104350000002401b000390000001b0200003900000000002104350000104e00b0009c0000104e0b0080410000004001b00210000010ab011001c700004136000104300000110d02000041000000000020043f000000040010043f0000000901000029000000240010043f000000440030043f000010ab0100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d740000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d800000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d8c0000c13d00002e740000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d990000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002da50000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002db10000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002dbd0000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002dc90000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002dd50000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002de10000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ded0000c13d00002e740000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002dfa0000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e060000c13d00002e240000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e130000c13d00002e740000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900002e240000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e200000c13d000000000005004b00002e310000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000121019f00004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e3e0000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e4a0000c13d00002e740000013d0000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e560000c13d00002e740000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e630000c13d00002e740000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900002e740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e700000c13d000000000005004b00002e810000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f0000413600010430000000000002004b00002e8f0000c13d000010b601000041000000000010043f0000000901000029000000040010043f000010ac0100004100004136000104300000110b01000041000000000010043f0000000001000411000000040010043f0000000901000029000000240010043f000010b301000041000041360001043000020000000000020000000702000039000000000202041a000000400c00043d000010a60300004100000000003c04350000000404c00039000010a7030000410000000000340435000000000400041400000008022002700000105102200197000000040020008c00002eaa0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002ed80000013d000100000001001d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0040009c0000104e04008041000000c001400210000000000131019f000010ac011001c700020000000c001d4134412f0000040f000000020c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002ec60000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002ec20000c13d000000000006004b00002ed30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f360000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000105500b0009c00002f300000213d000000010020019000002f300000c13d0000004000b0043f0000001f0030008c00002f2e0000a13d00000000020c0433000010510020009c00002f2e0000213d0000000804000039000000000404041a0000004405b00039000010aa0600004100000000006504350000002405b000390000000000150435000010a90500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002f240000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700020000000b001d4134412f0000040f000000020b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002f110000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f0d0000c13d000000000006004b00002f1e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f540000613d0000001f01400039000000600710018f0000000001b70019000010550010009c00002f300000213d000000400010043f000000200030008c00002f2e0000413d00000000010b0433000010510010009c00002f2e0000213d000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900002f410000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f3d0000c13d000000000005004b00002f4e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f00004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900002f5f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f5b0000c13d000000000005004b00002f6c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000121019f000041360001043000070000000000020000000005020019000200000001001d0000000701000039000000000201041a000000400b00043d000010ca0100004100000000001b04350000000401b00039000010f2030000410000000000310435000000000100041100001051031001970000002401b00039000400000003001d0000000000310435000000000100041400000008022002700000105102200197000000040020008c000700000005001d00002f8d0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002fba0000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010b3011001c700060000000b001d4134412f0000040f000000060b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002fa80000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002fa40000c13d000000000006004b00002fb50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000000705000029000032b20000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000010550010009c000032770000213d0000000100200190000032770000c13d000000400010043f0000001f0030008c000032750000a13d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000032750000c13d000000000002004b0000327e0000613d000000006305043400001106053001970000001f0430018f0000002002100039000600000006001d000000000026004b00002fe70000813d000000000005004b00002fe20000613d00000006074000290000000006420019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00002fdc0000c13d000000000004004b00002ffd0000613d0000000605000029000000000602001900002ff30000013d0000000006520019000000000005004b00002ff00000613d0000000607000029000000000802001900000000790704340000000008980436000000000068004b00002fec0000c13d000000000004004b00002ffd0000613d00000006055000290000000304400210000000000706043300000000074701cf000000000747022f00000000050504330000010004400089000000000545022f00000000044501cf000000000474019f00000000004604350000000004320019000000000004043500000000003104350000003f0330003900001106043001970000000003140019000000000043004b00000000040000390000000104004039000010550030009c000032770000213d0000000100400190000032770000c13d000000400030043f0000104e0020009c0000104e02008041000000400220021000000000010104330000104e0010009c0000104e010080410000006001100210000000000121019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f00000007050000290000000100200190000032750000613d000000000101043b000500000001001d0000000602000039000000000102041a000000020010008c000032860000613d0000000201000039000000000012041b0000000701000039000000000201041a000000400b00043d0000002401b0003900000004030000290000000000310435000010ca0100004100000000001b04350000000401b00039000010eb030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c0000303b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000030680000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010b3011001c700030000000b001d4134412f0000040f000000030b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030560000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000030520000c13d000000000006004b000030630000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000000705000029000032be0000613d0000001f01400039000000600110018f0000000004b10019000000000014004b00000000010000390000000101004039000010550040009c000032770000213d0000000100100190000032770000c13d000000400040043f000000200030008c000032750000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000032750000c13d000300000004001d000000000001004b0000328a0000613d0000000001050019413433980000040f000000000001004b000032920000613d0000000701000029000000000201043300001106042001970000001f0320018f000000030a0000290000002001a000390000000609000029000000000019004b0000309c0000813d000000000004004b000030970000613d00000000063900190000000005310019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000030910000c13d000000000003004b000030b20000613d00000000040900190000000005010019000030a80000013d0000000005410019000000000004004b000030a50000613d0000000006090019000000000701001900000000680604340000000007870436000000000057004b000030a10000c13d000000000003004b000030b20000613d00000000044900190000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000003210019000000000003043500000000002a04350000003f0220003900001106032001970000000002a30019000000000032004b00000000030000390000000103004039000010550020009c000032770000213d0000000100300190000032770000c13d000000400020043f0000104e0010009c0000104e01008041000000400110021000000000020a04330000104e0020009c0000104e020080410000006002200210000000000112019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f0000000100200190000032750000613d000000400b00043d0000000402b00039000000000101043b000000050010006b000032a30000c13d0000000701000039000000000301041a000010a60100004100000000001b0435000010a7010000410000000000120435000000000100041400000008023002700000105102200197000000040020008c000030e70000c13d0000000103000031000000200030008c00000020040000390000000004034019000031130000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700040000000b001d4134412f0000040f000000040b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000031020000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000030fe0000c13d000000000006004b0000310f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000032ca0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000010550010009c000032770000213d0000000100200190000032770000c13d000000400010043f000000200030008c000032750000413d00000000020b0433000010510020009c000032750000213d0000000801000039000000000101041a000400000001001d000010dc010000410000000000100443000300000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f00000001002001900000327d0000613d000000000101043b000000000001004b00000007040000290000000303000029000032750000613d000000400500043d00000064015000390000000102000039000000000021043500000044015000390000110f020000410000000000210435000000240150003900000005020000290000000000210435000010df0100004100000000001504350000000401500039000100000001001d000000040200002900000000002104350000000001000414000000040030008c000400000005001d0000315e0000613d0000104e0050009c0000104e02000041000000000205401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c700000000020300194134412a0000040f0000000405000029000000070400002900000060031002700001104e0030019d00030000000103550000000100200190000032d60000613d000010550050009c000032770000213d000000400050043f0000000001040019413433980000040f000000040b0000290000000701000039000000000201041a000010a60100004100000000001b0435000010a70100004100000001030000290000000000130435000000000100041400000008022002700000105102200197000000040020008c000031750000c13d0000000103000031000000200030008c00000020040000390000000004034019000031a00000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f000000040b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000318f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000318b0000c13d000000000006004b0000319c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000032e30000613d0000001f01400039000000600110018f0000000001b10019000010550010009c000032770000213d000000400010043f000000200030008c000032750000413d00000000020b0433000010510020009c000032750000213d0000000801000039000000000101041a000300000001001d000010dc010000410000000000100443000400000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f00000001002001900000327d0000613d000000000101043b000000000001004b0000000709000029000000040c000029000032750000613d000000400a00043d0000006401a00039000000800200003900000000002104350000004401a00039000010b80200004100000000002104350000002401a0003900000005020000290000000000210435000010e501000041000000000b1a04360000000401a000390000000302000029000000000021043500000000010904330000008402a00039000000000012043500001106041001970000001f0310018f000000a402a00039000000060020006b000031e80000813d000000000004004b000031e30000613d00000006063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000031dd0000c13d000000000003004b000031fe0000613d00000006040000290000000005020019000031f40000013d0000000005420019000000000004004b000031f10000613d0000000606000029000000000702001900000000680604340000000007870436000000000057004b000031ed0000c13d000000000003004b000031fe0000613d00000006044000290000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000400c0008c0000321e0000613d0000001f011000390000110601100197000000a4011000390000104e0010009c0000104e0100804100000060011002100000104e00a0009c0000104e0300004100000000030a40190000004003300210000000000131019f0000104e0020009c0000104e02008041000000c002200210000000000121019f00000000020c001900040000000a001d00030000000b001d4134412a0000040f000000030b000029000000040a000029000000070900002900000060031002700001104e0030019d00030000000103550000000100200190000033010000613d0000105500a0009c000032770000213d0000004000a0043f00000006010000390000000102000039000000000021041b000000000109043300001106031001970000001f0210018f00000006080000290000000000b8004b0000323a0000813d000000000003004b000032360000613d000000000528001900000000042b0019000000200440008a000000200550008a0000000006340019000000000735001900000000070704330000000000760435000000200330008c000032300000c13d000000000002004b000032500000613d00000000040b0019000032460000013d00000000043b0019000000000003004b000032430000613d000000000508001900000000060b001900000000570504340000000006760436000000000046004b0000323f0000c13d000000000002004b000032500000613d00000000083800190000000302200210000000000304043300000000032301cf000000000323022f00000000050804330000010002200089000000000525022f00000000022501cf000000000232019f000000000024043500000000021b0019000000000002043500000000001a04350000003f0110003900001106021001970000000001a20019000000000021004b00000000020000390000000102004039000010550010009c000032770000213d0000000100200190000032770000c13d000000400010043f0000104e00b0009c0000104e0b0080410000004001b0021000000000020a04330000104e0020009c0000104e020080410000006002200210000000000112019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f0000000100200190000032750000613d000000000201043b00000002010000294134365a0000040f0000000501000029000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000000000001042f000010cf01000041000000000010043f0000000401000029000000040010043f000010f201000041000000240010043f000010b30100004100004136000104300000111101000041000000000010043f000010b5010000410000413600010430000010cf01000041000000000010043f0000000401000029000000040010043f000010eb01000041000000240010043f000010b30100004100004136000104300000000303000029000000440130003900001110020000410000000000210435000000240130003900000010020000390000000000210435000010c90100004100000000001304350000000401300039000000200200003900000000002104350000104e0030009c0000104e030080410000004001300210000010ab011001c70000413600010430000010c90100004100000000001b0435000000200100003900000000001204350000004401b000390000110e0200004100000000002104350000002401b000390000001c0200003900000000002104350000104e00b0009c0000104e0b0080410000004001b00210000010ab011001c700004136000104300000001f0530018f0000105006300198000000400200043d00000000046200190000330d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032b90000c13d0000330d0000013d0000001f0530018f0000105006300198000000400200043d00000000046200190000330d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032c50000c13d0000330d0000013d0000001f0530018f0000105006300198000000400200043d0000000004620019000032ee0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032d10000c13d000032ee0000013d0000104e033001970000001f0530018f0000105006300198000000400200043d00000000046200190000330d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032de0000c13d0000330d0000013d0000001f0530018f0000105006300198000000400200043d0000000004620019000032ee0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032ea0000c13d000000000005004b000032fb0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000121019f00004136000104300000104e033001970000001f0530018f0000105006300198000000400200043d00000000046200190000330d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033090000c13d000000000005004b0000331a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f000041360001043000010000000000020000000701000039000000000201041a000000ff01200190000033710000c13d000000400b00043d000010ec0100004100000000001b0435000000000100041400000008022002700000105102200197000000040020008c000033320000c13d0000000103000031000000200030008c000000200400003900000000040340190000335e0000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010b5011001c700010000000b001d4134412f0000040f000000010b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000334d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000033490000c13d000000000006004b0000335a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000337a0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000010550010009c000033740000213d0000000100200190000033740000c13d000000400010043f0000001f0030008c000033720000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000033720000c13d000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d0000000004620019000033850000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033810000c13d000000000005004b000033920000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000121019f000041360001043000040000000000020000000032010434000000040120008a0000000c0010008c0000000001000019000033a30000813d00000000010304330000111201100197000011130010009c0000000001000019000033a40000c13d000000000001042d00000001010000390000000004000019000033aa0000013d0000000104400039000000000024004b000033a30000813d000000000543001900000000050504330000111205500197000011140050009c000033bb0000413d000011160050009c000400000000003d000400010000403d000033a70000413d0000000006000415000000040660008a00000005066002100000000007000415000000030770008a0000000507700210000300010000003d000033c70000013d0000000006000415000000020660008a00000005066002100000000007000415000000010770008a0000000507700210000011150050009c00000000080000390000000108002039000100000008001d000200000000003d000033d30000a13d000011170050009c000000000800003900000001080040390000000507700270000000000708001f0000000506600270000000000608001f000033a70000413d000011130050009c000033a70000613d0000000001000019000000000001042d000200000008001d0000000001000019000000000001042d00020000000000020000000702000039000000000202041a000000400c00043d000010a60300004100000000003c04350000000404c00039000010a7030000410000000000340435000000000400041400000008022002700000105102200197000000040020008c000033e90000c13d0000000103000031000000200030008c00000020040000390000000004034019000034170000013d000100000001001d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0040009c0000104e04008041000000c001400210000000000131019f000010ac011001c700020000000c001d4134412f0000040f000000020c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000034050000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000034010000c13d000000000006004b000034120000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034730000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000105500b0009c0000346d0000213d00000001002001900000346d0000c13d0000004000b0043f0000001f0030008c0000346b0000a13d00000000020c0433000010510020009c0000346b0000213d0000000804000039000000000404041a0000004405b000390000110c0600004100000000006504350000002405b000390000000000150435000010ad0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000034630000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700020000000b001d4134412f0000040f000000020b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034500000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000344c0000c13d000000000006004b0000345d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034910000613d0000001f01400039000000600710018f0000000001b70019000010550010009c0000346d0000213d000000400010043f000000200030008c0000346b0000413d00000000010b0433000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d00000000046200190000347e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000347a0000c13d000000000005004b0000348b0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f00004136000104300000001f0530018f0000105006300198000000400200043d00000000046200190000349c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034980000c13d000000000005004b000034a90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000121019f000041360001043000020000000000020000000702000039000000000202041a000000400c00043d000010a60300004100000000003c04350000000404c00039000010a7030000410000000000340435000000000400041400000008022002700000105102200197000000040020008c000034c20000c13d0000000103000031000000200030008c00000020040000390000000004034019000034f00000013d000100000001001d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0040009c0000104e04008041000000c001400210000000000131019f000010ac011001c700020000000c001d4134412f0000040f000000020c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000034de0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000034da0000c13d000000000006004b000034eb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000354c0000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000105500b0009c000035460000213d0000000100200190000035460000c13d0000004000b0043f0000001f0030008c000035440000a13d00000000020c0433000010510020009c000035440000213d0000000804000039000000000404041a0000004405b00039000010ae0600004100000000006504350000002405b000390000000000150435000010ad0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000353c0000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700020000000b001d4134412f0000040f000000020b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000035290000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000035250000c13d000000000006004b000035360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000356a0000613d0000001f01400039000000600710018f0000000001b70019000010550010009c000035460000213d000000400010043f000000200030008c000035440000413d00000000010b0433000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d0000000004620019000035570000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035530000c13d000000000005004b000035640000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f00004136000104300000001f0530018f0000105006300198000000400200043d0000000004620019000035750000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035710000c13d000000000005004b000035820000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000121019f0000413600010430000200000000000200000000070100190000000701000039000000000201041a000000400c00043d000010a60100004100000000001c04350000000401c00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c000200000007001d0000359d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000035ca0000013d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700010000000c001d4134412f0000040f000000010c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035b80000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035b40000c13d000000000006004b000035c50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000036300000613d00000002070000290000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000105500b0009c000036250000213d0000000100200190000036250000c13d0000004000b0043f0000001f0030008c000036230000a13d00000000020c0433000010510020009c000036230000213d0000000804000039000000000404041a0000004405b00039000010aa0600004100000000006504350000002405b000390000000000750435000010a90500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000036170000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700010000000b001d4134412f0000040f000000010b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036030000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000035ff0000c13d000000000006004b000036100000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000363c0000613d0000001f01400039000000600110018f00000002070000290000000001b10019000010550010009c000036250000213d000000400010043f000000200030008c000036230000413d00000000010b0433000010510010009c000036230000213d000000000001004b0000362b0000613d000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000010b601000041000000000010043f000000040070043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d0000000004620019000036470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000036370000c13d000036470000013d0000001f0530018f0000105006300198000000400200043d0000000004620019000036470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000036430000c13d000000000005004b000036540000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f00004136000104300008000000000002000800000002001d000710510010019c00003c7d0000613d0000000901000039000000000101041a000000080110027000001051021001980000369d0000613d000010dc010000410000000000100443000600000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000003c760000613d000000000101043b000000000001004b00003c6e0000613d000000400b00043d0000004401b00039000000080200002900000000002104350000002401b0003900000007020000290000000000210435000010ee0100004100000000001b0435000000000100041000001051011001970000000404b0003900000000001404350000006401b00039000000000001043500000000010004140000000602000029000000040020008c000036990000613d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010d4011001c700060000000b001d000500000004001d4134412a0000040f0000000504000029000000060b00002900000060031002700001104e0030019d0003000000010355000000010020019000003d450000613d0000105500b0009c00003c700000213d0000004000b0043f0000369f0000013d000000400b00043d0000000404b000390000000701000039000000000201041a000010a60100004100000000001b0435000010a7010000410000000000140435000000000100041400000008022002700000105102200197000000040020008c000036af0000c13d0000000103000031000000200030008c00000020040000390000000004034019000036db0000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700060000000b001d4134412f0000040f000000060b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036ca0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000036c60000c13d000000000006004b000036d70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003c9a0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000105500c0009c00003c700000213d000000010020019000003c700000c13d0000004000c0043f0000001f0030008c00003c6e0000a13d00000000020b0433000010510020009c00003c6e0000213d0000000804000039000000000404041a0000004405c00039000010aa0600004100000000006504350000002405c0003900000008060000290000000000650435000010a90500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000037280000613d0000104e00c0009c0000104e0100004100000000010c401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700060000000c001d4134412f0000040f000000060c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000037150000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000037110000c13d000000000006004b000037220000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003ca60000613d0000001f01400039000000600110018f0000000001c10019000010550010009c00003c700000213d000000400010043f000000200030008c00003c6e0000413d00000000010c0433000200000001001d000010510010009c00003c6e0000213d000010af01000041000000000010044300000000010004140000104e0010009c0000104e01008041000000c001100210000010b0011001c70000800b020000394134412f0000040f000000010020019000003c760000613d000000000201043b000010b10020009c00003c7f0000813d000600000002001d0000000701000039000000000201041a000000400b00043d000010a60100004100000000001b04350000000401b00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c000037530000c13d0000000103000031000000200030008c000000200400003900000000040340190000377f0000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700050000000b001d4134412f0000040f000000050b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000376e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000376a0000c13d000000000006004b0000377b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003cb20000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000010550010009c00003c700000213d000000010020019000003c700000c13d000000400010043f000000200030008c00003c6e0000413d00000000020b0433000010510020009c00003c6e0000213d0000000801000039000000000101041a000400000001001d000010dc010000410000000000100443000500000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000003c760000613d000000000101043b000000000001004b000000050300002900003c6e0000613d000000400b00043d0000006401b00039000000060200002900000000002104350000004401b00039000010ae0200004100000000002104350000002401b0003900000008020000290000000000210435000010e70100004100000000001b04350000000404b00039000000040100002900000000001404350000000001000414000000040030008c00030000000b001d000037c90000613d0000104e00b0009c0000104e0200004100000000020b401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c70000000002030019000600000004001d4134412a0000040f0000000604000029000000030b00002900000060031002700001104e0030019d0003000000010355000000010020019000003cbe0000613d0000105500b0009c00003c700000213d0000004000b0043f0000000701000039000000000201041a000010a60100004100000000001b0435000010a7010000410000000000140435000000000100041400000008022002700000105102200197000000040020008c000037dc0000c13d0000000103000031000000200030008c00000020040000390000000004034019000038070000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c74134412f0000040f000000030b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000037f60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037f20000c13d000000000006004b000038030000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003ccb0000613d0000001f01400039000000600110018f000000000cb100190000105500c0009c00003c700000213d0000004000c0043f000000200030008c00003c6e0000413d00000000020b0433000010510020009c00003c6e0000213d0000000804000039000000000404041a0000004405c000390000110a0600004100000000006504350000002405c0003900000008060000290000000000650435000010d70500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c0000384f0000613d0000104e00c0009c0000104e0100004100000000010c401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700060000000c001d4134412f0000040f000000060c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000383c0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000038380000c13d000000000006004b000038490000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003cd70000613d0000001f01400039000000600110018f000000000bc100190000105500b0009c00003c700000213d0000004000b0043f000000200030008c00003c6e0000413d00000000020c0433000000000002004b0000000001000039000000010100c039000000000012004b00003c6e0000c13d0000000401b00039000000000002004b00003c860000c13d0000000702000039000000000202041a000010a60400004100000000004b0435000010a7040000410000000000410435000000000100041400000008022002700000105102200197000000040020008c0000386b0000c13d0000002004000039000038970000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700060000000b001d4134412f0000040f000000060b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000038860000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000038820000c13d000000000006004b000038930000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003ce30000613d0000001f01400039000000600110018f000000000cb100190000105500c0009c00003c700000213d0000004000c0043f000000200030008c00003c6e0000413d00000000020b0433000010510020009c00003c6e0000213d0000000804000039000000000404041a0000004405c00039000010aa0600004100000000006504350000002405c0003900000008060000290000000000650435000010a90500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000038df0000613d0000104e00c0009c0000104e0100004100000000010c401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700060000000c001d4134412f0000040f000000060c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000038cc0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000038c80000c13d000000000006004b000038d90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003cef0000613d0000001f01400039000000600110018f0000000001c10019000010550010009c00003c700000213d000000400010043f000000200030008c00003c6e0000413d00000000010c0433000600000001001d000010510010009c00003c6e0000213d000000060000006b00000003020000390000390f0000613d0000000801000029000000000010043f0000000401000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000003c6e0000613d000000000101043b000000000201041a000010ea02200197000000000021041b0000000601000029000000000010043f0000000301000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000003c6e0000613d000000000101043b000000000201041a000000010220008a000000000021041b00000003020000390000000701000029000000000010043f000000200020043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000003c6e0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000801000029000000000010043f0000000201000039000000200010043f00000000010004140000104e0010009c0000104e01008041000000c001100210000010d8011001c700008010020000394134412f0000040f000000010020019000003c6e0000613d000000000101043b000000000201041a000010ea022001970000000706000029000000000262019f000000000021041b00000000010004140000104e0010009c0000104e01008041000000c001100210000010f0011001c70000800d020000390000000403000039000010f104000041000000060500002900000008070000294134412a0000040f000000010020019000003c6e0000613d000000400100043d0000002002000039000400000002001d000000000221043600000007030000290000000000320435000010520010009c00003c700000213d0000004003100039000000400030043f0000104e0020009c0000104e02008041000000400220021000000000010104330000104e0010009c0000104e010080410000006001100210000000000121019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f000000010020019000003c6e0000613d000000000101043b000500000001001d0000000701000039000000000201041a000000400c00043d000010a60100004100000000001c04350000000401c00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c0000396f0000c13d0000000103000031000000200030008c000000200400003900000000040340190000399b0000013d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700030000000c001d4134412f0000040f000000030c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000398a0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000039860000c13d000000000006004b000039970000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003cfb0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000105500b0009c00003c700000213d000000010020019000003c700000c13d0000004000b0043f000000200030008c00003c6e0000413d00000000020c0433000010510020009c00003c6e0000213d0000000804000039000000000404041a0000004405b000390000110c0600004100000000006504350000002405b0003900000005060000290000000000650435000010ad0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000039e80000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700030000000b001d4134412f0000040f000000030b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000039d50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000039d10000c13d000000000006004b000039e20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d070000613d0000001f01400039000000600110018f000000000ab100190000105500a0009c00003c700000213d0000004000a0043f000000200030008c00003c6e0000413d00000000010b0433000300010010003e00003c770000613d0000000701000039000000000201041a000010a60100004100000000001a04350000000401a00039000010a7040000410000000000410435000000000100041400000008022002700000105102200197000000040020008c00003a2a0000613d0000104e00a0009c0000104e0300004100000000030a401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700010000000a001d4134412f0000040f000000010a00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0540018f000400000004001d000000200640019000000000046a001900003a190000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00003a150000c13d000000000005004b00003a260000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000003d130000613d00000004010000290000001f01100039000000600110018f0000000001a10019000010550010009c00003c700000213d000000400010043f000000200030008c00003c6e0000413d00000000020a0433000010510020009c00003c6e0000213d0000000801000039000000000101041a000100000001001d000010dc010000410000000000100443000400000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000003c760000613d000000000101043b000000000001004b000000040300002900003c6e0000613d000000400b00043d0000006401b00039000000030200002900000000002104350000004401b000390000110c0200004100000000002104350000002401b0003900000005020000290000000000210435000010e70100004100000000051b04360000000404b00039000000010100002900000000001404350000000001000414000000040030008c00003a720000613d0000104e00b0009c0000104e0200004100000000020b401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c7000000000203001900050000000b001d000400000004001d000300000005001d4134412a0000040f00000003050000290000000404000029000000050b00002900000060031002700001104e0030019d0003000000010355000000010020019000003d1f0000613d0000105500b0009c00003c700000213d0000004000b0043f0000000201000029000000000001004b00003bac0000613d0000002002000039000400000002001d00000000002b043500000000001504350000105200b0009c00003c700000213d0000004001b00039000000400010043f0000104e0050009c0000104e05008041000000400150021000000000020b04330000104e0020009c0000104e020080410000006002200210000000000112019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f000000010020019000003c6e0000613d000000000101043b000500000001001d0000000701000039000000000201041a000000400c00043d000010a60100004100000000001c04350000000401c00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c00003aa60000c13d0000000103000031000000200030008c0000002004000039000000000403401900003ad20000013d0000104e00c0009c0000104e0300004100000000030c401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700030000000c001d4134412f0000040f000000030c00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003ac10000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003abd0000c13d000000000006004b00003ace0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d640000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000105500b0009c00003c700000213d000000010020019000003c700000c13d0000004000b0043f000000200030008c00003c6e0000413d00000000020c0433000010510020009c00003c6e0000213d0000000804000039000000000404041a0000004405b000390000110c0600004100000000006504350000002405b0003900000005060000290000000000650435000010ad0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003b1f0000613d0000104e00b0009c0000104e0100004100000000010b401900000040011002100000104e0040009c0000104e04008041000000c003400210000000000113019f000010ab011001c700030000000b001d4134412f0000040f000000030b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003b0c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003b080000c13d000000000006004b00003b190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d700000613d0000001f01400039000000600110018f000000000ab100190000105500a0009c00003c700000213d0000004000a0043f000000200030008c00003c6e0000413d00000000010b0433000300000001001d000000000001004b00003c770000613d0000000701000039000000000201041a000010a60100004100000000001a04350000000401a00039000010a7040000410000000000410435000000000100041400000008022002700000105102200197000000040020008c00003b620000613d0000104e00a0009c0000104e0300004100000000030a401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700020000000a001d4134412f0000040f000000020a00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0540018f000400000004001d000000200640019000000000046a001900003b510000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00003b4d0000c13d000000000005004b00003b5e0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000003d7c0000613d00000004010000290000001f01100039000000600110018f0000000001a10019000010550010009c00003c700000213d000000400010043f000000200030008c00003c6e0000413d00000000020a0433000010510020009c00003c6e0000213d0000000801000039000000000101041a000200000001001d000010dc010000410000000000100443000400000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000003c760000613d000000000101043b000000000001004b000000040300002900003c6e0000613d0000000301000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b000390000110c0200004100000000002104350000002401b0003900000005020000290000000000210435000010e70100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00003ba90000613d0000104e00b0009c0000104e0200004100000000020b401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c7000000000203001900050000000b001d000400000004001d4134412a0000040f0000000404000029000000050b00002900000060031002700001104e0030019d0003000000010355000000010020019000003d950000613d0000105500b0009c00003c700000213d0000004000b0043f0000000a01000039000000000101041a000010510210019800003be90000613d000010dc010000410000000000100443000500000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000003c760000613d000000000101043b000000000001004b00003c6e0000613d000000400b00043d0000004401b00039000000080200002900000000002104350000002401b0003900000007020000290000000000210435000010ee0100004100000000001b0435000000000100041000001051011001970000000404b0003900000000001404350000006401b00039000000000001043500000000010004140000000502000029000000040020008c00003be60000613d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010d4011001c700050000000b001d000400000004001d4134412a0000040f0000000404000029000000050b00002900000060031002700001104e0030019d0003000000010355000000010020019000003d880000613d0000105500b0009c00003c700000213d0000004000b0043f0000000701000039000000000201041a000010a60100004100000000001b0435000010a7010000410000000000140435000000000100041400000008022002700000105102200197000000040020008c00003bf90000c13d0000000103000031000000200030008c0000002004000039000000000403401900003c250000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700050000000b001d4134412f0000040f000000050b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003c140000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003c100000c13d000000000006004b00003c210000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003d2c0000613d0000001f01400039000000600110018f0000000001b10019000010550010009c00003c700000213d000000400010043f000000200030008c00003c6e0000413d00000000020b0433000010510020009c00003c6e0000213d0000000801000039000000000101041a000400000001001d000010dc010000410000000000100443000500000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000003c760000613d000000000101043b000000000001004b000000050300002900003c6e0000613d000000400400043d0000006401400039000000070200002900000000002104350000004401400039000010aa020000410000000000210435000000240140003900000008020000290000000000210435000010e40100004100000000001404350000000401400039000000040200002900000000002104350000000001000414000000040030008c00003c680000613d0000104e0040009c0000104e02000041000000000204401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c70000000002030019000800000004001d4134412a0000040f000000080400002900000060031002700001104e0030019d0003000000010355000000010020019000003d380000613d000010550040009c00003c700000213d000000400040043f000000060000006b00003c950000c13d000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000000000001042f000010e901000041000000000010043f0000001101000039000000040010043f000010ac010000410000413600010430000010f70100004100003c960000013d000010b201000041000000000010043f0000002001000039000000040010043f000000240020043f000010b3010000410000413600010430000010c90200004100000000002b0435000000200200003900000000002104350000004401b00039000010ef0200004100000000002104350000002401b000390000001b0200003900000000002104350000104e00b0009c0000104e0b0080410000004001b00210000010ab011001c700004136000104300000111801000041000000000010043f000000040000043f000010ac0100004100004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ca10000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cad0000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cb90000c13d00003da10000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cc60000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cd20000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cde0000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cea0000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003cf60000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d020000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d0e0000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d1a0000c13d00003da10000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d270000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003d510000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d330000c13d00003d510000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d400000c13d00003da10000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900003d510000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d4d0000c13d000000000005004b00003d5e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000121019f00004136000104300000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d6b0000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d770000c13d00003da10000013d0000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d830000c13d00003da10000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d900000c13d00003da10000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900003da10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003d9d0000c13d000000000005004b00003dae0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f0000413600010430000000400200043d0000002003000039000000000332043600001051011001970000000000130435000011190020009c00003dd10000813d0000004001200039000000400010043f0000104e0030009c0000104e03008041000000400130021000000000020204330000104e0020009c0000104e020080410000006002200210000000000112019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f000000010020019000003dd70000613d000000000101043b000000000001042d000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000000000100001900004136000104300003000000000002000300000001001d0000000701000039000000000201041a000000400b00043d000010a60100004100000000001b04350000000401b00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c00003ded0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003e190000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700020000000b001d4134412f0000040f000000020b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003e080000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003e040000c13d000000000006004b00003e150000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003e6e0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000010550010009c00003e670000213d000000010020019000003e670000c13d000000400010043f0000001f0030008c00003e650000a13d00000000020b0433000010510020009c00003e650000213d0000000801000039000000000101041a000100000001001d000010dc010000410000000000100443000200000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000003e6d0000613d000000000101043b000000000001004b000000020300002900003e650000613d000000400400043d0000006401400039000000010200003900000000002104350000004401400039000010de020000410000000000210435000000240140003900000003020000290000000000210435000010df0100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c00003e610000613d0000104e0040009c0000104e02000041000000000204401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c70000000002030019000300000004001d4134412a0000040f000000030400002900000060031002700001104e0030019d0003000000010355000000010020019000003e7a0000613d000010550040009c00003e670000213d000000400040043f000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000000000001042f0000001f0530018f0000105006300198000000400200043d000000000462001900003e860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e750000c13d00003e860000013d0000104e033001970000001f0530018f0000105006300198000000400200043d000000000462001900003e860000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003e820000c13d000000000005004b00003e930000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f00004136000104300007000000000002000400000005001d000200000004001d000100000002001d000300000001001d000010dc010000410000000000100443000500000003001d000000040030044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f000000010020019000003f4e0000613d000000000101043b000000000001004b00003f4b0000613d000000400d00043d0000006401d00039000000800c0000390000000000c104350000004401d0003900000002020000290000000000210435000000010100002900001051011001970000002402d000390000000000120435000010f30100004100000000001d0435000000030100002900001051011001970000000402d0003900000000001204350000008402d0003900000004010000290000000041010434000000000012043500000005020000290000105102200197000000200b00008a0000000006b1016f0000001f0510018f000000a403d00039000000000034004b00003edb0000813d000000000006004b00003ed70000613d00000000085400190000000007530019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00003ed10000c13d000000000005004b00003ef10000613d000000000703001900003ee70000013d0000000007630019000000000006004b00003ee40000613d00000000080400190000000009030019000000008a0804340000000009a90436000000000079004b00003ee00000c13d000000000005004b00003ef10000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000331001900000000000304350000000003000414000000040020008c00003efe0000c13d0000000005000415000000070550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900003f360000013d00030000000c001d0000001f011000390000000001b1016f000000a4011000390000104e0010009c0000104e0100804100000060011002100000104e00d0009c0000104e0400004100000000040d40190000004004400210000000000141019f0000104e0030009c0000104e03008041000000c003300210000000000131019f000500000002001d00040000000d001d4134412a0000040f000000040d00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057d001900003f210000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b00003f1d0000c13d000000000006004b00003f2e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000060550008a00000005055002100000000100200190000000050200002900003f4f0000613d0000001f01400039000000600410018f0000000001d40019000000000041004b00000000040000390000000104004039000010550010009c00003f830000213d000000010040019000003f830000c13d000000400010043f0000001f0030008c00003f4c0000a13d00000000010d0433000010f50010019800003f4c0000c13d0000000503500270000000000301001f000010f601100197000010f30010009c00003f7e0000c13d000000000001042d00000000010000190000413600010430000000000001042f000000000003004b00003f530000c13d000000600200003900003f7a0000013d0000001f023000390000104f022001970000003f02200039000010f404200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000010550040009c00003f830000213d000000010050019000003f830000c13d000000400040043f0000001f0430018f00000000063204360000105005300198000300000006001d000000000356001900003f6d0000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b00003f690000c13d000000000004004b00003f7a0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000000050200002900003f890000c13d000010f701000041000000000010043f000000040020043f000010ac010000410000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac01000041000041360001043000000003020000290000104e0020009c0000104e0200804100000040022002100000104e0010009c0000104e010080410000006001100210000000000121019f00004136000104300004000000000002000300000002001d000400000001001d0000000701000039000000000201041a000000400b00043d000010a60100004100000000001b04350000000401b00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c00003fa70000c13d0000000103000031000000200030008c0000002004000039000000000403401900003fd30000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700020000000b001d4134412f0000040f000000020b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003fc20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003fbe0000c13d000000000006004b00003fcf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000040280000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000010550010009c000040210000213d0000000100200190000040210000c13d000000400010043f0000001f0030008c0000401f0000a13d00000000020b0433000010510020009c0000401f0000213d0000000801000039000000000101041a000100000001001d000010dc010000410000000000100443000200000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000040270000613d000000000101043b000000000001004b00000002030000290000401f0000613d000000400400043d0000006401400039000000030200002900000000002104350000004401400039000010ae020000410000000000210435000000240140003900000004020000290000000000210435000010e70100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c0000401b0000613d0000104e0040009c0000104e02000041000000000204401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c70000000002030019000400000004001d4134412a0000040f000000040400002900000060031002700001104e0030019d00030000000103550000000100200190000040340000613d000010550040009c000040210000213d000000400040043f000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000000000001042f0000001f0530018f0000105006300198000000400200043d0000000004620019000040400000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000402f0000c13d000040400000013d0000104e033001970000001f0530018f0000105006300198000000400200043d0000000004620019000040400000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000403c0000c13d000000000005004b0000404d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f00004136000104300004000000000002000300000002001d000400000001001d0000000701000039000000000201041a000000400b00043d000010a60100004100000000001b04350000000401b00039000010a7030000410000000000310435000000000100041400000008022002700000105102200197000000040020008c000040680000c13d0000000103000031000000200030008c00000020040000390000000004034019000040940000013d0000104e00b0009c0000104e0300004100000000030b401900000040033002100000104e0010009c0000104e01008041000000c001100210000000000131019f000010ac011001c700020000000b001d4134412f0000040f000000020b00002900000060031002700000104e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000040830000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000407f0000c13d000000000006004b000040900000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000040e90000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000010550010009c000040e20000213d0000000100200190000040e20000c13d000000400010043f0000001f0030008c000040e00000a13d00000000020b0433000010510020009c000040e00000213d0000000801000039000000000101041a000100000001001d000010dc010000410000000000100443000200000002001d000000040020044300000000010004140000104e0010009c0000104e01008041000000c001100210000010dd011001c700008002020000394134412f0000040f0000000100200190000040e80000613d000000000101043b000000000001004b0000000203000029000040e00000613d000000400400043d00000064014000390000000302000029000000000021043500000044014000390000110c020000410000000000210435000000240140003900000004020000290000000000210435000010e70100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c000040dc0000613d0000104e0040009c0000104e02000041000000000204401900000040022002100000104e0010009c0000104e01008041000000c001100210000000000121019f000010d4011001c70000000002030019000400000004001d4134412a0000040f000000040400002900000060031002700001104e0030019d00030000000103550000000100200190000040f50000613d000010550040009c000040e20000213d000000400040043f000000000001042d00000000010000190000413600010430000010e901000041000000000010043f0000004101000039000000040010043f000010ac010000410000413600010430000000000001042f0000001f0530018f0000105006300198000000400200043d0000000004620019000041010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000040f00000c13d000041010000013d0000104e033001970000001f0530018f0000105006300198000000400200043d0000000004620019000041010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000040fd0000c13d000000000005004b0000410e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000104e0020009c0000104e020080410000004002200210000000000112019f0000413600010430000000000001042f0000104e0010009c0000104e0100804100000040011002100000104e0020009c0000104e020080410000006002200210000000000112019f00000000020004140000104e0020009c0000104e02008041000000c002200210000000000112019f000010f0011001c700008010020000394134412f0000040f0000000100200190000041280000613d000000000101043b000000000001042d000000000100001900004136000104300000412d002104210000000102000039000000000001042d0000000002000019000000000001042d00004132002104230000000102000039000000000001042d0000000002000019000000000001042d0000413400000432000041350001042e0000413600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4e414d45000000000000000000000000000000000000000000000000000000004e616d6520230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffd6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56302000000000000000000000000000000000000200000000000000000000000004ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6ffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00b31775265933e5e6f3b2d519a9dcdfa71b65581e94932ab3a3e5108d0bd44c34209699368efae3c2ab13a6e9d9f9aceb6c5aebfb5ffd7bd0a9ff6281a30b5739df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000008129fc1b00000000000000000000000000000000000000000000000000000000bb997f2600000000000000000000000000000000000000000000000000000000dd898b2e00000000000000000000000000000000000000000000000000000000e7277dd600000000000000000000000000000000000000000000000000000000ed022ebc00000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000f0e56f0d00000000000000000000000000000000000000000000000000000000e7277dd700000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000e644294600000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000ce62bc8b00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000d3b551d000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000bb997f2700000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000c87b56dd0000000000000000000000000000000000000000000000000000000099d3a88500000000000000000000000000000000000000000000000000000000a485b4ce00000000000000000000000000000000000000000000000000000000a485b4cf00000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000b88d4fde0000000000000000000000000000000000000000000000000000000099d3a88600000000000000000000000000000000000000000000000000000000a16ad7da00000000000000000000000000000000000000000000000000000000a22cb4650000000000000000000000000000000000000000000000000000000088e4f1ca0000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000008129fc1c000000000000000000000000000000000000000000000000000000008245e4720000000000000000000000000000000000000000000000000000000082840eed000000000000000000000000000000000000000000000000000000003de21596000000000000000000000000000000000000000000000000000000005633a362000000000000000000000000000000000000000000000000000000006352211d0000000000000000000000000000000000000000000000000000000077278ae70000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000007f797103000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000005633a363000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca6310000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000004f558e790000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000003de215970000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000015be71fe00000000000000000000000000000000000000000000000000000000248b71fb00000000000000000000000000000000000000000000000000000000248b71fc00000000000000000000000000000000000000000000000000000000267659e2000000000000000000000000000000000000000000000000000000002fb0b8740000000000000000000000000000000000000000000000000000000015be71ff0000000000000000000000000000000000000000000000000000000016c38b3c0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000001328357f000000000000000000000000000000000000000000000000000000000035a9ae0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd0000000000000000000000000000000000000024000000800000000000000000e81b22ea0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a1b9224c0000000000000000000000000000000000000000000000000000000030ae2c83fb63a1d7345739c2148d1bd925ce1b962c11197a573f48712e3c42d6796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000001000000006dfcc650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000401b6ade0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000007e2732890000000000000000000000000000000000000000000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d608a4bcc90000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9f0000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e10000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f0ecd9e25c81c684765cec4b6e84c99a71427b6f86b89fb7723e47f99327ee572496e73756666696369656e74207061796d656e7400000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000c36dd7ea00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b080000000000000000000000000000000000000044000000800000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b91481000000000000000000000000000000000000000000000000000000000161a64a000000000000000000000000000000000000000000000000000000006818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaf000000000000000000000000000000000000000000000000ffffffffffffffdf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6f0000000000000000000000000000000000000084000000000000000000000000bfa2ccd2000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06516897000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000004000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c315b08ba180000000000000000000000000000000000000000000000000000000007b920aa000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000093c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068f2c071ca00000000000000000000000000000000000000000000000000000000fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c476967614e616d654e46540000000000000000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f00000000000000000000000000000000000000000000000000000000e95c048700000000000000000000000000000000000000000000000000000000a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9b29de69000000000000000000000000000000000000000000000000000000007e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a24e487b7100000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000d3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb535c975abb000000000000000000000000000000000000000000000000000000005061757361626c653a2070617573656400000000000000000000000000000000cdcba5b50000000000000000000000000000000000000000000000000000000047616d654e46543a20546f6b656e20697320736f756c626f756e6400000000000200000000000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000064a0ae92000000000000000000000000000000000000000000000000000000003f6cc7680000000000000000000000000000000000000000000000000000000064544171000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000a9fbf51f000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9257c1ced5effffffffffffffffffffffffffffffffffffffffffffffffffffffff80ac58cd000000000000000000000000000000000000000000000000000000007c1ced5f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000100000000000000009e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bd177e802f00000000000000000000000000000000000000000000000000000000ea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a09164283d7b00000000000000000000000000000000000000000000000000000000546f6b656e20494420646f6573206e6f74206d61746368206e616d650000000063ac7816ab4b51b8cb61e859320ae60dc12ad0776bab962064f8e54268723ba2496e76616c696420757365726e616d65000000000000000000000000000000003ee5aeb500000000000000000000000000000000000000000000000000000000ff000000000000000000000000000000000000000000000000000000000000005f0000000000000000000000000000000000000000000000000000000000000061000000000000000000000000000000000000000000000000000000000000002fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7a00000000000000000000000000000000000000000000000000000000000001390000000000000000000000000000000000000000000000000000000000000173c6ac6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0fa2d9056111eaa0912b8c0b2f7a81251e4fd77c55fbdf70f19eafcbceef75855

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


[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.