{
    "Function": "_getTCR",
    "File": "contracts/src/Dependencies/LiquityBase.sol",
    "Parent Contracts": [
        "contracts/src/Interfaces/ILiquityBase.sol"
    ],
    "High-Level Calls": [
        "LiquityMath"
    ],
    "Internal Calls": [
        "getEntireBranchColl",
        "getEntireBranchDebt"
    ],
    "Library Calls": [
        "_computeCR"
    ],
    "Low-Level Calls": [],
    "Code": "function _getTCR(uint256 _price) internal view returns (uint256 TCR) {\n        uint256 entireSystemColl = getEntireBranchColl();\n        uint256 entireSystemDebt = getEntireBranchDebt();\n\n        TCR = LiquityMath._computeCR(entireSystemColl, entireSystemDebt, _price);\n\n        return TCR;\n    }"
}