{
    "Function": "constructor",
    "File": "contracts/Identity.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(address[] memory addrs) {\n\t\tuint len = addrs.length;\n\t\tfor (uint i=0; i<len; i++) {\n\t\t\t// @TODO should we allow setting to any arb value here?\n\t\t\tprivileges[addrs[i]] = bytes32(uint(1));\n\t\t\temit LogPrivilegeChanged(addrs[i], bytes32(uint(1)));\n\t\t}\n\t}"
}