{
    "Function": "constructor",
    "File": "contracts/test/CryptoPunks.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor() {\n        //balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens\n        owner = msg.sender;\n        totalSupply = 10000; // Update total supply\n        punksRemainingToAssign = totalSupply;\n        name = \"CRYPTOPUNKS\"; // Set the name for display purposes\n        symbol = \"\\xcf\\xbe\"; // Set the symbol for display purposes\n        decimals = 0; // Amount of decimals for display purposes\n    }"
}