{
  "contractName": "IERC20WithCheckpointing",
  "abi": [
    {
      "constant": false,
      "inputs": [
        {
          "name": "_spender",
          "type": "address"
        },
        {
          "name": "_value",
          "type": "uint256"
        }
      ],
      "name": "approve",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "totalSupply",
      "outputs": [
        {
          "name": "",
          "type": "uint256"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "_from",
          "type": "address"
        },
        {
          "name": "_to",
          "type": "address"
        },
        {
          "name": "_value",
          "type": "uint256"
        }
      ],
      "name": "transferFrom",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_who",
          "type": "address"
        }
      ],
      "name": "balanceOf",
      "outputs": [
        {
          "name": "",
          "type": "uint256"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "_to",
          "type": "address"
        },
        {
          "name": "_value",
          "type": "uint256"
        }
      ],
      "name": "transfer",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_owner",
          "type": "address"
        },
        {
          "name": "_spender",
          "type": "address"
        }
      ],
      "name": "allowance",
      "outputs": [
        {
          "name": "",
          "type": "uint256"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "name": "from",
          "type": "address"
        },
        {
          "indexed": true,
          "name": "to",
          "type": "address"
        },
        {
          "indexed": false,
          "name": "value",
          "type": "uint256"
        }
      ],
      "name": "Transfer",
      "type": "event"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "name": "owner",
          "type": "address"
        },
        {
          "indexed": true,
          "name": "spender",
          "type": "address"
        },
        {
          "indexed": false,
          "name": "value",
          "type": "uint256"
        }
      ],
      "name": "Approval",
      "type": "event"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_owner",
          "type": "address"
        },
        {
          "name": "_blockNumber",
          "type": "uint256"
        }
      ],
      "name": "balanceOfAt",
      "outputs": [
        {
          "name": "",
          "type": "uint256"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_blockNumber",
          "type": "uint256"
        }
      ],
      "name": "totalSupplyAt",
      "outputs": [
        {
          "name": "",
          "type": "uint256"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "metadata": "",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "/*\n * SPDX-License-Identitifer:    GPL-3.0-or-later\n */\n\npragma solidity 0.4.24;\n\nimport \"@aragon/os/contracts/lib/token/ERC20.sol\";\n\n\ncontract IERC20WithCheckpointing is ERC20 {\n    function balanceOfAt(address _owner, uint256 _blockNumber) public view returns (uint256);\n    function totalSupplyAt(uint256 _blockNumber) public view returns (uint256);\n}\n",
  "sourcePath": "@aragonone/voting-connectors-contract-utils/contracts/interfaces/IERC20WithCheckpointing.sol",
  "ast": {
    "absolutePath": "@aragonone/voting-connectors-contract-utils/contracts/interfaces/IERC20WithCheckpointing.sol",
    "exportedSymbols": {
      "IERC20WithCheckpointing": [
        10378
      ]
    },
    "id": 10379,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10358,
        "literals": [
          "solidity",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "57:23:64"
      },
      {
        "absolutePath": "@aragon/os/contracts/lib/token/ERC20.sol",
        "file": "@aragon/os/contracts/lib/token/ERC20.sol",
        "id": 10359,
        "nodeType": "ImportDirective",
        "scope": 10379,
        "sourceUnit": 9926,
        "src": "82:50:64",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 10360,
              "name": "ERC20",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 9925,
              "src": "171:5:64",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_ERC20_$9925",
                "typeString": "contract ERC20"
              }
            },
            "id": 10361,
            "nodeType": "InheritanceSpecifier",
            "src": "171:5:64"
          }
        ],
        "contractDependencies": [
          9925
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": false,
        "id": 10378,
        "linearizedBaseContracts": [
          10378,
          9925
        ],
        "name": "IERC20WithCheckpointing",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 10370,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "balanceOfAt",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10366,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10363,
                  "name": "_owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 10370,
                  "src": "204:14:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10362,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "204:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10365,
                  "name": "_blockNumber",
                  "nodeType": "VariableDeclaration",
                  "scope": 10370,
                  "src": "220:20:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10364,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "220:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "203:38:64"
            },
            "payable": false,
            "returnParameters": {
              "id": 10369,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10368,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10370,
                  "src": "263:7:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10367,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "263:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "262:9:64"
            },
            "scope": 10378,
            "src": "183:89:64",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10377,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "totalSupplyAt",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10373,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10372,
                  "name": "_blockNumber",
                  "nodeType": "VariableDeclaration",
                  "scope": 10377,
                  "src": "300:20:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10371,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "300:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "299:22:64"
            },
            "payable": false,
            "returnParameters": {
              "id": 10376,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10375,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10377,
                  "src": "343:7:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10374,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "343:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "342:9:64"
            },
            "scope": 10378,
            "src": "277:75:64",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 10379,
        "src": "135:219:64"
      }
    ],
    "src": "57:298:64"
  },
  "legacyAST": {
    "absolutePath": "@aragonone/voting-connectors-contract-utils/contracts/interfaces/IERC20WithCheckpointing.sol",
    "exportedSymbols": {
      "IERC20WithCheckpointing": [
        10378
      ]
    },
    "id": 10379,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10358,
        "literals": [
          "solidity",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "57:23:64"
      },
      {
        "absolutePath": "@aragon/os/contracts/lib/token/ERC20.sol",
        "file": "@aragon/os/contracts/lib/token/ERC20.sol",
        "id": 10359,
        "nodeType": "ImportDirective",
        "scope": 10379,
        "sourceUnit": 9926,
        "src": "82:50:64",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 10360,
              "name": "ERC20",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 9925,
              "src": "171:5:64",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_ERC20_$9925",
                "typeString": "contract ERC20"
              }
            },
            "id": 10361,
            "nodeType": "InheritanceSpecifier",
            "src": "171:5:64"
          }
        ],
        "contractDependencies": [
          9925
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": false,
        "id": 10378,
        "linearizedBaseContracts": [
          10378,
          9925
        ],
        "name": "IERC20WithCheckpointing",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 10370,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "balanceOfAt",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10366,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10363,
                  "name": "_owner",
                  "nodeType": "VariableDeclaration",
                  "scope": 10370,
                  "src": "204:14:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10362,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "204:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10365,
                  "name": "_blockNumber",
                  "nodeType": "VariableDeclaration",
                  "scope": 10370,
                  "src": "220:20:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10364,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "220:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "203:38:64"
            },
            "payable": false,
            "returnParameters": {
              "id": 10369,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10368,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10370,
                  "src": "263:7:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10367,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "263:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "262:9:64"
            },
            "scope": 10378,
            "src": "183:89:64",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 10377,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "totalSupplyAt",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10373,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10372,
                  "name": "_blockNumber",
                  "nodeType": "VariableDeclaration",
                  "scope": 10377,
                  "src": "300:20:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10371,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "300:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "299:22:64"
            },
            "payable": false,
            "returnParameters": {
              "id": 10376,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10375,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10377,
                  "src": "343:7:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10374,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "343:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "342:9:64"
            },
            "scope": 10378,
            "src": "277:75:64",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 10379,
        "src": "135:219:64"
      }
    ],
    "src": "57:298:64"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.2.0",
  "updatedAt": "2020-06-07T23:27:00.626Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}