{
    "Function": "mintableShares",
    "File": "contracts/libraries/NAV.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function mintableShares(Data storage self, uint _amount) internal view returns (uint) {\n        uint _totalSupply = self.totalSupply;\n        if (_totalSupply != 0) {\n            return (_amount * _totalSupply) / self.lastBalance;\n        }\n\n        return _amount - INITIAL_QUANTITY;\n    }"
}