{
  "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.23;\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": [
        22837
      ]
    },
    "id": 22838,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 22796,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".23"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:67"
      },
      {
        "absolutePath": "openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol",
        "file": "./ERC20Basic.sol",
        "id": 22797,
        "nodeType": "ImportDirective",
        "scope": 22838,
        "sourceUnit": 22870,
        "src": "26:26:67",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 22798,
              "name": "ERC20Basic",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 22869,
              "src": "162:10:67",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_ERC20Basic_$22869",
                "typeString": "contract ERC20Basic"
              }
            },
            "id": 22799,
            "nodeType": "InheritanceSpecifier",
            "src": "162:10:67"
          }
        ],
        "contractDependencies": [
          22869
        ],
        "contractKind": "contract",
        "documentation": "@title ERC20 interface\n@dev see https://github.com/ethereum/EIPs/issues/20",
        "fullyImplemented": false,
        "id": 22837,
        "linearizedBaseContracts": [
          22837,
          22869
        ],
        "name": "ERC20",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 22808,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "allowance",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 22804,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22801,
                  "name": "owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 22808,
                  "src": "196:13:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22800,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "196:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22803,
                  "name": "spender",
                  "nodeType": "VariableDeclaration",
                  "scope": 22808,
                  "src": "211:15:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22802,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "211:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "195:32:67"
            },
            "payable": false,
            "returnParameters": {
              "id": 22807,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22806,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 22808,
                  "src": "253:7:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 22805,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "253:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "252:9:67"
            },
            "scope": 22837,
            "src": "177:85:67",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 22819,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "transferFrom",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 22815,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22810,
                  "name": "from",
                  "nodeType": "VariableDeclaration",
                  "scope": 22819,
                  "src": "288:12:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22809,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "288:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22812,
                  "name": "to",
                  "nodeType": "VariableDeclaration",
                  "scope": 22819,
                  "src": "302:10:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22811,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "302:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22814,
                  "name": "value",
                  "nodeType": "VariableDeclaration",
                  "scope": 22819,
                  "src": "314:13:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 22813,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "314:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "287:41:67"
            },
            "payable": false,
            "returnParameters": {
              "id": 22818,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22817,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 22819,
                  "src": "349:4:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 22816,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "349:4:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "348:6:67"
            },
            "scope": 22837,
            "src": "266:89:67",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 22828,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "approve",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 22824,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22821,
                  "name": "spender",
                  "nodeType": "VariableDeclaration",
                  "scope": 22828,
                  "src": "376:15:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22820,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "376:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22823,
                  "name": "value",
                  "nodeType": "VariableDeclaration",
                  "scope": 22828,
                  "src": "393:13:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 22822,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "393:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "375:32:67"
            },
            "payable": false,
            "returnParameters": {
              "id": 22827,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22826,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 22828,
                  "src": "424:4:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 22825,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "424:4:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "423:6:67"
            },
            "scope": 22837,
            "src": "359:71:67",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "anonymous": false,
            "documentation": null,
            "id": 22836,
            "name": "Approval",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 22835,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22830,
                  "indexed": true,
                  "name": "owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 22836,
                  "src": "453:21:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22829,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "453:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22832,
                  "indexed": true,
                  "name": "spender",
                  "nodeType": "VariableDeclaration",
                  "scope": 22836,
                  "src": "480:23:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22831,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "480:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22834,
                  "indexed": false,
                  "name": "value",
                  "nodeType": "VariableDeclaration",
                  "scope": 22836,
                  "src": "509:13:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 22833,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "509:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "447:79:67"
            },
            "src": "433:94:67"
          }
        ],
        "scope": 22838,
        "src": "144:385:67"
      }
    ],
    "src": "0:530:67"
  },
  "legacyAST": {
    "absolutePath": "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol",
    "exportedSymbols": {
      "ERC20": [
        22837
      ]
    },
    "id": 22838,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 22796,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".23"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:67"
      },
      {
        "absolutePath": "openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol",
        "file": "./ERC20Basic.sol",
        "id": 22797,
        "nodeType": "ImportDirective",
        "scope": 22838,
        "sourceUnit": 22870,
        "src": "26:26:67",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 22798,
              "name": "ERC20Basic",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 22869,
              "src": "162:10:67",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_ERC20Basic_$22869",
                "typeString": "contract ERC20Basic"
              }
            },
            "id": 22799,
            "nodeType": "InheritanceSpecifier",
            "src": "162:10:67"
          }
        ],
        "contractDependencies": [
          22869
        ],
        "contractKind": "contract",
        "documentation": "@title ERC20 interface\n@dev see https://github.com/ethereum/EIPs/issues/20",
        "fullyImplemented": false,
        "id": 22837,
        "linearizedBaseContracts": [
          22837,
          22869
        ],
        "name": "ERC20",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 22808,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "allowance",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 22804,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22801,
                  "name": "owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 22808,
                  "src": "196:13:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22800,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "196:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22803,
                  "name": "spender",
                  "nodeType": "VariableDeclaration",
                  "scope": 22808,
                  "src": "211:15:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22802,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "211:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "195:32:67"
            },
            "payable": false,
            "returnParameters": {
              "id": 22807,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22806,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 22808,
                  "src": "253:7:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 22805,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "253:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "252:9:67"
            },
            "scope": 22837,
            "src": "177:85:67",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 22819,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "transferFrom",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 22815,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22810,
                  "name": "from",
                  "nodeType": "VariableDeclaration",
                  "scope": 22819,
                  "src": "288:12:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22809,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "288:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22812,
                  "name": "to",
                  "nodeType": "VariableDeclaration",
                  "scope": 22819,
                  "src": "302:10:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22811,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "302:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22814,
                  "name": "value",
                  "nodeType": "VariableDeclaration",
                  "scope": 22819,
                  "src": "314:13:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 22813,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "314:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "287:41:67"
            },
            "payable": false,
            "returnParameters": {
              "id": 22818,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22817,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 22819,
                  "src": "349:4:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 22816,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "349:4:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "348:6:67"
            },
            "scope": 22837,
            "src": "266:89:67",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 22828,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "approve",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 22824,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22821,
                  "name": "spender",
                  "nodeType": "VariableDeclaration",
                  "scope": 22828,
                  "src": "376:15:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22820,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "376:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22823,
                  "name": "value",
                  "nodeType": "VariableDeclaration",
                  "scope": 22828,
                  "src": "393:13:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 22822,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "393:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "375:32:67"
            },
            "payable": false,
            "returnParameters": {
              "id": 22827,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22826,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 22828,
                  "src": "424:4:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 22825,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "424:4:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "423:6:67"
            },
            "scope": 22837,
            "src": "359:71:67",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "anonymous": false,
            "documentation": null,
            "id": 22836,
            "name": "Approval",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 22835,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 22830,
                  "indexed": true,
                  "name": "owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 22836,
                  "src": "453:21:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22829,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "453:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22832,
                  "indexed": true,
                  "name": "spender",
                  "nodeType": "VariableDeclaration",
                  "scope": 22836,
                  "src": "480:23:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 22831,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "480:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 22834,
                  "indexed": false,
                  "name": "value",
                  "nodeType": "VariableDeclaration",
                  "scope": 22836,
                  "src": "509:13:67",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 22833,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "509:7:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "447:79:67"
            },
            "src": "433:94:67"
          }
        ],
        "scope": 22838,
        "src": "144:385:67"
      }
    ],
    "src": "0:530:67"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "2.0.1",
  "updatedAt": "2018-08-21T09:48:12.752Z"
}