{
  "contractName": "ITransferManager",
  "abi": [
    {
      "constant": true,
      "inputs": [],
      "name": "getInitFunction",
      "outputs": [
        {
          "name": "",
          "type": "bytes4"
        }
      ],
      "payable": false,
      "stateMutability": "pure",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "paused",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "_amount",
          "type": "uint256"
        }
      ],
      "name": "takeFee",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "polyToken",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "securityToken",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "getPermissions",
      "outputs": [
        {
          "name": "",
          "type": "bytes32[]"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "factory",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "FEE_ADMIN",
      "outputs": [
        {
          "name": "",
          "type": "bytes32"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": false,
          "name": "_timestammp",
          "type": "uint256"
        }
      ],
      "name": "Pause",
      "type": "event"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": false,
          "name": "_timestamp",
          "type": "uint256"
        }
      ],
      "name": "Unpause",
      "type": "event"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "_from",
          "type": "address"
        },
        {
          "name": "_to",
          "type": "address"
        },
        {
          "name": "_amount",
          "type": "uint256"
        },
        {
          "name": "_isTransfer",
          "type": "bool"
        }
      ],
      "name": "verifyTransfer",
      "outputs": [
        {
          "name": "",
          "type": "uint8"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [],
      "name": "unpause",
      "outputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [],
      "name": "pause",
      "outputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "pragma solidity ^0.4.24;\n\nimport \"../../Pausable.sol\";\nimport \"../../interfaces/IModule.sol\";\n\n/**\n * @title Interface to be implemented by all Transfer Manager modules\n */\ncontract ITransferManager is IModule, Pausable {\n\n    //If verifyTransfer returns:\n    //  FORCE_VALID, the transaction will always be valid, regardless of other TM results\n    //  INVALID, then the transfer should not be allowed regardless of other TM results\n    //  VALID, then the transfer is valid for this TM\n    //  NA, then the result from this TM is ignored\n    enum Result {INVALID, NA, VALID, FORCE_VALID}\n\n    function verifyTransfer(address _from, address _to, uint256 _amount, bool _isTransfer) public returns(Result);\n\n    function unpause() onlyOwner public {\n        super._unpause();\n    }\n\n    function pause() onlyOwner public {\n        super._pause();\n    }\n}\n",
  "sourcePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/modules/TransferManager/ITransferManager.sol",
  "ast": {
    "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/modules/TransferManager/ITransferManager.sol",
    "exportedSymbols": {
      "ITransferManager": [
        18394
      ]
    },
    "id": 18395,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 18347,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:50"
      },
      {
        "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/Pausable.sol",
        "file": "../../Pausable.sol",
        "id": 18348,
        "nodeType": "ImportDirective",
        "scope": 18395,
        "sourceUnit": 472,
        "src": "26:28:50",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/IModule.sol",
        "file": "../../interfaces/IModule.sol",
        "id": 18349,
        "nodeType": "ImportDirective",
        "scope": 18395,
        "sourceUnit": 9718,
        "src": "55:38:50",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 18350,
              "name": "IModule",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 9717,
              "src": "202:7:50",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IModule_$9717",
                "typeString": "contract IModule"
              }
            },
            "id": 18351,
            "nodeType": "InheritanceSpecifier",
            "src": "202:7:50"
          },
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 18352,
              "name": "Pausable",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 471,
              "src": "211:8:50",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_Pausable_$471",
                "typeString": "contract Pausable"
              }
            },
            "id": 18353,
            "nodeType": "InheritanceSpecifier",
            "src": "211:8:50"
          }
        ],
        "contractDependencies": [
          471,
          9717
        ],
        "contractKind": "contract",
        "documentation": "@title Interface to be implemented by all Transfer Manager modules",
        "fullyImplemented": false,
        "id": 18394,
        "linearizedBaseContracts": [
          18394,
          471,
          9717
        ],
        "name": "ITransferManager",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "canonicalName": "ITransferManager.Result",
            "id": 18358,
            "members": [
              {
                "id": 18354,
                "name": "INVALID",
                "nodeType": "EnumValue",
                "src": "557:7:50"
              },
              {
                "id": 18355,
                "name": "NA",
                "nodeType": "EnumValue",
                "src": "566:2:50"
              },
              {
                "id": 18356,
                "name": "VALID",
                "nodeType": "EnumValue",
                "src": "570:5:50"
              },
              {
                "id": 18357,
                "name": "FORCE_VALID",
                "nodeType": "EnumValue",
                "src": "577:11:50"
              }
            ],
            "name": "Result",
            "nodeType": "EnumDefinition",
            "src": "544:45:50"
          },
          {
            "body": null,
            "documentation": null,
            "id": 18371,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "verifyTransfer",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 18367,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18360,
                  "name": "_from",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "619:13:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18359,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "619:7:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18362,
                  "name": "_to",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "634:11:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18361,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "634:7:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18364,
                  "name": "_amount",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "647:15:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 18363,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "647:7:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18366,
                  "name": "_isTransfer",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "664:16:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 18365,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "664:4:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "618:63:50"
            },
            "payable": false,
            "returnParameters": {
              "id": 18370,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18369,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "697:6:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_enum$_Result_$18358",
                    "typeString": "enum ITransferManager.Result"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 18368,
                    "name": "Result",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 18358,
                    "src": "697:6:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_enum$_Result_$18358",
                      "typeString": "enum ITransferManager.Result"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "696:8:50"
            },
            "scope": 18394,
            "src": "595:110:50",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 18381,
              "nodeType": "Block",
              "src": "747:33:50",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [],
                    "expression": {
                      "argumentTypes": [],
                      "expression": {
                        "argumentTypes": null,
                        "id": 18376,
                        "name": "super",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 23189,
                        "src": "757:5:50",
                        "typeDescriptions": {
                          "typeIdentifier": "t_super$_ITransferManager_$18394",
                          "typeString": "contract super ITransferManager"
                        }
                      },
                      "id": 18378,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "_unpause",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 470,
                      "src": "757:14:50",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                        "typeString": "function ()"
                      }
                    },
                    "id": 18379,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "757:16:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 18380,
                  "nodeType": "ExpressionStatement",
                  "src": "757:16:50"
                }
              ]
            },
            "documentation": null,
            "id": 18382,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [
              {
                "arguments": null,
                "id": 18374,
                "modifierName": {
                  "argumentTypes": null,
                  "id": 18373,
                  "name": "onlyOwner",
                  "nodeType": "Identifier",
                  "overloadedDeclarations": [],
                  "referencedDeclaration": 9653,
                  "src": "730:9:50",
                  "typeDescriptions": {
                    "typeIdentifier": "t_modifier$__$",
                    "typeString": "modifier ()"
                  }
                },
                "nodeType": "ModifierInvocation",
                "src": "730:9:50"
              }
            ],
            "name": "unpause",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 18372,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "727:2:50"
            },
            "payable": false,
            "returnParameters": {
              "id": 18375,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "747:0:50"
            },
            "scope": 18394,
            "src": "711:69:50",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 18392,
              "nodeType": "Block",
              "src": "820:31:50",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [],
                    "expression": {
                      "argumentTypes": [],
                      "expression": {
                        "argumentTypes": null,
                        "id": 18387,
                        "name": "super",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 23189,
                        "src": "830:5:50",
                        "typeDescriptions": {
                          "typeIdentifier": "t_super$_ITransferManager_$18394",
                          "typeString": "contract super ITransferManager"
                        }
                      },
                      "id": 18389,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "_pause",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 456,
                      "src": "830:12:50",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                        "typeString": "function ()"
                      }
                    },
                    "id": 18390,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "830:14:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 18391,
                  "nodeType": "ExpressionStatement",
                  "src": "830:14:50"
                }
              ]
            },
            "documentation": null,
            "id": 18393,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [
              {
                "arguments": null,
                "id": 18385,
                "modifierName": {
                  "argumentTypes": null,
                  "id": 18384,
                  "name": "onlyOwner",
                  "nodeType": "Identifier",
                  "overloadedDeclarations": [],
                  "referencedDeclaration": 9653,
                  "src": "803:9:50",
                  "typeDescriptions": {
                    "typeIdentifier": "t_modifier$__$",
                    "typeString": "modifier ()"
                  }
                },
                "nodeType": "ModifierInvocation",
                "src": "803:9:50"
              }
            ],
            "name": "pause",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 18383,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "800:2:50"
            },
            "payable": false,
            "returnParameters": {
              "id": 18386,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "820:0:50"
            },
            "scope": 18394,
            "src": "786:65:50",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 18395,
        "src": "173:680:50"
      }
    ],
    "src": "0:854:50"
  },
  "legacyAST": {
    "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/modules/TransferManager/ITransferManager.sol",
    "exportedSymbols": {
      "ITransferManager": [
        18394
      ]
    },
    "id": 18395,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 18347,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:50"
      },
      {
        "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/Pausable.sol",
        "file": "../../Pausable.sol",
        "id": 18348,
        "nodeType": "ImportDirective",
        "scope": 18395,
        "sourceUnit": 472,
        "src": "26:28:50",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/IModule.sol",
        "file": "../../interfaces/IModule.sol",
        "id": 18349,
        "nodeType": "ImportDirective",
        "scope": 18395,
        "sourceUnit": 9718,
        "src": "55:38:50",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 18350,
              "name": "IModule",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 9717,
              "src": "202:7:50",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IModule_$9717",
                "typeString": "contract IModule"
              }
            },
            "id": 18351,
            "nodeType": "InheritanceSpecifier",
            "src": "202:7:50"
          },
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 18352,
              "name": "Pausable",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 471,
              "src": "211:8:50",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_Pausable_$471",
                "typeString": "contract Pausable"
              }
            },
            "id": 18353,
            "nodeType": "InheritanceSpecifier",
            "src": "211:8:50"
          }
        ],
        "contractDependencies": [
          471,
          9717
        ],
        "contractKind": "contract",
        "documentation": "@title Interface to be implemented by all Transfer Manager modules",
        "fullyImplemented": false,
        "id": 18394,
        "linearizedBaseContracts": [
          18394,
          471,
          9717
        ],
        "name": "ITransferManager",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "canonicalName": "ITransferManager.Result",
            "id": 18358,
            "members": [
              {
                "id": 18354,
                "name": "INVALID",
                "nodeType": "EnumValue",
                "src": "557:7:50"
              },
              {
                "id": 18355,
                "name": "NA",
                "nodeType": "EnumValue",
                "src": "566:2:50"
              },
              {
                "id": 18356,
                "name": "VALID",
                "nodeType": "EnumValue",
                "src": "570:5:50"
              },
              {
                "id": 18357,
                "name": "FORCE_VALID",
                "nodeType": "EnumValue",
                "src": "577:11:50"
              }
            ],
            "name": "Result",
            "nodeType": "EnumDefinition",
            "src": "544:45:50"
          },
          {
            "body": null,
            "documentation": null,
            "id": 18371,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "verifyTransfer",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 18367,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18360,
                  "name": "_from",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "619:13:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18359,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "619:7:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18362,
                  "name": "_to",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "634:11:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18361,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "634:7:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18364,
                  "name": "_amount",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "647:15:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 18363,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "647:7:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18366,
                  "name": "_isTransfer",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "664:16:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 18365,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "664:4:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "618:63:50"
            },
            "payable": false,
            "returnParameters": {
              "id": 18370,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18369,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 18371,
                  "src": "697:6:50",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_enum$_Result_$18358",
                    "typeString": "enum ITransferManager.Result"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 18368,
                    "name": "Result",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 18358,
                    "src": "697:6:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_enum$_Result_$18358",
                      "typeString": "enum ITransferManager.Result"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "696:8:50"
            },
            "scope": 18394,
            "src": "595:110:50",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 18381,
              "nodeType": "Block",
              "src": "747:33:50",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [],
                    "expression": {
                      "argumentTypes": [],
                      "expression": {
                        "argumentTypes": null,
                        "id": 18376,
                        "name": "super",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 23189,
                        "src": "757:5:50",
                        "typeDescriptions": {
                          "typeIdentifier": "t_super$_ITransferManager_$18394",
                          "typeString": "contract super ITransferManager"
                        }
                      },
                      "id": 18378,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "_unpause",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 470,
                      "src": "757:14:50",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                        "typeString": "function ()"
                      }
                    },
                    "id": 18379,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "757:16:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 18380,
                  "nodeType": "ExpressionStatement",
                  "src": "757:16:50"
                }
              ]
            },
            "documentation": null,
            "id": 18382,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [
              {
                "arguments": null,
                "id": 18374,
                "modifierName": {
                  "argumentTypes": null,
                  "id": 18373,
                  "name": "onlyOwner",
                  "nodeType": "Identifier",
                  "overloadedDeclarations": [],
                  "referencedDeclaration": 9653,
                  "src": "730:9:50",
                  "typeDescriptions": {
                    "typeIdentifier": "t_modifier$__$",
                    "typeString": "modifier ()"
                  }
                },
                "nodeType": "ModifierInvocation",
                "src": "730:9:50"
              }
            ],
            "name": "unpause",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 18372,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "727:2:50"
            },
            "payable": false,
            "returnParameters": {
              "id": 18375,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "747:0:50"
            },
            "scope": 18394,
            "src": "711:69:50",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": {
              "id": 18392,
              "nodeType": "Block",
              "src": "820:31:50",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [],
                    "expression": {
                      "argumentTypes": [],
                      "expression": {
                        "argumentTypes": null,
                        "id": 18387,
                        "name": "super",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 23189,
                        "src": "830:5:50",
                        "typeDescriptions": {
                          "typeIdentifier": "t_super$_ITransferManager_$18394",
                          "typeString": "contract super ITransferManager"
                        }
                      },
                      "id": 18389,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "_pause",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 456,
                      "src": "830:12:50",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                        "typeString": "function ()"
                      }
                    },
                    "id": 18390,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "830:14:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 18391,
                  "nodeType": "ExpressionStatement",
                  "src": "830:14:50"
                }
              ]
            },
            "documentation": null,
            "id": 18393,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [
              {
                "arguments": null,
                "id": 18385,
                "modifierName": {
                  "argumentTypes": null,
                  "id": 18384,
                  "name": "onlyOwner",
                  "nodeType": "Identifier",
                  "overloadedDeclarations": [],
                  "referencedDeclaration": 9653,
                  "src": "803:9:50",
                  "typeDescriptions": {
                    "typeIdentifier": "t_modifier$__$",
                    "typeString": "modifier ()"
                  }
                },
                "nodeType": "ModifierInvocation",
                "src": "803:9:50"
              }
            ],
            "name": "pause",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 18383,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "800:2:50"
            },
            "payable": false,
            "returnParameters": {
              "id": 18386,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "820:0:50"
            },
            "scope": 18394,
            "src": "786:65:50",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 18395,
        "src": "173:680:50"
      }
    ],
    "src": "0:854:50"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "2.0.1",
  "updatedAt": "2018-08-21T09:48:12.582Z"
}