{
    "Function": "_abs",
    "File": "contracts/HubbleViewer.sol",
    "Parent Contracts": [
        "contracts/Interfaces.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _abs(int x) private pure returns (int) {\n        return x >= 0 ? x : -x;\n    }"
}