{
    "Function": "getExchangeRate",
    "File": "contracts/test/TestContracts/GasGuzzlerToken.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getExchangeRate() external view returns (uint256) {\n        // Expensive SLOAD loop that hits the block gas limit before completing\n        for (uint256 i = 0; i < 1000000; i++) {\n            uint256 unusedVar = pointlessStorageVar + i;\n        }\n        return 11e17;\n    }"
}