@josojo/forkonomics-contracts
Version:
realitytoken basic contracts
1,237 lines • 39.6 kB
JSON
{
"contractName": "ERC20",
"abi": [
{
"constant": true,
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "_who",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_to",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "owner",
"type": "address"
},
{
"indexed": true,
"name": "spender",
"type": "address"
},
{
"indexed": false,
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "from",
"type": "address"
},
{
"indexed": true,
"name": "to",
"type": "address"
},
{
"indexed": false,
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"constant": true,
"inputs": [
{
"name": "_owner",
"type": "address"
},
{
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_from",
"type": "address"
},
{
"name": "_to",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_spender",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
],
"bytecode": "0x",
"deployedBytecode": "0x",
"sourceMap": "",
"deployedSourceMap": "",
"source": "pragma solidity ^0.4.24;\n\nimport \"./ERC20Basic.sol\";\n\n\n/**\n * @title ERC20 interface\n * @dev see https://github.com/ethereum/EIPs/issues/20\n */\ncontract ERC20 is ERC20Basic {\n function allowance(address _owner, address _spender)\n public view returns (uint256);\n\n function transferFrom(address _from, address _to, uint256 _value)\n public returns (bool);\n\n function approve(address _spender, uint256 _value) public returns (bool);\n event Approval(\n address indexed owner,\n address indexed spender,\n uint256 value\n );\n}\n",
"sourcePath": "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol",
"ast": {
"absolutePath": "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol",
"exportedSymbols": {
"ERC20": [
5099
]
},
"id": 5100,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 5058,
"literals": [
"solidity",
"^",
"0.4",
".24"
],
"nodeType": "PragmaDirective",
"src": "0:24:12"
},
{
"absolutePath": "openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol",
"file": "./ERC20Basic.sol",
"id": 5059,
"nodeType": "ImportDirective",
"scope": 5100,
"sourceUnit": 5132,
"src": "26:26:12",
"symbolAliases": [],
"unitAlias": ""
},
{
"baseContracts": [
{
"arguments": null,
"baseName": {
"contractScope": null,
"id": 5060,
"name": "ERC20Basic",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 5131,
"src": "162:10:12",
"typeDescriptions": {
"typeIdentifier": "t_contract$_ERC20Basic_$5131",
"typeString": "contract ERC20Basic"
}
},
"id": 5061,
"nodeType": "InheritanceSpecifier",
"src": "162:10:12"
}
],
"contractDependencies": [
5131
],
"contractKind": "contract",
"documentation": "@title ERC20 interface\n@dev see https://github.com/ethereum/EIPs/issues/20",
"fullyImplemented": false,
"id": 5099,
"linearizedBaseContracts": [
5099,
5131
],
"name": "ERC20",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": null,
"documentation": null,
"id": 5070,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": true,
"modifiers": [],
"name": "allowance",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5066,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5063,
"name": "_owner",
"nodeType": "VariableDeclaration",
"scope": 5070,
"src": "196:14:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5062,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "196:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5065,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5070,
"src": "212:16:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5064,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "212:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "195:34:12"
},
"payable": false,
"returnParameters": {
"id": 5069,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5068,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5070,
"src": "255:7:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5067,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "255:7:12",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "254:9:12"
},
"scope": 5099,
"src": "177:87:12",
"stateMutability": "view",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5081,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "transferFrom",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5077,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5072,
"name": "_from",
"nodeType": "VariableDeclaration",
"scope": 5081,
"src": "290:13:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5071,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "290:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5074,
"name": "_to",
"nodeType": "VariableDeclaration",
"scope": 5081,
"src": "305:11:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5073,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "305:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5076,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5081,
"src": "318:14:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5075,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "318:7:12",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "289:44:12"
},
"payable": false,
"returnParameters": {
"id": 5080,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5079,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5081,
"src": "354:4:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5078,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "354:4:12",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "353:6:12"
},
"scope": 5099,
"src": "268:92:12",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5090,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "approve",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5086,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5083,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5090,
"src": "381:16:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5082,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "381:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5085,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5090,
"src": "399:14:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5084,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "399:7:12",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "380:34:12"
},
"payable": false,
"returnParameters": {
"id": 5089,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5088,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5090,
"src": "431:4:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5087,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "431:4:12",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "430:6:12"
},
"scope": 5099,
"src": "364:73:12",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"anonymous": false,
"documentation": null,
"id": 5098,
"name": "Approval",
"nodeType": "EventDefinition",
"parameters": {
"id": 5097,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5092,
"indexed": true,
"name": "owner",
"nodeType": "VariableDeclaration",
"scope": 5098,
"src": "460:21:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5091,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "460:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5094,
"indexed": true,
"name": "spender",
"nodeType": "VariableDeclaration",
"scope": 5098,
"src": "487:23:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5093,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "487:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5096,
"indexed": false,
"name": "value",
"nodeType": "VariableDeclaration",
"scope": 5098,
"src": "516:13:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5095,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "516:7:12",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "454:79:12"
},
"src": "440:94:12"
}
],
"scope": 5100,
"src": "144:392:12"
}
],
"src": "0:537:12"
},
"legacyAST": {
"absolutePath": "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol",
"exportedSymbols": {
"ERC20": [
5099
]
},
"id": 5100,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 5058,
"literals": [
"solidity",
"^",
"0.4",
".24"
],
"nodeType": "PragmaDirective",
"src": "0:24:12"
},
{
"absolutePath": "openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol",
"file": "./ERC20Basic.sol",
"id": 5059,
"nodeType": "ImportDirective",
"scope": 5100,
"sourceUnit": 5132,
"src": "26:26:12",
"symbolAliases": [],
"unitAlias": ""
},
{
"baseContracts": [
{
"arguments": null,
"baseName": {
"contractScope": null,
"id": 5060,
"name": "ERC20Basic",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 5131,
"src": "162:10:12",
"typeDescriptions": {
"typeIdentifier": "t_contract$_ERC20Basic_$5131",
"typeString": "contract ERC20Basic"
}
},
"id": 5061,
"nodeType": "InheritanceSpecifier",
"src": "162:10:12"
}
],
"contractDependencies": [
5131
],
"contractKind": "contract",
"documentation": "@title ERC20 interface\n@dev see https://github.com/ethereum/EIPs/issues/20",
"fullyImplemented": false,
"id": 5099,
"linearizedBaseContracts": [
5099,
5131
],
"name": "ERC20",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": null,
"documentation": null,
"id": 5070,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": true,
"modifiers": [],
"name": "allowance",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5066,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5063,
"name": "_owner",
"nodeType": "VariableDeclaration",
"scope": 5070,
"src": "196:14:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5062,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "196:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5065,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5070,
"src": "212:16:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5064,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "212:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "195:34:12"
},
"payable": false,
"returnParameters": {
"id": 5069,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5068,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5070,
"src": "255:7:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5067,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "255:7:12",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "254:9:12"
},
"scope": 5099,
"src": "177:87:12",
"stateMutability": "view",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5081,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "transferFrom",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5077,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5072,
"name": "_from",
"nodeType": "VariableDeclaration",
"scope": 5081,
"src": "290:13:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5071,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "290:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5074,
"name": "_to",
"nodeType": "VariableDeclaration",
"scope": 5081,
"src": "305:11:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5073,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "305:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5076,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5081,
"src": "318:14:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5075,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "318:7:12",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "289:44:12"
},
"payable": false,
"returnParameters": {
"id": 5080,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5079,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5081,
"src": "354:4:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5078,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "354:4:12",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "353:6:12"
},
"scope": 5099,
"src": "268:92:12",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"body": null,
"documentation": null,
"id": 5090,
"implemented": false,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [],
"name": "approve",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5086,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5083,
"name": "_spender",
"nodeType": "VariableDeclaration",
"scope": 5090,
"src": "381:16:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5082,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "381:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5085,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 5090,
"src": "399:14:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5084,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "399:7:12",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "380:34:12"
},
"payable": false,
"returnParameters": {
"id": 5089,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5088,
"name": "",
"nodeType": "VariableDeclaration",
"scope": 5090,
"src": "431:4:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 5087,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "431:4:12",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "430:6:12"
},
"scope": 5099,
"src": "364:73:12",
"stateMutability": "nonpayable",
"superFunction": null,
"visibility": "public"
},
{
"anonymous": false,
"documentation": null,
"id": 5098,
"name": "Approval",
"nodeType": "EventDefinition",
"parameters": {
"id": 5097,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5092,
"indexed": true,
"name": "owner",
"nodeType": "VariableDeclaration",
"scope": 5098,
"src": "460:21:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5091,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "460:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5094,
"indexed": true,
"name": "spender",
"nodeType": "VariableDeclaration",
"scope": 5098,
"src": "487:23:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 5093,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "487:7:12",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 5096,
"indexed": false,
"name": "value",
"nodeType": "VariableDeclaration",
"scope": 5098,
"src": "516:13:12",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5095,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "516:7:12",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
}
],
"src": "454:79:12"
},
"src": "440:94:12"
}
],
"scope": 5100,
"src": "144:392:12"
}
],
"src": "0:537:12"
},
"compiler": {
"name": "solc",
"version": "0.4.25+commit.59dbf8f1.Emscripten.clang"
},
"networks": {},
"schemaVersion": "3.0.0-beta.1",
"updatedAt": "2018-10-27T11:24:32.617Z"
}