{
    "Function": "isLeapYear",
    "File": "packages/protocol/contracts/automata-attestation/utils/X509DateUtils.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function isLeapYear(uint16 year) internal pure returns (bool) {\n        if (year % 4 != 0) return false;\n        if (year % 100 != 0) return true;\n        if (year % 400 != 0) return false;\n        return true;\n    }"
}