{
  "contractName": "WithFailingConstructor",
  "abi": [
    {
      "inputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "constructor"
    }
  ],
  "bytecode": "0x6080604052348015600f57600080fd5b5060001515601957fe5b60358060266000396000f3fe6080604052600080fdfea165627a7a7230582026e6c1ef1759d8a7ef249148bb9fe3ab3530e68e51b31c3ffea5724e549e273f0029",
  "deployedBytecode": "0x6080604052600080fdfea165627a7a7230582026e6c1ef1759d8a7ef249148bb9fe3ab3530e68e51b31c3ffea5724e549e273f0029",
  "sourceMap": "215:83:12:-;;;251:45;8:9:-1;5:2;;;30:1;27;20:12;5:2;251:45:12;285:5;278:13;;;;;;215:83;;;;;;",
  "deployedSourceMap": "215:83:12:-;;;;;",
  "source": "pragma solidity ^0.5.0;\n\ncontract WithConstructor {\n  uint256 public value;\n\n  constructor() public {\n    value = 42;\n  }\n\n  function say() public pure returns (string memory) {\n    return \"WithConstructor\";\n  }\n}\n\ncontract WithFailingConstructor {\n  constructor() public {\n    assert(false);\n  }\n}\n\ncontract WithSelfDestruct {\n  uint256 public value;\n\n  constructor() public {\n    if (true)\n      selfdestruct(msg.sender);\n  }\n\n  function say() public pure returns (string memory) {\n    return \"WithSelfDestruct\";\n  }\n}\n\ncontract WithParentWithSelfDestruct is WithSelfDestruct {\n  function say() public pure returns (string memory) {\n    return \"WithParentWithSelfDestruct\";\n  }\n}\n\ncontract WithDelegateCall {\n  constructor(address _e) public {\n    // bytes4(keccak256(\"kill()\")) == 0x41c0e1b5\n    bytes memory data = \"\\x41\\xc0\\xe1\\xb5\";\n    (bool success,) = _e.delegatecall(data);\n    require(success);\n  }\n  \n  function say() public pure returns (string memory) {\n    return \"WithDelegateCall\";\n  }\n}\n\ncontract WithParentWithDelegateCall is WithDelegateCall {\n  constructor(address _e) public WithDelegateCall(_e) {\n  }\n\n  function say() public pure returns (string memory) {\n    return \"WithParentWithDelegateCall\";\n  }\n}\n\ncontract WithConstructorImplementation {\n  uint256 public value;\n  string public text;\n\n  constructor(uint256 _value, string memory _text) public {\n    require(_value > 0);\n    value = _value;\n    text = _text;\n  }\n}\n",
  "sourcePath": "/Users/ryan/Projects/alice-finance/openzeppelin-sdk/packages/lib/contracts/mocks/Invalid.sol",
  "ast": {
    "absolutePath": "/Users/ryan/Projects/alice-finance/openzeppelin-sdk/packages/lib/contracts/mocks/Invalid.sol",
    "exportedSymbols": {
      "WithConstructor": [
        1719
      ],
      "WithConstructorImplementation": [
        1838
      ],
      "WithDelegateCall": [
        1791
      ],
      "WithFailingConstructor": [
        1728
      ],
      "WithParentWithDelegateCall": [
        1811
      ],
      "WithParentWithSelfDestruct": [
        1761
      ],
      "WithSelfDestruct": [
        1750
      ]
    },
    "id": 1839,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 1700,
        "literals": [
          "solidity",
          "^",
          "0.5",
          ".0"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:23:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1719,
        "linearizedBaseContracts": [
          1719
        ],
        "name": "WithConstructor",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 1702,
            "name": "value",
            "nodeType": "VariableDeclaration",
            "scope": 1719,
            "src": "54:20:12",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint256",
              "typeString": "uint256"
            },
            "typeName": {
              "id": 1701,
              "name": "uint256",
              "nodeType": "ElementaryTypeName",
              "src": "54:7:12",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1709,
              "nodeType": "Block",
              "src": "100:21:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1707,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 1705,
                      "name": "value",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1702,
                      "src": "106:5:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "hexValue": "3432",
                      "id": 1706,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "number",
                      "lValueRequested": false,
                      "nodeType": "Literal",
                      "src": "114:2:12",
                      "subdenomination": null,
                      "typeDescriptions": {
                        "typeIdentifier": "t_rational_42_by_1",
                        "typeString": "int_const 42"
                      },
                      "value": "42"
                    },
                    "src": "106:10:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "id": 1708,
                  "nodeType": "ExpressionStatement",
                  "src": "106:10:12"
                }
              ]
            },
            "documentation": null,
            "id": 1710,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1703,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "90:2:12"
            },
            "returnParameters": {
              "id": 1704,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "100:0:12"
            },
            "scope": 1719,
            "src": "79:42:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1717,
              "nodeType": "Block",
              "src": "176:35:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "57697468436f6e7374727563746f72",
                    "id": 1715,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "189:17:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_31a3b5169da5035c08d9b25caf8dc3b126287039d931b211746db94a5f9527fc",
                      "typeString": "literal_string \"WithConstructor\""
                    },
                    "value": "WithConstructor"
                  },
                  "functionReturnParameters": 1714,
                  "id": 1716,
                  "nodeType": "Return",
                  "src": "182:24:12"
                }
              ]
            },
            "documentation": null,
            "id": 1718,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1711,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "137:2:12"
            },
            "returnParameters": {
              "id": 1714,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1713,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1718,
                  "src": "161:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1712,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "161:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "160:15:12"
            },
            "scope": 1719,
            "src": "125:86:12",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "25:188:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1728,
        "linearizedBaseContracts": [
          1728
        ],
        "name": "WithFailingConstructor",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 1726,
              "nodeType": "Block",
              "src": "272:24:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "hexValue": "66616c7365",
                        "id": 1723,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "bool",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "285:5:12",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "value": "false"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      ],
                      "id": 1722,
                      "name": "assert",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6390,
                      "src": "278:6:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_assert_pure$_t_bool_$returns$__$",
                        "typeString": "function (bool) pure"
                      }
                    },
                    "id": 1724,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "278:13:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 1725,
                  "nodeType": "ExpressionStatement",
                  "src": "278:13:12"
                }
              ]
            },
            "documentation": null,
            "id": 1727,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1720,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "262:2:12"
            },
            "returnParameters": {
              "id": 1721,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "272:0:12"
            },
            "scope": 1728,
            "src": "251:45:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "215:83:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1750,
        "linearizedBaseContracts": [
          1750
        ],
        "name": "WithSelfDestruct",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 1730,
            "name": "value",
            "nodeType": "VariableDeclaration",
            "scope": 1750,
            "src": "330:20:12",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint256",
              "typeString": "uint256"
            },
            "typeName": {
              "id": 1729,
              "name": "uint256",
              "nodeType": "ElementaryTypeName",
              "src": "330:7:12",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1740,
              "nodeType": "Block",
              "src": "376:51:12",
              "statements": [
                {
                  "condition": {
                    "argumentTypes": null,
                    "hexValue": "74727565",
                    "id": 1733,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "bool",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "386:4:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    },
                    "value": "true"
                  },
                  "falseBody": null,
                  "id": 1739,
                  "nodeType": "IfStatement",
                  "src": "382:40:12",
                  "trueBody": {
                    "expression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 1735,
                            "name": "msg",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6401,
                            "src": "411:3:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_message",
                              "typeString": "msg"
                            }
                          },
                          "id": 1736,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "sender",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": null,
                          "src": "411:10:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address_payable",
                            "typeString": "address payable"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_address_payable",
                            "typeString": "address payable"
                          }
                        ],
                        "id": 1734,
                        "name": "selfdestruct",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 6409,
                        "src": "398:12:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_selfdestruct_nonpayable$_t_address_payable_$returns$__$",
                          "typeString": "function (address payable)"
                        }
                      },
                      "id": 1737,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "398:24:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_tuple$__$",
                        "typeString": "tuple()"
                      }
                    },
                    "id": 1738,
                    "nodeType": "ExpressionStatement",
                    "src": "398:24:12"
                  }
                }
              ]
            },
            "documentation": null,
            "id": 1741,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1731,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "366:2:12"
            },
            "returnParameters": {
              "id": 1732,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "376:0:12"
            },
            "scope": 1750,
            "src": "355:72:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1748,
              "nodeType": "Block",
              "src": "482:36:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "5769746853656c664465737472756374",
                    "id": 1746,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "495:18:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_58a0d53a66d046d020d11a8545600304cc361abba7cf227ae045d15251087ec7",
                      "typeString": "literal_string \"WithSelfDestruct\""
                    },
                    "value": "WithSelfDestruct"
                  },
                  "functionReturnParameters": 1745,
                  "id": 1747,
                  "nodeType": "Return",
                  "src": "488:25:12"
                }
              ]
            },
            "documentation": null,
            "id": 1749,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1742,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "443:2:12"
            },
            "returnParameters": {
              "id": 1745,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1744,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1749,
                  "src": "467:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1743,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "467:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "466:15:12"
            },
            "scope": 1750,
            "src": "431:87:12",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "300:220:12"
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 1751,
              "name": "WithSelfDestruct",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 1750,
              "src": "561:16:12",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_WithSelfDestruct_$1750",
                "typeString": "contract WithSelfDestruct"
              }
            },
            "id": 1752,
            "nodeType": "InheritanceSpecifier",
            "src": "561:16:12"
          }
        ],
        "contractDependencies": [
          1750
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1761,
        "linearizedBaseContracts": [
          1761,
          1750
        ],
        "name": "WithParentWithSelfDestruct",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 1759,
              "nodeType": "Block",
              "src": "633:46:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "57697468506172656e745769746853656c664465737472756374",
                    "id": 1757,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "646:28:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_0833173257b60f10ec48eaae9ba9300579d05c0505fe51a454ef724750aca66e",
                      "typeString": "literal_string \"WithParentWithSelfDestruct\""
                    },
                    "value": "WithParentWithSelfDestruct"
                  },
                  "functionReturnParameters": 1756,
                  "id": 1758,
                  "nodeType": "Return",
                  "src": "639:35:12"
                }
              ]
            },
            "documentation": null,
            "id": 1760,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1753,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "594:2:12"
            },
            "returnParameters": {
              "id": 1756,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1755,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1760,
                  "src": "618:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1754,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "618:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "617:15:12"
            },
            "scope": 1761,
            "src": "582:97:12",
            "stateMutability": "pure",
            "superFunction": 1749,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "522:159:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1791,
        "linearizedBaseContracts": [
          1791
        ],
        "name": "WithDelegateCall",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 1781,
              "nodeType": "Block",
              "src": "744:165:12",
              "statements": [
                {
                  "assignments": [
                    1767
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 1767,
                      "name": "data",
                      "nodeType": "VariableDeclaration",
                      "scope": 1781,
                      "src": "799:17:12",
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes_memory_ptr",
                        "typeString": "bytes"
                      },
                      "typeName": {
                        "id": 1766,
                        "name": "bytes",
                        "nodeType": "ElementaryTypeName",
                        "src": "799:5:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_storage_ptr",
                          "typeString": "bytes"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 1769,
                  "initialValue": {
                    "argumentTypes": null,
                    "hexValue": "41c0e1b5",
                    "id": 1768,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "819:18:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_3d5ee410c4f5a40ab8c4301eaa7abf18c79303854495ac5eef70a404abf993d5",
                      "typeString": "literal_string (contains invalid UTF-8 sequence at position 3)"
                    },
                    "value": null
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "799:38:12"
                },
                {
                  "assignments": [
                    1771,
                    null
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 1771,
                      "name": "success",
                      "nodeType": "VariableDeclaration",
                      "scope": 1781,
                      "src": "844:12:12",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      },
                      "typeName": {
                        "id": 1770,
                        "name": "bool",
                        "nodeType": "ElementaryTypeName",
                        "src": "844:4:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    },
                    null
                  ],
                  "id": 1776,
                  "initialValue": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "id": 1774,
                        "name": "data",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 1767,
                        "src": "877:4:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes memory"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes memory"
                        }
                      ],
                      "expression": {
                        "argumentTypes": null,
                        "id": 1772,
                        "name": "_e",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 1763,
                        "src": "861:2:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "id": 1773,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "delegatecall",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": null,
                      "src": "861:15:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                        "typeString": "function (bytes memory) returns (bool,bytes memory)"
                      }
                    },
                    "id": 1775,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "861:21:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                      "typeString": "tuple(bool,bytes memory)"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "843:39:12"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "id": 1778,
                        "name": "success",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 1771,
                        "src": "896:7:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      ],
                      "id": 1777,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        6404,
                        6405
                      ],
                      "referencedDeclaration": 6404,
                      "src": "888:7:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
                        "typeString": "function (bool) pure"
                      }
                    },
                    "id": 1779,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "888:16:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 1780,
                  "nodeType": "ExpressionStatement",
                  "src": "888:16:12"
                }
              ]
            },
            "documentation": null,
            "id": 1782,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1764,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1763,
                  "name": "_e",
                  "nodeType": "VariableDeclaration",
                  "scope": 1782,
                  "src": "725:10:12",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 1762,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "725:7:12",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "724:12:12"
            },
            "returnParameters": {
              "id": 1765,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "744:0:12"
            },
            "scope": 1791,
            "src": "713:196:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1789,
              "nodeType": "Block",
              "src": "966:36:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "5769746844656c656761746543616c6c",
                    "id": 1787,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "979:18:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_5eb8413c60a8c94fd9d5088e6adefcd78aa6bd919916905a488ee2152e303dd3",
                      "typeString": "literal_string \"WithDelegateCall\""
                    },
                    "value": "WithDelegateCall"
                  },
                  "functionReturnParameters": 1786,
                  "id": 1788,
                  "nodeType": "Return",
                  "src": "972:25:12"
                }
              ]
            },
            "documentation": null,
            "id": 1790,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1783,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "927:2:12"
            },
            "returnParameters": {
              "id": 1786,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1785,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1790,
                  "src": "951:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1784,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "951:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "950:15:12"
            },
            "scope": 1791,
            "src": "915:87:12",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "683:321:12"
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 1792,
              "name": "WithDelegateCall",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 1791,
              "src": "1045:16:12",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_WithDelegateCall_$1791",
                "typeString": "contract WithDelegateCall"
              }
            },
            "id": 1793,
            "nodeType": "InheritanceSpecifier",
            "src": "1045:16:12"
          }
        ],
        "contractDependencies": [
          1791
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1811,
        "linearizedBaseContracts": [
          1811,
          1791
        ],
        "name": "WithParentWithDelegateCall",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 1801,
              "nodeType": "Block",
              "src": "1118:5:12",
              "statements": []
            },
            "documentation": null,
            "id": 1802,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [
              {
                "arguments": [
                  {
                    "argumentTypes": null,
                    "id": 1798,
                    "name": "_e",
                    "nodeType": "Identifier",
                    "overloadedDeclarations": [],
                    "referencedDeclaration": 1795,
                    "src": "1114:2:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                ],
                "id": 1799,
                "modifierName": {
                  "argumentTypes": null,
                  "id": 1797,
                  "name": "WithDelegateCall",
                  "nodeType": "Identifier",
                  "overloadedDeclarations": [],
                  "referencedDeclaration": 1791,
                  "src": "1097:16:12",
                  "typeDescriptions": {
                    "typeIdentifier": "t_type$_t_contract$_WithDelegateCall_$1791_$",
                    "typeString": "type(contract WithDelegateCall)"
                  }
                },
                "nodeType": "ModifierInvocation",
                "src": "1097:20:12"
              }
            ],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1796,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1795,
                  "name": "_e",
                  "nodeType": "VariableDeclaration",
                  "scope": 1802,
                  "src": "1078:10:12",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 1794,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1078:7:12",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1077:12:12"
            },
            "returnParameters": {
              "id": 1800,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "1118:0:12"
            },
            "scope": 1811,
            "src": "1066:57:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1809,
              "nodeType": "Block",
              "src": "1178:46:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "57697468506172656e745769746844656c656761746543616c6c",
                    "id": 1807,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1191:28:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_1ca91b9bd4c1d4adb60ee5fecbdb977923c853cb1a0a4dff6ef68906c4ab5107",
                      "typeString": "literal_string \"WithParentWithDelegateCall\""
                    },
                    "value": "WithParentWithDelegateCall"
                  },
                  "functionReturnParameters": 1806,
                  "id": 1808,
                  "nodeType": "Return",
                  "src": "1184:35:12"
                }
              ]
            },
            "documentation": null,
            "id": 1810,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1803,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "1139:2:12"
            },
            "returnParameters": {
              "id": 1806,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1805,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1810,
                  "src": "1163:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1804,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1163:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1162:15:12"
            },
            "scope": 1811,
            "src": "1127:97:12",
            "stateMutability": "pure",
            "superFunction": 1790,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "1006:220:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1838,
        "linearizedBaseContracts": [
          1838
        ],
        "name": "WithConstructorImplementation",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 1813,
            "name": "value",
            "nodeType": "VariableDeclaration",
            "scope": 1838,
            "src": "1271:20:12",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint256",
              "typeString": "uint256"
            },
            "typeName": {
              "id": 1812,
              "name": "uint256",
              "nodeType": "ElementaryTypeName",
              "src": "1271:7:12",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "constant": false,
            "id": 1815,
            "name": "text",
            "nodeType": "VariableDeclaration",
            "scope": 1838,
            "src": "1295:18:12",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_string_storage",
              "typeString": "string"
            },
            "typeName": {
              "id": 1814,
              "name": "string",
              "nodeType": "ElementaryTypeName",
              "src": "1295:6:12",
              "typeDescriptions": {
                "typeIdentifier": "t_string_storage_ptr",
                "typeString": "string"
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1836,
              "nodeType": "Block",
              "src": "1374:68:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 1825,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "id": 1823,
                          "name": "_value",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1817,
                          "src": "1388:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": ">",
                        "rightExpression": {
                          "argumentTypes": null,
                          "hexValue": "30",
                          "id": 1824,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1397:1:12",
                          "subdenomination": null,
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "src": "1388:10:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      ],
                      "id": 1822,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        6404,
                        6405
                      ],
                      "referencedDeclaration": 6404,
                      "src": "1380:7:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
                        "typeString": "function (bool) pure"
                      }
                    },
                    "id": 1826,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1380:19:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 1827,
                  "nodeType": "ExpressionStatement",
                  "src": "1380:19:12"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1830,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 1828,
                      "name": "value",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1813,
                      "src": "1405:5:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "id": 1829,
                      "name": "_value",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1817,
                      "src": "1413:6:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "src": "1405:14:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "id": 1831,
                  "nodeType": "ExpressionStatement",
                  "src": "1405:14:12"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1834,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 1832,
                      "name": "text",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1815,
                      "src": "1425:4:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_storage",
                        "typeString": "string storage ref"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "id": 1833,
                      "name": "_text",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1819,
                      "src": "1432:5:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "1425:12:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage",
                      "typeString": "string storage ref"
                    }
                  },
                  "id": 1835,
                  "nodeType": "ExpressionStatement",
                  "src": "1425:12:12"
                }
              ]
            },
            "documentation": null,
            "id": 1837,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1820,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1817,
                  "name": "_value",
                  "nodeType": "VariableDeclaration",
                  "scope": 1837,
                  "src": "1330:14:12",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1816,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1330:7:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1819,
                  "name": "_text",
                  "nodeType": "VariableDeclaration",
                  "scope": 1837,
                  "src": "1346:19:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1818,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1346:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1329:37:12"
            },
            "returnParameters": {
              "id": 1821,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "1374:0:12"
            },
            "scope": 1838,
            "src": "1318:124:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "1228:216:12"
      }
    ],
    "src": "0:1445:12"
  },
  "legacyAST": {
    "absolutePath": "/Users/ryan/Projects/alice-finance/openzeppelin-sdk/packages/lib/contracts/mocks/Invalid.sol",
    "exportedSymbols": {
      "WithConstructor": [
        1719
      ],
      "WithConstructorImplementation": [
        1838
      ],
      "WithDelegateCall": [
        1791
      ],
      "WithFailingConstructor": [
        1728
      ],
      "WithParentWithDelegateCall": [
        1811
      ],
      "WithParentWithSelfDestruct": [
        1761
      ],
      "WithSelfDestruct": [
        1750
      ]
    },
    "id": 1839,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 1700,
        "literals": [
          "solidity",
          "^",
          "0.5",
          ".0"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:23:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1719,
        "linearizedBaseContracts": [
          1719
        ],
        "name": "WithConstructor",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 1702,
            "name": "value",
            "nodeType": "VariableDeclaration",
            "scope": 1719,
            "src": "54:20:12",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint256",
              "typeString": "uint256"
            },
            "typeName": {
              "id": 1701,
              "name": "uint256",
              "nodeType": "ElementaryTypeName",
              "src": "54:7:12",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1709,
              "nodeType": "Block",
              "src": "100:21:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1707,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 1705,
                      "name": "value",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1702,
                      "src": "106:5:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "hexValue": "3432",
                      "id": 1706,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "number",
                      "lValueRequested": false,
                      "nodeType": "Literal",
                      "src": "114:2:12",
                      "subdenomination": null,
                      "typeDescriptions": {
                        "typeIdentifier": "t_rational_42_by_1",
                        "typeString": "int_const 42"
                      },
                      "value": "42"
                    },
                    "src": "106:10:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "id": 1708,
                  "nodeType": "ExpressionStatement",
                  "src": "106:10:12"
                }
              ]
            },
            "documentation": null,
            "id": 1710,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1703,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "90:2:12"
            },
            "returnParameters": {
              "id": 1704,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "100:0:12"
            },
            "scope": 1719,
            "src": "79:42:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1717,
              "nodeType": "Block",
              "src": "176:35:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "57697468436f6e7374727563746f72",
                    "id": 1715,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "189:17:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_31a3b5169da5035c08d9b25caf8dc3b126287039d931b211746db94a5f9527fc",
                      "typeString": "literal_string \"WithConstructor\""
                    },
                    "value": "WithConstructor"
                  },
                  "functionReturnParameters": 1714,
                  "id": 1716,
                  "nodeType": "Return",
                  "src": "182:24:12"
                }
              ]
            },
            "documentation": null,
            "id": 1718,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1711,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "137:2:12"
            },
            "returnParameters": {
              "id": 1714,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1713,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1718,
                  "src": "161:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1712,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "161:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "160:15:12"
            },
            "scope": 1719,
            "src": "125:86:12",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "25:188:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1728,
        "linearizedBaseContracts": [
          1728
        ],
        "name": "WithFailingConstructor",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 1726,
              "nodeType": "Block",
              "src": "272:24:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "hexValue": "66616c7365",
                        "id": 1723,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "bool",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "285:5:12",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "value": "false"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      ],
                      "id": 1722,
                      "name": "assert",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6390,
                      "src": "278:6:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_assert_pure$_t_bool_$returns$__$",
                        "typeString": "function (bool) pure"
                      }
                    },
                    "id": 1724,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "278:13:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 1725,
                  "nodeType": "ExpressionStatement",
                  "src": "278:13:12"
                }
              ]
            },
            "documentation": null,
            "id": 1727,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1720,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "262:2:12"
            },
            "returnParameters": {
              "id": 1721,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "272:0:12"
            },
            "scope": 1728,
            "src": "251:45:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "215:83:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1750,
        "linearizedBaseContracts": [
          1750
        ],
        "name": "WithSelfDestruct",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 1730,
            "name": "value",
            "nodeType": "VariableDeclaration",
            "scope": 1750,
            "src": "330:20:12",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint256",
              "typeString": "uint256"
            },
            "typeName": {
              "id": 1729,
              "name": "uint256",
              "nodeType": "ElementaryTypeName",
              "src": "330:7:12",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1740,
              "nodeType": "Block",
              "src": "376:51:12",
              "statements": [
                {
                  "condition": {
                    "argumentTypes": null,
                    "hexValue": "74727565",
                    "id": 1733,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "bool",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "386:4:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    },
                    "value": "true"
                  },
                  "falseBody": null,
                  "id": 1739,
                  "nodeType": "IfStatement",
                  "src": "382:40:12",
                  "trueBody": {
                    "expression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 1735,
                            "name": "msg",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6401,
                            "src": "411:3:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_message",
                              "typeString": "msg"
                            }
                          },
                          "id": 1736,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "sender",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": null,
                          "src": "411:10:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address_payable",
                            "typeString": "address payable"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_address_payable",
                            "typeString": "address payable"
                          }
                        ],
                        "id": 1734,
                        "name": "selfdestruct",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 6409,
                        "src": "398:12:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_selfdestruct_nonpayable$_t_address_payable_$returns$__$",
                          "typeString": "function (address payable)"
                        }
                      },
                      "id": 1737,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "398:24:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_tuple$__$",
                        "typeString": "tuple()"
                      }
                    },
                    "id": 1738,
                    "nodeType": "ExpressionStatement",
                    "src": "398:24:12"
                  }
                }
              ]
            },
            "documentation": null,
            "id": 1741,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1731,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "366:2:12"
            },
            "returnParameters": {
              "id": 1732,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "376:0:12"
            },
            "scope": 1750,
            "src": "355:72:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1748,
              "nodeType": "Block",
              "src": "482:36:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "5769746853656c664465737472756374",
                    "id": 1746,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "495:18:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_58a0d53a66d046d020d11a8545600304cc361abba7cf227ae045d15251087ec7",
                      "typeString": "literal_string \"WithSelfDestruct\""
                    },
                    "value": "WithSelfDestruct"
                  },
                  "functionReturnParameters": 1745,
                  "id": 1747,
                  "nodeType": "Return",
                  "src": "488:25:12"
                }
              ]
            },
            "documentation": null,
            "id": 1749,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1742,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "443:2:12"
            },
            "returnParameters": {
              "id": 1745,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1744,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1749,
                  "src": "467:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1743,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "467:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "466:15:12"
            },
            "scope": 1750,
            "src": "431:87:12",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "300:220:12"
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 1751,
              "name": "WithSelfDestruct",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 1750,
              "src": "561:16:12",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_WithSelfDestruct_$1750",
                "typeString": "contract WithSelfDestruct"
              }
            },
            "id": 1752,
            "nodeType": "InheritanceSpecifier",
            "src": "561:16:12"
          }
        ],
        "contractDependencies": [
          1750
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1761,
        "linearizedBaseContracts": [
          1761,
          1750
        ],
        "name": "WithParentWithSelfDestruct",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 1759,
              "nodeType": "Block",
              "src": "633:46:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "57697468506172656e745769746853656c664465737472756374",
                    "id": 1757,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "646:28:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_0833173257b60f10ec48eaae9ba9300579d05c0505fe51a454ef724750aca66e",
                      "typeString": "literal_string \"WithParentWithSelfDestruct\""
                    },
                    "value": "WithParentWithSelfDestruct"
                  },
                  "functionReturnParameters": 1756,
                  "id": 1758,
                  "nodeType": "Return",
                  "src": "639:35:12"
                }
              ]
            },
            "documentation": null,
            "id": 1760,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1753,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "594:2:12"
            },
            "returnParameters": {
              "id": 1756,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1755,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1760,
                  "src": "618:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1754,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "618:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "617:15:12"
            },
            "scope": 1761,
            "src": "582:97:12",
            "stateMutability": "pure",
            "superFunction": 1749,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "522:159:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1791,
        "linearizedBaseContracts": [
          1791
        ],
        "name": "WithDelegateCall",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 1781,
              "nodeType": "Block",
              "src": "744:165:12",
              "statements": [
                {
                  "assignments": [
                    1767
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 1767,
                      "name": "data",
                      "nodeType": "VariableDeclaration",
                      "scope": 1781,
                      "src": "799:17:12",
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes_memory_ptr",
                        "typeString": "bytes"
                      },
                      "typeName": {
                        "id": 1766,
                        "name": "bytes",
                        "nodeType": "ElementaryTypeName",
                        "src": "799:5:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_storage_ptr",
                          "typeString": "bytes"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 1769,
                  "initialValue": {
                    "argumentTypes": null,
                    "hexValue": "41c0e1b5",
                    "id": 1768,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "819:18:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_3d5ee410c4f5a40ab8c4301eaa7abf18c79303854495ac5eef70a404abf993d5",
                      "typeString": "literal_string (contains invalid UTF-8 sequence at position 3)"
                    },
                    "value": null
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "799:38:12"
                },
                {
                  "assignments": [
                    1771,
                    null
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 1771,
                      "name": "success",
                      "nodeType": "VariableDeclaration",
                      "scope": 1781,
                      "src": "844:12:12",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      },
                      "typeName": {
                        "id": 1770,
                        "name": "bool",
                        "nodeType": "ElementaryTypeName",
                        "src": "844:4:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    },
                    null
                  ],
                  "id": 1776,
                  "initialValue": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "id": 1774,
                        "name": "data",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 1767,
                        "src": "877:4:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes memory"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes memory"
                        }
                      ],
                      "expression": {
                        "argumentTypes": null,
                        "id": 1772,
                        "name": "_e",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 1763,
                        "src": "861:2:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "id": 1773,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "delegatecall",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": null,
                      "src": "861:15:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                        "typeString": "function (bytes memory) returns (bool,bytes memory)"
                      }
                    },
                    "id": 1775,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "861:21:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                      "typeString": "tuple(bool,bytes memory)"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "843:39:12"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "id": 1778,
                        "name": "success",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 1771,
                        "src": "896:7:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      ],
                      "id": 1777,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        6404,
                        6405
                      ],
                      "referencedDeclaration": 6404,
                      "src": "888:7:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
                        "typeString": "function (bool) pure"
                      }
                    },
                    "id": 1779,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "888:16:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 1780,
                  "nodeType": "ExpressionStatement",
                  "src": "888:16:12"
                }
              ]
            },
            "documentation": null,
            "id": 1782,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1764,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1763,
                  "name": "_e",
                  "nodeType": "VariableDeclaration",
                  "scope": 1782,
                  "src": "725:10:12",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 1762,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "725:7:12",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "724:12:12"
            },
            "returnParameters": {
              "id": 1765,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "744:0:12"
            },
            "scope": 1791,
            "src": "713:196:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1789,
              "nodeType": "Block",
              "src": "966:36:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "5769746844656c656761746543616c6c",
                    "id": 1787,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "979:18:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_5eb8413c60a8c94fd9d5088e6adefcd78aa6bd919916905a488ee2152e303dd3",
                      "typeString": "literal_string \"WithDelegateCall\""
                    },
                    "value": "WithDelegateCall"
                  },
                  "functionReturnParameters": 1786,
                  "id": 1788,
                  "nodeType": "Return",
                  "src": "972:25:12"
                }
              ]
            },
            "documentation": null,
            "id": 1790,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1783,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "927:2:12"
            },
            "returnParameters": {
              "id": 1786,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1785,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1790,
                  "src": "951:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1784,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "951:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "950:15:12"
            },
            "scope": 1791,
            "src": "915:87:12",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "683:321:12"
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 1792,
              "name": "WithDelegateCall",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 1791,
              "src": "1045:16:12",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_WithDelegateCall_$1791",
                "typeString": "contract WithDelegateCall"
              }
            },
            "id": 1793,
            "nodeType": "InheritanceSpecifier",
            "src": "1045:16:12"
          }
        ],
        "contractDependencies": [
          1791
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1811,
        "linearizedBaseContracts": [
          1811,
          1791
        ],
        "name": "WithParentWithDelegateCall",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": {
              "id": 1801,
              "nodeType": "Block",
              "src": "1118:5:12",
              "statements": []
            },
            "documentation": null,
            "id": 1802,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [
              {
                "arguments": [
                  {
                    "argumentTypes": null,
                    "id": 1798,
                    "name": "_e",
                    "nodeType": "Identifier",
                    "overloadedDeclarations": [],
                    "referencedDeclaration": 1795,
                    "src": "1114:2:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                ],
                "id": 1799,
                "modifierName": {
                  "argumentTypes": null,
                  "id": 1797,
                  "name": "WithDelegateCall",
                  "nodeType": "Identifier",
                  "overloadedDeclarations": [],
                  "referencedDeclaration": 1791,
                  "src": "1097:16:12",
                  "typeDescriptions": {
                    "typeIdentifier": "t_type$_t_contract$_WithDelegateCall_$1791_$",
                    "typeString": "type(contract WithDelegateCall)"
                  }
                },
                "nodeType": "ModifierInvocation",
                "src": "1097:20:12"
              }
            ],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1796,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1795,
                  "name": "_e",
                  "nodeType": "VariableDeclaration",
                  "scope": 1802,
                  "src": "1078:10:12",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 1794,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1078:7:12",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1077:12:12"
            },
            "returnParameters": {
              "id": 1800,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "1118:0:12"
            },
            "scope": 1811,
            "src": "1066:57:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1809,
              "nodeType": "Block",
              "src": "1178:46:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "hexValue": "57697468506172656e745769746844656c656761746543616c6c",
                    "id": 1807,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1191:28:12",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_1ca91b9bd4c1d4adb60ee5fecbdb977923c853cb1a0a4dff6ef68906c4ab5107",
                      "typeString": "literal_string \"WithParentWithDelegateCall\""
                    },
                    "value": "WithParentWithDelegateCall"
                  },
                  "functionReturnParameters": 1806,
                  "id": 1808,
                  "nodeType": "Return",
                  "src": "1184:35:12"
                }
              ]
            },
            "documentation": null,
            "id": 1810,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "say",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1803,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "1139:2:12"
            },
            "returnParameters": {
              "id": 1806,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1805,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1810,
                  "src": "1163:13:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1804,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1163:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1162:15:12"
            },
            "scope": 1811,
            "src": "1127:97:12",
            "stateMutability": "pure",
            "superFunction": 1790,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "1006:220:12"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1838,
        "linearizedBaseContracts": [
          1838
        ],
        "name": "WithConstructorImplementation",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 1813,
            "name": "value",
            "nodeType": "VariableDeclaration",
            "scope": 1838,
            "src": "1271:20:12",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint256",
              "typeString": "uint256"
            },
            "typeName": {
              "id": 1812,
              "name": "uint256",
              "nodeType": "ElementaryTypeName",
              "src": "1271:7:12",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "constant": false,
            "id": 1815,
            "name": "text",
            "nodeType": "VariableDeclaration",
            "scope": 1838,
            "src": "1295:18:12",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_string_storage",
              "typeString": "string"
            },
            "typeName": {
              "id": 1814,
              "name": "string",
              "nodeType": "ElementaryTypeName",
              "src": "1295:6:12",
              "typeDescriptions": {
                "typeIdentifier": "t_string_storage_ptr",
                "typeString": "string"
              }
            },
            "value": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 1836,
              "nodeType": "Block",
              "src": "1374:68:12",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 1825,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "id": 1823,
                          "name": "_value",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1817,
                          "src": "1388:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": ">",
                        "rightExpression": {
                          "argumentTypes": null,
                          "hexValue": "30",
                          "id": 1824,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1397:1:12",
                          "subdenomination": null,
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "src": "1388:10:12",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      ],
                      "id": 1822,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        6404,
                        6405
                      ],
                      "referencedDeclaration": 6404,
                      "src": "1380:7:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
                        "typeString": "function (bool) pure"
                      }
                    },
                    "id": 1826,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1380:19:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 1827,
                  "nodeType": "ExpressionStatement",
                  "src": "1380:19:12"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1830,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 1828,
                      "name": "value",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1813,
                      "src": "1405:5:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "id": 1829,
                      "name": "_value",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1817,
                      "src": "1413:6:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "src": "1405:14:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "id": 1831,
                  "nodeType": "ExpressionStatement",
                  "src": "1405:14:12"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1834,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 1832,
                      "name": "text",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1815,
                      "src": "1425:4:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_storage",
                        "typeString": "string storage ref"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "id": 1833,
                      "name": "_text",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1819,
                      "src": "1432:5:12",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "1425:12:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage",
                      "typeString": "string storage ref"
                    }
                  },
                  "id": 1835,
                  "nodeType": "ExpressionStatement",
                  "src": "1425:12:12"
                }
              ]
            },
            "documentation": null,
            "id": 1837,
            "implemented": true,
            "kind": "constructor",
            "modifiers": [],
            "name": "",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1820,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1817,
                  "name": "_value",
                  "nodeType": "VariableDeclaration",
                  "scope": 1837,
                  "src": "1330:14:12",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1816,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1330:7:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1819,
                  "name": "_text",
                  "nodeType": "VariableDeclaration",
                  "scope": 1837,
                  "src": "1346:19:12",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1818,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1346:6:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1329:37:12"
            },
            "returnParameters": {
              "id": 1821,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "1374:0:12"
            },
            "scope": 1838,
            "src": "1318:124:12",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1839,
        "src": "1228:216:12"
      }
    ],
    "src": "0:1445:12"
  },
  "compiler": {
    "name": "solc",
    "version": "0.5.3+commit.10d17f24.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.0.2",
  "updatedAt": "2019-10-02T02:54:36.368Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}