{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/peripheral_contracts/SafeMathE.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "library SafeMathE {\n    function add(uint256 x, uint256 y) internal pure returns (uint256 z) {\n        require((z = x + y) >= x, \"ds-math-add-overflow\");\n    }\n\n    function sub(uint256 x, uint256 y) internal pure returns (uint256 z) {\n        require((z = x - y) <= x, \"ds-math-sub-underflow\");\n    }\n\n    function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {\n        require(y == 0 || (z = x * y) / y == x, \"ds-math-mul-overflow\");\n    }\n\n    // https://ethereum.stackexchange.com/questions/80642/how-can-i-use-the-mathematical-constant-e-in-solidity/80643\n    // e represented as eN / eD\n    // Careful of integer overflow here\n    uint256 constant eNum = 271828;\n    uint256 constant eDen = 100000;\n\n    // function eN constant returns\n    function eN() internal pure returns (uint256) {\n        return eNum;\n    }\n\n    function eD() internal pure returns (uint256) {\n        return eDen;\n    }\n}"
}