ETH Price: $1,892.47 (-2.65%)

Contract

0xB83f859b6796acF98F11B17D2F782405eE411a2B

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

1 Internal Transaction found.

Latest 1 internal transaction

Parent Transaction Hash Block From To
4608392025-01-30 4:12:2245 days ago1738210342  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StickerbookERCContract

Compiler Version
v0.8.20-1.0.1

ZkSolc Version
v1.5.10

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at abscan.org on 2025-01-30
*/

// Sources flattened with hardhat v2.22.17 https://hardhat.org

// File contracts/StickerbookERCContract.sol

// Sources flattened with hardhat v2.10.2 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File @openzeppelin/contracts/token/ERC1155/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}


// File @openzeppelin/contracts/token/ERC1155/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC1155/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File @openzeppelin/contracts/token/ERC1155/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;






/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/interfaces/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}


// File @openzeppelin/contracts/security/[email protected]

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// File contracts/abstracts/ERC1155BurnableLock.sol

pragma solidity ^0.8.20;


abstract contract ERC1155Burnable is ERC1155, Ownable {
    address public burnWallet;

    /**
     * @dev Mapping from token ID to its burn end date.
     *
     * If `burnEndDates[tokenId] == 0`, it means there's no burning deadline
     * for that token.
     */
    mapping(uint256 => uint256) private burnEndDates;

    constructor() {
        // Default burn wallet
        burnWallet = 0x000000000000000000000000000000000000dEaD;
    }

    /**
     * @dev Set the address that is allowed to burn without approval checks.
     */
    function setBurnWallet(address newBurnWallet) external onlyOwner {
        require(newBurnWallet != address(0), "Burn wallet cannot be zero address");
        burnWallet = newBurnWallet;
    }

    /**
     * @dev Set (or remove) the burn end date for a specific token ID.
     *
     * Requirements:
     * - `newBurnEndDate` can be `0` to remove the deadline entirely.
     * - If `newBurnEndDate != 0`, it must be in the future.
     */
    function setTokenBurnEndDate(uint256 tokenId, uint256 newBurnEndDate) external onlyOwner {
        if (newBurnEndDate != 0) {
            require(newBurnEndDate > block.timestamp, "Burn end date must be in the future");
        }
        burnEndDates[tokenId] = newBurnEndDate;
    }

    /**
     * @dev Returns the burn end date for a specific token ID.
     *      If `0`, then there's no time restriction for burning that token.
     */
    function getTokenBurnEndDate(uint256 tokenId) public view returns (uint256) {
        return burnEndDates[tokenId];
    }

    /**
     * @dev Burn a specific amount of a token.
     *
     * Checks:
     *  - If there's a nonzero burn end date for the token, `block.timestamp` must not exceed it.
     *  - The caller must be the token owner, an approved operator, or the `burnWallet`.
     */
    function burn(
        address account,
        uint256 id,
        uint256 amount
    ) external {
        uint256 endDate = burnEndDates[id];

        // If endDate == 0, no time restriction
        if (endDate != 0) {
            require(block.timestamp <= endDate, "Burning period has ended for this token");
        }

        require(
            account == _msgSender() ||
                isApprovedForAll(account, _msgSender()) ||
                msg.sender == burnWallet,
            "Not authorized to burn tokens"
        );

        _burn(account, id, amount);
    }

    /**
     * @dev Burn multiple tokens at once.
     *
     * Checks:
     *  - For each token, if there's a nonzero burn end date, `block.timestamp` must not exceed it.
     *  - The caller must be the token owner, an approved operator, or the `burnWallet`.
     */
    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) external {
        require(ids.length == amounts.length, "Array lengths must match");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 endDate = burnEndDates[ids[i]];

            // If endDate == 0, no time restriction
            if (endDate != 0) {
                require(block.timestamp <= endDate, "Burning period has ended for one or more tokens");
            }
        }

        require(
            account == _msgSender() ||
                isApprovedForAll(account, _msgSender()) ||
                msg.sender == burnWallet,
            "Not authorized to burn tokens"
        );

        _burnBatch(account, ids, amounts);
    }
}


// File contracts/abstracts/TeamMembers.sol

pragma solidity ^0.8.7;

abstract contract TeamMembers is Ownable {
  mapping(address => bool) private members;

  function addTeamMember(address _address) public onlyOwner {
    require(_address != address(0));
    members[_address] = true;
  }

  function removeTeamMember(address _address) public onlyOwner {
    require(_address != address(0));

    delete members[_address];
  }

  function isTeamMember(address _address) public view returns (bool) {
    return members[_address] == true;
  }

  modifier onlyTeamOrOwner() {
    require(owner() == _msgSender() || isTeamMember(_msgSender()), "NA");
    _;
  }
}


// File contracts/IERC1155CollectionAssets.sol

pragma solidity ^0.8.7;

interface IERC1155CollectionAssets {
  struct Token {
    string uri;
    uint256 maxSupply;
    uint256 minted;
    uint32 maxPerWallet;
    bool closed;
    bool nonTradeable;
  }

  struct Recipient {
    address wallet;
    uint256 fee;
  }
}


// File contracts/abstracts/ERC1155AssetSupply.sol

pragma solidity ^0.8.7;


abstract contract ERC1155AssetSupply is IERC1155CollectionAssets, TeamMembers {
  uint256 internal _nextTokenIndex;
  mapping(uint256 => Token) internal _tokens;

  function addToken(Token memory _token) public onlyTeamOrOwner {
    _tokens[_nextTokenIndex] = _token;
    _nextTokenIndex = _nextTokenIndex + 1;
  }

  function addTokens(Token[] memory tokens) public onlyTeamOrOwner {
    uint256 size = tokens.length;
    for (uint256 i = 0; i < size; i++) {
      addToken(tokens[i]);
    }
  }

  function updateToken(uint256 _tokenId, Token memory _token)
    public
    onlyTeamOrOwner
  {
    require(exists(_tokenId), "Token does not exist");
    Token memory currentToken = getToken(_tokenId);
    require(
      _token.maxSupply >= currentToken.maxSupply,
      "Cannot reduce total supply"
    );
    require(_token.minted == currentToken.minted, "Cannot change supply");
    _tokens[_tokenId] = _token;
  }

  function updateTokens(uint256[] memory tokenIds, Token[] memory tokens)
    public
    onlyTeamOrOwner
  {
    uint256 size = tokens.length;
    for (uint256 i = 0; i < size; i++) {
      updateToken(tokenIds[i], tokens[i]);
    }
  }

  function getToken(uint256 _tokenId) public view returns (Token memory) {
    require(exists(_tokenId), "Token does not exist");
    return _tokens[_tokenId];
  }

  function getTokenByIds(uint256[] memory ids)
    public
    view
    returns (Token[] memory)
  {
    Token[] memory tokens = new Token[](ids.length);
    for (uint256 i = 0; i < ids.length; i++) {
      tokens[i] = _tokens[ids[i]];
    }

    return tokens;
  }

  function getTokens() public view returns (Token[] memory) {
    uint256 size = getTokenCount();
    Token[] memory tokens = new Token[](size);
    for (uint256 i = 0; i < size; i++) {
      tokens[i] = _tokens[i];
    }

    return tokens;
  }

  function getTokenCount() public view returns (uint256) {
    return _nextTokenIndex;
  }

  function exists(uint256 _tokenId) public view returns (bool) {
    return _tokenId < _nextTokenIndex;
  }
}


// File contracts/abstracts/Withdrawable.sol

pragma solidity ^0.8.7;



abstract contract Withdrawable is TeamMembers {
  mapping(address => uint256) internal _shares;
  address[] internal _payees;

  function updateWithdrawSplit(
    address[] memory _addresses,
    uint256[] memory _fees
  ) public onlyTeamOrOwner {
    for (uint256 i = 1; i < _payees.length; i++) {
      delete _shares[_payees[i]];
    }
    _payees = new address[](_addresses.length);
    for (uint256 i = 0; i < _addresses.length; i++) {
      _shares[_addresses[i]] = _fees[i];
      _payees[i] = _addresses[i];
    }
  }

  function getWithdrawSplit()
    public
    view
    returns (address[] memory, uint256[] memory)
  {
    uint256[] memory values = new uint256[](_payees.length);
    for (uint256 i = 0; i < _payees.length; i++) {
      values[i] = _shares[_payees[i]];
    }
    return (_payees, values);
  }

  function withdraw() external payable {
    uint256 balance = address(this).balance;
    if (balance > 0) {
      for (uint256 i = 0; i < _payees.length; i++) {
        uint256 split = _shares[_payees[i]];
        uint256 value = ((split * balance) / 1000);
        Address.sendValue(payable(_payees[i]), value);
      }
    }
  }

  function withdrawToken(
    address _to,
    address _erc20,
    uint256 _amount
  ) external onlyTeamOrOwner {
    IERC20 token = IERC20(_erc20);
    token.transfer(_to, _amount);
  }
}


// File contracts/abstracts/WithRoyalty.sol

abstract contract WithRoyalty is IERC1155CollectionAssets, TeamMembers {
  address internal recipient;
  uint256 internal recipientFee;
  mapping(uint256 => Recipient) internal _perTokenRoyalty;

  function updateRoyalty(address _recipient, uint256 _fee)
    public
    onlyTeamOrOwner
  {
    recipient = _recipient;
    recipientFee = _fee;
  }

  function updateTokenRoyalty(
    uint256 tokenId,
    address _recipient,
    uint256 _fee
  ) public onlyTeamOrOwner {
    _perTokenRoyalty[tokenId] = Recipient(_recipient, _fee);
  }
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}


// File contracts/abstracts/SignatureMintable.sol

pragma solidity ^0.8.7;



abstract contract SignatureMintable is EIP712, TeamMembers {
  using ECDSA for bytes32;

  struct MintTokenSignature {
    address to;
    uint256[] tokenIds;
    uint256[] counts;
    uint256 cost;
    address currency; // ETH or ERC20
    uint128 expiresAt;
    bytes32 nonce;
  }

  address public signerAddress;
  bytes32 internal constant TYPEHASH =
    keccak256(
      "MintTokenSignature(address to,uint256[] tokenIds,uint256[] counts,uint256 cost,address currency,uint128 expiresAt,bytes32 nonce)"
    );

  /// @dev Mapping from mint request UID => whether the mint request is processed.
  mapping(bytes32 => bool) internal _nonces;
  mapping(address => mapping(uint256 => uint256)) _minted;

  modifier withValidSignature(
    MintTokenSignature calldata _req,
    bytes calldata _signature
  ) {
    require(!_nonces[_req.nonce], "Duplicate signature");
    require(block.timestamp < _req.expiresAt, "Expired signature");

    _nonces[_req.nonce] = true;
    (bool success, address signer) = verify(_req, _signature);
    require(success, "Invalid signer");

    _;
  }

  function getMintedTokenOwnerCount(address _wallet, uint256 tokenId)
    public
    view
    returns (uint256)
  {
    return _minted[_wallet][tokenId];
  }

  function getMintedTokensOwnerCount(address _wallet, uint256[] memory tokenIds)
    public
    view
    returns (uint256[] memory)
  {
    uint256[] memory mints = new uint256[](tokenIds.length);
    for (uint256 i = 0; i < mints.length; i++) {
      mints[i] = getMintedTokenOwnerCount(_wallet, tokenIds[i]);
    }
    return mints;
  }

  function verify(MintTokenSignature calldata _req, bytes calldata _signature)
    private
    view
    returns (bool success, address signer)
  {
    signer = _recoverAddress(_req, _signature);
    success = signer == signerAddress;

    return (success, signer);
  }

  function _recoverAddress(
    MintTokenSignature calldata _req,
    bytes calldata _signature
  ) private view returns (address) {
    bytes32 digest = _hashTypedDataV4(
      keccak256(
        abi.encode(
          TYPEHASH,
          _req.to,
          keccak256(abi.encodePacked(_req.tokenIds)),
          keccak256(abi.encodePacked(_req.counts)),
          _req.cost,
          _req.currency,
          _req.expiresAt,
          _req.nonce
        )
      )
    );
    return ECDSA.recover(digest, _signature);
  }
}


// File contracts/ERC1155CollectionAssetsV2.sol

pragma solidity ^0.8.7;











abstract contract ERC1155CollectionAssetsV2 is
  Ownable,
  ReentrancyGuard,
  IERC2981,
  ERC1155Burnable,
  TeamMembers,
  ERC1155AssetSupply,
  Withdrawable,
  WithRoyalty,
  SignatureMintable
{
  address private constant _NFTGen = 0x460Fd5059E7301680fA53E63bbBF7272E643e89C;
  uint256 public tokenDefaultMaxPerWallet;
  uint256 public mintFee = 0.00069 ether;

  constructor(address _signerAddress) ERC1155Burnable() {
    signerAddress = _signerAddress;
  }

  function updateSigner(address _signerAddress) public onlyOwner {
    signerAddress = _signerAddress;
  }

  function updateMintFee(uint256 _mintFee) external {
    require(msg.sender == _NFTGen);
    mintFee = _mintFee;
  }

  function updateDefaultMaxPerWallet(uint256 _maxPerWallet)
    public
    onlyTeamOrOwner
  {
    tokenDefaultMaxPerWallet = _maxPerWallet;
  }

  function _beforeTokenTransfer(
    address operator,
    address from,
    address to,
    uint256[] memory ids,
    uint256[] memory amounts,
    bytes memory data
  ) internal override(ERC1155) {
    for (uint256 i = 0; i < ids.length; i++) {
      Token memory token = getToken(ids[i]);
      if (from != address(0)) {
        require(!token.nonTradeable, "Can't be traded");
      }

      if (from == address(0)) {
        require(!token.closed, "Token closed");

        uint256 maxPerWallet = token.maxPerWallet;
        if (maxPerWallet == 0) {
          maxPerWallet = tokenDefaultMaxPerWallet;
        }
        _minted[to][ids[i]] = _minted[to][ids[i]] + amounts[i];
        require(_minted[to][ids[i]] <= maxPerWallet, "Max per wallet reached");
        _tokens[ids[i]].minted = token.minted + amounts[i];
      }
    }

    super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
  }

  modifier beforeMint(MintTokenSignature calldata mintToken) {
    require(mintToken.to == msg.sender, "Can't mint to other than yourself");

    if (mintToken.currency == address(this)) {
      require(msg.value >= mintToken.cost, "Must send total price");
    } else {
      IERC20 erc20 = IERC20(mintToken.currency);
      erc20.transferFrom(msg.sender, address(this), mintToken.cost);
    }

    uint256 size = mintToken.tokenIds.length;
    for (uint256 i = 0; i < size; i++) {
      Token memory _token = getToken(mintToken.tokenIds[i]);
      require(
        _token.minted + mintToken.counts[i] <= _token.maxSupply,
        "Max supply reached"
      );
    }

    if (mintFee > 0) {
      Address.sendValue(payable(_NFTGen), mintFee * size);
    }

    _;
  }

  function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC1155, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC2981).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
    external
    view
    override
    returns (address receiver, uint256 royaltyAmount)
  {
    Recipient memory recipientOverride = _perTokenRoyalty[_tokenId];
    if (recipientOverride.fee > 0) {
      return (
        recipientOverride.wallet,
        (_salePrice * recipientOverride.fee) / 1000
      );
    } else {
      return (recipient, (_salePrice * recipientFee) / 1000);
    }
  }

  function uri(uint256 _tokenId) public view override returns (string memory) {
    return string(abi.encodePacked(_tokens[_tokenId].uri));
  }

  function airdrop(
    address[] memory _recipients,
    uint256[] memory _tokenIds,
    uint256[] memory _amount
  ) public onlyTeamOrOwner {
    require(_recipients.length == _amount.length);
    require(_tokenIds.length == _amount.length);

    for (uint256 i = 0; i < _amount.length; i++) {
      _mint(_recipients[i], _tokenIds[i], _amount[i], "");
    }
  }

  function signMint(
    MintTokenSignature calldata mintToken,
    bytes calldata signature
  )
    public
    payable
    nonReentrant
    withValidSignature(mintToken, signature)
    beforeMint(mintToken)
  {
    _mintBatch(mintToken.to, mintToken.tokenIds, mintToken.counts, "");
  }

  function tokensOfOwner(address _address)
    public
    view
    returns (uint256[] memory)
  {
    require(exists(0), "No passes exist");
    uint256[] memory balances = new uint256[](getTokenCount());
    for (uint256 i = 0; i < getTokenCount(); i++) {
      uint256 balanceOfToken = balanceOf(_address, i);
      balances[i] = balanceOfToken;
    }
    return balances;
  }

  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    uint256 amount,
    bytes memory data
  ) public override {
    super.safeTransferFrom(from, to, tokenId, amount, data);
  }

  function safeBatchTransferFrom(
    address from,
    address to,
    uint256[] memory ids,
    uint256[] memory amounts,
    bytes memory data
  ) public virtual override {
    super.safeBatchTransferFrom(from, to, ids, amounts, data);
  }
}



