{
    "Function": "withdraw",
    "File": "contracts/IdentityFactory.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function withdraw(IERC20 token, address to, uint256 tokenAmount) public {\n\t\trequire(msg.sender == creator, 'ONLY_CREATOR');\n\t\ttoken.transfer(to, tokenAmount);\n\t}"
}