{
    "Function": "multiProofVerify",
    "File": "contracts/lib/openzeppelin-contracts/contracts/utils/cryptography/MerkleProof.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "processMultiProof"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function multiProofVerify(\n        bytes32 root,\n        bytes32[] memory leafs,\n        bytes32[] memory proofs,\n        bool[] memory proofFlag\n    ) internal pure returns (bool) {\n        return processMultiProof(leafs, proofs, proofFlag) == root;\n    }"
}