{
    "Function": "_setImplementation",
    "File": "contracts/upgradeability/ERC1967Upgrade.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "StorageSlot",
        "Address"
    ],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [
        "getAddressSlot",
        "isContract"
    ],
    "Low-Level Calls": [],
    "Code": "function _setImplementation(address newImplementation) private {\n        require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n        StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n    }"
}