{
    "Function": "increase_unlock_time",
    "File": "contracts/mocks/curve/MockCurveVoteEscrow.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts-0.8/token/ERC20/ERC20.sol",
        "node_modules/@openzeppelin/contracts-0.8/token/ERC20/extensions/IERC20Metadata.sol",
        "node_modules/@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol",
        "node_modules/@openzeppelin/contracts-0.8/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "require(bool,string)",
        "require(bool,string)",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function increase_unlock_time(uint256 time) external {\n        require(lockAmounts[msg.sender] > 0, \"Must have a lock\");\n        require(lockTimes[msg.sender] > block.timestamp, \"Current lock expired\");\n        require(time > lockTimes[msg.sender], \"Future time must be greater\");\n        require(time < block.timestamp + MAX_LEN, \"Lock too long\");\n        lockTimes[msg.sender] = time;\n    }"
}