contract StickerbookERCContract is ERC1155CollectionAssetsV2 {
  constructor(address _signer) ERC1155CollectionAssetsV2(_signer) ERC1155("") EIP712("SignatureMintable", "1") {
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addTeamMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"uint32","name":"maxPerWallet","type":"uint32"},{"internalType":"bool","name":"closed","type":"bool"},{"internalType":"bool","name":"nonTradeable","type":"bool"}],"internalType":"struct IERC1155CollectionAssets.Token","name":"_token","type":"tuple"}],"name":"addToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"uint32","name":"maxPerWallet","type":"uint32"},{"internalType":"bool","name":"closed","type":"bool"},{"internalType":"bool","name":"nonTradeable","type":"bool"}],"internalType":"struct IERC1155CollectionAssets.Token[]","name":"tokens","type":"tuple[]"}],"name":"addTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMintedTokenOwnerCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"getMintedTokensOwnerCount","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getToken","outputs":[{"components":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"uint32","name":"maxPerWallet","type":"uint32"},{"internalType":"bool","name":"closed","type":"bool"},{"internalType":"bool","name":"nonTradeable","type":"bool"}],"internalType":"struct IERC1155CollectionAssets.Token","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenBurnEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"getTokenByIds","outputs":[{"components":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"uint32","name":"maxPerWallet","type":"uint32"},{"internalType":"bool","name":"closed","type":"bool"},{"internalType":"bool","name":"nonTradeable","type":"bool"}],"internalType":"struct IERC1155CollectionAssets.Token[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokens","outputs":[{"components":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"uint32","name":"maxPerWallet","type":"uint32"},{"internalType":"bool","name":"closed","type":"bool"},{"internalType":"bool","name":"nonTradeable","type":"bool"}],"internalType":"struct IERC1155CollectionAssets.Token[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWithdrawSplit","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isTeamMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeTeamMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","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":"uint256","name":"amount","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":"address","name":"newBurnWallet","type":"address"}],"name":"setBurnWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"newBurnEndDate","type":"uint256"}],"name":"setTokenBurnEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"counts","type":"uint256[]"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"uint128","name":"expiresAt","type":"uint128"},{"internalType":"bytes32","name":"nonce","type":"bytes32"}],"internalType":"struct SignatureMintable.MintTokenSignature","name":"mintToken","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"signMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDefaultMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"updateDefaultMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"}],"name":"updateMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"components":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"uint32","name":"maxPerWallet","type":"uint32"},{"internalType":"bool","name":"closed","type":"bool"},{"internalType":"bool","name":"nonTradeable","type":"bool"}],"internalType":"struct IERC1155CollectionAssets.Token","name":"_token","type":"tuple"}],"name":"updateToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"components":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"uint32","name":"maxPerWallet","type":"uint32"},{"internalType":"bool","name":"closed","type":"bool"},{"internalType":"bool","name":"nonTradeable","type":"bool"}],"internalType":"struct IERC1155CollectionAssets.Token[]","name":"tokens","type":"tuple[]"}],"name":"updateTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_fees","type":"uint256[]"}],"name":"updateWithdrawSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_erc20","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000a9f16e2885a7f34433e9ac624058ecf7b8ee6a24a761f7349e2e2c673ae00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000c3734144d40d3aaf8a369aafa93a85146d9cfc27

Deployed Bytecode

