{
    "Function": "borrowAllowed",
    "File": "src/BorrowController.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function borrowAllowed(address msgSender, address, uint) public view returns (bool) {\n        if(msgSender == tx.origin) return true;\n        return contractAllowlist[msgSender];\n    }"
}