{
  "contractName": "IERC721CreatorExtensionBurnable",
  "abi": [
    {
      "inputs": [
        {
          "internalType": "bytes4",
          "name": "interfaceId",
          "type": "bytes4"
        }
      ],
      "name": "supportsInterface",
      "outputs": [
        {
          "internalType": "bool",
          "name": "",
          "type": "bool"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "owner",
          "type": "address"
        },
        {
          "internalType": "uint256",
          "name": "tokenId",
          "type": "uint256"
        }
      ],
      "name": "onBurn",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    }
  ],
  "metadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"onBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Your extension is required to implement this interface if it wishes to receive the onBurn callback whenever a token the extension created is burned\",\"kind\":\"dev\",\"methods\":{\"onBurn(address,uint256)\":{\"details\":\"callback handler for burn events\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"project:/contracts/extensions/ERC721/IERC721CreatorExtensionBurnable.sol\":\"IERC721CreatorExtensionBurnable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":25},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"project:/contracts/extensions/ERC721/IERC721CreatorExtensionBurnable.sol\":{\"keccak256\":\"0xfe990176cd9da70d2241bb28b07155555bc1258350a809dc45165b4ad540d6c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7629f325fcd4348ffeca7e4abba3517f8767736c0545f6deb9bf71a361ccdc0c\",\"dweb:/ipfs/QmQGx2M1nkQGJXU8tVE56xiP8pgq7dQxqrnWPDjMDzstuH\"]}},\"version\":1}",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "immutableReferences": {},
  "generatedSources": [],
  "deployedGeneratedSources": [],
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/// @author: manifold.xyz\n\nimport \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\n\n/**\n * @dev Your extension is required to implement this interface if it wishes\n * to receive the onBurn callback whenever a token the extension created is\n * burned\n */\ninterface IERC721CreatorExtensionBurnable is IERC165 {\n    /**\n     * @dev callback handler for burn events\n     */\n    function onBurn(address owner, uint256 tokenId) external;\n}",
  "sourcePath": "/Users/chung/git/manifoldxyz/solidity/creator-core-solidity/contracts/extensions/ERC721/IERC721CreatorExtensionBurnable.sol",
  "ast": {
    "absolutePath": "project:/contracts/extensions/ERC721/IERC721CreatorExtensionBurnable.sol",
    "exportedSymbols": {
      "IERC165": [
        2338
      ],
      "IERC721CreatorExtensionBurnable": [
        16498
      ]
    },
    "id": 16499,
    "license": "MIT",
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 16485,
        "literals": [
          "solidity",
          "^",
          "0.8",
          ".0"
        ],
        "nodeType": "PragmaDirective",
        "src": "33:23:52"
      },
      {
        "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
        "file": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
        "id": 16486,
        "nameLocation": "-1:-1:-1",
        "nodeType": "ImportDirective",
        "scope": 16499,
        "sourceUnit": 2339,
        "src": "85:65:52",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "abstract": false,
        "baseContracts": [
          {
            "baseName": {
              "id": 16488,
              "name": "IERC165",
              "nameLocations": [
                "367:7:52"
              ],
              "nodeType": "IdentifierPath",
              "referencedDeclaration": 2338,
              "src": "367:7:52"
            },
            "id": 16489,
            "nodeType": "InheritanceSpecifier",
            "src": "367:7:52"
          }
        ],
        "canonicalName": "IERC721CreatorExtensionBurnable",
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": {
          "id": 16487,
          "nodeType": "StructuredDocumentation",
          "src": "152:169:52",
          "text": " @dev Your extension is required to implement this interface if it wishes\n to receive the onBurn callback whenever a token the extension created is\n burned"
        },
        "fullyImplemented": false,
        "id": 16498,
        "linearizedBaseContracts": [
          16498,
          2338
        ],
        "name": "IERC721CreatorExtensionBurnable",
        "nameLocation": "332:31:52",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "documentation": {
              "id": 16490,
              "nodeType": "StructuredDocumentation",
              "src": "381:56:52",
              "text": " @dev callback handler for burn events"
            },
            "functionSelector": "45a1b92c",
            "id": 16497,
            "implemented": false,
            "kind": "function",
            "modifiers": [],
            "name": "onBurn",
            "nameLocation": "451:6:52",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 16495,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 16492,
                  "mutability": "mutable",
                  "name": "owner",
                  "nameLocation": "466:5:52",
                  "nodeType": "VariableDeclaration",
                  "scope": 16497,
                  "src": "458:13:52",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 16491,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "458:7:52",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 16494,
                  "mutability": "mutable",
                  "name": "tokenId",
                  "nameLocation": "481:7:52",
                  "nodeType": "VariableDeclaration",
                  "scope": 16497,
                  "src": "473:15:52",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 16493,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "473:7:52",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "src": "457:32:52"
            },
            "returnParameters": {
              "id": 16496,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "498:0:52"
            },
            "scope": 16498,
            "src": "442:57:52",
            "stateMutability": "nonpayable",
            "virtual": false,
            "visibility": "external"
          }
        ],
        "scope": 16499,
        "src": "322:179:52",
        "usedErrors": []
      }
    ],
    "src": "33:468:52"
  },
  "compiler": {
    "name": "solc",
    "version": "0.8.19+commit.7dd6d404.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.4.12",
  "updatedAt": "2023-03-22T17:07:39.767Z",
  "devdoc": {
    "details": "Your extension is required to implement this interface if it wishes to receive the onBurn callback whenever a token the extension created is burned",
    "kind": "dev",
    "methods": {
      "onBurn(address,uint256)": {
        "details": "callback handler for burn events"
      },
      "supportsInterface(bytes4)": {
        "details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
      }
    },
    "version": 1
  },
  "userdoc": {
    "kind": "user",
    "methods": {},
    "version": 1
  }
}