0x000200000000000200160000000000020000000003020019000000000801034f00000060011002700001000000080355000009d20010019d000009d20210019700000001003001900000002c0000c13d0000008004000039000000400040043f000000040020008c000000500000413d000000000128034f000000000308043b000000e003300270000009e60030009c000000520000a13d000009e70030009c000000e80000213d000009f70030009c000001740000213d000009ff0030009c000002940000213d00000a030030009c00000cc10000613d00000a040030009c000009230000613d00000a050030009c000000500000c13d000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000000000010043f0000000601000039000000200010043f0000004002000039000000000100001900000cd80000013d0000000001000416000000000001004b000000500000c13d0000001f01200039000009d3011001970000014001100039000000400010043f0000001f0320018f000009d40420019800000140014000390000003d0000613d0000014005000039000000000608034f000000006706043c0000000005750436000000000015004b000000390000c13d000000000003004b0000004a0000613d000000000448034f0000000303300210000000000501043300000000053501cf000000000535022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000353019f0000000000310435000000200020008c000000500000413d000001400100043d001200000001001d000009d50010009c0000011b0000a13d0000000001000019000027450001043000000a060030009c000001340000a13d00000a070030009c000001500000213d00000a0f0030009c000001ee0000213d00000a130030009c0000060b0000613d00000a140030009c000005330000613d00000a150030009c000000500000c13d00000a53010000410000000000100443000000000100041000000004001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a35011001c70000800a020000392743273e0000040f0000000100200190000024290000613d000000000101043b000f00000001001d000000000001004b000009390000613d0000000b01000039000000000101041a000000000001004b000009390000613d0000000002000019001200000002001d00000a270120009a001100000001001d000000000101041a000009d501100197000000000010043f0000000a01000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f00000012030000290000000100200190000000500000613d000000000101043b000000000101041a0000000f0200002900000000042100a9000000000001004b0000008f0000613d00000000011400d9000000000021004b00001c5f0000c13d001000000004001d0000000b02000039000000000102041a000000000031004b0000242a0000a13d000000000020043f0000001101000029000000000101041a001100000001001d00000a53010000410000000000100443000000000100041000000004001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a35011001c70000800a020000392743273e0000040f0000000100200190000024290000613d0000001002000029000003e80320011a000000000101043b000000000031004b0000214f0000413d0000001101000029000009d5041001970000000001000414000009d20010009c000009d201008041000000c001100210000003e70020008c000000b40000213d0000000002040019000000b70000013d000009da011001c700008009020000390000000005000019274327390000040f0000006003100270000009d203300198000000df0000613d0000001f04300039000009d3044001970000003f0440003900000a5505400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000009e00050009c0000012e0000213d00000001006001900000012e0000c13d000000400050043f0000000006340436000009d4053001980000000004560019000000d20000613d000000000701034f000000007807043c0000000006860436000000000046004b000000ce0000c13d0000001f03300190000000df0000613d000000000151034f0000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000100200190000022500000613d000000120200002900000001022000390000000b01000039000000000101041a000000000012004b000000740000413d000009390000013d000009e80030009c0000019d0000213d000009f00030009c000002a80000213d000009f40030009c00000cdd0000613d000009f50030009c000009440000613d000009f60030009c000000500000c13d000000440020008c000000500000413d0000000401800370000000000101043b000009e00010009c000000500000213d000000000312004900000a390030009c000000500000213d000000e40030008c000000500000413d0000002403800370000000000303043b000009e00030009c000000500000213d0000002304300039000000000024004b000000500000813d0000000404300039000000000448034f000000000404043b000009e00040009c000000500000213d00000000034300190000002403300039000000000023004b000000500000213d0000000402000039000000000302041a000000020030008c0000132c0000c13d00000a2c01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000a5b01000041000000c40010043f00000a5c010000410000274500010430000000400400043d000009d60040009c0000012e0000213d0000002001400039001100000001001d000000400010043f0000000000040435000000400100043d000009d70010009c0000012e0000213d0000004002100039000000400020043f00000011020000390000000002210436000009d8030000410000000000320435000000400300043d000009d70030009c000004890000a13d00000a8401000041000000000010043f0000004101000039000000040010043f00000a8501000041000027450001043000000a160030009c000001c20000a13d00000a170030009c0000025d0000213d00000a1b0030009c000008790000613d00000a1c0030009c000008400000613d00000a1d0030009c000000500000c13d000000640020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000002401800370000000000101043b001200000001001d000009d50010009c000000500000213d0000000301000039000000000101041a000009d5021001970000000001000411000000000012004b00000e840000c13d000000010100003900000e960000013d00000a080030009c000001f90000213d00000a0c0030009c000007970000613d00000a0d0030009c000005920000613d00000a0e0030009c000000500000c13d000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000002401800370000000000301043b0000000401800370000000000401043b0000000301000039000000000101041a000009d5011001970000000002000411000000000021004b0000093b0000c13d000000000003004b001200000003001d00000e450000c13d000000000040043f0000000601000039000000200010043f00000040020000390000000001000019274327240000040f0000001202000029000000000021041b0000000001000019000027440001042e000009f80030009c0000032f0000213d000009fc0030009c00000cf10000613d000009fd0030009c00000a460000613d000009fe0030009c000000500000c13d000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b001200000001001d000009d50010009c000000500000213d0000002401800370000000000201043b000000000002004b0000000001000039000000010100c039001100000002001d000000000012004b000000500000c13d0000000002000411000000120020006c00000fb40000c13d00000a2c01000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f00000a5f01000041000000c40010043f00000a6001000041000000e40010043f00000a33010000410000274500010430000009e90030009c000004190000213d000009ed0030009c00000d090000613d000009ee0030009c00000a4f0000613d000009ef0030009c000000500000c13d000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000601043b000009d50060009c000000500000213d0000000303000039000000000103041a000009d5021001970000000005000411000000000052004b0000093b0000c13d000000000006004b00000fe80000c13d00000a2c01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f00000a3101000041000000c40010043f00000a3201000041000000e40010043f00000a3301000041000027450001043000000a1e0030009c000004310000a13d00000a1f0030009c0000082f0000613d00000a200030009c0000082a0000613d00000a210030009c000000500000c13d000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f000000010040019000000e660000613d00000a8401000041000000000010043f0000002201000039000000040010043f00000a8501000041000027450001043000000a100030009c000007f30000613d00000a110030009c000005a10000613d00000a120030009c000000500000c13d0000000001000416000000000001004b000000500000c13d000000120100003900000cd90000013d00000a090030009c000008100000613d00000a0a0030009c000006060000613d00000a0b0030009c000000500000c13d000000640020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b001000000001001d000009d50010009c000000500000213d0000002401800370000000000101043b000009e00010009c000000500000213d0000002303100039000000000023004b000000500000813d0000000403100039000000000338034f000000000403043b000009e00040009c0000012e0000213d00000005034002100000003f0530003900000a250550019700000a260050009c0000012e0000213d00000024011000390000008005500039000000400050043f000000800040043f0000000003130019000000000023004b000000500000213d000000000708034f000000000608034f000000000004004b0000022d0000613d0000008004000039000000000516034f000000000505043b000000200440003900000000005404350000002001100039000000000031004b000002260000413d0000004401600370000000000101043b000009e00010009c000000500000213d0000002303100039000000000023004b000000000400001900000a430400804100000a4303300197000000000003004b000000000500001900000a430500404100000a430030009c000000000504c019000000000005004b000000500000c13d0000000403100039000000000336034f000000000303043b000009e00030009c0000012e0000213d00000005043002100000003f0540003900000a2505500197000000400600043d0000000005560019000c00000006001d000000000065004b00000000060000390000000106004039000009e00050009c0000012e0000213d00000001006001900000012e0000c13d0000002401100039000000400050043f0000000c050000290000000005350436000b00000005001d0000000004140019000000000024004b000000500000213d000000000003004b0000174a0000c13d000000800100043d000000000001004b000017590000613d000017ad0000013d00000a180030009c0000087e0000613d00000a190030009c0000085c0000613d00000a1a0030009c000000500000c13d000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000002401800370000000000101043b001200000001001d0000000401800370000000000101043b000000000010043f0000000e01000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000400200043d000009d70020009c0000012e0000213d000000000301043b0000004001200039000000400010043f000000000103041a000009d50110019700000000021204360000000103300039000000000303041a0000000000320435000000000003004b00000f960000c13d0000000c01000039000000000101041a0000000d02000039000000000302041a000000120400002900000000024300a9000000000004004b000002920000613d00000000044200d9000000000034004b00001c5f0000c13d000009d501100197000010400000013d00000a000030009c00000dcb0000613d00000a010030009c00000aa10000613d00000a020030009c000000500000c13d000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d000000000100041100000a540010009c000000500000c13d0000000401800370000000000101043b0000001302000039000000000012041b0000000001000019000027440001042e000009f10030009c00000dd30000613d000009f20030009c00000c3a0000613d000009f30030009c000000500000c13d000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b001200000001001d0000002401800370000000000101043b000009e00010009c000000500000213d0000000401100039000000000312004900000a390030009c000000500000213d000000c00030008c000000500000413d0000014003000039000000400030043f000000000418034f000000000404043b000009e00040009c000000500000213d00000000051400190000001f04500039000000000024004b000000500000813d000000000458034f000000000404043b000009e00040009c0000012e0000213d0000001f0640003900000a92066001970000003f0660003900000a920660019700000a3a0060009c0000012e0000213d00000020055000390000014006600039000000400060043f000001400040043f0000000006540019000000000026004b000000500000213d000000000b08034f000000000558034f00000a92064001980000001f0740018f0000016002600039000002e70000613d0000016008000039000000000905034f000000009a09043c0000000008a80436000000000028004b000002e30000c13d000000000007004b000002f40000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000052043500000160024000390000000000020435000000800030043f000000200210003900000000022b034f000000000202043b000000a00020043f000000400210003900000000022b034f000000000202043b000000c00020043f000000600110003900000000021b034f000000000202043b000009d20020009c000000500000213d000000e00020043f000000200110003900000000021b034f000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000000500000c13d000001000020043f000000200110003900000000011b034f000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b000000500000c13d000001200010043f0000000301000039000000000101041a000009d5021001970000000001000411000000000012004b000018e40000c13d0000000801000039000000000101041a000000120010006b00001d980000813d00000012010000292743265c0000040f00000020021000390000000002020433000000a00300043d000000000023004b000019cb0000813d000000400100043d000000440210003900000a6303000041000000000032043500000024021000390000001a03000039000021550000013d000009f90030009c00000dea0000613d000009fa0030009c00000c5b0000613d000009fb0030009c000000500000c13d000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009e00010009c000000500000213d0000000401100039274325340000040f000c00000001001d0000000301000039000000000101041a000009d5011001970000000002000411000000000021004b00000edb0000c13d0000000c010000290000000001010433000b00000001001d000000000001004b000009390000613d0000000c01000029000a00200010003d0000000001000411000709d50010019b001200000000001d0000000c0100002900000000010104330000001202000029000000000021004b0000242a0000a13d00000005012002100000000a011000290000000001010433001100000001001d0000000301000039000000000101041a000009d5011001970000000002000411000000000021004b000003710000613d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff0010019000000eed0000613d0000000801000039000000000101041a000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000501043b000000110100002900000000430104340000000076030434000009e00060009c0000012e0000213d000000000105041a000000010010019000000001081002700000007f0880618f0000001f0080008c00000000020000390000000102002039000000000121013f0000000100100190000001e80000c13d000000200080008c001000000005001d000f00000004001d000e00000006001d000d00000003001d000003b50000413d000800000008001d000900000007001d000000000050043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000e060000290000001f026000390000000502200270000000200060008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000010050000290000000f040000290000000907000029000003b50000813d000000000002041b0000000102200039000000000012004b000003b10000413d0000001f0060008c000003e10000a13d000000000050043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000e0600002900000a9202600198000000000101043b000004140000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000d0700002900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003cb0000c13d000000000062004b000003dc0000813d0000000302600210000000f80220018f00000a930220027f00000a930220016700000000037300190000000003030433000000000223016f000000000021041b000000010160021000000001011001bf00000010050000290000000f04000029000003ec0000013d000000000006004b000003e50000613d0000000001070433000003e60000013d0000000001000019000000030260021000000a930220027f00000a9302200167000000000121016f0000000102600210000000000121019f000000000015041b00000000010404330000000102500039000000000012041b0000001104000029000000400140003900000000010104330000000202500039000000000012041b00000060014000390000000001010433000009d2011001970000000302500039000000000302041a00000a3b03300197000000000113019f00000080034000390000000003030433000000000003004b00000a3c030000410000000003006019000000000131019f000000a0034000390000000003030433000000000003004b00000a3d030000410000000003006019000000000131019f000000000012041b0000000802000039000000000102041a000000010110003a00001c5f0000613d000000000012041b00000012020000290000000102200039001200000002001d0000000b0020006c000003510000413d000009390000013d00000020030000390000000d07000029000000000062004b000003d40000413d000003dc0000013d000009ea0030009c00000dfd0000613d000009eb0030009c00000c730000613d000009ec0030009c000000500000c13d000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b001200000001001d000009d50010009c000000500000213d0000000301000039000000000101041a000009d5021001970000000001000411000000000012004b00000ef40000c13d000000010100003900000f060000013d00000a220030009c0000081d0000613d00000a230030009c000000500000c13d000000640020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b001200000001001d000009d50010009c000000500000213d0000002401800370000000000101043b001100000001001d000009d50010009c000000500000213d0000000301000039000000000101041a000009d5021001970000000001000411000000000012004b00000f140000c13d0000008003000039001000000003001d00000a900100004100000000001304350000004401800370000000000101043b00000024023000390000000000120435000000040130003900000012020000290000000000210435000009d20030009c000009d201000041000000000103401900000040011002100000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f00000a91011001c70000001102000029274327390000040f000000100a0000290000006003100270000009d203300197000000200030008c000000200b000039000000000b0340190000001f05b0018f0000002006b0019000000000046a0019000004710000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000046d0000c13d000000000005004b0000047e0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010020019000000ff60000613d00000000010a001900000000020b001900120000000b001d274324a00000040f00000010010000290000001202100029274326fb0000040f0000000001000019000027440001042e000f00000004001d0000004004300039000000400040043f00000001040000390000000004430436000009d903000041001000000004001d0000000000340435000009d20020009c000009d20200804100000040022002100000000001010433000009d20010009c000009d2010080410000006001100210000000000121019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f000009da011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000e00000001001d0000001001000029000009d20010009c000009d20100804100000040011002100000000002000414000009d20020009c000009d202008041000000c002200210000000000121019f000009db011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000201043b0000000e01000029000000e00010043f001000000002001d000001000020043f000009dc0100004100000000001004430000000001000414000009d20010009c000009d201008041000000c001100210000009dd011001c70000800b020000392743273e0000040f0000000100200190000024290000613d000000000201043b000000a00020043f000000400100043d0000008003100039000000000023043500000060021000390000001003000029000000000032043500000040021000390000000e030000290000000000320435000000a0020000390000000002210436000000a00310003900000000040004100000000000430435000009de030000410000000000320435000009df0010009c0000012e0000213d000000c003100039000000400030043f000009d20020009c000009d20200804100000040022002100000000001010433000009d20010009c000009d2010080410000006001100210000000000121019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f000009da011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000800010043f0000000001000410000000c00010043f000009de01000041000001200010043f0000000f010000290000000001010433001000000001001d000009e00010009c0000012e0000213d0000000201000039000000000101041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b000001e80000c13d000e00000003001d000000200030008c0000051f0000413d0000000201000039000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000010030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000e010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000051f0000813d000000000002041b0000000102200039000000000012004b0000051b0000413d00000010010000290000001f0010008c000014e90000a13d0000000201000039000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000200200008a0000001002200180000000000101043b000016b10000c13d0000002003000039000016be0000013d000000440020008c000000500000413d0000000003000416000000000003004b000000500000c13d0000000403800370000000000303043b000009d50030009c000000500000213d0000002404800370000000000404043b000009e00040009c000000500000213d0000002305400039000000000025004b000000500000813d0000000405400039000000000558034f000000000505043b000009e00050009c0000012e0000213d00000005065002100000003f0760003900000a250770019700000a260070009c0000012e0000213d00000024044000390000008007700039001200000007001d000000400070043f000000800050043f0000000006460019000000000026004b000000500000213d0000000002000415000000160220008a0000000502200210000000000005004b00000000050000190000056c0000613d000000000708034f0000008002000039000000000547034f000000000505043b000000200220003900000000005204350000002004400039000000000064004b0000055d0000413d000000800500043d000009e00050009c0000012e0000213d0000000002000415000000150220008a0000000502200210000000400400043d001200000004001d00000005045002100000003f0640003900000a25076001970000001206700029000000000076004b00000000070000390000000107004039000009e00060009c0000012e0000213d00000001007001900000012e0000c13d000000400060043f00000012060000290000000005560436000e00000005001d0000001f0540018f000000000004004b000005840000613d0000000e060000290000000004460019000000001701043c0000000006760436000000000046004b000005800000c13d000000000005004b00000005012002700000001202000029000000000102001f0000000001020433000000000001004b000015a80000c13d000000400200043d001100000002001d000000200100003900000000021204360000001201000029274324b20000040f00000f4a0000013d000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000801000039000000000101041a0000000402800370000000000202043b000000000012004b00000000010000390000000101004039000000800010043f00000a3e01000041000027440001042e000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009e00010009c000000500000213d0000002303100039000000000023004b000000500000813d0000000403100039000000000338034f000000000403043b000009e00040009c0000012e0000213d00000005054002100000003f0350003900000a250630019700000a260060009c0000012e0000213d00000024031000390000008001600039000f00000001001d000000400010043f000000800040043f0000000005350019000000000025004b000000500000213d0000000001000415000000140110008a0000000501100210000000000004004b0000000004000019000005d60000613d000000000608034f0000008001000039000000000236034f000000000202043b000000200110003900000000002104350000002003300039000000000053004b000005c70000413d000000800400043d000009e00040009c0000012e0000213d0000000001000415000000130110008a0000000501100210000000400200043d000f00000002001d00000005024002100000003f0320003900000a25053001970000000f03500029000000000053004b00000000050000390000000105004039000009e00030009c0000012e0000213d00000001005001900000012e0000c13d000000400030043f0000000f030000290000000008430436000000000004004b000005fc0000613d00000060030000390000000004000019000000400500043d000009df0050009c0000012e0000213d000000c006500039000000400060043f0000000006350436000000a00750003900000000000704350000008007500039000000000007043500000060075000390000000000070435000000400750003900000000000704350000000000060435000000000648001900000000005604350000002004400039000000000024004b000005e80000413d001000000008001d00000005011002700000000f0100002f000000800100043d000000000001004b000014f60000c13d000000400100043d001200000001001d0000000f0200002900000c710000013d0000000001000416000000000001004b000000500000c13d0000000f0100003900000a4a0000013d000000a40020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009d50010009c000000500000213d0000002403800370000000000303043b000e00000003001d000009d50030009c000000500000213d0000004403800370000000000303043b000009e00030009c000000500000213d0000002304300039000000000024004b000000500000813d0000000404300039000000000448034f000000000504043b000009e00050009c0000012e0000213d00000005045002100000003f0640003900000a250660019700000a260060009c0000012e0000213d00000024033000390000008006600039000000400060043f000000800050043f0000000004340019000000000024004b000000500000213d000000000908034f000000000708034f000000000005004b0000063d0000613d0000008005000039000000000637034f000000000606043b000000200550003900000000006504350000002003300039000000000043004b000006360000413d0000006403700370000000000303043b000009e00030009c000000500000213d0000002304300039000000000024004b000000000500001900000a430500804100000a4304400197000000000004004b000000000600001900000a430600404100000a430040009c000000000605c019000000000006004b000000500000c13d0000000404300039000000000447034f000000000404043b000009e00040009c0000012e0000213d00000005054002100000003f0650003900000a2506600197000000400700043d0000000006670019000800000007001d000000000076004b00000000070000390000000107004039000009e00060009c0000012e0000213d00000001007001900000012e0000c13d0000002403300039000000400060043f00000008060000290000000006460436000700000006001d0000000005350019000000000025004b000000500000213d000000000709034f000000000004004b000006720000613d0000000804000029000000000637034f000000000606043b000000200440003900000000006404350000002003300039000000000053004b0000066b0000413d0000008403700370000000000403043b000009e00040009c000000500000213d0000002303400039000000000023004b000000000500001900000a430500804100000a4303300197000000000003004b000000000600001900000a430600404100000a430030009c000000000605c019000000000006004b000000500000c13d0000000405400039000000000357034f000000000303043b000009e00030009c0000012e0000213d0000001f0630003900000a92066001970000003f0660003900000a9206600197000000400700043d0000000006670019000600000007001d000000000076004b00000000070000390000000107004039000009e00060009c0000012e0000213d00000001007001900000012e0000c13d0000002404400039000000400060043f00000006060000290000000006360436000500000006001d0000000004430019000000000024004b000000500000213d0000002002500039000000000429034f00000a92053001980000001f0630018f0000000502500029000006a90000613d000000000704034f0000000508000029000000007907043c0000000008980436000000000028004b000006a50000c13d000000000006004b000006b60000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000042043500000005023000290000000000020435000b09d50010019b00000000010004110000000b0010006b00001b200000c13d00000008010000290000000002010433000000800100043d000000000021004b000024300000c13d0000000e02000029000c09d50020019c00000a970000613d000000000001004b00001c690000c13d000000400100043d000000400200003900000000022104360000004003100039000000800400043d00000000004304350000006003100039000000000004004b000006d70000613d000000800500003900000000060000190000002005500039000000000705043300000000037304360000000106600039000000000046004b000006d10000413d00000000041300490000000000420435000000080200002900000000040204330000000002430436000000000004004b000006e60000613d000000000300001900000008050000290000002005500039000000000605043300000000026204360000000103300039000000000043004b000006e00000413d0000000002120049000009d20020009c000009d2020080410000006002200210000009d20010009c000009d2010080410000004001100210000000000112019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000121019f000009da011001c70000800d02000039000000040300003900000a560400004100000000050004110000000b060000290000000c07000029274327390000040f0000000100200190000000500000613d00000a340100004100000000001004430000000e0100002900000004001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a35011001c700008002020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000000001004b000009390000613d000000400300043d0000004401300039000000a002000039000000000021043500000024013000390000000b02000029000000000021043500000a57010000410000000000130435000000040130003900000000020004110000000000210435000000a401300039000000800200043d0000000000210435001200000003001d000000c401300039000000000002004b000007280000613d000000800300003900000000040000190000002003300039000000000503043300000000015104360000000104400039000000000024004b000007220000413d00000012030000290000000002310049000000040220008a00000064033000390000000000230435000000080200002900000000020204330000000001210436000000000002004b0000073a0000613d000000000300001900000008050000290000002005500039000000000405043300000000014104360000000103300039000000000023004b000007340000413d00000012030000290000000002310049000000040220008a00000084033000390000000000230435000000060200002900000000020204330000000001210436000000000002004b00000005060000290000074d0000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b000007460000413d000000000312001900000000000304350000001f0220003900000a9202200197000000120300002900000000013100490000000001210019000009d20010009c000009d2010080410000006001100210000009d20030009c000009d20200004100000000020340190000004002200210000000000121019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f0000000c02000029274327390000040f0000006003100270000009d203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001205700029000007720000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b0000076e0000c13d000000000006004b0000077f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e6c0000613d0000001f01400039000000600110018f0000001204100029000000000014004b00000000010000390000000101004039000009e00040009c0000012e0000213d00000001001001900000012e0000c13d0000000002040019000000400040043f000000200030008c000000500000413d0000001201000029000000000101043300000a3700100198000000500000c13d00000a380110019700000a570010009c000009390000613d00001b150000013d000000440020008c000000500000413d0000000003000416000000000003004b000000500000c13d0000000403800370000000000303043b000009e00030009c000000500000213d0000002304300039000000000024004b000000500000813d0000000404300039000000000448034f000000000504043b000009e00050009c0000012e0000213d00000005045002100000003f0640003900000a250660019700000a260060009c0000012e0000213d0000008006600039000000400060043f000000800050043f00000024033000390000000004340019000000000024004b000000500000213d000000000908034f000000000708034f000000000005004b000007c20000613d0000008005000039000000000637034f000000000606043b000009d50060009c000000500000213d000000200550003900000000006504350000002003300039000000000043004b000007b90000413d0000002403700370000000000303043b000009e00030009c000000500000213d0000002304300039000000000024004b000000000500001900000a430500804100000a4304400197000000000004004b000000000600001900000a430600404100000a430040009c000000000605c019000000000006004b000000500000c13d0000000404300039000000000447034f000000000404043b000009e00040009c0000012e0000213d00000005054002100000003f0650003900000a2506600197000000400700043d0000000006670019000f00000007001d000000000076004b00000000070000390000000107004039000009e00060009c0000012e0000213d00000001007001900000012e0000c13d0000002403300039000000400060043f0000000f060000290000000006460436000e00000006001d0000000005350019000000000025004b000000500000213d000000000004004b0000170d0000c13d000000800200043d000000000002004b00000000020000190000171c0000613d000017400000013d000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009d50010009c000000500000213d0000000302000039000000000202041a000009d5022001970000000003000411000000000032004b0000093b0000c13d000000000001004b000000500000613d000000000010043f0000000701000039000000200010043f00000040020000390000000001000019274327240000040f000000000201041a00000a940220019700000001022001bf000000000021041b0000000001000019000027440001042e000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000301000039000000000101041a000009d5021001970000000001000411000000000012004b00000e2a0000c13d000000010100003900000e3c0000013d000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009d50010009c000000500000213d0000002402800370000000000202043b274325e80000040f00000cea0000013d0000000001000416000000000001004b000000500000c13d000000050100003900000a4a0000013d000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000201043b00000a3700200198000000500000c13d000000010100003900000a8b0020009c00000e5f0000213d00000a8e0020009c00000dd00000613d00000a8f0020009c00000dd00000613d00000e630000013d000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009d50010009c000000500000213d0000000302000039000000000202041a000009d5022001970000000003000411000000000032004b0000093b0000c13d000000000001004b000000500000613d000000000010043f0000000701000039000000200010043f00000040020000390000000001000019274327240000040f000000000201041a00000a9402200197000000000021041b0000000001000019000027440001042e000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009d50010009c000000500000213d0000000302000039000000000202041a000009d5022001970000000003000411000000000032004b0000093b0000c13d000000000001004b00000f360000c13d00000a2c01000041000000800010043f0000002001000039000000840010043f0000002201000039000000a40010043f00000a8001000041000000c40010043f00000a8101000041000000e40010043f00000a330100004100002745000104300000000001000416000000000001004b000000500000c13d000000130100003900000cd90000013d000000640020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009e00010009c000000500000213d0000002303100039000000000023004b000000500000813d0000000403100039000000000338034f000000000403043b000009e00040009c0000012e0000213d00000005034002100000003f0530003900000a250550019700000a260050009c0000012e0000213d0000008005500039000000400050043f000000800040043f00000024011000390000000003130019000000000023004b000000500000213d000000000708034f000000000608034f000000000004004b000008a90000613d0000008004000039000000000516034f000000000505043b000009d50050009c000000500000213d000000200440003900000000005404350000002001100039000000000031004b000008a00000413d0000002401600370000000000101043b000009e00010009c000000500000213d0000002303100039000000000023004b000000000400001900000a430400804100000a4303300197000000000003004b000000000500001900000a430500404100000a430030009c000000000504c019000000000005004b000000500000c13d0000000403100039000000000336034f000000000303043b000009e00030009c0000012e0000213d00000005043002100000003f0540003900000a2505500197000000400600043d0000000005560019000300000006001d000000000065004b00000000060000390000000106004039000009e00050009c0000012e0000213d00000001006001900000012e0000c13d0000002401100039000000400050043f000000030500002900000000003504350000000004140019000000000024004b000000500000213d000000000607034f000000000003004b000008dd0000613d0000000303000029000000000516034f000000000505043b000000200330003900000000005304350000002001100039000000000041004b000008d60000413d0000004401600370000000000101043b000009e00010009c000000500000213d0000002303100039000000000023004b000000000400001900000a430400804100000a4303300197000000000003004b000000000500001900000a430500404100000a430030009c000000000504c019000000000005004b000000500000c13d0000000403100039000000000336034f000000000303043b000009e00030009c0000012e0000213d00000005043002100000003f0540003900000a2505500197000000400600043d0000000005560019000200000006001d000000000065004b00000000060000390000000106004039000009e00050009c0000012e0000213d00000001006001900000012e0000c13d0000002401100039000000400050043f000000020500002900000000003504350000000004140019000000000024004b000000500000213d000000000003004b000009100000613d0000000202000029000000000317034f000000000303043b000000200220003900000000003204350000002001100039000000000041004b000009090000413d0000000301000039000000000101041a000009d5011001970000000002000411000000000021004b00001a290000c13d00000002010000290000000002010433000000800100043d000000000021004b000000500000c13d00000003020000290000000002020433000000000012004b000000500000c13d000000000001004b000009390000613d000700000000001d000010960000013d0000000001000416000000000001004b000000500000c13d0000000303000039000000000103041a000009d5021001970000000005000411000000000052004b0000093b0000c13d000009e201100197000000000013041b0000000001000414000009d20010009c000009d201008041000000c001100210000009da011001c70000800d02000039000009e3040000410000000006000019274327390000040f0000000100200190000000500000613d0000000001000019000027440001042e00000a2c01000041000000800010043f0000002001000039000000840010043f000000a40010043f00000a8a01000041000000c40010043f00000a5c010000410000274500010430000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009e00010009c000000500000213d0000002303100039000000000023004b000000500000813d00000000090400190000000403100039000000000338034f000000000403043b000009e00040009c0000012e0000213d00000005034002100000003f0530003900000a250550019700000a260050009c0000012e0000213d0000008005500039000000400050043f000000800040043f00000024011000390000000003130019000000000023004b000000500000213d000000000708034f000000000608034f000000000004004b000009700000613d0000000005090019000000000416034f000000000404043b000009d50040009c000000500000213d000000200550003900000000004504350000002001100039000000000031004b000009670000413d0000002401600370000000000101043b000009e00010009c000000500000213d0000002303100039000000000023004b000000000400001900000a430400804100000a4303300197000000000003004b000000000500001900000a430500404100000a430030009c000000000504c019000000000005004b000000500000c13d0000000403100039000000000336034f000000000303043b000009e00030009c0000012e0000213d00000005043002100000003f0540003900000a2505500197000000400600043d0000000005560019000f00000006001d000000000065004b00000000060000390000000106004039000009e00050009c0000012e0000213d00000001006001900000012e0000c13d0000002401100039000000400050043f0000000f050000290000000005350436000e00000005001d0000000004140019000000000024004b000000500000213d000000000003004b000009a40000613d0000000f02000029000000000317034f000000000303043b000000200220003900000000003204350000002001100039000000000041004b0000099d0000413d0000000301000039000000000101041a000009d5021001970000000001000411000000000012004b000009bb0000613d000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff0010019000000eed0000613d0000000b01000039000000000201041a000000020020008c000009d80000413d0000000103000039001200000003001d00000a270130009a000000000101041a000009d501100197000000000010043f0000000a01000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000001041b000000120300002900000001033000390000000b01000039000000000201041a000000000023004b000009c00000413d000000800100043d000009e00010009c0000012e0000213d00000005041002100000003f0340003900000a2505300197000000400300043d0000000005530019000000000035004b00000000060000390000000106004039000009e00050009c0000012e0000213d00000001006001900000012e0000c13d000000400050043f00000000011304360000001f0540018f000000000004004b000009f40000613d0000000004410019000000000600003100000001066003670000000007010019000000006806043c0000000007870436000000000047004b000009f00000c13d000000000005004b0000000003030433000009e00030009c0000012e0000213d0000000b04000039000000000034041b000000000023004b00000a040000813d00000a270430009a00000a270220009a000000000024004b00000a040000813d000000000004041b0000000104400039000000000024004b00000a000000413d0000000b02000039000000000020043f000000000003004b00000a100000613d00000000020000190000000014010434000009d50440019700000a270520009a000000000045041b0000000102200039000000000032004b00000a090000413d000000800100043d000000000001004b000009390000613d00000000050000190000000f010000290000000001010433000000000051004b0000242a0000a13d00000005015002100000000e021000290000000002020433001100000002001d000000a001100039001000000001001d0000000001010433000009d501100197000000000010043f0000000a01000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c70000801002000039001200000005001d2743273e0000040f00000012050000290000000100200190000000500000613d000000000101043b0000001102000029000000000021041b000000800100043d000000000051004b0000242a0000a13d0000000b02000039000000000202041a000000000052004b0000242a0000a13d000000100200002900000000020204330000000b03000039000000000030043f000009d50220019700000a270350009a000000000403041a000009e204400197000000000224019f000000000023041b0000000105500039000000000015004b00000a140000413d000009390000013d0000000001000416000000000001004b000000500000c13d0000000301000039000000000101041a000009d501100197000000800010043f00000a3e01000041000027440001042e000000a40020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000d00000001001d000009d50010009c000000500000213d0000002401800370000000000101043b000e00000001001d000009d50010009c000000500000213d0000008401800370000000000301043b000009e00030009c000000500000213d0000002301300039000000000021004b000000500000813d0000000404300039000000000148034f000000000101043b000009e00010009c0000012e0000213d0000001f0510003900000a92055001970000003f0550003900000a920550019700000a260050009c0000012e0000213d00000024033000390000008005500039000000400050043f000000800010043f0000000003310019000000000023004b000000500000213d0000002002400039000000000328034f00000a92041001980000001f0510018f000000a00240003900000a830000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b00000a7f0000c13d000000000005004b00000a900000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a001100039000000000001043500000000020004110000000d0020006b000015800000c13d0000000e0000006b000015dd0000c13d000000400100043d000000640210003900000a7d030000410000000000320435000000440210003900000a7e03000041000000000032043500000024021000390000002503000039000022590000013d000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009e00010009c000000500000213d0000002303100039000000000023004b000000500000813d0000000403100039000000000338034f000000000403043b000009e00040009c0000012e0000213d00000005034002100000003f0530003900000a250550019700000a260050009c0000012e0000213d00000024011000390000008005500039000000400050043f000000800040043f0000000003130019000000000023004b000000500000213d000000000608034f000000000004004b00000ac90000613d0000008004000039000000000516034f000000000505043b000000200440003900000000005404350000002001100039000000000031004b00000ac20000413d0000002401600370000000000101043b000009e00010009c000000500000213d0000000401100039274325340000040f000b00000001001d0000000301000039000000000101041a000009d5011001970000000002000411000000000021004b000014d60000c13d0000000b010000290000000001010433000a00000001001d000000000001004b000009390000613d0000000b01000029000900200010003d0000000001000411000609d50010019b001000000000001d00000b040000013d000000010190021000000001011001bf0000001204000029000000000018041b00000000010604330000000102800039000000000012041b00000000010704330000000202800039000000000012041b00000060014000390000000001010433000009d2011001970000000302800039000000000302041a00000a3b03300197000000000113019f00000080034000390000000003030433000000000003004b00000a3c030000410000000003006019000000000131019f000000a0034000390000000003030433000000000003004b00000a3d030000410000000003006019000000000131019f000000000012041b00000010020000290000000102200039001000000002001d0000000a0020006c000009390000813d000000800100043d0000001002000029000000000021004b0000242a0000a13d0000000b010000290000000001010433000000000021004b0000242a0000a13d0000000501200210000000a002100039000000000402043300000009011000290000000001010433001200000001001d0000000301000039000000000101041a000009d5011001970000000002000411000000000021004b001100000004001d00000b2b0000613d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000000110400002900000eed0000613d0000000801000039000000000101041a000000000014004b00001d980000813d000000400100043d000009df0010009c0000012e0000213d000000c002100039000000400020043f00000060020000390000000002210436000000a00310003900000000000304350000008003100039000000000003043500000060031000390000000000030435000000400110003900000000000104350000000000020435000000000040043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000801043b000000400700043d000009df0070009c00000011060000290000012e0000213d000000c009700039000000400090043f000000000108041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000001e80000c13d0000000000490435000000000002004b00000b7f0000613d000c00000004001d000d00000009001d000f00000007001d000e00000008001d000000000080043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000c0a00002900000000000a004b00000b860000613d0000000f07000029000000e002700039000000000301043b000000000100001900000011060000290000000e080000290000000d090000290000000004120019000000000503041a0000000000540435000000010330003900000020011000390000000000a1004b00000b770000413d00000b8b0000013d00000a9401100197000000e0027000390000000000120435000000000004004b0000002001000039000000000100603900000b8b0000013d000000000100001900000011060000290000000f070000290000000e080000290000000d090000290000003f0110003900000a92021001970000000001920019000000000021004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f00000000019704360000000102800039000000000202041a00000000002104350000000201800039000000000101041a000000400370003900000000001304350000000303800039000000000303041a0000006004700039000009d205300197000000000054043500000a2e003001980000000004000039000000010400c039000000a0057000390000000000450435000000800470003900000a2f003001980000000003000039000000010300c0390000000000340435000000120400002900000020054000390000000003050433000000000023004b000003280000413d000f00000005001d0000004002400039000e00000002001d0000000002020433000000000012004b00001a250000c13d000000000060043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000801043b000000120100002900000000030104330000000045030434000009e00050009c0000012e0000213d000000000108041a000000010010019000000001061002700000007f0660618f0000001f0060008c00000000020000390000000102002039000000000121013f0000000100100190000001e80000c13d000000200060008c001100000008001d000d00000005001d000c00000003001d00000bf80000413d000700000006001d000800000004001d000000000080043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000d050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000001108000029000000080400002900000bf80000813d000000000002041b0000000102200039000000000012004b00000bf40000413d0000001f0050008c00000c1b0000a13d000000000080043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000d0900002900000a9202900198000000000101043b00000c2a0000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000f060000290000000e0700002900000011080000290000000c0a0000290000000005a300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000c110000c13d000000000092004b00000ae10000813d00000c310000013d000000000005004b0000000f060000290000000e0700002900000c210000613d000000000104043300000c220000013d00000000010000190000001204000029000000030250021000000a930220027f00000a9302200167000000000121016f0000000102500210000000000121019f00000ae40000013d00000020030000390000000f060000290000000e0700002900000011080000290000000c0a000029000000000092004b00000ae10000813d0000000302900210000000f80220018f00000a930220027f00000a93022001670000000003a300190000000003030433000000000223016f000000000021041b00000ae10000013d000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009d50010009c000000500000213d0000002402800370000000000202043b001200000002001d000009d50020009c000000500000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019274327240000040f0000001202000029000000000020043f000000200010043f00000000010000190000004002000039274327240000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000a3e01000041000027440001042e0000000001000416000000000001004b000000500000c13d0000000801000039000000000101041a001100000001001d000009e00010009c0000012e0000213d000000110100002900000005061002100000003f0260003900000a250220019700000a260020009c0000012e0000213d0000008001200039000000400010043f0000001103000029000000800030043f000000000003004b00000f4c0000c13d001200000001001d0000008002000039274324ef0000040f00000de00000013d0000000002000416000000000002004b000000500000c13d0000000b02000039000000000202041a001100000002001d000009e00020009c0000012e0000213d000000110200002900000005032002100000003f0230003900000a250220019700000a260020009c0000012e0000213d0000008002200039000000400020043f0000001106000029000000800060043f0000001f0230018f000000000003004b00000c8e0000613d000000a003300039000000a004000039000000001501043c0000000004540436000000000034004b00000c8a0000c13d000000000002004b000000000006004b00000f650000c13d000000400200043d00000000010204360000000b03000039000000000030043f000000000301001900000000032300490000001f0330003900000a92033001970000000004230019000000000034004b00000000030000390000000103004039000009e00040009c0000012e0000213d00000001003001900000012e0000c13d0000000007040019000000400070043f000000400300003900000000033704360000000004020433000000400270003900000000004204350000006002700039000000000004004b00000cb20000613d00000000050000190000000016010434000009d50660019700000000026204360000000105500039000000000045004b00000cac0000413d001200000007001d000000000172004900000000001304350000008001000039274324b20000040f00000012020000290000000001210049000009d20010009c000009d201008041000009d20020009c000009d20200804100000060011002100000004002200210000000000121019f000027440001042e000000440020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009d50010009c000000500000213d000000000010043f0000001101000039000000200010043f000000400200003900000000010000190012000000080353274327240000040f000000120200035f0000002402200370000000000202043b000000000020043f000000200010043f00000000010000190000004002000039274327240000040f000000000101041a000000800010043f00000a3e01000041000027440001042e000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009d50010009c000000500000213d274326330000040f000000000001004b0000000001000039000000010100c039000000400200043d0000000000120435000009d20020009c000009d202008041000000400120021000000a5d011001c7000027440001042e000000240020008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402800370000000000202043b001100000002001d000009d50020009c000000500000213d0000000802000039000000000202041a000000000002004b00000eb80000c13d00000a2c01000041000000800010043f0000002001000039000000840010043f0000000f01000039000000a40010043f00000a6101000041000000c40010043f00000a5c010000410000274500010430000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000009e00010009c000000500000213d0000000401100039000000000312004900000a390030009c000000500000213d000000c00030008c000000500000413d0000014003000039000000400030043f000000000418034f000000000404043b000009e00040009c000000500000213d00000000051400190000001f04500039000000000024004b000000500000813d000000000458034f000000000404043b000009e00040009c0000012e0000213d0000001f0640003900000a92066001970000003f0660003900000a920660019700000a3a0060009c0000012e0000213d00000020055000390000014006600039000000400060043f000001400040043f0000000006540019000000000026004b000000500000213d000000000b08034f000000000558034f00000a92064001980000001f0740018f000001600260003900000d3f0000613d0000016008000039000000000905034f000000009a09043c0000000008a80436000000000028004b00000d3b0000c13d000000000007004b00000d4c0000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000052043500000160024000390000000000020435000000800030043f000000200210003900000000022b034f000000000202043b000000a00020043f000000400210003900000000022b034f000000000202043b000000c00020043f000000600110003900000000021b034f000000000202043b000009d20020009c000000500000213d000000e00020043f000000200110003900000000021b034f000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000000500000c13d000001000020043f000000200110003900000000011b034f000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b000000500000c13d000001200010043f0000000301000039000000000101041a000009d5021001970000000001000411000000000012004b000018f60000c13d0000000801000039000000000101041a000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b001200000001001d000000800100043d001000000001001d0000000021010434000f00000002001d001100000001001d000009e00010009c0000012e0000213d0000001201000029000000000101041a000000010010019000000001021002700000007f0220618f000e00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001e80000c13d0000000e01000029000000200010008c00000db70000413d0000001201000029000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000e010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000db70000813d000000000002041b0000000102200039000000000012004b00000db30000413d00000011010000290000001f0010008c00001c1a0000a13d0000001201000029000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000200200008a0000001102200180000000000101043b00001c270000c13d000000200300003900001c340000013d0000000001000416000000000001004b000000500000c13d0000000801000039000000000101041a000000800010043f00000a3e01000041000027440001042e000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b2743265c0000040f0000002002000039000000400300043d001200000003001d0000000002230436274324bf0000040f00000012020000290000000001210049000009d20010009c000009d2010080410000006001100210000009d20020009c000009d2020080410000004002200210000000000121019f000027440001042e000000240020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b001200000001001d000009d50010009c000000500000213d2743261c0000040f0000000f01000039000000000201041a000009e2022001970000001203000029000000000232019f000000000021041b0000000001000019000027440001042e000000640020008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000401800370000000000101043b000b00000001001d000009d50010009c000000500000213d0000004401800370000000000101043b000900000001001d0000002401800370000000000101043b000a00000001001d000000000010043f0000000601000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b00000f9b0000c13d00000000010004110000000b02000029000000000012004b000010140000c13d000000000002004b0000104a0000c13d000000400100043d000000640210003900000a6a030000410000000000320435000000440210003900000a6b0300004100000e5b0000013d000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff001001900000000001000039000000010100c039000000010110018f274326480000040f00000004010000390000000101100367000000000101043b0000001202000039000000000012041b0000000001000019000027440001042e001100000004001d00000a290100004100000000001004430000000001000414000009d20010009c000009d201008041000000c001100210000009dd011001c70000800b020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000120010006b00000011040000290000016a0000213d000000400100043d000000640210003900000a6c030000410000000000320435000000440210003900000a6d03000041000000000032043500000024021000390000002303000039000022590000013d00000a8c0020009c00000dd00000613d00000a8d0020009c00000dd00000613d000000800000043f00000a3e01000041000027440001042e000000400700043d000000000003004b001200000007001d00000f3d0000613d001100000006001d000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000001106000029000000000006004b000000120700002900000f400000613d0000002002700039000000000101043b00000000030000190000000004320019000000000501041a000000000054043500000001011000390000002003300039000000000063004b00000e7c0000413d00000f400000013d000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff001001900000000001000039000000010100c039000000010110018f274326480000040f000000400100043d001100000001001d2743248a0000040f000000120100002900000011020000290000000003120436001200000003001d00000001010003670000004402100370000000000202043b00000000002304350000000401100370000000000101043b000000000010043f0000000e01000039000000200010043f00000040020000390000000001000019274327240000040f00000011020000290000000002020433000009d502200197000000000301041a000009e203300197000000000223019f000000000021041b000000120200002900000000020204330000000101100039000000000021041b0000000001000019000027440001042e001000000002001d000009e00020009c0000012e0000213d000000100200002900000005032002100000003f0230003900000a250220019700000a260020009c0000012e0000213d0000008002200039000000400020043f0000001002000029000000800020043f0000001f0230018f000000000003004b00000ece0000613d000000a003300039000000a004000039000000001501043c0000000004540436000000000034004b00000eca0000c13d000000000002004b000000110000006b000014a80000c13d000000400100043d000000640210003900000a71030000410000000000320435000000440210003900000a7203000041000000000032043500000024021000390000002a03000039000022590000013d0000000001000411000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000003470000c13d000000400100043d000000440210003900000a8203000041000000000032043500000024021000390000000203000039000021550000013d000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff001001900000000001000039000000010100c039000000010110018f274326480000040f0000000c01000039000000000201041a000009e20220019700000012022001af000000000021041b00000024010000390000000101100367000000000101043b0000000d02000039000000000012041b0000000001000019000027440001042e000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000400300043d000000000101043b000000000101041a000000ff001001900000132a0000c13d000000440130003900000a8202000041000000000021043500000024013000390000000202000039000000000021043500000a2c010000410000000000130435000000040130003900000020020000390000000000210435000009d20030009c000009d203008041000000400130021000000a40011001c700002745000104300000000502000039000000000302041a000009e203300197000000000113019f000000000012041b0000000001000019000027440001042e00000a940120019700000020027000390000000000120435000000000067043500000020026000390000000001070019274324a00000040f0000002001000039000000400200043d001100000002001d00000000021204360000001201000029274324780000040f000000110200002900000de10000013d00000a3a0020009c0000012e0000213d00000060020000390000000003000019000000c004100039000000400040043f0000000004210436000000a00510003900000000000504350000008005100039000000000005043500000060051000390000000000050435000000400510003900000000000504350000000000040435000000a00430003900000000001404350000002003300039000000000063004b000012ae0000813d000000400100043d000009df0010009c00000f500000a13d0000012e0000013d00000000030000190000000b01000039000000000101041a000000000031004b0000242a0000a13d001200000003001d00000a270130009a000000000101041a000009d501100197000000000010043f0000000a01000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000800200043d0000001203000029000000000032004b0000242a0000a13d000000000101043b000000000101041a0000000502300210000000a002200039000000000012043500000001033000390000001107000029000000000073004b00000f660000413d000000400200043d00000000017204360000000b03000039000000000030043f00000a280400004100000000050000190000000003010019000000000604041a000009d506600197000000000363043600000001044000390000000105500039000000000075004b00000f8e0000413d00000c960000013d0000001204000029000000000004004b0000103c0000c13d0000000002000019000010400000013d001200000001001d00000a290100004100000000001004430000000001000414000009d20010009c000009d201008041000000c001100210000009dd011001c70000800b020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000120010006c00000e1d0000a13d000000400100043d000000640210003900000a2a030000410000000000320435000000440210003900000a2b03000041000000000032043500000024021000390000002703000039000022590000013d000000000020043f0000000101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000001202000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000201041a00000a94022001970000001104000029000000ff0340018f000000000232019f000000000021041b000000400100043d0000000000410435000009d20010009c000009d20100804100000040011002100000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f000009e1011001c70000800d02000039000000030300003900000a5e0400004100000000050004110000001206000029274327390000040f0000000100200190000000500000613d000009390000013d000009e201100197000000000161019f000000000013041b0000000001000414000009d20010009c000009d201008041000000c001100210000009da011001c70000800d02000039000009e304000041274327390000040f0000000100200190000009390000c13d000000500000013d0000001f0530018f000009d406300198000000400200043d0000000004620019000010010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000ffd0000c13d000000000005004b0000100e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000009d20020009c000009d2020080410000004002200210000000000112019f0000274500010430000000000020043f0000000101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff001001900000000b0200002900000e210000c13d0000000501000039000000000101041a000009d5011001970000000003000411000000000013004b00000e210000613d000000400100043d000000440210003900000a6703000041000021520000013d00000000024300a900000000044200d9000000000034004b00001c5f0000c13d000003e80220011a000000400300043d000000200430003900000000002404350000000000130435000009d20030009c000009d203008041000000400130021000000a7f011001c7000027440001042e000000400100043d001100000001001d000009d70010009c0000012e0000213d00000011020000290000004001200039000000400010043f000000010100003900000000031204360000000a02000029001000000003001d0000000000230435000000400200043d000009d70020009c0000012e0000213d0000004003200039000000400030043f0000002003200039000000090400002900000000004304350000000000120435000000400100043d000009d60010009c0000012e0000213d0000002002100039000000400020043f000000000001043500000011010000290000000001010433000000000001004b000016220000c13d0000000a01000029000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a0012000900100074000019080000813d000000400100043d000000640210003900000a68030000410000000000320435000000440210003900000a6903000041000000000032043500000024021000390000002403000039000022590000013d0000000702000029000700010020003d00000002010000290000000001010433000000070010006b000009390000813d000000800100043d000000070010006c0000242a0000a13d00000003010000290000000001010433000000070010006c0000242a0000a13d000000400100043d000400000001001d000009d60010009c0000012e0000213d00000007010000290000000501100210000000a0021000390000000002020433000e09d50020019c0000002001100039000000030210002900000002011000290000000001010433000500000001001d0000000001020433000600000001001d00000004020000290000002001200039000100000001001d000000400010043f0000000000020435000022460000613d000000400100043d001100000001001d000009d70010009c0000012e0000213d00000011020000290000004001200039000000400010043f000000010100003900000000021204360000000601000029000800000002001d0000000000120435000000400100043d000d00000001001d000009d70010009c0000012e0000213d0000000d030000290000004001300039000000400010043f0000002001300039000000050200002900000000002104350000000101000039000000000013043500000011010000290000000001010433000000000001004b000011fe0000613d001200000000001d000000400200043d000009df0020009c0000012e0000213d00000012010000290000000503100210000c00000003001d00000008013000290000000001010433000000c003200039000000400030043f00000060030000390000000003320436000000a004200039000000000004043500000080042000390000000000040435000000600420003900000000000404350000004002200039000000000002043500000000000304350000000802000039000000000202041a000000000012004b00001d980000a13d000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000f00000001001d000000400100043d001000000001001d000009df0010009c0000012e0000213d0000001001000029000000c006100039000000400060043f0000000f01000029000000000101041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000001e80000c13d0000000000460435000000000002004b000011290000613d000a00000004001d000b00000006001d0000000f01000029000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000a07000029000000000007004b000011310000613d0000001002000029000000e002200039000000000301043b00000000010000190000000b060000290000000004120019000000000503041a000000000054043500000001033000390000002001100039000000000071004b000011210000413d000011330000013d00000a94011001970000001002000029000000e0022000390000000000120435000000000004004b00000020010000390000000001006039000011330000013d00000000010000190000000b060000290000003f0110003900000a92021001970000000001620019000000000021004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f000000100500002900000000016504360000000f030000290000000102300039000000000202041a00000000002104350000000201300039000000000101041a000000400450003900000000001404350000000301300039000000000101041a00000a2e001001980000000002000039000000010200c039000000a0035000390000000000230435000000800250003900000a2f001001980000000003000039000000010300c03900000000003204350000006002500039000009d20110019700000000001204350000243a0000c13d000a00000004001d000000000001004b0000115d0000c13d0000001201000039000000000101041a000b00000001001d0000000e01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011020000290000000002020433000000120020006c0000242a0000a13d0000000c020000290000002003200039000f00000003001d0000001102300029000000000101043b001000000002001d0000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000d020000290000000002020433000000120020006c0000242a0000a13d0000000f030000290000000d02300029000900000002001d0000000002020433000000000101043b000000000101041a000f00000002001d000c00000001001d000000000012001a00001c5f0000413d0000000e01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011020000290000000002020433000000120020006c0000242a0000a13d000000000101043b00000010020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000c030000290000000f02300029000000000101043b000000000021041b0000000e01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011020000290000000002020433000000120020006c0000242a0000a13d000000000101043b00000010020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a0000000b0010006c000024410000213d0000000d010000290000000001010433000000120010006c0000242a0000a13d0000000a01000029000000000201043300000009010000290000000001010433000000000021001a00001c5f0000413d000c00000001001d000f00000002001d00000011010000290000000001010433000000120010006c0000242a0000a13d00000010010000290000000001010433000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000c030000290000000f02300029000000000101043b0000000201100039000000000021041b0000001202000029001200010020003d00000011010000290000000001010433000000120010006b000010d00000413d0000000601000029000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000e02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000201041a000000050020002a00001c5f0000413d00000005030000290000000002320019000000000021041b000000400100043d0000002002100039000000000032043500000006020000290000000000210435000009d20010009c000009d20100804100000040011002100000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f00000a24011001c70000800d02000039000000040300003900000a3004000041000000000500041100000000060000190000000e07000029274327390000040f0000000100200190000000500000613d00000a340100004100000000001004430000000e0100002900000004001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a35011001c700008002020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000000001004b000010900000613d000000400300043d0000008401300039000000a002000039000000000021043500000064013000390000000502000029000000000021043500000044013000390000000602000029000000000021043500000a360100004100000000001304350000000401300039000000000200041100000000002104350000002401300039000000000001043500000004010000290000000001010433000000a4023000390000000000120435001200000003001d000000c402300039000000000001004b0000000106000029000012670000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000012600000413d0000001f0310003900000a920330019700000000012100190000000000010435000000c401300039000009d20010009c000009d20100804100000060011002100000001202000029000009d20020009c000009d2020080410000004002200210000000000121019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f0000000e02000029274327390000040f0000006003100270000009d203300197000000200030008c0000002004000039000000000403401900000020064001900000001205600029000012890000613d000000000701034f0000001208000029000000007907043c0000000008980436000000000058004b000012850000c13d0000001f07400190000012960000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000001ec30000613d0000001f01400039000000600110018f0000001204100029000000000014004b00000000010000390000000101004039000009e00040009c0000012e0000213d00000001001001900000012e0000c13d0000000002040019000000400040043f000000200030008c000000500000413d0000001201000029000000000101043300000a3700100198000000500000c13d00000a380110019700000a360010009c000010900000613d00001b150000013d0000000002000019001200000002001d000000000020043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000501043b000000400400043d000009df0040009c0000012e0000213d000000c006400039000000400060043f000000000805041a000000010280019000000001078002700000007f0170018f00000000070160190000001f0070008c00000000030000390000000103002039000000000338013f0000000100300190000001e80000c13d0000000000760435000000000002004b000012d60000c13d00000a9403800197000000e0024000390000000000320435000000000001004b000000200220c039000012f80000013d000c00000008001d000d00000007001d000e00000006001d001000000004001d000f00000005001d000000000050043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000c02000029000000020020008c00000000020000190000000e060000290000000d05000029000012f40000413d000000000101043b000000000200001900000020022000390000000003620019000000000401041a00000000004304350000000101100039000000000052004b000012ed0000413d00000010040000290000000001240019000000e0021000390000000f050000290000000001420049000000a10110008a00000a92021001970000000001620019000000000021004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f00000000016404360000000102500039000000000202041a00000000002104350000000201500039000000000101041a000000400240003900000000001204350000000301500039000000000101041a0000006002400039000009d203100197000000000032043500000a2e001001980000000002000039000000010200c039000000a0034000390000000000230435000000800240003900000a2f001001980000000001000039000000010100c0390000000000120435000000800100043d0000001202000029000000000021004b0000242a0000a13d0000000501200210000000a0011000390000000000410435000000800100043d000000000021004b0000242a0000a13d0000000102200039000000110020006c000012af0000413d000000400100043d00000c6f0000013d00000001080003670000044b0000013d0000000203000039000000000032041b000000c401100039000000000118034f000000000101043b000000000010043f0000001001000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000015790000c13d00000001010003670000000402100370000000000202043b000000a402200039000000000121034f000000000101043b001200000001001d00000a410010009c000000500000213d00000a290100004100000000001004430000000001000414000009d20010009c000009d201008041000000c001100210000009dd011001c70000800b020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000120010006c000017a60000813d00000001010003670000000402100370000000000202043b000000c402200039000000000121034f000000000101043b000000000010043f0000001001000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000201041a00000a940220019700000001022001bf000000000021041b00000001010003670000000402100370000000000502043b0000000402500039000000000321034f000000000303043b001200000003001d000009d50030009c000000500000213d0000002003200039000000000331034f000000000403043b00000000030000310000000005530049000000230550008a00000a430650019700000a4307400197000000000867013f000000000067004b000000000600001900000a4306004041000000000054004b000000000500001900000a430500804100000a430080009c000000000605c019000000000006004b000000500000c13d0000000004240019000000000241034f000000000202043b000009e00020009c000000500000213d00000005022002100000000003230049000000200640003900000a430430019700000a4305600197000000000745013f000000000045004b000000000400001900000a4304004041000000000036004b000000000300001900000a430300204100000a430070009c000000000403c019000000000004004b000000500000c13d0000001f0520018f000000400300043d0000002004300039000000000002004b000013ac0000613d000000000161034f00000000062400190000000007040019000000001801043c0000000007870436000000000067004b000013a80000c13d000000000005004b00000000002304350000003f0120003900000a25011001970000000001130019000000000031004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f000009d20040009c000009d20400804100000040014002100000000002030433000009d20020009c000009d2020080410000006002200210000000000112019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f000009da011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000001020003670000000403200370000000000403043b0000004403400039000000000332034f000000000503043b00000000030000310000000006430049000000230660008a00000a430760019700000a4308500197000000000978013f000000000078004b000000000700001900000a4307004041000000000065004b000000000600001900000a430600804100000a430090009c000000000706c019000000000101043b001100000001001d000000000007004b000000500000c13d00000000015400190000000404100039000000000142034f000000000101043b000009e00010009c000000500000213d00000005011002100000000003130049000000200640003900000a430430019700000a4305600197000000000745013f000000000045004b000000000400001900000a4304004041000000000036004b000000000300001900000a430300204100000a430070009c000000000403c019000000000004004b000000500000c13d0000001f0510018f000000400300043d0000002004300039000000000001004b000014050000613d000000000262034f00000000061400190000000007040019000000002802043c0000000007870436000000000067004b000014010000c13d000000000005004b00000000001304350000003f0110003900000a25011001970000000001130019000000000031004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f000009d20040009c000009d20400804100000040014002100000000002030433000009d20020009c000009d2020080410000006002200210000000000112019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f000009da011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000401043b00000001010003670000000402100370000000000202043b0000008402200039000000000321034f000000000303043b000009d50030009c000000500000213d0000002005200039000000000251034f000000000602043b00000a410060009c000000500000213d000000400200043d00000080072000390000000000470435000000600420003900000011070000290000000000740435000000400420003900000012070000290000000000740435000000200420003900000a44070000410000000000740435000000400750008a000000000771034f000000000707043b000000e0082000390000000000680435000000c0062000390000000000360435000000a00320003900000000007304350000002003500039000000000131034f000000000101043b000001000320003900000000001304350000010001000039000000000012043500000a450020009c0000012e0000213d0000012001200039000000400010043f000009d20040009c000009d20400804100000040014002100000000002020433000009d20020009c000009d2020080410000006002200210000000000112019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f000009da011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b001200000001001d00000a4601000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a47011001c700008005020000392743273e0000040f0000000100200190000024290000613d000000000101043b000009d5011001970000000002000410000000000012004b00001edd0000c13d00000a4601000041000000000010044300000000010004120000000400100443000000200100003900000024001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a47011001c700008005020000392743273e0000040f0000000100200190000024290000613d000000000101043b001100000001001d000009dc0100004100000000001004430000000001000414000009d20010009c000009d201008041000000c001100210000009dd011001c70000800b020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000110010006c00001edd0000c13d00000a460100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000009d20010009c000009d201008041000000c00110021000000a47011001c700008005020000392743273e0000040f000000010020019000001f450000c13d000024290000013d00008010020000390000000004000019001200000004001d000000000040043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c72743273e0000040f0000000100200190000000500000613d000000000101043b0000001102000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000800200043d0000001204000029000000000042004b0000242a0000a13d000000000101043b000000000101041a0000000502400210000000a00220003900000000001204350000000104400039000000100040006c0000801002000039000014aa0000413d000000400200043d001200000002001d000000200100003900000000021204360000008001000039274324b20000040f00000de00000013d0000000001000411000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff0010019000000ad60000c13d00000eed0000013d000000100000006b0000000001000019000014ee0000613d000000110100002900000000010104330000001004000029000000030240021000000a930220027f00000a9302200167000000000121016f0000000102400210000000000121019f000016cc0000013d0000000003000019001200000003001d0000000501300210001100000001001d000000a0011000390000000001010433000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000801043b000000400700043d000009df0070009c00000010060000290000012e0000213d000000c009700039000000400090043f000000000108041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000001e80000c13d0000000000490435000000000002004b0000153c0000613d000b00000004001d000c00000009001d000e00000007001d000d00000008001d000000000080043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000b0a00002900000000000a004b000015430000613d0000000e07000029000000e002700039000000000301043b000000000100001900000010060000290000000d080000290000000c090000290000000004120019000000000503041a0000000000540435000000010330003900000020011000390000000000a1004b000015340000413d000015480000013d00000a9401100197000000e0027000390000000000120435000000000004004b00000020010000390000000001006039000015480000013d000000000100001900000010060000290000000e070000290000000d080000290000000c090000290000003f0110003900000a92021001970000000001920019000000000021004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f00000000019704360000000102800039000000000202041a00000000002104350000000201800039000000000101041a000000400270003900000000001204350000000301800039000000000101041a0000006002700039000009d203100197000000000032043500000a2e001001980000000002000039000000010200c039000000a0037000390000000000230435000000800270003900000a2f001001980000000001000039000000010100c03900000000001204350000000f0200002900000000010204330000001203000029000000000031004b0000242a0000a13d000000110160002900000000007104350000000001020433000000000031004b0000242a0000a13d0000000103300039000000800100043d000000000013004b000014f70000413d000006020000013d000000400100043d000000440210003900000a3f03000041000000000032043500000024021000390000001303000039000021550000013d0000000d01000029000000000010043f0000000101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff0010019000000a950000c13d000000400100043d000000640210003900000a76030000410000000000320435000000440210003900000a7703000041000000000032043500000024021000390000002f03000039000022590000013d000d09d50030019b0000000003000019000000800100043d000000000031004b0000242a0000a13d001000000003001d0000000501300210000f00000001001d000000a0011000390000000001010433001100000001001d0000000d01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000001102000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000120200002900000000020204330000001003000029000000000032004b0000242a0000a13d0000000f040000290000000e02400029000000000101043b000000000101041a0000000000120435000000010330003900000012010000290000000001010433000000000013004b000015aa0000413d0000058b0000013d000000400100043d001100000001001d000009d70010009c0000012e0000213d00000001020003670000004401200370000000000101043b00000011040000290000004003400039000000400030043f00000001030000390000000004340436000c00000004001d0000000000140435000000400400043d000700000004001d000009d70040009c0000012e0000213d0000006402200370000000000202043b00000007050000290000004004500039000000400040043f0000000003350436000600000003001d000000000023043500000011020000290000000002020433000000000002004b000017b40000c13d000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000d02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000301041a00000001010003670000006402100370000000000202043b001200000003001d000000000023004b00001a3c0000813d000000400100043d000000640210003900000a7b030000410000000000320435000000440210003900000a7c0300004100000ed70000013d0000000006000019000000400200043d000009df0020009c0000012e0000213d001200000006001d000000050160021000000010011000290000000001010433000000c003200039000000400030043f00000060030000390000000003320436000000a004200039000000000004043500000080042000390000000000040435000000600420003900000000000404350000004002200039000000000002043500000000000304350000000802000039000000000202041a000000000012004b00001d980000a13d000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000801043b000000400700043d000009df0070009c00000012060000290000012e0000213d000000c009700039000000400090043f000000000108041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000001e80000c13d0000000000490435000000000002004b0000167b0000613d000c00000004001d000d00000009001d000f00000007001d000e00000008001d000000000080043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000c0a00002900000000000a004b000016820000613d0000000f07000029000000e002700039000000000301043b000000000100001900000012060000290000000e080000290000000d090000290000000004120019000000000503041a0000000000540435000000010330003900000020011000390000000000a1004b000016730000413d000016870000013d00000a9401100197000000e0027000390000000000120435000000000004004b00000020010000390000000001006039000016870000013d000000000100001900000012060000290000000f070000290000000e080000290000000d090000290000003f0110003900000a92021001970000000001920019000000000021004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f00000000019704360000000102800039000000000202041a00000000002104350000000201800039000000000101041a000000400270003900000000001204350000000301800039000000000101041a0000006002700039000009d2031001970000000000320435000000a00270003900000a2e031001980000000004000039000000010400c0390000000000420435000000800270003900000a2f001001980000000001000039000000010100c0390000000000120435000000000003004b00001d9f0000c13d000000010660003900000011010000290000000001010433000000000016004b000016230000413d000010690000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000f0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000016b70000c13d000000100020006c000016c90000813d00000010020000290000000302200210000000f80220018f00000a930220027f00000a93022001670000000f033000290000000003030433000000000223016f000000000021041b0000001001000029000000010110021000000001011001bf0000000202000039000000000012041b0000000303000039000000000103041a000009e2021001970000000006000411000000000262019f000000000023041b0000000002000414000009d505100197000009d20020009c000009d202008041000000c001200210000009da011001c70000800d02000039000009e304000041274327390000040f0000000100200190000000500000613d00000004010000390000000102000039000000000021041b0000000501000039000000000201041a000009e2022001970000dead022001bf000000000021041b000009e4010000410000001302000039000000000012041b0000001201000029000009d5011001970000000f02000039000000000302041a000009e203300197000000000113019f000000000012041b000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a0002004430000004002000039000000c00300043d000001c000200443000001e0003004430000006002000039000000e00300043d000002000020044300000220003004430000008002000039000001000300043d00000240002004430000026000300443000001200200043d000000a0030000390000028000300443000002a000200443000001000010044300000006010000390000012000100443000009e501000041000027440001042e0000000f02000029000000000439034f000000000404043b000000200220003900000000004204350000002003300039000000000053004b0000170e0000413d0000000f020000290000000002020433000000800300043d000000000023004b000017400000c13d000009e00020009c0000012e0000213d00000005032002100000003f0430003900000a7005400197000000400400043d000d00000004001d0000000004450019000000000054004b00000000050000390000000105004039000009e00040009c0000012e0000213d00000001005001900000012e0000c13d000000400040043f0000000d040000290000000002240436000c00000002001d0000001f0230018f000000000003004b000017360000613d0000000c040000290000000003340019000000001501043c0000000004540436000000000034004b000017320000c13d000000000002004b000000800100043d000000000001004b000019650000c13d000000400200043d001200000002001d000000200100003900000000021204360000000d01000029000014d40000013d000000400100043d000000640210003900000a6e030000410000000000320435000000440210003900000a6f03000041000000000032043500000024021000390000002903000039000022590000013d0000000c02000029000000000317034f000000000303043b000000200220003900000000003204350000002001100039000000000041004b0000174b0000413d0000000c010000290000000001010433000000800200043d000000000012004b000017ad0000c13d000000000001004b0000199a0000c13d0000001001000029000d09d50010019b00000000020004110000000d0020006b000019400000c13d0000000d0000006b00000e230000613d0000000c010000290000000001010433000000800200043d000000000012004b000024300000c13d000000400100043d000009d60010009c0000012e0000213d0000002002100039000000400020043f0000000000010435000000800100043d000000000001004b00001b3f0000c13d000000400100043d000000400200003900000000022104360000004003100039000000800400043d00000000004304350000006003100039000000000004004b0000177f0000613d000000800500003900000000060000190000002005500039000000000705043300000000037304360000000106600039000000000046004b000017790000413d000000000413004900000000004204350000000c0200002900000000040204330000000002430436000000000004004b0000178e0000613d00000000030000190000000c060000290000002006600039000000000506043300000000025204360000000103300039000000000043004b000017880000413d0000000002120049000009d20020009c000009d2020080410000006002200210000009d20010009c000009d2010080410000004001100210000000000112019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000121019f000009da011001c70000800d02000039000000040300003900000a560400004100000000050004110000000d060000290000000007000019274327390000040f00000001002001900000193c0000c13d000000500000013d000000400100043d000000440210003900000a4203000041000000000032043500000024021000390000001103000039000021550000013d000000400100043d000000440210003900000a6603000041000000000032043500000024021000390000001803000039000021550000013d001200000000001d000017be0000013d000000000001004b00001d9f0000c13d0000001202000029001200010020003d00000011010000290000000001010433000000120010006b00001b1c0000813d000000400200043d000009df0020009c0000012e0000213d00000012010000290000000503100210000f00000003001d0000000c01300029001000000001001d0000000001010433000000c003200039000000400030043f00000060030000390000000003320436000000a004200039000000000004043500000080042000390000000000040435000000600420003900000000000404350000004002200039000000000002043500000000000304350000000802000039000000000202041a000000000012004b00001d980000a13d000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000801043b000000400700043d000009df0070009c0000012e0000213d000000c006700039000000400060043f000000000108041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000001e80000c13d0000000000460435000000000002004b000018160000613d000800000004001d000900000006001d000b00000007001d000a00000008001d000000000080043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000809000029000000000009004b0000181d0000613d0000000b07000029000000e002700039000000000301043b00000000010000190000000a0800002900000009060000290000000004120019000000000503041a000000000054043500000001033000390000002001100039000000000091004b0000180e0000413d000018210000013d00000a9401100197000000e0027000390000000000120435000000000004004b00000020010000390000000001006039000018210000013d00000000010000190000000b070000290000000a0800002900000009060000290000003f0110003900000a92021001970000000001620019000000000021004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f00000000016704360000000102800039000000000202041a00000000002104350000000201800039000000000101041a000000400670003900000000001604350000000301800039000000000301041a000000a00270003900000a2e013001980000000004000039000000010400c0390000000000420435000000800470003900000a2f023001980000000005000039000000010500c03900000000005404350000006004700039000009d20530019700000000005404350000000d0000006b000017b60000c13d000000000002004b0000243a0000c13d000900000006001d000000000005004b0000184c0000c13d0000001201000039000000000501041a000b00000005001d0000000e01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011020000290000000002020433000000120020006c0000242a0000a13d000000000101043b00000010020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000007020000290000000002020433000000120020006c0000242a0000a13d0000000f030000290000000602300029000800000002001d0000000002020433000000000101043b000000000101041a000f00000002001d000a00000001001d000000000012001a00001c5f0000413d0000000e01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011020000290000000002020433000000120020006c0000242a0000a13d000000000101043b00000010020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000a030000290000000f02300029000000000101043b000000000021041b0000000e01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011020000290000000002020433000000120020006c0000242a0000a13d000000000101043b00000010020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a0000000b0010006c000024410000213d00000007010000290000000001010433000000120010006c0000242a0000a13d0000000901000029000000000201043300000008010000290000000001010433000000000021001a00001c5f0000413d000b00000001001d000f00000002001d00000011010000290000000001010433000000120010006c0000242a0000a13d00000010010000290000000001010433000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000b030000290000000f02300029000000000101043b0000000201100039000000000021041b000017b80000013d000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff001001900000031d0000c13d00000eed0000013d000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff0010019000000d750000c13d00000eed0000013d0000000a01000029000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000001202000029000000000021041b000000400100043d0000002002100039000000090300002900000000003204350000000a020000290000000000210435000009d20010009c000009d20100804100000040011002100000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f00000a24011001c70000800d02000039000000040300003900000a300400004100000000050004110000000b060000290000000007000019274327390000040f0000000100200190000000500000613d000000400100043d274324950000040f0000000001000019000027440001042e0000000d01000029000000000010043f0000000101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff001001900000175e0000c13d0000000501000039000000000101041a000009d5011001970000000002000411000000000012004b000010380000c13d0000175e0000013d00000000030000190000000f010000290000000001010433000000000031004b0000242a0000a13d001100000003001d0000000503300210000000a0013000390000000001010433001209d50010019c000080100200003900000ed10000613d001000000003001d0000000e013000290000000001010433000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c72743273e0000040f0000000100200190000000500000613d000000000101043b0000001202000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000d0200002900000000020204330000001103000029000000000032004b0000242a0000a13d00000010040000290000000c02400029000000000101043b000000000101041a00000000001204350000000103300039000000800100043d000000000013004b000019660000413d0000173a0000013d0000000002000019000019a10000013d00000012020000290000000102200039000000800100043d000000000012004b000017590000813d001200000002001d0000000501200210000000a0011000390000000001010433000000000010043f0000000601000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b0000199c0000613d001100000001001d00000a290100004100000000001004430000000001000414000009d20010009c000009d201008041000000c001100210000009dd011001c70000800b020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000110010006c0000199c0000a13d000000400100043d000000640210003900000a64030000410000000000320435000000440210003900000a6503000041000015a40000013d00000040011000390000000001010433000000c00200043d000000000012004b00001a250000c13d0000001201000029000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b001200000001001d000000800100043d001000000001001d0000000021010434000f00000002001d001100000001001d000009e00010009c0000012e0000213d0000001201000029000000000101041a000000010010019000000001021002700000007f0220618f000e00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001e80000c13d0000000e01000029000000200010008c00001a110000413d0000001201000029000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000e010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001a110000813d000000000002041b0000000102200039000000000012004b00001a0d0000413d00000011010000290000001f0010008c00001da60000a13d0000001201000029000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000200200008a0000001102200180000000000101043b00001db20000c13d000000200300003900001dbf0000013d000000400100043d000000440210003900000a620300004100001d9b0000013d0000000001000411000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000009160000c13d00000eed0000013d0000004401100370000000000101043b000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000d02000029000000000020043f000000200010043f00000064010000390000000101100367000000000101043b001100000001001d0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011030000290000001202300069000000000101043b000000000021041b00000044010000390000000101100367000000000101043b000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000e02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000001030003670000006402300370000000000202043b000000000101043b000000000401041a000000000024001a00001c5f0000413d0000000004240019000000000041041b0000004401300370000000000101043b000000400300043d000000200430003900000000002404350000000000130435000009d20030009c000009d20300804100000040013002100000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f00000a24011001c70000800d02000039000000040300003900000a300400004100000000050004110000000d060000290000000e07000029274327390000040f0000000100200190000000500000613d00000a340100004100000000001004430000000e0100002900000004001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a35011001c700008002020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000000001004b000009390000613d000000400400043d00000024014000390000000d02000029000000000021043500000a3601000041000000000014043500000004014000390000000002000411000000000021043500000001010003670000004402100370000000000202043b000000440340003900000000002304350000006401100370000000000101043b0000008402400039000000a003000039000000000032043500000064024000390000000000120435000000a402400039000000800100043d0000000000120435001200000004001d000000c402400039000000000001004b00001ace0000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b00001ac70000413d0000001f0310003900000a920330019700000000012100190000000000010435000000c401300039000009d20010009c000009d20100804100000060011002100000001202000029000009d20020009c000009d2020080410000004002200210000000000121019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f0000000e02000029274327390000040f0000006003100270000009d203300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001af10000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001aed0000c13d000000000006004b00001afe0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e520000613d0000001f01400039000000600110018f0000001204100029000000000014004b00000000010000390000000101004039000009e00040009c0000012e0000213d00000001001001900000012e0000c13d0000000002040019000000400040043f000000200030008c000000500000413d0000001201000029000000000101043300000a3700100198000000500000c13d00000a380110019700000a360010009c000009390000613d00000a2c01000041001100000002001d00000000001204350000000401200039274327090000040f0000001102000029000024690000013d00000044010000390000000101100367000000000101043b000015fb0000013d0000000b01000029000000000010043f0000000101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000006bc0000c13d0000159e0000013d001000000000001d000000400200043d000009df0020009c0000012e0000213d00000010010000290000000501100210000000a0011000390000000001010433000000c003200039000000400030043f00000060030000390000000003320436000000a004200039000000000004043500000080042000390000000000040435000000600420003900000000000404350000004002200039000000000002043500000000000304350000000802000039000000000202041a000000000012004b00001d980000a13d000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b001100000001001d000000400100043d001200000001001d000009df0010009c0000012e0000213d0000001201000029000000c006100039000000400060043f0000001101000029000000000101041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000001e80000c13d0000000000460435000000000002004b00001b980000613d000e00000004001d000f00000006001d0000001101000029000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000e07000029000000000007004b00001ba00000613d0000001202000029000000e002200039000000000301043b00000000010000190000000f060000290000000004120019000000000503041a000000000054043500000001033000390000002001100039000000000071004b00001b900000413d00001ba20000013d00000a94011001970000001202000029000000e0022000390000000000120435000000000004004b0000002001000039000000000100603900001ba20000013d00000000010000190000000f060000290000003f0110003900000a92021001970000000001620019000000000021004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f0000001205000029000000000165043600000011030000290000000102300039000000000202041a00000000002104350000000201300039000000000101041a000000400250003900000000001204350000000301300039000000000101041a0000006002500039000009d2031001970000000000320435000000a00250003900000a2e031001980000000004000039000000010400c0390000000000420435000000800250003900000a2f001001980000000001000039000000010100c0390000000000120435000000000003004b00001d9f0000c13d0000001002000029001000010020003d000000800100043d000000100010006b00001b400000413d000000000001004b0000176e0000613d00000000020000190000000c010000290000000001010433000000000021004b0000242a0000a13d001000000002001d0000000501200210000000a00210003900000000030204330000000b011000290000000001010433001200000001001d001100000003001d000000000030043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000d02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a0012001200100074000010860000413d0000001101000029000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000d02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000001202000029000000000021041b00000010020000290000000102200039000000800100043d000000000012004b00001bd00000413d0000176e0000013d000000110000006b000000000100001900001c1f0000613d0000000f0100002900000000010104330000001104000029000000030240021000000a930220027f00000a9302200167000000000121016f0000000102400210000000000121019f00001c420000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000100600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001c2d0000c13d000000110020006c00001c3f0000813d00000011020000290000000302200210000000f80220018f00000a930220027f00000a930220016700000010033000290000000003030433000000000223016f000000000021041b0000001101000029000000010110021000000001011001bf0000001203000029000000000013041b0000000101300039000000a00200043d000000000021041b0000000201300039000000c00200043d000000000021041b000000e00100043d000009d2011001970000000302300039000000000302041a00000a3b03300197000000000113019f000001000300043d000000000003004b00000a3c030000410000000003006019000000000131019f000001200300043d000000000003004b00000a3d030000410000000003006019000000000131019f000000000012041b0000000801000039000000000101041a000000010110003a00001c650000c13d00000a8401000041000000000010043f0000001101000039000000040010043f00000a850100004100002745000104300000000802000039000000000012041b0000000001000019000027440001042e001200000000001d00001c720000013d000000000001004b00001d9f0000c13d0000001202000029001200010020003d000000800100043d000000120010006b00001de60000813d000000400200043d000009df0020009c0000012e0000213d00000012010000290000000501100210000d00000001001d000000a001100039000f00000001001d0000000001010433000000c003200039000000400030043f00000060030000390000000003320436000000a004200039000000000004043500000080042000390000000000040435000000600420003900000000000404350000004002200039000000000002043500000000000304350000000802000039000000000202041a000000000012004b00001d980000a13d000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b001000000001001d000000400100043d001100000001001d000009df0010009c0000012e0000213d0000001101000029000000c006100039000000400060043f0000001001000029000000000101041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000001e80000c13d0000000000460435000000000002004b00001ccc0000613d000900000004001d000a00000006001d0000001001000029000000000010043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000907000029000000000007004b00001cd40000613d0000001102000029000000e002200039000000000301043b00000000010000190000000a060000290000000004120019000000000503041a000000000054043500000001033000390000002001100039000000000071004b00001cc40000413d00001cd60000013d00000a94011001970000001102000029000000e0022000390000000000120435000000000004004b0000002001000039000000000100603900001cd60000013d00000000010000190000000a060000290000003f0110003900000a92021001970000000001620019000000000021004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f0000001107000029000000000167043600000010030000290000000102300039000000000202041a00000000002104350000000201300039000000000101041a000000400670003900000000001604350000000301300039000000000301041a000000a00270003900000a2e013001980000000004000039000000010400c0390000000000420435000000800470003900000a2f023001980000000005000039000000010500c03900000000005404350000006004700039000009d20530019700000000005404350000000b0000006b00001c6b0000c13d000000000002004b0000243a0000c13d000a00000006001d001100000005001d000000000005004b00001d050000c13d0000001201000039000000000101041a001100000001001d0000000c01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000800200043d000000120020006c0000242a0000a13d000000000101043b0000000f020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000008020000290000000002020433000000120020006c0000242a0000a13d0000000d030000290000000702300029000900000002001d0000000002020433000000000101043b000000000101041a001000000002001d000d00000001001d000000000012001a00001c5f0000413d0000000c01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000800200043d000000120020006c0000242a0000a13d000000000101043b0000000f020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000d030000290000001002300029000000000101043b000000000021041b0000000c01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000800200043d000000120020006c0000242a0000a13d000000000101043b0000000f020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000110010006c000024410000213d00000008010000290000000001010433000000120010006c0000242a0000a13d0000000a01000029000000000201043300000009010000290000000001010433000000000021001a00001c5f0000413d001000000001001d001100000002001d000000800100043d000000120010006c0000242a0000a13d0000000f010000290000000001010433000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000010030000290000001102300029000000000101043b0000000201100039000000000021041b00001c6d0000013d000000400100043d000000440210003900000a8303000041000000000032043500000024021000390000001403000039000021550000013d000000400100043d000000440210003900000a7a03000041000000000032043500000024021000390000000f03000039000021550000013d000000110000006b000000000100001900001dab0000613d0000000f0100002900000000010104330000001104000029000000030240021000000a930220027f00000a9302200167000000000221016f000000010140021000001dcd0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000100600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001db80000c13d000000110020006c00001dca0000813d00000011020000290000000302200210000000f80220018f00000a930220027f00000a930220016700000010033000290000000003030433000000000223016f000000000021041b000000010100003900000011020000290000000102200210000000000112019f0000001203000029000000000013041b0000000101300039000000a00200043d000000000021041b0000000201300039000000c00200043d000000000021041b0000000301300039000000e00200043d000009d202200197000000000301041a00000a3b03300197000000000223019f000001000300043d000000000003004b00000a3c030000410000000003006019000000000232019f000001200300043d000000000003004b00000a3d03000041000000000300601900000df90000013d000000000001004b000006c60000613d001200000000001d00000008010000290000000001010433000000120010006c0000242a0000a13d00000012010000290000000501100210000000a002100039000000000302043300000007011000290000000001010433001100000001001d001000000003001d000000000030043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000f0011001000740000161b0000413d0000001001000029000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000f02000029000000000021041b0000001001000029000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000c02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000201041a000000110020002a00001c5f0000413d0000001102200029000000000021041b0000001202000029001200010020003d000000800100043d000000120010006b00001de90000413d000006c60000013d000000040230008c000024620000413d000000000400043d00000a3704400197000000000501043b00000a3805500197000000000445019f000000000040043f00000a380440019700000a2c0040009c000024620000c13d000000440030008c000024620000413d000000040510037000000a92062001980000001f0720018f000000400400043d000000000164001900001e850000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b00001e670000c13d00001e850000013d000000040230008c000024620000413d000000000400043d00000a3704400197000000000501043b00000a3805500197000000000445019f000000000040043f00000a380440019700000a2c0040009c000024620000c13d000000440030008c000024620000413d000000040510037000000a92062001980000001f0720018f000000400400043d000000000164001900001e850000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b00001e810000c13d000000000007004b00001e920000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005104350000000005040433000009e00050009c000024620000213d0000002401500039000000000031004b000024620000213d00000000014500190000000003010433000009e00030009c000024620000213d000000000224001900000000063100190000002006600039000000000026004b000024620000213d00000000023500190000003f0220003900000a92022001970000000004420019000000000024004b00000000020000390000000102004039000009e00040009c0000012e0000213d00000001002001900000012e0000c13d0000000003040019000000400040043f000000000001004b000024620000613d00000a2c020000410000000004030019001200000003001d00000000002304350000000402300039000000200300003900000000003204350000002402400039274324780000040f00000012020000290000000001210049000009d20010009c000009d201008041000009d20020009c000009d20200804100000060011002100000004002200210000000000121019f0000274500010430000000040230008c000024620000413d000000000400043d00000a3704400197000000000501043b00000a3805500197000000000445019f000000000040043f00000a380440019700000a2c0040009c000024620000c13d000000440030008c000024620000413d000000040510037000000a92062001980000001f0720018f000000400400043d000000000164001900001e850000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b00001ed80000c13d00001e850000013d000000400100043d001100000001001d00000a4601000041000000000010044300000000010004120000000400100443000000a00100003900000024001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a47011001c700008005020000392743273e0000040f0000000100200190000024290000613d00000011020000290000002002200039000000000101043b001000000002001d000000000012043500000a4601000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a47011001c700008005020000392743273e0000040f0000000100200190000024290000613d000000000101043b00000011020000290000004002200039000000000012043500000a4601000041000000000010044300000000010004120000000400100443000000800100003900000024001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a47011001c700008005020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000110200002900000060022000390000000000120435000009dc0100004100000000001004430000000001000414000009d20010009c000009d201008041000000c001100210000009dd011001c70000800b020000392743273e0000040f0000000100200190000024290000613d000000000101043b0000001104000029000000a0024000390000000003000410000000000032043500000080024000390000000000120435000000a0010000390000000000140435000009df0040009c0000012e0000213d0000001102000029000000c001200039000000400010043f0000001001000029000009d20010009c000009d20100804100000040011002100000000002020433000009d20020009c000009d2020080410000006002200210000000000112019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f000009da011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000301043b000000400100043d000000420210003900000012040000290000000000420435000000200210003900000a48040000410000000000420435000000220410003900000000003404350000004203000039000000000031043500000a260010009c0000012e0000213d0000008003100039000000400030043f000009d20020009c000009d20200804100000040022002100000000001010433000009d20010009c000009d2010080410000006001100210000000000121019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f000009da011001c700008010020000392743273e0000040f0000000100200190000000500000613d0000000006000031000000000101043b00000001050003670000002402500370000000000402043b0000000407400039000000000275034f000000000202043b000009e00020009c0000012e0000213d0000001f0320003900000a92033001970000003f0330003900000a9208300197000000400300043d0000000008830019000000000038004b00000000090000390000000109004039000009e00080009c0000012e0000213d00000001009001900000012e0000c13d0000002409400039000000400080043f00000000042304360000000008920019000000000068004b000000500000213d0000002006700039000000000665034f00000a92072001980000001f0820018f000000000574001900001f900000613d000000000906034f000000000a040019000000009b09043c000000000aba043600000000005a004b00001f8c0000c13d000000000008004b00001f9d0000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f000000000065043500000000022400190000000000020435000000400200043d0000000005030433000000410050008c00001fad0000c13d0000004005300039000000000505043300000a4a0050009c00001fbd0000a13d000000640120003900000a4b030000410000000000310435000000440120003900000a5a03000041000020000000013d000000440120003900000a4903000041000000000031043500000024012000390000001f03000039000000000031043500000a2c010000410000000000120435000000040120003900000020030000390000000000310435000009d20020009c000009d202008041000000400120021000000a40011001c7000027450001043000000060033000390000000003030433000000f8033002700000001b0630008a000000010060008c00001ffb0000213d00000000040404330000006006200039000000000056043500000040052000390000000000450435000000200420003900000000003404350000000000120435000000000000043f000009d20020009c000009d20200804100000040012002100000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f00000a4d011001c700000001020000392743273e0000040f0000006003100270000009d203300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001fe50000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001fe10000c13d000000000005004b00001ff20000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f000000000054043500000001002001900000200e0000613d000000000100043d000009d5001001980000201a0000c13d000000400100043d000000440210003900000a5903000041000017b00000013d000000640120003900000a4b030000410000000000310435000000440120003900000a4c03000041000000000031043500000024012000390000002203000039000000000031043500000a2c010000410000000000120435000000040120003900000020030000390000000000310435000009d20020009c000009d202008041000000400120021000000a2d011001c700002745000104300000001f0530018f000009d406300198000000400200043d0000000004620019000010010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020150000c13d000010010000013d0000000f02000039000000000202041a000000000112013f000009d5001001980000203f0000c13d00000001030003670000000401300370000000000401043b0000000401400039000000000213034f000000000202043b000009d50020009c000000500000213d0000000005000411000000000052004b000020460000c13d0000008001100039000000000213034f000000000202043b000009d50020009c000000500000213d0000000005000410000000000052004b0000204d0000c13d000000200110008a000000000113034f000000000101043b0000000002000416000000000012004b0000209b0000813d000000400100043d000000440210003900000a5803000041000000000032043500000024021000390000001503000039000021550000013d000000400100043d000000440210003900000a4e03000041000000000032043500000024021000390000000e03000039000021550000013d000000400100043d000000640210003900000a4f030000410000000000320435000000440210003900000a50030000410000224c0000013d000000400600043d001200000006001d0000002401600039000000000051043500000a510100004100000000001604350000000401600039000000000500041100000000005104350000006401400039000000000113034f000000000101043b00000044036000390000000000130435000009d20060009c000009d201000041000000000106401900000040011002100000000003000414000009d20030009c000009d203008041000000c003300210000000000113019f00000a40011001c7274327390000040f0000006003100270000009d203300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120b0000290000001205700029000020760000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000020720000c13d000000000006004b000020830000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000021600000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000009e00010009c0000012e0000213d00000001002001900000012e0000c13d000000400010043f000000200030008c000000500000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000000500000c13d00000001030003670000000401300370000000000401043b0000002401400039000000000113034f000000000101043b00000000020000310000000005420049000000230550008a00000a430650019700000a4307100197000000000867013f000000000067004b000000000600001900000a4306004041000000000051004b000000000500001900000a430500804100000a430080009c000000000605c019000000000006004b000000500000c13d00000004054000390000000001150019000000000613034f000000000606043b001000000006001d000009e00060009c000000500000213d0000001006000029000000050660021000000000066200490000002001100039000000000061004b000000000700001900000a430700204100000a430660019700000a4301100197000000000861013f000000000061004b000000000100001900000a430100404100000a430080009c000000000107c019000000000001004b000000500000c13d000000100000006b000021370000613d001200000000001d00000000064200490000002401400039000000000113034f000000000101043b000000230460008a00000a430640019700000a4307100197000000000867013f000000000067004b000000000600001900000a4306004041000000000041004b000000000400001900000a430400804100000a430080009c000000000604c019000000000006004b000000500000c13d0000000004150019000000000143034f000000000101043b000009e00010009c000000500000213d00000005051002100000000005520049000000200240003900000a430450019700000a4306200197000000000746013f000000000046004b000000000400001900000a4304004041000000000052004b000000000500001900000a430500204100000a430070009c000000000405c019000000000004004b000000500000c13d000000120010006b0000242a0000813d000000120100002900110005001002180000001101200029000000000113034f000000000101043b2743265c0000040f00000001030003670000000402300370000000000402043b0000004402400039000000000223034f000000000702043b00000000020000310000000005420049000000230550008a00000a430650019700000a4308700197000000000968013f000000000068004b000000000600001900000a4306004041000000000057004b000000000500001900000a430500804100000a430090009c000000000605c019000000000006004b000000500000c13d0000004005100039000000000605043300000004054000390000000008750019000000000783034f000000000707043b000009e00070009c000000500000213d00000005097002100000000009920049000000200880003900000a430a90019700000a430b800197000000000cab013f0000000000ab004b000000000a00001900000a430a004041000000000098004b000000000900001900000a430900204100000a4300c0009c000000000a09c01900000000000a004b000000500000c13d000000120070006b0000242a0000813d0000001107800029000000000773034f000000000707043b000000000067001a00001c5f0000413d000000000667001900000020011000390000000001010433000000000016004b0000216c0000213d00000012060000290000000106600039001200000006001d000000100060006c000020c90000413d0000001301000039000000000101041a000000000001004b000021ac0000613d00120010001000bd00000012011000f9000000100010006c00001c5f0000c13d00000a53010000410000000000100443000000000100041000000004001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a35011001c70000800a020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000120010006c000021730000813d000000400100043d000000440210003900000a7503000041000000000032043500000024021000390000001d03000039000000000032043500000a2c020000410000000000210435000000040210003900000020030000390000000000320435000009d20010009c000009d201008041000000400110021000000a40011001c700002745000104300000001f0530018f000009d406300198000000400200043d0000000004620019000010010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021670000c13d000010010000013d000000400100043d000000440210003900000a5203000041000000000032043500000024021000390000001203000039000021550000013d0000000001000414000009d20010009c000009d201008041000000c001100210000000120000006b0000217b0000c13d00000a5402000041000021800000013d000009da011001c70000800902000039000000120300002900000a54040000410000000005000019274327390000040f0000006003100270000009d203300198000021a90000613d0000001f04300039000009d3044001970000003f0440003900000a5504400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000009e00040009c0000012e0000213d00000001006001900000012e0000c13d000000400040043f0000001f0430018f0000000006350436000009d40530019800000000035600190000219c0000613d000000000701034f000000007807043c0000000006860436000000000036004b000021980000c13d000000000004004b000021a90000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000100200190000022500000613d00000001030003670000000401300370000000000501043b0000000402500039000000000123034f000000000101043b000c00000001001d000009d50010009c000000500000213d0000002007200039000000000173034f000000000401043b00000000010000310000000005510049000000230550008a00000a430950019700000a4306400197000000000896013f000000000096004b000000000600001900000a4306004041000000000054004b000000000a00001900000a430a00804100000a430080009c00000000060ac019000000000006004b000000500000c13d0000000004240019000000000643034f000000000606043b000009e00060009c000000500000213d0000000508600210000000000a810049000000200440003900000a430ba0019700000a430c400197000000000dbc013f0000000000bc004b000000000b00001900000a430b0040410000000000a4004b000000000a00001900000a430a00204100000a4300d0009c000000000b0ac01900000000000b004b000000500000c13d0000002007700039000000000773034f000000000707043b00000a430a700197000000000b9a013f00000000009a004b000000000900001900000a4309004041000000000057004b000000000500001900000a430500804100000a4300b0009c000000000905c019000000000009004b000000500000c13d0000000002270019000000000523034f000000000505043b000009e00050009c000000500000213d00000005075002100000000009710049000000200220003900000a430a90019700000a430b200197000000000cab013f0000000000ab004b000000000a00001900000a430a004041000000000092004b000000000900001900000a430900204100000a4300c0009c000000000a09c01900000000000a004b000000500000c13d0000003f0980003900000a2509900197000000400a00043d00000000099a001900120000000a001d0000000000a9004b000000000a000039000000010a004039000009e00090009c0000012e0000213d0000000100a001900000012e0000c13d000000400090043f00000012090000290000000006690436000a00000006001d0000000006480019000000000016004b000000500000213d000000000046004b0000221d0000a13d0000001208000029000000000943034f000000000909043b000000200880003900000000009804350000002004400039000000000064004b000022160000413d0000003f0470003900000a2504400197000000400600043d0000000004460019001100000006001d000000000064004b00000000060000390000000106004039000009e00040009c0000012e0000213d00000001006001900000012e0000c13d000000400040043f00000011040000290000000004540436000900000004001d0000000004270019000000000014004b000000500000213d000000000024004b0000223a0000a13d0000001101000029000000000523034f000000000505043b000000200110003900000000005104350000002002200039000000000042004b000022330000413d000000400100043d000b00000001001d000009d60010009c0000012e0000213d0000000b020000290000002001200039000f00000001001d000000400010043f00000000000204350000000c01000029000e09d50010019c000022640000c13d000000400100043d000000640210003900000a88030000410000000000320435000000440210003900000a8903000041000000000032043500000024021000390000002103000039000022590000013d000000400100043d000000640210003900000a73030000410000000000320435000000440210003900000a7403000041000000000032043500000024021000390000003a03000039000000000032043500000a2c020000410000000000210435000000040210003900000020030000390000000000320435000009d20010009c000009d201008041000000400110021000000a2d011001c700002745000104300000001201000029000000000101043300000011020000290000000002020433000000000021004b000024300000c13d000000000001004b000023520000613d001000000000001d00000010010000290000000502100210000600000002001d0000000a01200029000d00000001001d00000000010104332743265c0000040f000800000001001d00000080011000390000000001010433000000000001004b0000243a0000c13d000000080100002900000060011000390000000001010433000709d20010019c000022810000c13d0000001201000039000000000101041a000700000001001d0000000e01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000012020000290000000002020433000000100020006c0000242a0000a13d000000000101043b0000000d020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000011020000290000000002020433000000100020006c0000242a0000a13d00000006030000290000000902300029000600000002001d0000000002020433000000000101043b000000000101041a000500000002001d000400000001001d000000000012001a00001c5f0000413d0000000e01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000012020000290000000002020433000000100020006c0000242a0000a13d000000000101043b0000000d020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000004030000290000000502300029000000000101043b000000000021041b0000000e01000029000000000010043f0000001101000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000012020000290000000002020433000000100020006c0000242a0000a13d000000000101043b0000000d020000290000000002020433000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000101041a000000070010006c000024410000213d00000011010000290000000001010433000000100010006c0000242a0000a13d00000006010000290000000002010433000000080100002900000040011000390000000001010433000800000002001d000700000001001d000000000012001a00001c5f0000413d00000012010000290000000001010433000000100010006c0000242a0000a13d0000000d010000290000000001010433000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d00000007030000290000000802300029000000000101043b0000000201100039000000000021041b0000001002000029001000010020003d00000012010000290000000001010433000000100010006b0000226d0000413d000000000001004b000023520000613d001000000000001d00000011020000290000000002020433000000100020006c0000242a0000a13d000000100010006c0000242a0000a13d0000001001000029000000050110021000000009021000290000000002020433000d00000002001d0000000a011000290000000001010433000000000010043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b0000000e02000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000000500000613d000000000101043b000000000201041a0000000d0020002a00001c5f0000413d0000000d02200029000000000021041b0000001002000029001000010020003d00000012010000290000000001010433000000100010006b000023210000413d000000400100043d0000004002000039000000000221043600000012030000290000000004030433000000400310003900000000004304350000006003100039000000000004004b000023640000613d000000000500001900000012060000290000002006600039000000000706043300000000037304360000000105500039000000000045004b0000235e0000413d00000000041300490000000000420435000000110200002900000000040204330000000002430436000000000004004b000023730000613d000000000300001900000011050000290000002005500039000000000605043300000000026204360000000103300039000000000043004b0000236d0000413d0000000002120049000009d20020009c000009d2020080410000006002200210000009d20010009c000009d2010080410000004001100210000000000112019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000121019f000009da011001c70000800d02000039000000040300003900000a5604000041000000000500041100000000060000190000000e07000029274327390000040f0000000100200190000000500000613d00000a340100004100000000001004430000000c0100002900000004001004430000000001000414000009d20010009c000009d201008041000000c00110021000000a35011001c700008002020000392743273e0000040f0000000100200190000024290000613d000000000101043b000000000001004b000024240000613d000000400300043d0000004401300039000000a002000039000000000021043500000a570100004100000000001304350000000401300039000000000200041100000000002104350000002401300039000000000001043500000012010000290000000002010433000000a4013000390000000000210435001000000003001d000000c401300039000000000002004b000023b60000613d000000000300001900000012040000290000002004400039001200000004001d000000000404043300000000014104360000000103300039000000000023004b000023ae0000413d00000010030000290000000002310049000000040220008a00000064033000390000000000230435000000110200002900000000020204330000000001210436000000000002004b000023c90000613d000000000300001900000011040000290000002004400039001100000004001d000000000404043300000000014104360000000103300039000000000023004b000023c10000413d00000010030000290000000002310049000000040220008a000000840330003900000000002304350000000b0200002900000000020204330000000001210436000000000002004b000023db0000613d000000000300001900000000041300190000000f05300029000000000505043300000000005404350000002003300039000000000023004b000023d40000413d000000000312001900000000000304350000001f0220003900000a9202200197000000100300002900000000013100490000000001210019000009d20010009c000009d2010080410000006001100210000009d20030009c000009d20200004100000000020340190000004002200210000000000121019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f0000000e02000029274327390000040f0000006003100270000009d203300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001005700029000024000000613d000000000801034f0000001009000029000000008a08043c0000000009a90436000000000059004b000023fc0000c13d000000000006004b0000240d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000024480000613d0000001f01400039000000600110018f0000001004100029000000000014004b00000000010000390000000101004039000009e00040009c0000012e0000213d00000001001001900000012e0000c13d0000000002040019000000400040043f000000200030008c000000500000413d0000001001000029000000000101043300000a3700100198000000500000c13d00000a380110019700000a570010009c000024720000c13d00000001010000390000000402000039000000000012041b0000000001000019000027440001042e000000000001042f00000a8401000041000000000010043f0000003201000039000000040010043f00000a85010000410000274500010430000000400100043d000000640210003900000a78030000410000000000320435000000440210003900000a7903000041000000000032043500000024021000390000002803000039000022590000013d000000400100043d000000440210003900000a8703000041000000000032043500000024021000390000000c03000039000021550000013d000000400100043d000000440210003900000a8603000041000000000032043500000024021000390000001603000039000021550000013d000000040230008c000024620000413d000000000400043d00000a3704400197000000000501043b00000a3805500197000000000445019f000000000040043f00000a380440019700000a2c0040009c000024620000c13d000000440030008c000024620000413d000000040510037000000a92062001980000001f0720018f000000400400043d000000000164001900001e850000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b0000245d0000c13d00001e850000013d000000400200043d001200000002001d00000a2c0100004100000000001204350000000401200039274327160000040f00000012020000290000000001210049000009d20010009c000009d2010080410000006001100210000009d20020009c000009d2020080410000004002200210000000000121019f000027450001043000000a2c01000041001200000002001d00000000001204350000000401200039274327090000040f000024680000013d00000000430104340000000001320436000000000003004b000024840000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b0000247d0000413d000000000231001900000000000204350000001f0230003900000a92022001970000000001210019000000000001042d00000a950010009c0000248f0000813d0000004001100039000000400010043f000000000001042d00000a8401000041000000000010043f0000004101000039000000040010043f00000a8501000041000027450001043000000a960010009c0000249a0000813d0000002001100039000000400010043f000000000001042d00000a8401000041000000000010043f0000004101000039000000040010043f00000a850100004100002745000104300000001f0220003900000a92022001970000000001120019000000000021004b00000000020000390000000102004039000009e00010009c000024ac0000213d0000000100200190000024ac0000c13d000000400010043f000000000001042d00000a8401000041000000000010043f0000004101000039000000040010043f00000a85010000410000274500010430000000000301001900000000040104330000000001420436000000000004004b000024be0000613d00000000020000190000002003300039000000000503043300000000015104360000000102200039000000000042004b000024b80000413d000000000001042d0000000053010434000000c0040000390000000006420436000000c00820003900000000740304340000000000480435000000e003200039000000000004004b000024d00000613d00000000080000190000000009380019000000000a870019000000000a0a04330000000000a904350000002008800039000000000048004b000024c90000413d0000000007430019000000000007043500000000050504330000000000560435000000400510003900000000050504330000004006200039000000000056043500000060051000390000000005050433000009d2055001970000006006200039000000000056043500000080051000390000000005050433000000000005004b0000000005000039000000010500c03900000080062000390000000000560435000000a002200039000000a0011000390000000001010433000000000001004b0000000001000039000000010100c03900000000001204350000001f0140003900000a92011001970000000001130019000000000001042d0000002003000039000000000331043600000000040204330000000000430435000000400510003900000005034002100000000003350019000000000004004b000025320000613d00000000080000190000251b0000013d00000000069a0019000000000006043500000000060c043300000000006d04350000004006b000390000000006060433000000400730003900000000006704350000006006b000390000000006060433000009d206600197000000600730003900000000006704350000008006b000390000000006060433000000000006004b0000000006000039000000010600c03900000080073000390000000000670435000000a003300039000000a006b000390000000006060433000000000006004b0000000006000039000000010600c03900000000006304350000001f0390003900000a920330019700000000033a00190000000108800039000000000048004b000025320000813d0000000009130049000000400990008a00000000059504360000002002200039000000000b02043300000000c90b0434000000c006000039000000000d630436000000c00a30003900000000e909043400000000009a0435000000e00a300039000000000009004b000024fa0000613d000000000f0000190000000006af00190000000007fe001900000000070704330000000000760435000000200ff0003900000000009f004b0000252a0000413d000024fa0000013d0000000001030019000000000001042d000500000000000200000000030100190000001f01100039000000000021004b000000000500001900000a430500404100030a430020019b00000a4301100197000000030610014f000000030010006c000000000100001900000a430100204100000a430060009c000000000105c019000000000001004b000025e00000613d0000000105000367000000000135034f000000000101043b00000a970010009c000025e20000813d00000005061002100000003f0760003900000a2507700197000000400400043d0000000007740019000100000004001d000000000047004b00000000080000390000000108004039000009e00070009c000025e20000213d0000000100800190000025e20000c13d000000400070043f00000001040000290000000000140435000500200030003d0000000501600029000400000001001d000000000021004b000025e00000213d0000000403000029000000050030006b000025de0000813d000000200700008a00000005080000290000000109000029000200000002001d000000000185034f000000000101043b000009e00010009c000025e00000213d000000050b1000290000000001b2004900000a390010009c000025e00000213d000000c00010008c000025e00000413d000000400a00043d000009df00a0009c000025e20000213d0000000001b5034f000000c00ca000390000004000c0043f000000000101043b000009e00010009c000025e00000213d000000000eb100190000001f01e00039000000000021004b000000000300001900000a430300804100000a4301100197000000030610014f000000030010006c000000000100001900000a430100404100000a430060009c000000000103c019000000000001004b000025e00000c13d0000000001e5034f000000000d01043b000009e000d0009c000025e20000213d0000001f01d00039000000000171016f0000003f01100039000000000171016f0000000003c10019000009e00030009c000025e20000213d0000002001e00039000000400030043f0000000000dc043500000000031d0019000000000023004b000025e00000213d000000000315034f000000000207001900000000017d0170000000e007a00039000000000f170019000025a30000613d000000000603034f000000000e070019000000006406043c000000000e4e04360000000000fe004b0000259f0000c13d0000001f06d00190000025b00000613d000000000113034f000000030360021000000000040f043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f00000000001f043500000000017d001900000000000104350000000001ca04360000002003b00039000000000335034f000000000303043b00000000003104350000004001b00039000000000115034f000000000101043b0000004003a0003900000000001304350000006001b00039000000000315034f000000000303043b000009d20030009c00000000070200190000000202000029000025e00000213d0000006004a0003900000000003404350000002001100039000000000315034f000000000303043b000000000003004b0000000004000039000000010400c039000000000043004b000025e00000c13d0000008004a0003900000000003404350000002001100039000000000115034f000000000101043b000000000001004b0000000003000039000000010300c039000000000031004b000025e00000c13d0000002009900039000000a003a0003900000000001304350000000000a904350000002008800039000000040080006c000025650000413d0000000101000029000000000001042d0000000001000019000027450001043000000a8401000041000000000010043f0000004101000039000000040010043f00000a850100004100002745000104300001000000000002000109d50010019c000026080000613d000000000020043f000000200000043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000026060000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000026060000613d000000000101043b000000000101041a000000000001042d00000000010000190000274500010430000000400100043d000000640210003900000a71030000410000000000320435000000440210003900000a7203000041000000000032043500000024021000390000002a03000039000000000032043500000a2c020000410000000000210435000000040210003900000020030000390000000000320435000009d20010009c000009d201008041000000400110021000000a2d011001c700002745000104300000000301000039000000000101041a000009d5011001970000000002000411000000000021004b000026230000c13d000000000001042d000000400100043d000000440210003900000a8a03000041000000000032043500000a2c02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000009d20010009c000009d201008041000000400110021000000a40011001c70000274500010430000009d501100197000000000010043f0000000701000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000026460000613d000000000101043b000000000101041a000000ff001001900000000001000039000000010100c039000000000001042d00000000010000190000274500010430000000000001004b0000264b0000613d000000000001042d000000400100043d000000440210003900000a8203000041000000000032043500000024021000390000000203000039000000000032043500000a2c020000410000000000210435000000040210003900000020030000390000000000320435000009d20010009c000009d201008041000000400110021000000a40011001c700002745000104300004000000000002000000400200043d00000a980020009c000026dc0000813d000000c003200039000000400030043f00000060030000390000000003320436000000a004200039000000000004043500000080042000390000000000040435000000600420003900000000000404350000004002200039000000000002043500000000000304350000000802000039000000000202041a000000000012004b000026e40000a13d000000000010043f0000000901000039000000200010043f0000000001000414000009d20010009c000009d201008041000000c00110021000000a24011001c700008010020000392743273e0000040f0000000100200190000026e20000613d000000000701043b000000400600043d000009df0060009c000026dc0000213d000000c008600039000000400080043f000000000107041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000032004b000026f50000c13d0000000000480435000000000002004b000026ae0000613d000100000004001d000200000008001d000400000006001d000300000007001d000000000070043f0000000001000414000009d20010009c000009d201008041000000c001100210000009e1011001c700008010020000392743273e0000040f0000000100200190000026e20000613d0000000109000029000000000009004b0000000406000029000026b50000613d000000e002600039000000000301043b0000000001000019000000030700002900000002080000290000000004120019000000000503041a000000000054043500000001033000390000002001100039000000000091004b000026a60000413d000026b80000013d00000a9401100197000000e0026000390000000000120435000000000004004b00000020010000390000000001006039000026b80000013d0000000001000019000000030700002900000002080000290000003f0110003900000a92021001970000000001820019000000000021004b00000000020000390000000102004039000009e00010009c000026dc0000213d0000000100200190000026dc0000c13d000000400010043f00000000018604360000000102700039000000000202041a00000000002104350000000201700039000000000101041a000000400260003900000000001204350000000301700039000000000101041a0000006002600039000009d203100197000000000032043500000a2e001001980000000002000039000000010200c039000000a003600039000000000023043500000a2f001001980000000001000039000000010100c039000000800260003900000000001204350000000001060019000000000001042d00000a8401000041000000000010043f0000004101000039000000040010043f00000a8501000041000027450001043000000000010000190000274500010430000000400100043d000000440210003900000a8303000041000000000032043500000024021000390000001403000039000000000032043500000a2c020000410000000000210435000000040210003900000020030000390000000000320435000009d20010009c000009d201008041000000400110021000000a40011001c7000027450001043000000a8401000041000000000010043f0000002201000039000000040010043f00000a85010000410000274500010430000000000212004900000a390020009c000027070000213d0000001f0020008c000027070000a13d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000027070000c13d000000000001042d00000000010000190000274500010430000000600210003900000a99030000410000000000320435000000400210003900000a9a030000410000000000320435000000200210003900000028030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900000a9b030000410000000000320435000000400210003900000a9c030000410000000000320435000000200210003900000034030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000009d20010009c000009d2010080410000004001100210000009d20020009c000009d2020080410000006002200210000000000112019f0000000002000414000009d20020009c000009d202008041000000c002200210000000000112019f000009da011001c700008010020000392743273e0000040f0000000100200190000027370000613d000000000101043b000000000001042d000000000100001900002745000104300000273c002104210000000102000039000000000001042d0000000002000019000000000001042d00002741002104230000000102000039000000000001042d0000000002000019000000000001042d0000274300000432000027440001042e00002745000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffdf000000000000000000000000000000000000000000000000ffffffffffffffbf5369676e61747572654d696e7461626c650000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000010000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b02000002000000000000000000000000000000040000000000000000000000008b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f000000000000000000000000000000000000000000000000ffffffffffffff3f000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000000000000000000000000000000000000000000000002738d24e5200000000002000000000000000000000000000001c0000001000000000000000000000000000000000000000000000000000000000000000000000000006e05ec3f00000000000000000000000000000000000000000000000000000000bbe9f99c00000000000000000000000000000000000000000000000000000000f1615e6000000000000000000000000000000000000000000000000000000000f5298ac900000000000000000000000000000000000000000000000000000000f5298aca00000000000000000000000000000000000000000000000000000000f5ca4dfd00000000000000000000000000000000000000000000000000000000fe70aaea00000000000000000000000000000000000000000000000000000000f1615e6100000000000000000000000000000000000000000000000000000000f242432a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000e4b50cb700000000000000000000000000000000000000000000000000000000e4b50cb800000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000eafc98a000000000000000000000000000000000000000000000000000000000bbe9f99d00000000000000000000000000000000000000000000000000000000be8e43ee00000000000000000000000000000000000000000000000000000000cf0de7dd000000000000000000000000000000000000000000000000000000008462151b00000000000000000000000000000000000000000000000000000000a7ecd37d00000000000000000000000000000000000000000000000000000000a7ecd37e00000000000000000000000000000000000000000000000000000000aa6ca80800000000000000000000000000000000000000000000000000000000b7e3968c000000000000000000000000000000000000000000000000000000008462151c000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000a22cb4650000000000000000000000000000000000000000000000000000000078a895660000000000000000000000000000000000000000000000000000000078a8956700000000000000000000000000000000000000000000000000000000828a29a00000000000000000000000000000000000000000000000000000000084017e52000000000000000000000000000000000000000000000000000000006e05ec4000000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000075107639000000000000000000000000000000000000000000000000000000002eb2c2d5000000000000000000000000000000000000000000000000000000004e1273f3000000000000000000000000000000000000000000000000000000005969b44a000000000000000000000000000000000000000000000000000000005969b44b000000000000000000000000000000000000000000000000000000005b7633d0000000000000000000000000000000000000000000000000000000006b20c454000000000000000000000000000000000000000000000000000000004e1273f4000000000000000000000000000000000000000000000000000000004f558e790000000000000000000000000000000000000000000000000000000054980d28000000000000000000000000000000000000000000000000000000003eb2b5ac000000000000000000000000000000000000000000000000000000003eb2b5ad0000000000000000000000000000000000000000000000000000000044ab23fc000000000000000000000000000000000000000000000000000000004cb3f4b1000000000000000000000000000000000000000000000000000000002eb2c2d600000000000000000000000000000000000000000000000000000000345ba790000000000000000000000000000000000000000000000000000000003ccfd60b0000000000000000000000000000000000000000000000000000000013966db4000000000000000000000000000000000000000000000000000000001bf2907a000000000000000000000000000000000000000000000000000000001bf2907b000000000000000000000000000000000000000000000000000000001c4ba3ed000000000000000000000000000000000000000000000000000000002a55205a0000000000000000000000000000000000000000000000000000000013966db50000000000000000000000000000000000000000000000000000000014eba0260000000000000000000000000000000000000000000000000000000019350ea20000000000000000000000000000000000000000000000000000000001ffc9a60000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006228749000000000000000000000000000000000000000000000000000000000e89341c0000000000000000000000000000000000000000000000000000000000fdd58e0000000000000000000000000000000000000000000000000000000001e3366702000000000000000000000000000000000000400000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7ffe8a4859c7bd88fc0f24184464406785daae8e84cb1860cc4a4eff72e05fe2470175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391327320746f6b656e000000000000000000000000000000000000000000000000004275726e696e6720706572696f642068617320656e64656420666f722074686908c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff00000000c3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f624f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000f23a6e610000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffebfffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000200000008000000000000000004475706c6963617465207369676e617475726500000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff45787069726564207369676e61747572650000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000dc7b98b1fb602ba66d1c447096944bfb9b9847b29b786cd3ba224b10fcac45c4000000000000000000000000000000000000000000000000fffffffffffffedf310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000190100000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265206c656e677468007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202776272076616c0000000000000000000000000000000000000080000000000000000000000000496e76616c6964207369676e6572000000000000000000000000000000000000660000000000000000000000000000000000000000000000000000000000000043616e2774206d696e7420746f206f74686572207468616e20796f757273656c23b872dd000000000000000000000000000000000000000000000000000000004d617820737570706c79207265616368656400000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39000000000000000000000000460fd5059e7301680fa53e63bbbf7272e643e89c00000000000000000000000000000000000000000000000000000003ffffffe04a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fbbc197c81000000000000000000000000000000000000000000000000000000004d7573742073656e6420746f74616c207072696365000000000000000000000045434453413a20696e76616c6964207369676e6174757265000000000000000045434453413a20696e76616c6964207369676e6174757265202773272076616c5265656e7472616e637947756172643a207265656e7472616e742063616c6c000000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c6600000000000000000000000000000000000000000000004e6f20706173736573206578697374000000000000000000000000000000000043616e6e6f74206368616e676520737570706c7900000000000000000000000043616e6e6f742072656475636520746f74616c20737570706c79000000000000206f72206d6f726520746f6b656e7300000000000000000000000000000000004275726e696e6720706572696f642068617320656e64656420666f72206f6e654172726179206c656e67746873206d757374206d6174636800000000000000004e6f7420617574686f72697a656420746f206275726e20746f6b656e73000000616e636500000000000000000000000000000000000000000000000000000000455243313135353a206275726e20616d6f756e7420657863656564732062616c6573730000000000000000000000000000000000000000000000000000000000455243313135353a206275726e2066726f6d20746865207a65726f206164647275726500000000000000000000000000000000000000000000000000000000004275726e20656e642064617465206d75737420626520696e2074686520667574206d69736d617463680000000000000000000000000000000000000000000000455243313135353a206163636f756e747320616e6420696473206c656e67746800000000000000000000000000000000000000000000003fffffffffffffffe0616c6964206f776e657200000000000000000000000000000000000000000000455243313135353a2061646472657373207a65726f206973206e6f74206120766563697069656e74206d61792068617665207265766572746564000000000000416464726573733a20756e61626c6520746f2073656e642076616c75652c2072416464726573733a20696e73756666696369656e742062616c616e63650000006572206e6f7220617070726f7665640000000000000000000000000000000000455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e6d69736d61746368000000000000000000000000000000000000000000000000455243313135353a2069647320616e6420616d6f756e7473206c656e6774682043616e277420626520747261646564000000000000000000000000000000000072207472616e7366657200000000000000000000000000000000000000000000455243313135353a20696e73756666696369656e742062616c616e636520666f6472657373000000000000000000000000000000000000000000000000000000455243313135353a207472616e7366657220746f20746865207a65726f20616400000000000000000000000000000000000000400000000000000000000000004275726e2077616c6c65742063616e6e6f74206265207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000004e41000000000000000000000000000000000000000000000000000000000000546f6b656e20646f6573206e6f742065786973740000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000004d6178207065722077616c6c6574207265616368656400000000000000000000546f6b656e20636c6f73656400000000000000000000000000000000000000007300000000000000000000000000000000000000000000000000000000000000455243313135353a206d696e7420746f20746865207a65726f206164647265734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65722a552059ffffffffffffffffffffffffffffffffffffffffffffffffffffffffd9b67a26000000000000000000000000000000000000000000000000000000002a55205a0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000e89341c00000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffff406420746f6b656e73000000000000000000000000000000000000000000000000455243313135353a204552433131353552656365697665722072656a65637465526563656976657220696d706c656d656e746572000000000000000000000000455243313135353a207472616e7366657220746f206e6f6e20455243313135350000000000000000000000000000000000000000000000000000000000000000cd184f358aac6015c2a6296bf5e67fac7f6f63f1c745495af6efb5aa0c234b4d

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c3734144d40d3aaf8a369aafa93a85146d9cfc27

-----Decoded View---------------
Arg [0] : _signer (address): 0xC3734144d40d3aaF8a369aafA93a85146D9CFc27

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c3734144d40d3aaf8a369aafa93a85146d9cfc27


Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.