{
    "Function": "_mint",
    "File": "contracts/contracts/Pair.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_updateFor"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _mint(address dst, uint amount) internal {\n        _updateFor(dst); // balances must be updated on mint/burn/transfer\n        totalSupply += amount;\n        balanceOf[dst] += amount;\n        emit Transfer(address(0), dst, amount);\n    }"
}