{
    "Function": "_setPartialPaused",
    "File": "contracts/governance/Pausable.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _setPartialPaused(bool _toPause) internal {\n        if (_toPause == _partialPaused) {\n            return;\n        }\n        _partialPaused = _toPause;\n        if (_partialPaused) {\n            lastPausePartialTime = block.timestamp;\n        }\n        emit PartialPauseChanged(_partialPaused);\n    }"
}