ETH Price: $2,634.57 (-6.17%)
    /

    Token

    Mintify Abstract Keys (MNFABK)

    Overview

    Max Total Supply

    9,456 MNFABK

    Holders

    1,936

    Market

    Onchain Market Cap

    $0.00

    Circulating Supply Market Cap

    -
    Balance
    3 MNFABK
    0x4690842a49845c3428e76f111f28752bb7d5818a
    Loading...
    Loading
    Loading...
    Loading
    Loading...
    Loading

    Click here to update the token information / general information
    This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

    Contract Source Code Verified (Exact Match)

    Contract Name:
    MintifyAbstractKeys

    Compiler Version
    v0.8.28+commit.7893614a

    ZkSolc Version
    v1.5.7

    Optimization Enabled:
    Yes with Mode 3

    Other Settings:
    cancun EvmVersion
    File 1 of 13 : AbstractKeys.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.28;
    import {ERC721A} from "erc721a/contracts/ERC721A.sol";
    import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
    import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol";
    import {BitMaps} from "@openzeppelin/contracts/utils/structs/BitMaps.sol";
    import {OperatorFilterer} from "closedsea/src/OperatorFilterer.sol";
    import {MerkleProof} from '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
    import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
    error MaxSupplyExceeded();
    error PhaseMaxSupplyExceeded();
    error MaxPerWalletExceeded();
    error MaxPerOrderExceeded();
    error PhaseClosed();
    error TransfersLocked();
    error NotAllowedByRegistry();
    error RegistryNotSet();
    error WrongWeiSent();
    error MaxFeeExceeded();
    error InputLengthsMismatch();
    error InvalidMerkleProof();
    error InvalidAmount();
    error InvalidAddress();
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 13 : ERC721A.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // ERC721A Contracts v4.2.3
    // Creator: Chiru Labs
    pragma solidity ^0.8.4;
    import './IERC721A.sol';
    /**
    * @dev Interface of ERC721 token receiver.
    */
    interface ERC721A__IERC721Receiver {
    function onERC721Received(
    address operator,
    address from,
    uint256 tokenId,
    bytes calldata data
    ) external returns (bytes4);
    }
    /**
    * @title ERC721A
    *
    * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
    * Non-Fungible Token Standard, including the Metadata extension.
    * Optimized for lower gas during batch mints.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 13 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
    pragma solidity ^0.8.0;
    import "../utils/Context.sol";
    /**
    * @dev Contract module which provides a basic access control mechanism, where
    * there is an account (an owner) that can be granted exclusive access to
    * specific functions.
    *
    * By default, the owner account will be the one that deploys the contract. This
    * can later be changed with {transferOwnership}.
    *
    * This module is used through inheritance. It will make available the modifier
    * `onlyOwner`, which can be applied to your functions to restrict their use to
    * the owner.
    */
    abstract contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
    * @dev Initializes the contract setting the deployer as the initial owner.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 13 : ERC2981.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)
    pragma solidity ^0.8.0;
    import "../../interfaces/IERC2981.sol";
    import "../../utils/introspection/ERC165.sol";
    /**
    * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
    *
    * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
    * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
    *
    * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
    * fee is specified in basis points by default.
    *
    * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
    * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
    * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
    *
    * _Available since v4.5._
    */
    abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
    address receiver;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 13 : BitMaps.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/BitMaps.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.
    * Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
    */
    library BitMaps {
    struct BitMap {
    mapping(uint256 => uint256) _data;
    }
    /**
    * @dev Returns whether the bit at `index` is set.
    */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
    uint256 bucket = index >> 8;
    uint256 mask = 1 << (index & 0xff);
    return bitmap._data[bucket] & mask != 0;
    }
    /**
    * @dev Sets the bit at `index` to the boolean `value`.
    */
    function setTo(BitMap storage bitmap, uint256 index, bool value) internal {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 13 : OperatorFilterer.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    /// @notice Optimized and flexible operator filterer to abide to OpenSea's
    /// mandatory on-chain royalty enforcement in order for new collections to
    /// receive royalties.
    /// For more information, see:
    /// See: https://github.com/ProjectOpenSea/operator-filter-registry
    abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;
    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
    _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }
    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
    internal
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 13 : MerkleProof.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev These functions deal with verification of Merkle Tree proofs.
    *
    * The tree and the proofs can be generated using our
    * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
    * You will find a quickstart guide in the readme.
    *
    * WARNING: You should avoid using leaf values that are 64 bytes long prior to
    * hashing, or use a hash function other than keccak256 for hashing leaves.
    * This is because the concatenation of a sorted pair of internal nodes in
    * the merkle tree could be reinterpreted as a leaf value.
    * OpenZeppelin's JavaScript library generates merkle trees that are safe
    * against this attack out of the box.
    */
    library MerkleProof {
    /**
    * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
    * defined by `root`. For this, a `proof` must be provided, containing
    * sibling hashes on the branch from the leaf to the root of the tree. Each
    * pair of leaves and each pair of pre-images are assumed to be sorted.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 13 : ReentrancyGuard.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Contract module that helps prevent reentrant calls to a function.
    *
    * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
    * available, which can be applied to functions to make sure there are no nested
    * (reentrant) calls to them.
    *
    * Note that because there is a single `nonReentrant` guard, functions marked as
    * `nonReentrant` may not call one another. This can be worked around by making
    * those functions `private`, and then adding `external` `nonReentrant` entry
    * points to them.
    *
    * TIP: If you would like to learn more about reentrancy and alternative ways
    * to protect against it, check out our blog post
    * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
    */
    abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 13 : IERC721A.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // ERC721A Contracts v4.2.3
    // Creator: Chiru Labs
    pragma solidity ^0.8.4;
    /**
    * @dev Interface of ERC721A.
    */
    interface IERC721A {
    /**
    * The caller must own the token or be an approved operator.
    */
    error ApprovalCallerNotOwnerNorApproved();
    /**
    * The token does not exist.
    */
    error ApprovalQueryForNonexistentToken();
    /**
    * Cannot query the balance for the zero address.
    */
    error BalanceQueryForZeroAddress();
    /**
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 13 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Provides information about the current execution context, including the
    * sender of the transaction and its data. While these are generally available
    * via msg.sender and msg.data, they should not be accessed in such a direct
    * manner, since when dealing with meta-transactions the account sending and
    * paying for execution may not be the actual sender (as far as an application
    * is concerned).
    *
    * This contract is only required for intermediate, library-like contracts.
    */
    abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
    return msg.sender;
    }
    function _msgData() internal view virtual returns (bytes calldata) {
    return msg.data;
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 13 : IERC2981.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)
    pragma solidity ^0.8.0;
    import "../utils/introspection/IERC165.sol";
    /**
    * @dev Interface for the NFT Royalty Standard.
    *
    * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
    * support for royalty payments across all NFT marketplaces and ecosystem participants.
    *
    * _Available since v4.5._
    */
    interface IERC2981 is IERC165 {
    /**
    * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
    * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
    */
    function royaltyInfo(
    uint256 tokenId,
    uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 13 : ERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
    pragma solidity ^0.8.0;
    import "./IERC165.sol";
    /**
    * @dev Implementation of the {IERC165} interface.
    *
    * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
    * for the additional interface id that will be supported. For example:
    *
    * ```solidity
    * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
    * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
    * }
    * ```
    *
    * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
    */
    abstract contract ERC165 is IERC165 {
    /**
    * @dev See {IERC165-supportsInterface}.
    */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 13 of 13 : IERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Interface of the ERC165 standard, as defined in the
    * https://eips.ethereum.org/EIPS/eip-165[EIP].
    *
    * Implementers can declare support of contract interfaces, which can then be
    * queried by others ({ERC165Checker}).
    *
    * For an implementation, see {ERC165}.
    */
    interface IERC165 {
    /**
    * @dev Returns true if this contract implements the interface defined by
    * `interfaceId`. See the corresponding
    * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
    * to learn more about how these ids are created.
    *
    * This function call must use less than 30 000 gas.
    */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    {
    "viaIR": false,
    "codegen": "yul",
    "remappings": [
    "@rari-capital/solmate/=lib/solmate/",
    "ds-test/=lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "murky/=lib/murky/src/",
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "solarray/=lib/solarray/src/",
    "solady/=lib/solady/",
    "seaport-sol/=lib/seaport-sol/",
    "seaport-types/=lib/seaport-types/",
    "seaport-core/=lib/seaport-core/",
    "seaport/=contracts/",
    "closedsea/=lib/closedsea/",
    "erc721a/=lib/closedsea/lib/erc721a/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "erc721a-upgradeable/=lib/closedsea/lib/erc721a-upgradeable/contracts/",
    "openzeppelin-contracts-upgradeable/=lib/closedsea/lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "operator-filter-registry/=lib/closedsea/lib/operator-filter-registry/",
    "solmate/=lib/solmate/src/"
    ],
    "evmVersion": "cancun",
    "outputSelection": {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    [{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InputLengthsMismatch","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidMerkleProof","type":"error"},{"inputs":[],"name":"MaxFeeExceeded","type":"error"},{"inputs":[],"name":"MaxPerWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotAllowedByRegistry","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PhaseClosed","type":"error"},{"inputs":[],"name":"PhaseMaxSupplyExceeded","type":"error"},{"inputs":[],"name":"RegistryNotSet","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"TransfersLocked","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WrongWeiSent","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxPerOrder","type":"uint256"}],"name":"MaxPerOrderUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"MaxPerWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"MaxSupplyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"PhaseOneMerkleRootUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PhaseOnePriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newState","type":"bool"}],"name":"PhaseOneStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newSupplyLimit","type":"uint256"}],"name":"PhaseOneSupplyLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PhaseTwoPriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newState","type":"bool"}],"name":"PhaseTwoStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newSupplyLimit","type":"uint256"}],"name":"PhaseTwoSupplyLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breakLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTransferLockOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRegistryActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"phaseOneAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"phaseOneMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"phaseOneOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOnePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneSupplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"phaseTwoAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"phaseTwoMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"phaseTwoOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoSupplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRegistryActive","type":"bool"}],"name":"setIsRegistryActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setPhaseOneMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPhaseOneMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPhaseOnePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPhaseOneStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupplyLimit","type":"uint256"}],"name":"setPhaseOneSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setPhaseTwoMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPhaseTwoPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPhaseTwoStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupplyLimit","type":"uint256"}],"name":"setPhaseTwoSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_registryAddress","type":"address"}],"name":"setRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

    9c4d535b00000000000000000000000000000000000000000000000000000000000000000100065b5a6127aa22e0cc8fbf84c120b4cf8aebdf3b9a341079af7c90de022e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

    Deployed Bytecode

    0x0004000000000002000a0000000000020000006004100270000005850340019700030000003103550002000000010355000005850040019d0000008004000039000000400040043f00000001002001900000002a0000c13d000900000004001d000000040030008c00000ba90000413d000000000201043b000000e002200270000005a80020009c000000530000213d000005d40020009c0000007e0000213d000005ea0020009c000000cf0000a13d000005eb0020009c000001580000213d000005f10020009c000003f60000213d000005f40020009c000005bf0000613d000005f50020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d0000000501000039000000000101041a00000651011001670000000402000039000000000202041a0000000001120019000000800010043f0000060f010000410000160f0001042e0000000001000416000000000001004b00000ba90000c13d0000001501000039000000800010043f0000058601000041000000a00010043f0000010001000039000000400010043f0000000601000039000000c00010043f0000058701000041000000e00010043f0000000103000039000000000030041b0000000006000411000000000103041a0000058802100197000000000262019f000000000023041b00000000020004140000058905100197000005850020009c0000058502008041000000c0012002100000058a011001c70000800d0200003900000003030000390000058b04000041160e16040000040f000000010020019000000ba90000613d000000800500043d0000058c0050009c0000008d0000413d0000063201000041000000000010043f0000004101000039000000040010043f00000606010000410000161000010430000005a90020009c0000009d0000213d000005bf0020009c000000fe0000a13d000005c00020009c000001630000213d000005c60020009c000003ff0000213d000005c90020009c000005d80000613d000005ca0020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d0000000703000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000970000c13d000000800010043f000000000004004b00000b0d0000613d000000000030043f000000000001004b000000000200001900000b120000613d00000592030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000000760000413d00000b120000013d000005d50020009c000001150000a13d000005d60020009c000001ca0000213d000005dc0020009c0000041c0000213d000005df0020009c000005de0000613d000005e00020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d000000160100003900000a860000013d0000000604000039000000000104041a000000010310019000000001021002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000013004b000000ac0000613d0000063201000041000000000010043f0000002201000039000000040010043f00000606010000410000161000010430000005aa0020009c000001370000a13d000005ab0020009c000001d50000213d000005b10020009c000004250000213d000005b40020009c0000061d0000613d000005b50020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d000000170100003900000a860000013d000000200020008c000000bc0000413d0000001f0150003900000005011002700000058d0110009a000000200050008c0000058e010040410000001f0220003900000005022002700000058d0220009a000000000021004b000000bc0000813d000000000001041b0000000101100039000000000021004b000000b80000413d0000001f0050008c000001f80000a13d000a00000005001d000000000040043f0000000001000414000005850010009c0000058501008041000000c0011002100000058f011001c70000801002000039160e16090000040f000000010020019000000ba90000613d0000000a060000290000065202600198000000000101043b00000aaf0000c13d000000200300003900000abb0000013d000005f60020009c000002030000a13d000005f70020009c000003ab0000213d000005fa0020009c000006220000613d000005fb0020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000201043b000000000002004b00000b050000613d0000000401000039000000000101041a000000000021004b00000b050000a13d000a00000002001d000000000020043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a00000617001001980000000a0100002900000b050000c13d000000000010043f0000000a01000039000000200010043f00000040020000390000000001000019160e15ef0000040f000000000101041a00000a9c0000013d000005cb0020009c000002220000a13d000005cc0020009c000003b40000213d000005cf0020009c000006410000613d000005d00020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000101043b000005890010009c00000ba90000213d000000000001004b00000bd10000c13d0000062801000041000000000010043f00000603010000410000161000010430000005e10020009c000002490000a13d000005e20020009c000003e40000213d000005e50020009c0000065a0000613d000005e60020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000001902000039000000000302041a000006220030019800000bef0000c13d0000063c01000041000000000010043f00000603010000410000161000010430000005b60020009c000002540000a13d000005b70020009c000003ed0000213d000005ba0020009c0000077f0000613d000005bb0020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000401100370000000000101043b0000001202000039000000000012041b000000800010043f0000000001000414000005850010009c0000058501008041000000c00110021000000614011001c70000800d020000390000000103000039000006160400004100000a740000013d000005ec0020009c000004440000213d000005ef0020009c000007ba0000613d000005f00020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d0000000d0100003900000a860000013d000005c10020009c0000045a0000213d000005c40020009c000007f90000613d000005c50020009c00000ba90000c13d000000440030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000402100370000000000202043b000a00000002001d000005890020009c00000ba90000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b00000ba90000c13d0000001901000039000000000101041a000000ff00100190000001940000613d0000061e01000041000000000010043f00000000010004100000001a0010043f0000000a010000290000003a0010043f0000000001000414000005850010009c0000058501008041000000c0011002100000061f011001c7000005a002000041160e16090000040f0000006003100270000105850030019d0003000000010355000000010020019000000c790000613d0000003a0000043f0000001901000039000000000101041a0000ff000010019000000f450000c13d0000000001000411000000000010043f0000000b01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000201041a00000653022001970000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000005850010009c000005850100804100000040011002100000000002000414000005850020009c0000058502008041000000c002200210000000000112019f0000058f011001c70000800d020000390000000303000039000006240400004100000000050004110000000a06000029160e16040000040f000000010020019000000ba90000613d00000a770000013d000005d70020009c000004730000213d000005da0020009c000008120000613d000005db0020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d0000000c0100003900000aa80000013d000005ac0020009c000004e30000213d000005af0020009c0000081e0000613d000005b00020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000601043b000005890060009c00000ba90000213d0000000101000039000000000201041a00000589032001970000000005000411000000000053004b00000a790000c13d000000000006004b00000bf40000c13d000005a601000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000061001000041000000c40010043f0000061101000041000000e40010043f00000612010000410000161000010430000000000005004b0000000001000019000001fc0000613d000000a00100043d0000000302500210000006510220027f0000065102200167000000000121016f0000000102500210000000000121019f00000ac80000013d000005fc0020009c000008280000613d000005fd0020009c000008420000613d000005fe0020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000401100370000000000101043b0000001502000039000000000012041b000000800010043f0000000001000414000005850010009c0000058501008041000000c00110021000000614011001c70000800d0200003900000001030000390000064a0400004100000a740000013d000005d10020009c000008670000613d000005d20020009c0000086e0000613d000005d30020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000c02000039000000000302041a0000065303300197000000000313019f000000000032041b000000800010043f0000000001000414000005850010009c0000058501008041000000c00110021000000614011001c70000800d0200003900000001030000390000062a0400004100000a740000013d000005e70020009c0000087f0000613d000005e80020009c000008a20000613d000005e90020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d000000120100003900000a860000013d000005bc0020009c000008c40000613d000005bd0020009c000008cb0000613d000005be0020009c00000ba90000c13d000000840030008c00000ba90000413d0000000402100370000000000202043b000900000002001d000005890020009c00000ba90000213d0000002402100370000000000202043b000800000002001d000005890020009c00000ba90000213d0000004402100370000000000202043b000700000002001d0000006402100370000000000402043b000005900040009c00000ba90000213d0000002302400039000000000032004b00000ba90000813d0000000405400039000000000251034f000000000202043b000005900020009c0000004d0000213d0000001f0720003900000652077001970000003f0770003900000652077001970000061d0070009c0000004d0000213d0000008007700039000000400070043f000000800020043f00000000042400190000002404400039000000000034004b00000ba90000213d0000002003500039000000000331034f00000652042001980000001f0520018f000000a0014000390000028e0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b0000028a0000c13d000000000005004b0000029b0000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000002000411000000090020006b000002a40000613d0000001901000039000000000101041a000000ff0010019000000e730000c13d000000070000006b00000cb40000613d0000000701000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000201041a000006170020019800000cb40000c13d0000000001020019000000000002004b000002d20000c13d0000000401000039000000000101041a000000070010006c00000cb40000a13d000a00070000002d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000000001004b000002bf0000613d000a00000001001d0000058901100197000000090010006c00000d730000c13d0000000701000029000000000010043f0000000a01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000400000001001d000000000101041a000500000001001d00000000010004110000058902100197000600000002001d000000090020006c0000030d0000613d0000000602000029000000050020006c0000030d0000613d0000000901000029000000000010043f0000000b01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000ff0010019000000a2d0000613d0000000801000029000305890010019c00000f130000613d0000001901000039000000000101041a000000090000006b000003160000613d0000ff000010019000000f450000c13d0000060400100198000012190000c13d000000050000006b0000031c0000613d0000000401000029000000000001041b0000000901000029000000000010043f0000000901000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000301000029000000000010043f0000000901000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000201041a0000000102200039000000000021041b000006090100004100000000001004430000000001000414000005850010009c0000058501008041000000c0011002100000060a011001c70000800b02000039160e16090000040f0000000100200190000012180000613d000000000101043b000600000001001d0000000701000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d0000000602000029000000a00220021000000003022001af0000060b022001c7000000000101043b000000000021041b0000000a010000290000060b00100198000003880000c13d00000007010000290000000101100039000600000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000000001004b000003880000c13d0000000401000039000000000101041a000000060010006b000003880000613d0000000601000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b0000000a02000029000000000021041b0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000004030000390000060c04000041000000090500002900000003060000290000000707000029160e16040000040f000000010020019000000ba90000613d00000620010000410000000000100443000000080100002900000004001004430000000001000414000005850010009c0000058501008041000000c00110021000000621011001c70000800202000039160e16090000040f0000000100200190000012180000613d000000000101043b000000000001004b00000a770000613d0000008004000039000000090100002900000008020000290000000703000029000007780000013d000005f80020009c000008e00000613d000005f90020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d00000019010000390000086b0000013d000005cd0020009c0000095a0000613d000005ce0020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000101043b000a00000001001d000005890010009c00000ba90000213d0000000103000039000000000103041a00000589011001970000000002000411000000000021004b00000a790000c13d000000000100041a000000020010008c000009860000613d0000000201000039000000000010041b0000000a0000006b00000c200000613d000900000003001d00000627010000410000000000100443000000000100041000000004001004430000000001000414000005850010009c0000058501008041000000c00110021000000621011001c70000800a02000039160e16090000040f0000000100200190000012180000613d000000000301043b00000000010004140000000a02000029000000040020008c00000d770000c13d000000010100003100000df30000013d000005e30020009c000009720000613d000005e40020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d000000110100003900000a860000013d000005b80020009c000009900000613d000005b90020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d000000150100003900000a860000013d000005f20020009c0000099a0000613d000005f30020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d000000130100003900000a860000013d000005c70020009c00000a310000613d000005c80020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000401100370000000000101043b0000000e02000039000000000012041b000000800010043f0000000001000414000005850010009c0000058501008041000000c00110021000000614011001c70000800d020000390000000103000039000006260400004100000a740000013d000005dd0020009c00000a410000613d000005de0020009c00000ba90000c13d0000000001000416000000000001004b00000ba90000c13d000000140100003900000a860000013d000005b20020009c00000a5c0000613d000005b30020009c00000ba90000c13d000000440030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000402100370000000000202043b000005890020009c00000ba90000213d0000002401100370000000000101043b000a00000001001d000005890010009c00000ba90000213d000000000020043f0000000b01000039000000200010043f00000040020000390000000001000019160e15ef0000040f0000000a02000029160e135c0000040f000000000101041a000000ff001001900000000001000039000000010100c03900000a9d0000013d000005ed0020009c00000a820000613d000005ee0020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000401100370000000000101043b0000001602000039000000000012041b000000800010043f00000000010004140000080a0000013d000005c20020009c00000a8a0000613d000005c30020009c00000ba90000c13d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000101043b000a00000001001d000005890010009c00000ba90000213d160e13d20000040f0000000a01000029000000180110021000000622011001970000001902000039000000000302041a0000062303300197000000000113019f000000000012041b00000000010000190000160f0001042e000005d80020009c00000a940000613d000005d90020009c00000ba90000c13d000000440030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000402100370000000000202043b000005900020009c00000ba90000213d0000002304200039000000000034004b00000ba90000813d0000000404200039000000000441034f000000000504043b000005900050009c0000004d0000213d00000005045002100000003f0640003900000600066001970000061d0060009c0000004d0000213d0000008006600039000000400060043f000000800050043f00000024022000390000000004240019000000000034004b00000ba90000213d000000000005004b0000049f0000613d000000a005000039000000000621034f000000000606043b000005890060009c00000ba90000213d00000000056504360000002002200039000000000042004b000004970000413d0000002402100370000000000202043b000005900020009c00000ba90000213d0000002304200039000000000034004b00000000050000190000062f050080410000062f04400197000000000004004b00000000060000190000062f060040410000062f0040009c000000000605c019000000000006004b00000ba90000c13d0000000404200039000000000441034f000000000404043b000005900040009c0000004d0000213d00000005054002100000003f065000390000060006600197000000400700043d0000000006670019000500000007001d000000000076004b00000000070000390000000107004039000005900060009c0000004d0000213d00000001007001900000004d0000c13d000000400060043f00000005060000290000000006460436000400000006001d00000024022000390000000005250019000000000035004b00000ba90000213d000000000004004b000004d30000613d0000000503000029000000000421034f000000000404043b000000200330003900000000004304350000002002200039000000000052004b000004cc0000413d0000000101000039000000000101041a00000589011001970000000002000411000000000021004b00000f340000c13d000000000100041a000000020010008c00000f620000c13d000000400100043d00000044021000390000063403000041000000000032043500000024021000390000001f0300003900000bb60000013d000005ad0020009c00000aa40000613d000005ae0020009c00000ba90000c13d000000440030008c00000ba90000413d0000000402100370000000000202043b000700000002001d0000002402100370000000000202043b000005900020009c00000ba90000213d0000002304200039000000000034004b00000ba90000813d0000000404200039000000000141034f000000000101043b000a00000001001d000005900010009c00000ba90000213d00000024012000390000000a020000290000000502200210000500000001001d000900000002001d000600000012001d000000060030006b00000ba90000213d000000000100041a000000020010008c000009860000613d0000000201000039000000000010041b0000000c01000039000000000101041a000000ff001001900000087b0000613d00000000010004110000006001100210000000a00010043f0000001401000039000000800010043f000000c001000039000000400010043f0000000001000414000005850010009c0000058501008041000000c001100210000005ff011001c70000801002000039160e16090000040f000000010020019000000ba90000613d0000001702000039000000000202041a000400000002001d000000000101043b00000009020000290000003f022000390000060002200197000000400300043d0000000002230019000900000003001d000000000032004b00000000030000390000000103004039000005900020009c0000004d0000213d00000001003001900000004d0000c13d000000400020043f00000009020000290000000a040000290000000002420436000800000002001d0000000602000029000000000020007c00000ba90000213d0000000a0000006b000005600000613d00000005050000290000000202500367000000090300002900000006060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b000005390000413d00000009020000290000000002020433000000000002004b000005600000613d0000000003000019000a00000003001d000000050230021000000008022000290000000002020433000000000021004b0000054e0000813d000000000010043f000000200020043f0000000001000414000005510000013d000000000020043f000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b0000000a03000029000000010330003900000009020000290000000002020433000000000023004b000005440000413d000000040010006c00000f300000c13d00000000010004110000058901100197000900000001001d000000000010043f0000000f01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000070010002a000010420000413d00000007011000290000001302000039000000000202041a000000000021004b00000c3c0000213d0000001101000039000000000101041a000000000001004b000005850000613d000000070010002a000010420000413d00000007011000290000001202000039000000000202041a000000000021004b00000beb0000213d0000001801000039000000000101041a000000000001004b000005940000613d0000000502000039000000000202041a00000651022001670000000403000039000000000303041a0000000002230019000000070020002a000010420000413d0000000702200029000000000012004b00000cda0000213d0000000d01000039000000000201041a00000007012000b9000000000002004b0000059c0000613d00000000022100d9000000070020006c000010420000c13d0000000002000416000000000012004b00000ce10000c13d0000000901000029000000000010043f0000000f01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000201041a000000070020002a000010420000413d0000000702200029000000000021041b0000001101000039000000000101041a000000070010002a000010420000413d00000007011000290000001103000039000000000013041b000000070000006b000011b70000c13d0000060e01000041000000000010043f00000603010000410000161000010430000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000401100370000000000101043b0000000d02000039000000000012041b000000800010043f0000000001000414000005850010009c0000058501008041000000c00110021000000614011001c70000800d020000390000000103000039000006440400004100000a740000013d0000000001000416000000000001004b00000ba90000c13d0000000101000039000000000101041a000008240000013d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000402100370000000000402043b000005900040009c00000ba90000213d0000002302400039000000000032004b00000ba90000813d0000000406400039000000000261034f000000000202043b000005900020009c00000ba90000213d00000024054000390000000004520019000000000034004b00000ba90000213d0000000104000039000000000304041a00000589033001970000000007000411000000000073004b00000a790000c13d0000001a03000039000000000803041a000000010080019000000001078002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000898013f0000000100800190000000970000c13d000000200070008c000006150000413d000000000030043f0000001f082000390000000508800270000005970880009a000000200020008c0000059a080040410000001f077000390000000507700270000005970770009a000000000078004b000006150000813d000000000008041b0000000108800039000000000078004b000006110000413d0000001f0020008c00000d7e0000a13d000000000030043f000006520720019800000da40000c13d0000059a06000041000000000800001900000dae0000013d0000000001000416000000000001004b00000ba90000c13d000000180100003900000a860000013d0000000001000416000000000001004b00000ba90000c13d0000000603000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000970000c13d000000800010043f000000000004004b00000b0d0000613d000000000030043f000000000001004b000000000200001900000b120000613d0000058e030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000006390000413d00000b120000013d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000401100370000000000101043b0000001802000039000000000012041b000000800010043f0000000001000414000005850010009c0000058501008041000000c00110021000000614011001c70000800d020000390000000103000039000006290400004100000a740000013d000000640030008c00000ba90000413d0000000402100370000000000202043b000800000002001d000005890020009c00000ba90000213d0000002402100370000000000202043b000700000002001d000005890020009c00000ba90000213d0000004401100370000000000201043b0000000003000411000000080030006b0000066f0000613d0000001901000039000000000101041a000000ff0010019000000c920000c13d000000a001000039000000400010043f000000800000043f000000000002004b00000cb40000613d000600000002001d000000000020043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000006170010019800000cb40000c13d000000000001004b000006a00000c13d0000000401000039000000000101041a0000000602000029000000000021004b00000cb40000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000000001004b0000068d0000613d000a00000001001d0000058901100197000000080010006c00000d730000c13d0000000601000029000000000010043f0000000a01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000300000001001d000000000101041a000400000001001d00000000010004110000058902100197000500000002001d000000080020006c000006db0000613d0000000502000029000000040020006c000006db0000613d0000000801000029000000000010043f0000000b01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000ff0010019000000a2d0000613d0000000701000029000205890010019c00000f130000613d0000001901000039000000000101041a000000080000006b000006e40000613d0000ff000010019000000f450000c13d0000060400100198000010f70000c13d000000040000006b000006ea0000613d0000000301000029000000000001041b0000000801000029000000000010043f0000000901000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000201000029000000000010043f0000000901000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000201041a0000000102200039000000000021041b000006090100004100000000001004430000000001000414000005850010009c0000058501008041000000c0011002100000060a011001c70000800b02000039160e16090000040f0000000100200190000012180000613d000000000101043b000500000001001d0000000601000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d0000000502000029000000a00220021000000002022001af0000060b022001c7000000000101043b000000000021041b0000000a010000290000060b00100198000007560000c13d00000006010000290000000101100039000500000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000000001004b000007560000c13d0000000401000039000000000101041a000000050010006b000007560000613d0000000501000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b0000000a02000029000000000021041b0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000004030000390000060c04000041000000080500002900000002060000290000000607000029160e16040000040f000000010020019000000ba90000613d00000620010000410000000000100443000000070100002900000004001004430000000001000414000005850010009c0000058501008041000000c00110021000000621011001c70000800202000039160e16090000040f0000000100200190000012180000613d000000000101043b000000000001004b00000a770000613d0000000801000029000000070200002900000006030000290000000904000029160e15120000040f000000000001004b00000a770000c13d0000063d01000041000000000010043f00000603010000410000161000010430000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000201043b000000000002004b00000b090000613d0000000401000039000000000101041a000000000021004b00000b090000a13d000a00000002001d000000000020043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000006170010019800000b090000c13d0000001a03000039000000000203041a000000010620019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000000970000c13d000000400500043d0000000004150436000000000006004b00000d8a0000613d000000000030043f000000000001004b000000000200001900000d8f0000613d0000059a0300004100000000020000190000000006240019000000000703041a000000000076043500000001033000390000002002200039000000000012004b000007b20000413d00000d8f0000013d000000440030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000002402100370000000000202043b000a00000002001d0000000401100370000000000101043b000000000010043f0000000301000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000400400043d000005a20040009c0000004d0000213d000000000101043b0000004002400039000000400020043f000000000101041a0000002003400039000000a002100270000000000023043500000589011001980000000000140435000007e90000c13d000000400400043d000005a20040009c0000004d0000213d0000004001400039000000400010043f0000000201000039000000000101041a0000002003400039000000a002100270000000000023043500000589011001970000000000140435000900000004001d0000000a01000029160e13c40000040f00000009020000290000000002020433000027100110011a000000400300043d0000002004300039000000000014043500000589012001970000000000130435000005850030009c000005850300804100000040013002100000063f011001c70000160f0001042e000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000401100370000000000101043b0000001302000039000000000012041b000000800010043f0000000001000414000005850010009c0000058501008041000000c00110021000000614011001c70000800d020000390000000103000039000006250400004100000a740000013d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000101043b000005890010009c00000ba90000213d000000000010043f0000000f0100003900000a3c0000013d0000000001000416000000000001004b00000ba90000c13d0000001901000039000000000101041a00000018011002700000058901100197000000800010043f0000060f010000410000160f0001042e000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000201043b0000064c0020019800000ba90000c13d0000000101000039000005a1022001970000064d0020009c0000083e0000613d0000064e0020009c0000083e0000613d0000064f0020009c0000083e0000613d0000064d0020009c00000000010000390000000101006039000006500020009c00000001011061bf000000010110018f000000800010043f0000060f010000410000160f0001042e000000440030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000402100370000000000202043b000005890020009c00000ba90000213d0000002401100370000000000101043b000a00000001001d000006350010009c00000ba90000213d00000000030200190000000101000039000000000101041a00000589011001970000000002000411000000000021004b00000a790000c13d0000000a01000029000003e90010008c00000a580000813d000900000003001d000000000003004b00000ce50000c13d000005a601000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f000005a501000041000000c40010043f000006370100004100001610000104300000000001000416000000000001004b00000ba90000c13d0000000c01000039000000000101041a0000ff000010019000000aaa0000013d000000240030008c00000ba90000413d0000000401100370000000000401043b000000000100041a000000020010008c000009860000613d0000000201000039000000000010041b0000000c01000039000000000101041a0000ff000010019000000bdc0000c13d0000062e01000041000000000010043f000006030100004100001610000104300000000001000416000000000001004b00000ba90000c13d0000000102000039000000000102041a00000589011001970000000003000411000000000031004b00000a790000c13d000000000100041a000000020010008c000009860000613d000a00000002001d0000000201000039000000000010041b00000627010000410000000000100443000000000100041000000004001004430000000001000414000005850010009c0000058501008041000000c00110021000000621011001c70000800a02000039160e16090000040f0000000100200190000012180000613d000000000301043b00000000010004140000000004000411000000040040008c00000cb80000c13d000000010100003100000d2b0000013d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000c02000039000000000302041a0000065403300197000000000001004b000001000330c1bf000000000032041b000000800010043f0000000001000414000005850010009c0000058501008041000000c00110021000000614011001c70000800d0200003900000001030000390000063e0400004100000a740000013d0000000001000416000000000001004b00000ba90000c13d0000001901000039000000000101041a000006040010019800000aaa0000013d000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b00000ba90000c13d160e13d20000040f0000001901000039000000000201041a00000653022001970000000a022001af000000000021041b00000000010000190000160f0001042e000000440030008c00000ba90000413d0000000402100370000000000202043b000900000002001d000005890020009c00000ba90000213d0000002401100370000000000201043b0000001901000039000000000101041a000000ff00100190000009040000613d000800000002001d0000061e01000041000000000010043f00000000010004100000001a0010043f00000009010000290000003a0010043f0000000001000414000005850010009c0000058501008041000000c0011002100000061f011001c7000005a002000041160e16090000040f0000006003100270000105850030019d0003000000010355000000010020019000000c030000613d0000003a0000043f0000001901000039000000000101041a00000008020000290000ff000010019000000f450000c13d000000000002004b00000cb40000613d000800000002001d000000000020043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000006170010019800000cb40000c13d000000000001004b000009340000c13d0000000401000039000000000101041a0000000802000029000000000021004b00000cb40000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000000001004b000009210000613d000a05890010019b00000000020004110000000a0020006c00000e500000c13d0000000801000029000000000010043f0000000a01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d00000009020000290000058906200197000000000101043b000000000201041a0000058802200197000000000262019f000000000021041b0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d02000039000000040300003900000647040000410000000a050000290000000807000029160e16040000040f000000010020019000000a770000c13d00000ba90000013d0000000001000416000000000001004b00000ba90000c13d0000000101000039000000000201041a00000589032001970000000005000411000000000053004b00000a790000c13d0000058802200197000000000021041b0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000003030000390000058b040000410000000006000019160e16040000040f000000010020019000000ba90000613d00000a770000013d000000440030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000402100370000000000302043b000005890030009c00000ba90000213d0000002401100370000000000201043b0000000101000039000000000101041a00000589011001970000000004000411000000000041004b00000a790000c13d000000000100041a000000020010008c00000c1c0000c13d000005a601000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000063401000041000000c40010043f000006370100004100001610000104300000000001000416000000000001004b00000ba90000c13d160e138a0000040f0000002002000039000000400300043d000a00000003001d0000000002230436160e12f50000040f00000b190000013d000000640030008c00000ba90000413d0000000402100370000000000202043b000900000002001d000005890020009c00000ba90000213d0000002402100370000000000202043b000800000002001d000005890020009c00000ba90000213d0000004401100370000000000201043b0000000003000411000000090030006b000009c40000613d0000001901000039000000000101041a000000ff00100190000009c40000613d000700000002001d0000061e01000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005850010009c0000058501008041000000c0011002100000061f011001c7000005a002000041160e16090000040f0000006003100270000105850030019d0003000000010355000000010020019000000cf00000613d0000003a0000043f0000000702000029000000000002004b00000cb40000613d000700000002001d000000000020043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000006170010019800000cb40000c13d000000000001004b000009f20000c13d0000000401000039000000000101041a0000000702000029000000000021004b00000cb40000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000000001004b000009df0000613d000a00000001001d0000058901100197000000090010006c00000d730000c13d0000000701000029000000000010043f0000000a01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000400000001001d000000000101041a000500000001001d00000000010004110000058902100197000600000002001d000000090020006c00000f100000613d0000000602000029000000050020006c00000f100000613d0000000901000029000000000010043f0000000b01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000ff0010019000000f100000c13d0000064101000041000000000010043f00000603010000410000161000010430000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000101043b000005890010009c00000ba90000213d000000000010043f0000001001000039000000200010043f00000040020000390000000001000019160e15ef0000040f00000a860000013d000000640030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000402100370000000000202043b0000002403100370000000000303043b000005890030009c00000ba90000213d0000004401100370000000000101043b000006350010009c00000ba90000213d0000000104000039000000000404041a00000589044001970000000005000411000000000054004b00000a790000c13d000003e80010008c00000cbf0000a13d0000064b01000041000000000010043f00000603010000410000161000010430000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000102000039000000000202041a00000589022001970000000003000411000000000032004b00000a790000c13d0000000401100370000000000101043b0000001702000039000000000012041b000000800010043f0000000001000414000005850010009c0000058501008041000000c00110021000000614011001c70000800d0200003900000001030000390000061504000041160e16040000040f000000010020019000000ba90000613d00000000010000190000160f0001042e000005a601000041000000800010043f0000002001000039000000840010043f000000a40010043f0000063001000041000000c40010043f000006370100004100001610000104300000000001000416000000000001004b00000ba90000c13d0000000e01000039000000000101041a000000800010043f0000060f010000410000160f0001042e0000000001000416000000000001004b00000ba90000c13d160e13d20000040f0000001901000039000000000201041a0000065402200197000000000021041b00000000010000190000160f0001042e000000240030008c00000ba90000413d0000000002000416000000000002004b00000ba90000c13d0000000401100370000000000101043b160e14dd0000040f0000058901100197000000400200043d0000000000120435000005850020009c0000058502008041000000400120021000000613011001c70000160f0001042e0000000001000416000000000001004b00000ba90000c13d0000001901000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000060f010000410000160f0001042e000000010320008a000000050330027000000000043100190000002003000039000000010440003900000080053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000ab40000c13d000000000062004b00000ac50000813d0000000302600210000000f80220018f000006510220027f000006510220016700000080033000390000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000604000039000000000014041b000000c00500043d000005900050009c0000004d0000213d0000000704000039000000000204041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000000970000c13d000000200010008c00000ae70000413d0000001f025000390000000502200270000005910220009a000000200050008c00000592020040410000001f011000390000000501100270000005910110009a000000000012004b00000ae70000813d000000000002041b0000000102200039000000000012004b00000ae30000413d0000001f0050008c00000afa0000a13d000a00000005001d000000000040043f0000000001000414000005850010009c0000058501008041000000c0011002100000058f011001c70000801002000039160e16090000040f000000010020019000000ba90000613d0000000a060000290000065202600198000000000101043b00000b230000c13d000000e00300003900000b310000013d000000000005004b000000000100001900000afe0000613d000000e00100043d0000000302500210000006510220027f0000065102200167000000000121016f0000000102500210000000000121019f00000b3d0000013d0000064901000041000000000010043f000006030100004100001610000104300000061c01000041000000000010043f000006030100004100001610000104300000065302200197000000a00020043f000000000001004b0000002002000039000000000200603900000020022000390000008001000039160e136c0000040f000000400100043d000a00000001001d0000008002000039160e13270000040f0000000a020000290000000001210049000005850010009c00000585010080410000006001100210000005850020009c00000585020080410000004002200210000000000121019f0000160f0001042e000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b00000b280000c13d000000e003500039000000000062004b00000b3a0000813d0000000302600210000000f80220018f000006510220027f00000651022001670000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000704000039000000000014041b00000004010000390000000102000039000000000021041b00000593010000410000000d02000039000000000012041b00000594010000410000000e02000039000000000012041b000016a8010000390000001202000039000000000012041b00000013010000390000000302000039000000000021041b00000005010000390000001602000039000000000012041b00000595010000410000001702000039000000000012041b00002ee0010000390000001802000039000000000012041b0000001902000039000000000102041a000005960110019700000101011001bf000000000012041b0000001a01000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000970000c13d0000001f0020008c00000b720000a13d000000410020008c00000b720000413d0000001f022000390000000502200270000005970220009a0000059803000041000000000003041b0000000103300039000000000023004b00000b6e0000413d0000004302000039000000000021041b00000599010000410000059a02000041000000000012041b0000059b010000410000059c02000041000000000012041b0000059d01000041000000000010043f0000000001000410000000040010043f0000059e01000041000000240010043f0000000001000414000005850010009c0000058501008041000000c0011002100000059f011001c7000005a002000041160e16040000040f00000060031002700000058503300197000000040030008c00000004040000390000000004034019000000000000004b00000b940000613d000000000501034f0000000006000019000000005705043c0000000000760435000000200660003a00000b900000c13d000000000004004b00000ba10000613d0000000304400210000000000500043d00000000054501cf000000000545022f00000100044000890000000006100370000000000606043b000000000646022f00000000044601cf000000000454019f000000000040043f000100000003001f0003000000010355000000010020019000000bab0000c13d000000000100043d000005a1011001970000059d0010009c00000bab0000c13d00000000010000190000161000010430000000240000043f000000400100043d0000000102000039000000000202041a000005890220019800000bc10000c13d0000004402100039000005a5030000410000000000320435000000240210003900000019030000390000000000320435000005a6020000410000000000210435000000040210003900000020030000390000000000320435000005850010009c00000585010080410000004001100210000005a7011001c70000161000010430000005a20010009c0000004d0000213d0000004003100039000000400030043f0000002003100039000000c80400003900000000004304350000000000210435000005a3012001c70000000202000039000000000012041b000000200100003900000100001004430000012000000443000005a4010000410000160f0001042e000000000010043f0000000901000039000000200010043f00000040020000390000000001000019160e15ef0000040f000000000101041a0000059001100197000000800010043f0000060f010000410000160f0001042e0000001601000039000000000101041a000000000001004b00000c240000c13d0000001401000039000000000101041a000000000001004b00000c400000613d000000000041001a000010420000413d00000000014100190000001502000039000000000202041a000000000021004b00000c400000a13d0000062c01000041000000000010043f00000603010000410000161000010430000000000001004b00000000010000190000063a0100c0410000063b033001970000046f0000013d0000058802200197000000000262019f000000000021041b0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000003030000390000058b04000041160e16040000040f000000010020019000000ba90000613d00000a770000013d00000585023001970000001f0420018f000006070320019800000c0d0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000c090000c13d000000000004004b00000c1a0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001610000104300000000201000039000000000010041b000000000003004b00000ccb0000c13d0000063901000041000000000010043f00000603010000410000161000010430000900000001001d000a00000004001d00000000010004110000058901100197000000000010043f0000001001000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a0000000a04000029000000000041001a000010420000413d0000000001410019000000090010006c00000be00000a13d0000062b01000041000000000010043f000006030100004100001610000104300000001801000039000000000101041a000000000001004b00000c4f0000613d0000000502000039000000000202041a00000651022001670000000403000039000000000303041a0000000002230019000000000042001a000010420000413d0000000002420019000000000012004b00000cda0000213d0000000e01000039000000000201041a00000000014200a9000000000002004b00000c570000613d00000000022100d9000000000042004b000010420000c13d000a00000004001d0000000002000416000000000012004b00000ce10000c13d00000000010004110000058901100197000000000010043f0000001001000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000301041a0000000a02000029000000000023001a0000001404000039000010420000413d0000000003230019000000000031041b000000000104041a000000000021001a000010420000413d0000000001210019000000000014041b0000000001000411160e13e90000040f00000df80000013d00000585023001970000001f0420018f000006070320019800000c830000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000c7f0000c13d000000000004004b00000c900000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000161000010430000600000002001d0000061e01000041000000000010043f00000000010004100000001a0010043f0000003a0030043f0000000001000414000005850010009c0000058501008041000000c0011002100000061f011001c7000005a002000041160e16090000040f0000006003100270000105850030019d0003000000010355000000010020019000000d090000613d0000003a0000043f000000400100043d000900000001001d0000061b0010009c0000004d0000213d0000001901000039000000000101041a00000009030000290000002002300039000000400020043f0000000000030435000000ff0010019000000dbe0000c13d0000000602000029000000000002004b000006740000c13d0000064801000041000000000010043f00000603010000410000161000010430000005850010009c0000058501008041000000c001100210000000000003004b00000d220000c13d000000000204001900000d250000013d000000000003004b00000d5a0000c13d000005a601000041000000800010043f0000002001000039000000840010043f0000001b01000039000000a40010043f0000063601000041000000c40010043f000006370100004100001610000104300000001801000039000000000101041a000000000001004b00000cde0000613d0000000504000039000000000404041a00000651044001670000000405000039000000000505041a0000000004450019000000000024001a000010420000413d0000000004240019000000000014004b00000cde0000a13d0000063801000041000000000010043f000006030100004100001610000104300000000001030019160e13e90000040f00000df80000013d0000062d01000041000000000010043f00000603010000410000161000010430160e137e0000040f000000090300002900000000013104360000000a020000290000000000210435000000a001200210000000000131019f0000000202000039000000000012041b00000000010000190000160f0001042e00000585023001970000001f0420018f000006070320019800000cfa0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000cf60000c13d000000000004004b00000d070000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000006001200210000016100001043000000585023001970000001f0420018f000006070320019800000d130000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000d0f0000c13d000000000004004b00000d200000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001610000104300000058a011001c700008009020000390000000005000019160e16040000040f000a00000002001d00030000000103550000006001100270000105850010019d0000058501100197000000000001004b00000d310000c13d0000000a01000029000000010010019000000df80000c13d00000ba90000013d000005900010009c0000004d0000213d0000001f0310003900000652033001970000003f033000390000065204300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000005900040009c0000004d0000213d00000001005001900000004d0000c13d000000400040043f000000000513043600000652021001980000001f0310018f0000000001250019000000030400036700000d4c0000613d000000000604034f000000006706043c0000000005750436000000000015004b00000d480000c13d000000000003004b00000d2d0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000d2d0000013d000000c004000039000000400040043f000000800030043f000000a00010043f000000000020043f0000000301000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000800200043d0000058902200197000000a00300043d000000a003300210000000000223019f000000000101043b000000000021041b00000000010000190000160f0001042e0000064001000041000000000010043f00000603010000410000161000010430000005850010009c0000058501008041000000c001100210000000000003004b00000de90000c13d0000000a0200002900000ded0000013d000000000002004b000000000400001900000d840000613d0000002004600039000000000141034f000000000401043b0000000301200210000006510110027f0000065101100167000000000114016f000000010420021000000dba0000013d00000653022001970000000000240435000000000001004b000000200200003900000000020060390000003f0220003900000652032001970000000002530019000000000032004b00000000030000390000000103004039000005900020009c0000004d0000213d00000001003001900000004d0000c13d000000400020043f0000000003050433000000000003004b00000e250000c13d0000061b0020009c0000004d0000213d0000002001200039000000400010043f0000000000020435000000400300043d00000f0d0000013d0000059a0600004100000000080000190000000009580019000000000991034f000000000909043b000000000096041b00000001066000390000002008800039000000000078004b00000da60000413d000000000027004b00000db90000813d0000000307200210000000f80770018f000006510770027f00000651077001670000000005580019000000000151034f000000000101043b000000000171016f000000000016041b0000000101200210000000000141019f000000000013041b00000000010000190000160f0001042e0000061e01000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005850010009c0000058501008041000000c0011002100000061f011001c7000005a002000041160e16090000040f0000006003100270000105850030019d0003000000010355000000010020019000000e9e0000613d0000003a0000043f0000001901000039000000000101041a000000ff0010019000000cb10000613d0000061e01000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005850010009c0000058501008041000000c0011002100000061f011001c7000005a002000041160e16090000040f0000006003100270000105850030019d0003000000010355000000010020019000000f490000613d0000003a0000043f00000cb10000013d0000058a011001c700008009020000390000000a040000290000000005000019160e16040000040f000900000002001d00030000000103550000006001100270000105850010019d0000058501100197000000000001004b00000dfc0000c13d0000000901000029000000010010019000000ba90000613d0000000101000039000000000010041b00000000010000190000160f0001042e000005900010009c0000004d0000213d0000001f0310003900000652033001970000003f033000390000065204300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000005900040009c0000004d0000213d00000001005001900000004d0000c13d000000400040043f000000000513043600000652021001980000001f0310018f0000000001250019000000030400036700000e170000613d000000000604034f000000006706043c0000000005750436000000000015004b00000e130000c13d000000000003004b00000df50000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000df50000013d000000a003200039000000400030043f000000800320003900000000000304350000000a090000290000000006030019000000090090008c0000000a3990011a000000f807300210000000010360008a00000000080304330000061808800197000000000778019f00000619077001c7000000000073043500000e2a0000213d00000000026200490000008102200039000000210660008a0000000000260435000000000505043300000652095001970000001f0850018f000000400200043d0000002007200039000000000074004b00000eb70000813d000000000009004b00000e4c0000613d000000000b840019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c00000e460000c13d000000000008004b00000ecd0000613d000000000a07001900000ec30000013d0000000a01000029000000000010043f0000000b01000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b00000000020004110000058902200197000000000020043f000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000ff00100190000009380000c13d0000064601000041000000000010043f000006030100004100001610000104300000061e01000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005850010009c0000058501008041000000c0011002100000061f011001c7000005a002000041160e16090000040f0000006003100270000105850030019d0003000000010355000000010020019000000f170000613d0000003a0000043f0000001901000039000000000101041a000000ff00100190000002a40000613d0000061e01000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005850010009c0000058501008041000000c0011002100000061f011001c7000005a002000041160e16090000040f0000006003100270000105850030019d00030000000103550000000100200190000010c90000613d0000003a0000043f000002a40000013d00000585023001970000001f0420018f000006070320019800000ea80000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000ea40000c13d000000000004004b00000eb50000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000161000010430000000000a970019000000000009004b00000ec00000613d000000000b040019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b00000ebc0000c13d000000000008004b00000ecd0000613d0000000004940019000000030880021000000000090a043300000000098901cf000000000989022f00000000040404330000010008800089000000000484022f00000000048401cf000000000494019f00000000004a043500000000057500190000061a040000410000000000450435000000000406043300000652074001970000001f0640018f0000000a05500039000000000053004b00000ee60000813d000000000007004b00000ee20000613d00000000096300190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00000edc0000c13d000000000006004b00000efc0000613d000000000805001900000ef20000013d0000000008750019000000000007004b00000eef0000613d0000000009030019000000000a050019000000009b090434000000000aba043600000000008a004b00000eeb0000c13d000000000006004b00000efc0000613d00000000037300190000000306600210000000000708043300000000076701cf000000000767022f00000000030304330000010006600089000000000363022f00000000036301cf000000000373019f0000000000380435000000000354001900000000000304350000000003230049000000200430008a00000000004204350000001f0330003900000652013001970000000004210019000000000014004b00000000010000390000000101004039000005900040009c0000004d0000213d00000001001001900000004d0000c13d0000000003040019000000400040043f0000000001030019000a00000003001d00000b180000013d0000000801000029000805890010019c00000f3f0000c13d0000064301000041000000000010043f0000060301000041000016100001043000000585023001970000001f0420018f000006070320019800000f210000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000f1d0000c13d000000000004004b00000f2e0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001610000104300000060201000041000000000010043f00000603010000410000161000010430000000400100043d000000440210003900000630030000410000000000320435000005a6020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000bbb0000013d0000001901000039000000000101041a000000090000006b000010480000613d0000ff0000100190000010480000613d0000064501000041000000000010043f0000060301000041000016100001043000000585023001970000001f0420018f000006070320019800000f530000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000f4f0000c13d000000000004004b00000f600000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001610000104300000000201000039000000000010041b00000005010000290000000002010433000000800100043d000000000021004b000010e20000c13d000000000001004b00000df80000613d000700000000001d00000f750000013d00000004010000390000000802000029000000000021041b0000000702000029000700010020003d000000800100043d000000070010006b00000df80000813d000000050100002900000000010104330000000702000029000000000021004b000012c90000a13d000000050120021000000004021000290000000005020433000000000005004b000012cf0000613d000000a0011000390000000001010433000905890010019c00000c200000613d0000000401000039000000000401041a0000001801000039000000000101041a000000000001004b00000f920000613d0000000502000039000000000202041a00000651022001670000000002240019000000000052001a000010420000413d0000000002520019000000000012004b00000cda0000213d000800000005001d000a00000004001d0000001901000039000000000201041a000006040020019800000fe80000613d000000400a00043d000006050100004100000000001a04350000000401a0003900000000030004110000000000310435000000000100041400000018022002700000058902200197000000040020008c00000fa80000c13d0000000103000031000000200030008c0000002004000039000000000403401900000fd30000013d0000058500a0009c000005850300004100000000030a40190000004003300210000005850010009c0000058501008041000000c001100210000000000131019f00000606011001c700060000000a001d160e16090000040f000000060a00002900000060031002700000058503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900000fc20000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00000fbe0000c13d0000001f0740019000000fcf0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012df0000613d0000001f01400039000000600210018f0000000001a20019000000000021004b00000000020000390000000102004039000005900010009c0000004d0000213d00000001002001900000004d0000c13d000000400010043f000000200030008c00000ba90000413d00000000010a0433000000000001004b0000000002000039000000010200c039000000000021004b00000ba90000c13d000000000001004b000011890000613d0000000901000029000000000010043f0000000901000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000080200002900000608022000d1000000000101043b000000000301041a0000000002230019000000000021041b000006090100004100000000001004430000000001000414000005850010009c0000058501008041000000c0011002100000060a011001c70000800b02000039160e16090000040f0000000100200190000012180000613d000000000101043b000600000001001d0000000a01000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d0000000602000029000000a0022002100000000803000029000000010030008c00000000030000190000060b03006041000000000223019f0000000906000029000000000262019f000000000101043b000000000021041b0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000004030000390000060c0400004100000000050000190000000a07000029160e16040000040f000000010020019000000ba90000613d0000000a02000029000800080020002d0000000a070000290000000107700039000000080070006c00000f6d0000613d0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000004030000390000060c0400004100000000050000190000000906000029000a00000007001d160e16040000040f00000001002001900000102f0000c13d00000ba90000013d0000063201000041000000000010043f0000001101000039000000040010043f000006060100004100001610000104300000060400100198000010e60000c13d000000050000006b0000104e0000613d0000000401000029000000000001041b0000000901000029000000000010043f0000000901000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000801000029000000000010043f0000000901000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000201041a0000000102200039000000000021041b000006090100004100000000001004430000000001000414000005850010009c0000058501008041000000c0011002100000060a011001c70000800b02000039160e16090000040f0000000100200190000012180000613d000000000101043b000600000001001d0000000701000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d0000000602000029000000a00220021000000008022001af0000060b022001c7000000000101043b000000000021041b0000000a010000290000060b00100198000010ba0000c13d00000007010000290000000101100039000600000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b000000000101041a000000000001004b000010ba0000c13d0000000401000039000000000101041a000000060010006b000010ba0000613d0000000601000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000000101043b0000000a02000029000000000021041b0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000004030000390000060c04000041000000090500002900000008060000290000000707000029160e16040000040f000000010020019000000a770000c13d00000ba90000013d00000585023001970000001f0420018f0000060703200198000010d30000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000010cf0000c13d000000000004004b000010e00000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000001610000104300000063101000041000000000010043f00000603010000410000161000010430000000400300043d00000605020000410000000000230435000300000003001d000000040230003900000006030000290000000000320435000000000300041400000018011002700000058902100197000000040020008c000011080000c13d0000000103000031000000200030008c00000020040000390000000004034019000011320000013d000000400300043d00000605020000410000000000230435000100000003001d000000040230003900000005030000290000000000320435000000000300041400000018011002700000058902100197000000040020008c000011490000c13d0000000103000031000000200030008c00000020040000390000000004034019000011730000013d0000000301000029000005850010009c00000585010080410000004001100210000005850030009c0000058503008041000000c003300210000000000113019f00000606011001c7160e16090000040f00000060031002700000058503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000305700029000011210000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b0000111d0000c13d000000000006004b0000112e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000118d0000613d0000001f01400039000000600210018f0000000301200029000000000021004b00000000020000390000000102004039000005900010009c0000004d0000213d00000001002001900000004d0000c13d000000400010043f000000200030008c00000ba90000413d00000003010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000ba90000c13d000000000001004b0000104a0000c13d000011890000013d0000000101000029000005850010009c00000585010080410000004001100210000005850030009c0000058503008041000000c003300210000000000113019f00000606011001c7160e16090000040f00000060031002700000058503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000105700029000011620000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b0000115e0000c13d000000000006004b0000116f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011990000613d0000001f01400039000000600210018f0000000101200029000000000021004b00000000020000390000000102004039000005900010009c0000004d0000213d00000001002001900000004d0000c13d000000400010043f000000200030008c00000ba90000413d00000001010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000ba90000c13d000000000001004b000006e60000c13d0000064201000041000000000010043f000006030100004100001610000104300000001f0530018f0000060706300198000000400200043d0000000004620019000011a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011940000c13d000011a40000013d0000001f0530018f0000060706300198000000400200043d0000000004620019000011a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011a00000c13d000000000005004b000011b10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000005850020009c00000585020080410000004002200210000000000112019f00001610000104300000000401000039000000000101041a000a00000001001d0000001901000039000000000201041a00000604002001980000122a0000c13d0000000901000029000000000010043f0000000901000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d000000070200002900000608022000d1000000000101043b000000000301041a0000000002230019000000000021041b000006090100004100000000001004430000000001000414000005850010009c0000058501008041000000c0011002100000060a011001c70000800b02000039160e16090000040f0000000100200190000012180000613d000000000101043b000800000001001d0000000a01000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f000000010020019000000ba90000613d0000000802000029000000a0022002100000000703000029000000010030008c00000000030000190000060b03006041000000000223019f0000000906000029000000000262019f000000000101043b000000000021041b0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000004030000390000060c0400004100000000050000190000000a07000029160e16040000040f000000010020019000000ba90000613d0000000a02000029000800070020002d0000000a070000290000000107700039000000080070006c000012eb0000613d0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000004030000390000060c0400004100000000050000190000000906000029000a00000007001d160e16040000040f0000000100200190000012050000c13d00000ba90000013d000000000001042f000000400300043d00000605020000410000000000230435000200000003001d000000040230003900000006030000290000000000320435000000000300041400000018011002700000058902100197000000040020008c0000123b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000012650000013d000000400300043d00000605010000410000000000130435000800000003001d000000040130003900000009030000290000000000310435000000000100041400000018022002700000058902200197000000040020008c0000127c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000012a60000013d0000000201000029000005850010009c00000585010080410000004001100210000005850030009c0000058503008041000000c003300210000000000113019f00000606011001c7160e16090000040f00000060031002700000058503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000205700029000012540000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b000012500000c13d000000000006004b000012610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012bd0000613d0000001f01400039000000600210018f0000000201200029000000000021004b00000000020000390000000102004039000005900010009c0000004d0000213d00000001002001900000004d0000c13d000000400010043f000000200030008c00000ba90000413d00000002010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000ba90000c13d000000000001004b000003180000c13d000011890000013d0000000803000029000005850030009c00000585030080410000004003300210000005850010009c0000058501008041000000c001100210000000000131019f00000606011001c7160e16090000040f00000060031002700000058503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000012950000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000012910000c13d000000000006004b000012a20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012d30000613d0000001f01400039000000600210018f0000000801200029000000000021004b00000000020000390000000102004039000005900010009c0000004d0000213d00000001002001900000004d0000c13d000000400010043f000000200030008c00000ba90000413d00000008010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000ba90000c13d000000000001004b000011890000613d000011be0000013d0000001f0530018f0000060706300198000000400200043d0000000004620019000011a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012c40000c13d000011a40000013d0000063201000041000000000010043f0000003201000039000000040010043f000006060100004100001610000104300000063301000041000000000010043f000006030100004100001610000104300000001f0530018f0000060706300198000000400200043d0000000004620019000011a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012da0000c13d000011a40000013d0000001f0530018f0000060706300198000000400200043d0000000004620019000011a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012e60000c13d000011a40000013d000000090000006b000012f10000c13d0000060d01000041000000000010043f0000060301000041000016100001043000000008010000290000000402000039000000000012041b00000df80000013d0000000043010434000000000132043600000652063001970000001f0530018f000000000014004b0000130b0000813d000000000006004b000013070000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000013010000c13d000000000005004b000013210000613d0000000007010019000013170000013d0000000007610019000000000006004b000013140000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000013100000c13d000000000005004b000013210000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900000652023001970000000001210019000000000001042d000000200300003900000000033104360000000042020434000000000023043500000652062001970000001f0520018f0000004001100039000000000014004b000013400000813d000000000006004b0000133c0000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000013360000c13d000000000005004b000013560000613d00000000070100190000134c0000013d0000000007610019000000000006004b000013490000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000013450000c13d000000000005004b000013560000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f0220003900000652022001970000000001120019000000000001042d0000058902200197000000000020043f000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f00000001002001900000136a0000613d000000000101043b000000000001042d000000000100001900001610000104300000001f0220003900000652022001970000000001120019000000000021004b00000000020000390000000102004039000005900010009c000013780000213d0000000100200190000013780000c13d000000400010043f000000000001042d0000063201000041000000000010043f0000004101000039000000040010043f00000606010000410000161000010430000000400100043d000006550010009c000013840000813d0000004002100039000000400020043f000000000001042d0000063201000041000000000010043f0000004101000039000000040010043f000006060100004100001610000104300000001a05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b000013b80000c13d000000400100043d0000000003210436000000000006004b000013a50000613d000000000050043f000000000002004b000013ab0000613d0000059a0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b0000139d0000413d000013ac0000013d00000653044001970000000000430435000000000002004b00000020040000390000000004006039000013ac0000013d00000000040000190000003f0240003900000652032001970000000002130019000000000032004b00000000030000390000000103004039000005900020009c000013be0000213d0000000100300190000013be0000c13d000000400020043f000000000001042d0000063201000041000000000010043f0000002201000039000000040010043f000006060100004100001610000104300000063201000041000000000010043f0000004101000039000000040010043f00000606010000410000161000010430000000000301001900000000011200a9000000000003004b000013cb0000613d00000000033100d9000000000023004b000013cc0000c13d000000000001042d0000063201000041000000000010043f0000001101000039000000040010043f000006060100004100001610000104300000000101000039000000000101041a00000589011001970000000002000411000000000021004b000013d90000c13d000000000001042d000000400100043d000000440210003900000630030000410000000000320435000005a602000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000005850010009c00000585010080410000004001100210000005a7011001c700001610000104300004000000000002000200000002001d000000000002004b000014ac0000613d00000000050100190000000401000039000000000101041a000400000001001d0000001901000039000000000101041a0000060400100198000014490000613d000000400b00043d000006050200004100000000002b0435000000000200041100000589022001970000000403b000390000000000230435000000000300041400000018011002700000058902100197000000040020008c000014060000c13d0000000103000031000000200030008c00000020040000390000000004034019000014340000013d000100000005001d0000058500b0009c000005850100004100000000010b40190000004001100210000005850030009c0000058503008041000000c003300210000000000113019f00000606011001c700030000000b001d160e16090000040f000000030b00002900000060031002700000058503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014220000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000141e0000c13d000000000006004b0000142f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014bf0000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000005900010009c000014b50000213d0000000100200190000014b50000c13d000000400010043f0000001f0030008c000014a40000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000014a40000c13d000000000001004b000014bb0000613d0000058901500197000300000001001d000000000010043f0000000901000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f0000000100200190000014a40000613d000000020200002900000608022000d1000000000101043b000000000301041a0000000002230019000000000021041b000006090100004100000000001004430000000001000414000005850010009c0000058501008041000000c0011002100000060a011001c70000800b02000039160e16090000040f0000000100200190000014b00000613d000000000101043b000100000001001d0000000401000029000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f0000000100200190000014a40000613d0000000102000029000000a0022002100000000203000029000000010030008c00000000030000190000060b03006041000000000223019f0000000306000029000000000262019f000000000101043b000000000021041b0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000004030000390000060c0400004100000000050000190000000407000029160e16040000040f00000004070000290000000100200190000014a40000613d000200020070002d0000000107700039000000020070006c000014a60000613d0000000001000414000005850010009c0000058501008041000000c0011002100000058a011001c70000800d0200003900000004030000390000060c0400004100000000050000190000000306000029000400000007001d0000000407000029160e16040000040f00000004070000290000000100200190000014910000c13d00000000010000190000161000010430000000030000006b000014b10000613d00000002010000290000000402000039000000000012041b000000000001042d0000060e01000041000000000010043f00000603010000410000161000010430000000000001042f0000060d01000041000000000010043f000006030100004100001610000104300000063201000041000000000010043f0000004101000039000000040010043f000006060100004100001610000104300000064201000041000000000010043f000006030100004100001610000104300000001f0530018f0000060706300198000000400200043d0000000004620019000014ca0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014c60000c13d000000000005004b000014d70000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000005850020009c00000585020080410000004002200210000000000112019f00001610000104300001000000000002000000000001004b0000150e0000613d000100000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f00000001002001900000150c0000613d000000000101043b000000000101041a000006170010019800000001020000290000150e0000c13d000000000001004b0000150b0000c13d0000000401000039000000000101041a000000000021004b0000150e0000a13d000000010220008a000100000002001d000000000020043f0000000801000039000000200010043f0000000001000414000005850010009c0000058501008041000000c00110021000000601011001c70000801002000039160e16090000040f00000001002001900000150c0000613d000000000101043b000000000101041a000000000001004b0000000102000029000014f80000613d000000000001042d000000000100001900001610000104300000064801000041000000000010043f000006030100004100001610000104300004000000000002000000400d00043d0000006405d00039000000800c0000390000000000c504350000004405d00039000000000035043500000589011001970000002403d000390000000000130435000006560100004100000000001d0435000000000100041100000589011001970000000403d0003900000000001304350000008403d000390000000051040434000000000013043500000652071001970000001f0610018f000000a404d00039000000000045004b0000153a0000813d000000000007004b000015360000613d00000000096500190000000008640019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000015300000c13d000000000006004b000015500000613d0000000008040019000015460000013d0000000008740019000000000007004b000015430000613d0000000009050019000000000a040019000000009b090434000000000aba043600000000008a004b0000153f0000c13d000000000006004b000015500000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f00000000005804350000000004410019000000000004043500000000040004140000058902200197000000040020008c0000155e0000c13d0000000005000415000000040550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000015940000013d00010000000c001d0000001f011000390000065201100197000000a401100039000005850010009c000005850100804100000060011002100000058500d0009c000005850300004100000000030d40190000004003300210000000000131019f000005850040009c0000058504008041000000c003400210000000000131019f00020000000d001d160e16040000040f000000020d00002900000060031002700000058503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057d0019000015800000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b0000157c0000c13d000000000006004b0000158d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000030550008a00000005055002100000000100200190000015ad0000613d0000001f01400039000000600210018f0000000001d20019000000000021004b00000000020000390000000102004039000005900010009c000015df0000213d0000000100200190000015df0000c13d000000400010043f0000001f0030008c000015ab0000a13d00000000010d04330000064c00100198000015ab0000c13d0000000502500270000000000201001f000005a101100197000006560010009c00000000010000390000000101006039000000000001042d00000000010000190000161000010430000000000003004b000015b10000c13d0000006002000039000015d80000013d0000001f0230003900000657022001970000003f022000390000065804200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000005900040009c000015df0000213d0000000100500190000015df0000c13d000000400040043f0000001f0430018f00000000063204360000060705300198000100000006001d0000000003560019000015cb0000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b000015c70000c13d000000000004004b000015d80000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000015e50000c13d0000063d01000041000000000010043f000006030100004100001610000104300000063201000041000000000010043f0000004101000039000000040010043f000006060100004100001610000104300000000102000029000005850020009c00000585020080410000004002200210000005850010009c00000585010080410000006001100210000000000121019f0000161000010430000000000001042f000005850010009c00000585010080410000004001100210000005850020009c00000585020080410000006002200210000000000112019f0000000002000414000005850020009c0000058502008041000000c002200210000000000112019f0000058a011001c70000801002000039160e16090000040f0000000100200190000016020000613d000000000101043b000000000001042d0000000001000019000016100001043000001607002104210000000102000039000000000001042d0000000002000019000000000001042d0000160c002104230000000102000039000000000001042d0000000002000019000000000001042d0000160e000004320000160f0001042e000016100001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff4d696e74696679204162737472616374204b65797300000000000000000000004d4e4641424b0000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000001000000000000000009addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff599336d74a1247d50642b66dd6abeaa5484f6bd96b415b31bb99e26578c93978a66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688000000000000000000000000000000000000000000000000001550f7dca700000000000000000000000000000000000000000000000000000021c0331d5dc000dd9f5a34108c0bcaa6a6937c38d0dc131b5b45fe424ebe2706e6e48d4aa1d0fdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000fa83c7b582e3ab0c5e4d1a1984d9e847ddb0202e158dcb115a8c590099a009c2057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff64068747470733a2f2f67656e657369732d6d657461732e6d696e746966792e7879057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e7a00000000000000000000000000000000000000000000000000000000000000057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63f7d3e3dbe000000000000000000000000000000000000000000000000000000000000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb60000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000aaeb6d7670e522a718067333cd4effffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf0000000000000000000000c800000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000065c1603700000000000000000000000000000000000000000000000000000000abd017e900000000000000000000000000000000000000000000000000000000d5abeb0000000000000000000000000000000000000000000000000000000000ed9aab5000000000000000000000000000000000000000000000000000000000fb796e6b00000000000000000000000000000000000000000000000000000000fb796e6c00000000000000000000000000000000000000000000000000000000fd8d9e3900000000000000000000000000000000000000000000000000000000ed9aab5100000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000e62f89ea00000000000000000000000000000000000000000000000000000000e62f89eb00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000e25ad7e600000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000cfc86f7a00000000000000000000000000000000000000000000000000000000cfc86f7b00000000000000000000000000000000000000000000000000000000d16bb39000000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000c9bb881000000000000000000000000000000000000000000000000000000000abd017ea00000000000000000000000000000000000000000000000000000000b7c0b8e800000000000000000000000000000000000000000000000000000000b88d4fde000000000000000000000000000000000000000000000000000000008da5cb5a00000000000000000000000000000000000000000000000000000000a1a8c59400000000000000000000000000000000000000000000000000000000a70138c000000000000000000000000000000000000000000000000000000000a70138c100000000000000000000000000000000000000000000000000000000ab7b499300000000000000000000000000000000000000000000000000000000a1a8c59500000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000009a3dff22000000000000000000000000000000000000000000000000000000009a3dff23000000000000000000000000000000000000000000000000000000009d46199a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000006f8b44af00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000072b0d90c000000000000000000000000000000000000000000000000000000006f8b44b00000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000065c160380000000000000000000000000000000000000000000000000000000069edb52c000000000000000000000000000000000000000000000000000000006a87bdcd000000000000000000000000000000000000000000000000000000003ccfd60a0000000000000000000000000000000000000000000000000000000055f804b2000000000000000000000000000000000000000000000000000000005dd0f75b000000000000000000000000000000000000000000000000000000006352211d000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000065216a41000000000000000000000000000000000000000000000000000000005dd0f75c00000000000000000000000000000000000000000000000000000000631588d8000000000000000000000000000000000000000000000000000000005944c752000000000000000000000000000000000000000000000000000000005944c75300000000000000000000000000000000000000000000000000000000595d22130000000000000000000000000000000000000000000000000000000055f804b300000000000000000000000000000000000000000000000000000000589889a00000000000000000000000000000000000000000000000000000000042842e0d00000000000000000000000000000000000000000000000000000000484b973b00000000000000000000000000000000000000000000000000000000484b973c0000000000000000000000000000000000000000000000000000000055a16c240000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000046fff98d000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000003e5c7a3f0000000000000000000000000000000000000000000000000000000040b0960a00000000000000000000000000000000000000000000000000000000177319cb000000000000000000000000000000000000000000000000000000002a5520590000000000000000000000000000000000000000000000000000000035401b720000000000000000000000000000000000000000000000000000000035401b73000000000000000000000000000000000000000000000000000000003669c700000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000003219862a0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000259041c500000000000000000000000000000000000000000000000000000000177319cc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde0200000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000012b365100000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000004634d8d00000000000000000000000000000000000000000000000000000000059b3d590200000000000000000000000000000000000014000000a000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00200000000000000000000000000000000000040000000000000000000000000b05e92fa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000ff0000e18bc08a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe00000000000000000000000000000000000000000000000010000000000000001796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef2e07630000000000000000000000000000000000000000000000000000000000b562e8dd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000000000000000000000020000000000000000000000000000000000002000000080000000000000000086b88155be746f192b9657522b4d2c95f502f9920559081bfd33ed2113206c30a4a8615bd719d87baaae8fb35a0b60a901d35720fcb9f0814ac1baca0369a1ef000000010000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30000000000000000000000000000000000000000000000000000000000000002f61627374726163742f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfa14c4b5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f00000000000000000000000000000000000000000000c617113400112233445500000000000000000000000000000000000000440000001600000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffff0000000000000000000000000000000000000000ffffff17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3197e4f91a4b7e108aff6d29a03d7b9f94705ad90ed51b377784a1943ea32257e7f41d9e5bb36b4ade7bdf008c7f40a9d0b9f0494ef7f8c29fc3625b7ca8bd05859cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f398f4eb604000000000000000000000000000000000000000000000000000000007810bd47de260c3e9ee10061cf438099dd12256c79485f12f94dbccc981e806cc9a764d36358b99bfce5661b88b5fbf6e8e4a986c3715cd0d539445dce1ebba6f560625a00000000000000000000000000000000000000000000000000000000afd7297400000000000000000000000000000000000000000000000000000000327c6a5600000000000000000000000000000000000000000000000000000000c75933e70000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572fc4c6036000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000002c5211c6000000000000000000000000000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c000000000000000000000000000000000000000000ffffffffffffffffffffffff455243323938313a20496e76616c696420706172616d6574657273000000000000000000000000000000000000000000000000640000008000000000000000008a164f6300000000000000000000000000000000000000000000000000000000e6c4247b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffe048e71000000000000000000000000000000000000000000000000000000000d1a57ed600000000000000000000000000000000000000000000000000000000cf04cda239951ec56377dd6c7248e3beb68b1dda9dcabd00f35db6382369571a0000000000000000000000000000000000000040000000000000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be000000000000000000000000000000000000000000000000000000004c80d8be00000000000000000000000000000000000000000000000000000000ea553b340000000000000000000000000000000000000000000000000000000071c423c192a95ad66c8ed5c75de07fe1ff3f21bb0e7269aaf562a65ac2ca74f1db89e3f400000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e4000000000000000000000000000000000000000000000000000000007d5708edce49f05b4fbd148c62280e2e3f00f52ee87d446be344dde5ef52c165f4df6ae50000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff01ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffc0150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe0000000000000000000000000000000000000000000000000000000000000000025d65e8cf32f984474d0e400df84be77911f8037e56bd327aa16603d835ea73a

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

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