@latticexyz/world 1.40.0 → 1.41.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/LICENSE +21 -0
  2. package/abi/AddressArraySchemaLib.json +718 -869
  3. package/abi/BoolSchemaLib.json +401 -401
  4. package/abi/Bytes.json +1162 -1162
  5. package/abi/CommonBase.json +125 -125
  6. package/abi/DSTest.json +2630 -2630
  7. package/abi/DecodeSlice.json +3883 -3883
  8. package/abi/EncodeArray.json +3336 -3336
  9. package/abi/Hooks.json +1491 -785
  10. package/abi/IMulticall3.json +283 -283
  11. package/abi/IStore.json +623 -421
  12. package/abi/IStoreHook.json +567 -421
  13. package/abi/ISystemHook.json +19 -19
  14. package/abi/Memory.json +131 -131
  15. package/abi/PackedCounterLib.json +683 -683
  16. package/abi/RouteAccess.json +2209 -1159
  17. package/abi/RouteOwnerSchemaLib.json +349 -349
  18. package/abi/RouteOwnerTable.json +297 -297
  19. package/abi/RouteSchemaLib.json +433 -433
  20. package/abi/RouteTable.json +336 -336
  21. package/abi/SchemaLib.json +1211 -1211
  22. package/abi/ScriptBase.json +125 -125
  23. package/abi/SliceInstance.json +429 -429
  24. package/abi/SliceLib.json +429 -429
  25. package/abi/StdAssertions.json +2135 -2135
  26. package/abi/StdChains.json +1051 -1051
  27. package/abi/StdCheats.json +3257 -3257
  28. package/abi/StdCheatsSafe.json +3257 -3257
  29. package/abi/StdInvariant.json +337 -337
  30. package/abi/StdUtils.json +1122 -1122
  31. package/abi/Storage.json +491 -491
  32. package/abi/Store.json +374 -209
  33. package/abi/StoreCore.json +10665 -7865
  34. package/abi/StoreCoreExtended.json +10443 -7722
  35. package/abi/StoreCoreInternal.json +10482 -7638
  36. package/abi/StoreMetadata.json +3719 -2417
  37. package/abi/StoreSwitch.json +1692 -783
  38. package/abi/System.json +16 -16
  39. package/abi/SystemRouteSchemaLib.json +402 -402
  40. package/abi/SystemRouteTable.json +336 -336
  41. package/abi/SystemTable.json +8544 -651
  42. package/abi/SystemTest.json +287 -303
  43. package/abi/Test.json +124 -124
  44. package/abi/TestBase.json +125 -125
  45. package/abi/TestSystem.json +287 -303
  46. package/abi/TightCoder.json +272 -272
  47. package/abi/Utils.json +67 -67
  48. package/abi/Vm.json +1850 -1850
  49. package/abi/VmSafe.json +1850 -1850
  50. package/abi/World.json +5183 -3374
  51. package/abi/WorldTest.json +9983 -10520
  52. package/abi/WorldTestSystem.json +9992 -10503
  53. package/abi/WorldTestTableHook.json +9978 -10511
  54. package/abi/console.json +11417 -11417
  55. package/abi/console2.json +11459 -11459
  56. package/abi/stdError.json +79 -79
  57. package/abi/stdJson.json +1016 -1016
  58. package/abi/stdMath.json +218 -218
  59. package/abi/stdStorage.json +2400 -2400
  60. package/abi/stdStorageSafe.json +2400 -2400
  61. package/package.json +8 -8
  62. package/src/World.sol +78 -32
  63. package/src/schemas/AddressArray.sol +5 -19
  64. package/src/tables/RouteAccess.sol +35 -30
  65. package/src/tables/SystemTable.sol +142 -23
  66. package/types/ethers-contracts/IStore.ts +49 -0
  67. package/types/ethers-contracts/Store.ts +49 -0
  68. package/types/ethers-contracts/World.ts +94 -0
  69. package/types/ethers-contracts/WorldTest.ts +27 -0
  70. package/types/ethers-contracts/factories/IStore__factory.ts +28 -0
  71. package/types/ethers-contracts/factories/StoreCore__factory.ts +2 -23
  72. package/types/ethers-contracts/factories/StoreSwitch__factory.ts +1 -1
  73. package/types/ethers-contracts/factories/Store__factory.ts +81 -0
  74. package/types/ethers-contracts/factories/SystemTest__factory.ts +1 -1
  75. package/types/ethers-contracts/factories/TestSystem__factory.ts +1 -1
  76. package/types/ethers-contracts/factories/WorldTestSystem__factory.ts +12 -1
  77. package/types/ethers-contracts/factories/WorldTestTableHook__factory.ts +1 -1
  78. package/types/ethers-contracts/factories/WorldTest__factory.ts +11 -34
  79. package/types/ethers-contracts/factories/World__factory.ts +70 -30
  80. package/types/ethers-contracts/index.ts +0 -2
  81. package/abi/SystemSchemaLib.json +0 -3704
  82. package/src/schemas/SystemSchema.sol +0 -78
  83. package/types/ethers-contracts/StoreCoreExtended.ts +0 -141
  84. package/types/ethers-contracts/factories/StoreCoreExtended__factory.ts +0 -123
package/abi/Store.json CHANGED
@@ -16,6 +16,59 @@
16
16
  "name": "SchemaLib_StaticTypeAfterDynamicType",
17
17
  "type": "error"
18
18
  },
19
+ {
20
+ "inputs": [
21
+ {
22
+ "internalType": "bytes",
23
+ "name": "data",
24
+ "type": "bytes"
25
+ },
26
+ {
27
+ "internalType": "uint256",
28
+ "name": "start",
29
+ "type": "uint256"
30
+ },
31
+ {
32
+ "internalType": "uint256",
33
+ "name": "end",
34
+ "type": "uint256"
35
+ }
36
+ ],
37
+ "name": "Slice_OutOfBounds",
38
+ "type": "error"
39
+ },
40
+ {
41
+ "inputs": [
42
+ {
43
+ "internalType": "uint256",
44
+ "name": "expected",
45
+ "type": "uint256"
46
+ },
47
+ {
48
+ "internalType": "uint256",
49
+ "name": "received",
50
+ "type": "uint256"
51
+ }
52
+ ],
53
+ "name": "StoreCore_InvalidDataLength",
54
+ "type": "error"
55
+ },
56
+ {
57
+ "inputs": [
58
+ {
59
+ "internalType": "uint256",
60
+ "name": "expected",
61
+ "type": "uint256"
62
+ },
63
+ {
64
+ "internalType": "uint256",
65
+ "name": "received",
66
+ "type": "uint256"
67
+ }
68
+ ],
69
+ "name": "StoreCore_InvalidFieldNamesLength",
70
+ "type": "error"
71
+ },
19
72
  {
20
73
  "inputs": [
21
74
  {
@@ -239,6 +292,34 @@
239
292
  "stateMutability": "view",
240
293
  "type": "function"
241
294
  },
295
+ {
296
+ "inputs": [
297
+ {
298
+ "internalType": "uint256",
299
+ "name": "table",
300
+ "type": "uint256"
301
+ },
302
+ {
303
+ "internalType": "bytes32[]",
304
+ "name": "key",
305
+ "type": "bytes32[]"
306
+ },
307
+ {
308
+ "internalType": "uint8",
309
+ "name": "schemaIndex",
310
+ "type": "uint8"
311
+ },
312
+ {
313
+ "internalType": "bytes",
314
+ "name": "dataToPush",
315
+ "type": "bytes"
316
+ }
317
+ ],
318
+ "name": "pushToField",
319
+ "outputs": [],
320
+ "stateMutability": "nonpayable",
321
+ "type": "function"
322
+ },
242
323
  {
243
324
  "inputs": [
244
325
  {
@@ -367,13 +448,14 @@
367
448
  "getRecord(uint256,bytes32[],bytes32)": "a2d3d4fb",
368
449
  "getSchema(uint256)": "2b26fb29",
369
450
  "isStore()": "a5c2f007",
451
+ "pushToField(uint256,bytes32[],uint8,bytes)": "51ea4f1b",
370
452
  "registerSchema(uint256,bytes32)": "88140fe0",
371
453
  "registerStoreHook(uint256,address)": "07ff106e",
372
454
  "setField(uint256,bytes32[],uint8,bytes)": "91c45d22",
373
455
  "setMetadata(uint256,string,string[])": "174e23be",
374
456
  "setRecord(uint256,bytes32[],bytes)": "651a0d1a"
375
457
  },
376
- "rawMetadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"SchemaLib_InvalidLength\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SchemaLib_StaticTypeAfterDynamicType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"}],\"name\":\"StoreCore_TableAlreadyExists\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"}],\"name\":\"StoreCore_TableNotFound\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"}],\"name\":\"StoreDeleteRecord\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"schemaIndex\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"StoreSetField\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"StoreSetRecord\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"}],\"name\":\"deleteRecord\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"internalType\":\"uint8\",\"name\":\"schemaIndex\",\"type\":\"uint8\"}],\"name\":\"getField\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"internalType\":\"Schema\",\"name\":\"schema\",\"type\":\"bytes32\"}],\"name\":\"getRecord\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"}],\"name\":\"getRecord\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"}],\"name\":\"getSchema\",\"outputs\":[{\"internalType\":\"Schema\",\"name\":\"schema\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isStore\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"Schema\",\"name\":\"schema\",\"type\":\"bytes32\"}],\"name\":\"registerSchema\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"contract IStoreHook\",\"name\":\"hooks\",\"type\":\"address\"}],\"name\":\"registerStoreHook\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"internalType\":\"uint8\",\"name\":\"schemaIndex\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"setField\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"tableName\",\"type\":\"string\"},{\"internalType\":\"string[]\",\"name\":\"fieldNames\",\"type\":\"string[]\"}],\"name\":\"setMetadata\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"setRecord\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"../../node_modules/@latticexyz/store/src/Store.sol\":\"Store\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":3000},\"remappings\":[\":@latticexyz/=../../node_modules/@latticexyz/\",\":@rari-capital/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/@rari-capital/\",\":@solidstate/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/@solidstate/\",\":abdk-libraries-solidity/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/abdk-libraries-solidity/\",\":base64-sol/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/base64-sol/\",\":create-mud/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/create-mud/\",\":ds-test/=../../node_modules/ds-test/src/\",\":forge-std/=../../node_modules/forge-std/src/\",\":hardhat/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/hardhat/\",\":memmove/=/Users/flomllr/git/latticexyz/mud/node_modules/memmove/src/\",\":solmate/=/Users/flomllr/git/latticexyz/mud/node_modules/solmate/src/\",\":store/=/Users/flomllr/git/latticexyz/mud/packages/store/src/\",\":test/=../store/test/\"]},\"sources\":{\"../../node_modules/@latticexyz/schema-type/src/solidity/SchemaType.sol\":{\"keccak256\":\"0xe881f296ba0fe410faa6395ee4a65b9bf154947aebc6aa323d41a0484504221e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba7f706464d14365ff751936ba96f79f200df7bcd9d9f8abccd0b41387ca7967\",\"dweb:/ipfs/QmTiHgH3ZM2oJoqsbNs3iwwPFNYFNU7m8co87woxRLaUZ6\"]},\"../../node_modules/@latticexyz/store/src/Bytes.sol\":{\"keccak256\":\"0xbf62a7c112d01458cf6798e22c7e9efb4b429f2a448613465f8a1d04ed4909d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2f3fb1fecc95937b75af7ba625f80c3ea0848dddf2d8a1d1f987e705ebc20086\",\"dweb:/ipfs/QmU8kMF6YBL5QV43CmqdqaquKtn7699npyRJX1o5rHUo8W\"]},\"../../node_modules/@latticexyz/store/src/IStore.sol\":{\"keccak256\":\"0xfbea7bdd90fe24c52036c3d429e41004d5166ab0dcdaccac76f9c7c89919b60e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6104878a5b8e1a8c8f7b3bca268c33232380088dfc3c185506fbf9c6de530ece\",\"dweb:/ipfs/QmT1HPAWYXgzNS6BueLwQpLzKAmCUgyiBwbpTF3au3e6yc\"]},\"../../node_modules/@latticexyz/store/src/Memory.sol\":{\"keccak256\":\"0xdcd3da381bf9618de6b5e2d6235b1e22c54078242f1b66e897cfaf2776850db5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0511205cfb3c935ffc63cc227745360cd549636da5331f249cc34387b5181f44\",\"dweb:/ipfs/QmVYZ7YCT1rJemmTVRsjXZJ4HsWgspRxqbsbhy8AD1jwey\"]},\"../../node_modules/@latticexyz/store/src/PackedCounter.sol\":{\"keccak256\":\"0x4db3052d5a5009da45208715e433556d0fe7aa25f9ec6ba6f7c9711afdaba96e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ee5a2906544f37897175c19423ec50e15a070e94bcd97a5201df29e1dc3c7d0f\",\"dweb:/ipfs/QmeA5iZbRLynduDgkaLMZyY3YrPweDkFExuQEDg1GjdVCc\"]},\"../../node_modules/@latticexyz/store/src/Schema.sol\":{\"keccak256\":\"0xd2eba52a5552d6309fa0796f1a3965c529bb19456cdda6ea0d05050ce5db6a4a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9276795636982ab9c9c245883760aee797e95e84ffc0633362615b54c68fb8fd\",\"dweb:/ipfs/QmYXkMgnLmBeLi8VH1p4hp2bCAxFLiQS97RXbGbBmqU1yD\"]},\"../../node_modules/@latticexyz/store/src/Slice.sol\":{\"keccak256\":\"0x64107104822c8aa724b120fb37648d5da0a50e66b80a801e460d968748d9a95c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://afc6e93a56eac7916adbced5c2304c253f22c9c5eed201e4086ea07b1ec36a72\",\"dweb:/ipfs/QmWZEDiEUe3iVEkUYbzzT6dTVYzADJejDmbsjTsXPkk6TY\"]},\"../../node_modules/@latticexyz/store/src/Storage.sol\":{\"keccak256\":\"0x0fc7628696d72f7c1b2c1e43a29a75c1b3747542bc9769b98a2ce898b1bd4969\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b0251769edbb281e740d40b03526b7d1e206d98eeb1c4e220ac2220c4815f996\",\"dweb:/ipfs/Qmb9CVZ5h7HfAdDnj6n6ybqTHHCyMKkn8EBMFDuqhR1NRn\"]},\"../../node_modules/@latticexyz/store/src/Store.sol\":{\"keccak256\":\"0xdc5463477f93ef23bb93e646e90158bf453d57ad1f1df00017ef196694b551b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15312eba6851850fcd5bdccd78ad750eda008ca82f753ab5dc9e853df6f0636a\",\"dweb:/ipfs/QmfYC6WD4A4USGKCXvhKfMC45HXZCDKEc7MkQSBDgxWWNY\"]},\"../../node_modules/@latticexyz/store/src/StoreCore.sol\":{\"keccak256\":\"0x944f7b2c759355a951cb78084219769df228ba18c048acdf04fc73393873e082\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd71ee24a9ebda3e60a4a13ffee8de06ee6a5eded03ffd89ca734492e3a4dc5f\",\"dweb:/ipfs/QmPU7YJ3eDYcsRnTFkbeA46bmMp34r25nqR1wN2V8wDjUu\"]},\"../../node_modules/@latticexyz/store/src/StoreSwitch.sol\":{\"keccak256\":\"0x35ec8e612da5f531bcfde473e9983c7cc884b56b4e60761f87d72e988a099a31\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://75a5fd9db9bb0ff5dd04719a40395abf0cf72ea7f5ca9e4fbe1dba2c5ea6e5f8\",\"dweb:/ipfs/QmRTY9PMJW8oDtnY8JA8GJR1NX6sYgpfhRsjGbubhLdXyV\"]},\"../../node_modules/@latticexyz/store/src/Utils.sol\":{\"keccak256\":\"0x426216bfa1c0e70640787007a6e39257cf09e586fd04831ea4fb3dd9c5768fc4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://38e657fa9cfaebe39477eaff27d1ad4d7eeaf0c0058539d2ec7e6976d93df4f4\",\"dweb:/ipfs/QmRuaxqRjUrHHC2ZyTnpmq6sfrWGCDh91B6F5chFAToU6U\"]},\"../../node_modules/@latticexyz/store/src/tables/Hooks.sol\":{\"keccak256\":\"0xa895573566cc9c43793d2f70117d8386faafe29179f059706a138537920ab9b7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://787f6b2d188298389a1f1ec1e34208b226650b9c72bf1f83f08e9a50ed8e0e08\",\"dweb:/ipfs/QmTuQ5ebVVdD6zAQoHBeVCyBr3qvrTymkcX91Cu7DQxZ2V\"]},\"../../node_modules/@latticexyz/store/src/tables/StoreMetadata.sol\":{\"keccak256\":\"0x39bbbfc9a04d8bea13041e4913873e166d9d347b30e3fa567c5c54c8a3f83c5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://45ee18f22d00bd3bd026720678d7364645fc17b58c6dc54903942f3d601d095d\",\"dweb:/ipfs/QmcRfyjgEgock7cDkMxH1cH9XNz1x6rAQCMtHe1RgtEPnx\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/DecodeSlice.sol\":{\"keccak256\":\"0x9109f170227f7430388345c88e0b7f416ea46297b7f0b5011c0b794bd6a95e6f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18b046c0706a582cba039bc6cce485bcb3489f089a6dec97f965a7ef6585df93\",\"dweb:/ipfs/QmaL2Wwe3AxzW1Lis7Kcp5sb16Y8inUgTTTWwoc8SvoEzC\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/EncodeArray.sol\":{\"keccak256\":\"0x46f0010a3345cbc83f71900b7cd5375fa39e1523f5a34cb67828cfe59128368c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://457cf33b3424d816011d70a8b03a10f0ea376f3e0990ed6657455a43cf82d35b\",\"dweb:/ipfs/QmejskGLC4Hdu5oWQDMwG3TgiLbLXQJPpnLW37yUVGvBmw\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/TightCoder.sol\":{\"keccak256\":\"0xff0278a4e35174bbed8a38dad8ae7506f725bfe95f0b7c13829c353d68dd25dc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26249ec0c2fa3a3430a2f8edbfc5cd678e34ea1cf1d7490ecaf1e925c976eb85\",\"dweb:/ipfs/QmUpkhr5kFiDKc7rZ2z5HcTf5PkrWVJu5sa31tYv911cPL\"]},\"../../node_modules/forge-std/src/console.sol\":{\"keccak256\":\"0x91d5413c2434ca58fd278b6e1e79fd98d10c83931cc2596a6038eee4daeb34ba\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://91ccea707361e48b9b7a161fe81f496b9932bc471e9c4e4e1e9c283f2453cc70\",\"dweb:/ipfs/QmcB66sZhQ6Kz7MUHcLE78YXRUZxoZnnxZjN6yATsbB2ec\"]}},\"version\":1}",
458
+ "rawMetadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"SchemaLib_InvalidLength\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SchemaLib_StaticTypeAfterDynamicType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"start\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"end\",\"type\":\"uint256\"}],\"name\":\"Slice_OutOfBounds\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expected\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"received\",\"type\":\"uint256\"}],\"name\":\"StoreCore_InvalidDataLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expected\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"received\",\"type\":\"uint256\"}],\"name\":\"StoreCore_InvalidFieldNamesLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"}],\"name\":\"StoreCore_TableAlreadyExists\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"}],\"name\":\"StoreCore_TableNotFound\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"}],\"name\":\"StoreDeleteRecord\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"schemaIndex\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"StoreSetField\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"StoreSetRecord\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"}],\"name\":\"deleteRecord\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"internalType\":\"uint8\",\"name\":\"schemaIndex\",\"type\":\"uint8\"}],\"name\":\"getField\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"internalType\":\"Schema\",\"name\":\"schema\",\"type\":\"bytes32\"}],\"name\":\"getRecord\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"}],\"name\":\"getRecord\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"}],\"name\":\"getSchema\",\"outputs\":[{\"internalType\":\"Schema\",\"name\":\"schema\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isStore\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"internalType\":\"uint8\",\"name\":\"schemaIndex\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"dataToPush\",\"type\":\"bytes\"}],\"name\":\"pushToField\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"Schema\",\"name\":\"schema\",\"type\":\"bytes32\"}],\"name\":\"registerSchema\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"contract IStoreHook\",\"name\":\"hooks\",\"type\":\"address\"}],\"name\":\"registerStoreHook\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"internalType\":\"uint8\",\"name\":\"schemaIndex\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"setField\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"tableName\",\"type\":\"string\"},{\"internalType\":\"string[]\",\"name\":\"fieldNames\",\"type\":\"string[]\"}],\"name\":\"setMetadata\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"table\",\"type\":\"uint256\"},{\"internalType\":\"bytes32[]\",\"name\":\"key\",\"type\":\"bytes32[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"setRecord\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"../../node_modules/@latticexyz/store/src/Store.sol\":\"Store\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":3000},\"remappings\":[\":@latticexyz/=../../node_modules/@latticexyz/\",\":@rari-capital/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/@rari-capital/\",\":@solidstate/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/@solidstate/\",\":abdk-libraries-solidity/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/abdk-libraries-solidity/\",\":base64-sol/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/base64-sol/\",\":create-mud/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/create-mud/\",\":ds-test/=../../node_modules/ds-test/src/\",\":forge-std/=../../node_modules/forge-std/src/\",\":hardhat/=/Users/flomllr/git/latticexyz/mud/packages/store/../../node_modules/hardhat/\",\":memmove/=/Users/flomllr/git/latticexyz/mud/node_modules/memmove/src/\",\":solmate/=/Users/flomllr/git/latticexyz/mud/node_modules/solmate/src/\",\":store/=/Users/flomllr/git/latticexyz/mud/packages/store/src/\",\":test/=../store/test/\"]},\"sources\":{\"../../node_modules/@latticexyz/schema-type/src/solidity/SchemaType.sol\":{\"keccak256\":\"0xe881f296ba0fe410faa6395ee4a65b9bf154947aebc6aa323d41a0484504221e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba7f706464d14365ff751936ba96f79f200df7bcd9d9f8abccd0b41387ca7967\",\"dweb:/ipfs/QmTiHgH3ZM2oJoqsbNs3iwwPFNYFNU7m8co87woxRLaUZ6\"]},\"../../node_modules/@latticexyz/store/src/Bytes.sol\":{\"keccak256\":\"0xbf62a7c112d01458cf6798e22c7e9efb4b429f2a448613465f8a1d04ed4909d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2f3fb1fecc95937b75af7ba625f80c3ea0848dddf2d8a1d1f987e705ebc20086\",\"dweb:/ipfs/QmU8kMF6YBL5QV43CmqdqaquKtn7699npyRJX1o5rHUo8W\"]},\"../../node_modules/@latticexyz/store/src/IStore.sol\":{\"keccak256\":\"0xe4e05dbf758852fa668cf4c9877f64c38f1cb57bbce8f8585d6f1c5ec0bba98d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://843235da22b943edfaf0a3b9c1fc1f985e480a3941eda3a9417962bdefd5ae37\",\"dweb:/ipfs/QmWC5TCVhxgJpEvDdNzTHjjwPeupFEUaq8W7AFnxYfsp5P\"]},\"../../node_modules/@latticexyz/store/src/Memory.sol\":{\"keccak256\":\"0xdcd3da381bf9618de6b5e2d6235b1e22c54078242f1b66e897cfaf2776850db5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0511205cfb3c935ffc63cc227745360cd549636da5331f249cc34387b5181f44\",\"dweb:/ipfs/QmVYZ7YCT1rJemmTVRsjXZJ4HsWgspRxqbsbhy8AD1jwey\"]},\"../../node_modules/@latticexyz/store/src/PackedCounter.sol\":{\"keccak256\":\"0x4db3052d5a5009da45208715e433556d0fe7aa25f9ec6ba6f7c9711afdaba96e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ee5a2906544f37897175c19423ec50e15a070e94bcd97a5201df29e1dc3c7d0f\",\"dweb:/ipfs/QmeA5iZbRLynduDgkaLMZyY3YrPweDkFExuQEDg1GjdVCc\"]},\"../../node_modules/@latticexyz/store/src/Schema.sol\":{\"keccak256\":\"0xd2eba52a5552d6309fa0796f1a3965c529bb19456cdda6ea0d05050ce5db6a4a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9276795636982ab9c9c245883760aee797e95e84ffc0633362615b54c68fb8fd\",\"dweb:/ipfs/QmYXkMgnLmBeLi8VH1p4hp2bCAxFLiQS97RXbGbBmqU1yD\"]},\"../../node_modules/@latticexyz/store/src/Slice.sol\":{\"keccak256\":\"0x64107104822c8aa724b120fb37648d5da0a50e66b80a801e460d968748d9a95c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://afc6e93a56eac7916adbced5c2304c253f22c9c5eed201e4086ea07b1ec36a72\",\"dweb:/ipfs/QmWZEDiEUe3iVEkUYbzzT6dTVYzADJejDmbsjTsXPkk6TY\"]},\"../../node_modules/@latticexyz/store/src/Storage.sol\":{\"keccak256\":\"0x0fc7628696d72f7c1b2c1e43a29a75c1b3747542bc9769b98a2ce898b1bd4969\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b0251769edbb281e740d40b03526b7d1e206d98eeb1c4e220ac2220c4815f996\",\"dweb:/ipfs/Qmb9CVZ5h7HfAdDnj6n6ybqTHHCyMKkn8EBMFDuqhR1NRn\"]},\"../../node_modules/@latticexyz/store/src/Store.sol\":{\"keccak256\":\"0xdc5463477f93ef23bb93e646e90158bf453d57ad1f1df00017ef196694b551b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15312eba6851850fcd5bdccd78ad750eda008ca82f753ab5dc9e853df6f0636a\",\"dweb:/ipfs/QmfYC6WD4A4USGKCXvhKfMC45HXZCDKEc7MkQSBDgxWWNY\"]},\"../../node_modules/@latticexyz/store/src/StoreCore.sol\":{\"keccak256\":\"0x37ee0910803134ee4c3492fa0133ae6103acbb5c0f954eccb30537a1f375f417\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d38b9acd326f87d5e5bfdf9a07ba41536551beb9e5c5fe2e20706c811535cef9\",\"dweb:/ipfs/QmVXcc7ganYPQFExnM6bFu3Gum3WMUVU9z6i5WRJ4MeEYq\"]},\"../../node_modules/@latticexyz/store/src/StoreSwitch.sol\":{\"keccak256\":\"0x423d45c044ed3b3131ecd0243315a237552ad082501a0803310c60959afe7874\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6c22d26396f5eee8b349d608ad2aef3533e82619c679345b70d51e2a52d115f\",\"dweb:/ipfs/Qmd4L27La3VFacwWi4C4u5X2BqBUQdQJXuyBFdS9BmsUh8\"]},\"../../node_modules/@latticexyz/store/src/Utils.sol\":{\"keccak256\":\"0x426216bfa1c0e70640787007a6e39257cf09e586fd04831ea4fb3dd9c5768fc4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://38e657fa9cfaebe39477eaff27d1ad4d7eeaf0c0058539d2ec7e6976d93df4f4\",\"dweb:/ipfs/QmRuaxqRjUrHHC2ZyTnpmq6sfrWGCDh91B6F5chFAToU6U\"]},\"../../node_modules/@latticexyz/store/src/tables/Hooks.sol\":{\"keccak256\":\"0x0258fdef925b52096212b3f2a067bc30c901c640a29d87708e9bf1e818e022e0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6f02c1f42abbfff233fdd0e635f7a07bd6917a3bb9b10c7187536379f7aed1c7\",\"dweb:/ipfs/QmNbjviQRoqkWWWMo2sYocQZpao7xUMrNuCv8JsCK4RGeq\"]},\"../../node_modules/@latticexyz/store/src/tables/StoreMetadata.sol\":{\"keccak256\":\"0xfb46da9169fade0be64a3c197e10a78e1f69e5684a3ccd706f217a1d21c1d20f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://27fc20b3634e7bfbbb66b79108965a69431c8e7b820617cc7376884ce5e4ba29\",\"dweb:/ipfs/QmWCy9Z4oyovdsSCrTDx3KsgUmFiibEFgbXGQfEinRrZGt\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/DecodeSlice.sol\":{\"keccak256\":\"0x9109f170227f7430388345c88e0b7f416ea46297b7f0b5011c0b794bd6a95e6f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18b046c0706a582cba039bc6cce485bcb3489f089a6dec97f965a7ef6585df93\",\"dweb:/ipfs/QmaL2Wwe3AxzW1Lis7Kcp5sb16Y8inUgTTTWwoc8SvoEzC\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/EncodeArray.sol\":{\"keccak256\":\"0x46f0010a3345cbc83f71900b7cd5375fa39e1523f5a34cb67828cfe59128368c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://457cf33b3424d816011d70a8b03a10f0ea376f3e0990ed6657455a43cf82d35b\",\"dweb:/ipfs/QmejskGLC4Hdu5oWQDMwG3TgiLbLXQJPpnLW37yUVGvBmw\"]},\"../../node_modules/@latticexyz/store/src/tightcoder/TightCoder.sol\":{\"keccak256\":\"0xff0278a4e35174bbed8a38dad8ae7506f725bfe95f0b7c13829c353d68dd25dc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://26249ec0c2fa3a3430a2f8edbfc5cd678e34ea1cf1d7490ecaf1e925c976eb85\",\"dweb:/ipfs/QmUpkhr5kFiDKc7rZ2z5HcTf5PkrWVJu5sa31tYv911cPL\"]},\"../../node_modules/forge-std/src/console.sol\":{\"keccak256\":\"0x91d5413c2434ca58fd278b6e1e79fd98d10c83931cc2596a6038eee4daeb34ba\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://91ccea707361e48b9b7a161fe81f496b9932bc471e9c4e4e1e9c283f2453cc70\",\"dweb:/ipfs/QmcB66sZhQ6Kz7MUHcLE78YXRUZxoZnnxZjN6yATsbB2ec\"]}},\"version\":1}",
377
459
  "metadata": {
378
460
  "compiler": {
379
461
  "version": "0.8.13+commit.abaa5c0e"
@@ -397,6 +479,59 @@
397
479
  "type": "error",
398
480
  "name": "SchemaLib_StaticTypeAfterDynamicType"
399
481
  },
482
+ {
483
+ "inputs": [
484
+ {
485
+ "internalType": "bytes",
486
+ "name": "data",
487
+ "type": "bytes"
488
+ },
489
+ {
490
+ "internalType": "uint256",
491
+ "name": "start",
492
+ "type": "uint256"
493
+ },
494
+ {
495
+ "internalType": "uint256",
496
+ "name": "end",
497
+ "type": "uint256"
498
+ }
499
+ ],
500
+ "type": "error",
501
+ "name": "Slice_OutOfBounds"
502
+ },
503
+ {
504
+ "inputs": [
505
+ {
506
+ "internalType": "uint256",
507
+ "name": "expected",
508
+ "type": "uint256"
509
+ },
510
+ {
511
+ "internalType": "uint256",
512
+ "name": "received",
513
+ "type": "uint256"
514
+ }
515
+ ],
516
+ "type": "error",
517
+ "name": "StoreCore_InvalidDataLength"
518
+ },
519
+ {
520
+ "inputs": [
521
+ {
522
+ "internalType": "uint256",
523
+ "name": "expected",
524
+ "type": "uint256"
525
+ },
526
+ {
527
+ "internalType": "uint256",
528
+ "name": "received",
529
+ "type": "uint256"
530
+ }
531
+ ],
532
+ "type": "error",
533
+ "name": "StoreCore_InvalidFieldNamesLength"
534
+ },
400
535
  {
401
536
  "inputs": [
402
537
  {
@@ -618,6 +753,33 @@
618
753
  "type": "function",
619
754
  "name": "isStore"
620
755
  },
756
+ {
757
+ "inputs": [
758
+ {
759
+ "internalType": "uint256",
760
+ "name": "table",
761
+ "type": "uint256"
762
+ },
763
+ {
764
+ "internalType": "bytes32[]",
765
+ "name": "key",
766
+ "type": "bytes32[]"
767
+ },
768
+ {
769
+ "internalType": "uint8",
770
+ "name": "schemaIndex",
771
+ "type": "uint8"
772
+ },
773
+ {
774
+ "internalType": "bytes",
775
+ "name": "dataToPush",
776
+ "type": "bytes"
777
+ }
778
+ ],
779
+ "stateMutability": "nonpayable",
780
+ "type": "function",
781
+ "name": "pushToField"
782
+ },
621
783
  {
622
784
  "inputs": [
623
785
  {
@@ -781,10 +943,10 @@
781
943
  "license": "MIT"
782
944
  },
783
945
  "../../node_modules/@latticexyz/store/src/IStore.sol": {
784
- "keccak256": "0xfbea7bdd90fe24c52036c3d429e41004d5166ab0dcdaccac76f9c7c89919b60e",
946
+ "keccak256": "0xe4e05dbf758852fa668cf4c9877f64c38f1cb57bbce8f8585d6f1c5ec0bba98d",
785
947
  "urls": [
786
- "bzz-raw://6104878a5b8e1a8c8f7b3bca268c33232380088dfc3c185506fbf9c6de530ece",
787
- "dweb:/ipfs/QmT1HPAWYXgzNS6BueLwQpLzKAmCUgyiBwbpTF3au3e6yc"
948
+ "bzz-raw://843235da22b943edfaf0a3b9c1fc1f985e480a3941eda3a9417962bdefd5ae37",
949
+ "dweb:/ipfs/QmWC5TCVhxgJpEvDdNzTHjjwPeupFEUaq8W7AFnxYfsp5P"
788
950
  ],
789
951
  "license": "MIT"
790
952
  },
@@ -837,18 +999,18 @@
837
999
  "license": "MIT"
838
1000
  },
839
1001
  "../../node_modules/@latticexyz/store/src/StoreCore.sol": {
840
- "keccak256": "0x944f7b2c759355a951cb78084219769df228ba18c048acdf04fc73393873e082",
1002
+ "keccak256": "0x37ee0910803134ee4c3492fa0133ae6103acbb5c0f954eccb30537a1f375f417",
841
1003
  "urls": [
842
- "bzz-raw://cd71ee24a9ebda3e60a4a13ffee8de06ee6a5eded03ffd89ca734492e3a4dc5f",
843
- "dweb:/ipfs/QmPU7YJ3eDYcsRnTFkbeA46bmMp34r25nqR1wN2V8wDjUu"
1004
+ "bzz-raw://d38b9acd326f87d5e5bfdf9a07ba41536551beb9e5c5fe2e20706c811535cef9",
1005
+ "dweb:/ipfs/QmVXcc7ganYPQFExnM6bFu3Gum3WMUVU9z6i5WRJ4MeEYq"
844
1006
  ],
845
1007
  "license": "MIT"
846
1008
  },
847
1009
  "../../node_modules/@latticexyz/store/src/StoreSwitch.sol": {
848
- "keccak256": "0x35ec8e612da5f531bcfde473e9983c7cc884b56b4e60761f87d72e988a099a31",
1010
+ "keccak256": "0x423d45c044ed3b3131ecd0243315a237552ad082501a0803310c60959afe7874",
849
1011
  "urls": [
850
- "bzz-raw://75a5fd9db9bb0ff5dd04719a40395abf0cf72ea7f5ca9e4fbe1dba2c5ea6e5f8",
851
- "dweb:/ipfs/QmRTY9PMJW8oDtnY8JA8GJR1NX6sYgpfhRsjGbubhLdXyV"
1012
+ "bzz-raw://f6c22d26396f5eee8b349d608ad2aef3533e82619c679345b70d51e2a52d115f",
1013
+ "dweb:/ipfs/Qmd4L27La3VFacwWi4C4u5X2BqBUQdQJXuyBFdS9BmsUh8"
852
1014
  ],
853
1015
  "license": "MIT"
854
1016
  },
@@ -861,18 +1023,18 @@
861
1023
  "license": "MIT"
862
1024
  },
863
1025
  "../../node_modules/@latticexyz/store/src/tables/Hooks.sol": {
864
- "keccak256": "0xa895573566cc9c43793d2f70117d8386faafe29179f059706a138537920ab9b7",
1026
+ "keccak256": "0x0258fdef925b52096212b3f2a067bc30c901c640a29d87708e9bf1e818e022e0",
865
1027
  "urls": [
866
- "bzz-raw://787f6b2d188298389a1f1ec1e34208b226650b9c72bf1f83f08e9a50ed8e0e08",
867
- "dweb:/ipfs/QmTuQ5ebVVdD6zAQoHBeVCyBr3qvrTymkcX91Cu7DQxZ2V"
1028
+ "bzz-raw://6f02c1f42abbfff233fdd0e635f7a07bd6917a3bb9b10c7187536379f7aed1c7",
1029
+ "dweb:/ipfs/QmNbjviQRoqkWWWMo2sYocQZpao7xUMrNuCv8JsCK4RGeq"
868
1030
  ],
869
1031
  "license": "MIT"
870
1032
  },
871
1033
  "../../node_modules/@latticexyz/store/src/tables/StoreMetadata.sol": {
872
- "keccak256": "0x39bbbfc9a04d8bea13041e4913873e166d9d347b30e3fa567c5c54c8a3f83c5f",
1034
+ "keccak256": "0xfb46da9169fade0be64a3c197e10a78e1f69e5684a3ccd706f217a1d21c1d20f",
873
1035
  "urls": [
874
- "bzz-raw://45ee18f22d00bd3bd026720678d7364645fc17b58c6dc54903942f3d601d095d",
875
- "dweb:/ipfs/QmcRfyjgEgock7cDkMxH1cH9XNz1x6rAQCMtHe1RgtEPnx"
1036
+ "bzz-raw://27fc20b3634e7bfbbb66b79108965a69431c8e7b820617cc7376884ce5e4ba29",
1037
+ "dweb:/ipfs/QmWCy9Z4oyovdsSCrTDx3KsgUmFiibEFgbXGQfEinRrZGt"
876
1038
  ],
877
1039
  "license": "MIT"
878
1040
  },
@@ -913,29 +1075,29 @@
913
1075
  },
914
1076
  "ast": {
915
1077
  "absolutePath": "../../node_modules/@latticexyz/store/src/Store.sol",
916
- "id": 2678,
1078
+ "id": 2690,
917
1079
  "exportedSymbols": {
918
1080
  "IStore": [
919
- 1100
1081
+ 1112
920
1082
  ],
921
1083
  "IStoreHook": [
922
- 1131
1084
+ 1143
923
1085
  ],
924
1086
  "Schema": [
925
- 1561
1087
+ 1573
926
1088
  ],
927
1089
  "Store": [
928
- 2677
1090
+ 2689
929
1091
  ],
930
1092
  "StoreCore": [
931
- 3603
1093
+ 3736
932
1094
  ]
933
1095
  },
934
1096
  "nodeType": "SourceUnit",
935
1097
  "src": "32:1135:8",
936
1098
  "nodes": [
937
1099
  {
938
- "id": 2574,
1100
+ "id": 2586,
939
1101
  "nodeType": "PragmaDirective",
940
1102
  "src": "32:24:8",
941
1103
  "nodes": [],
@@ -947,23 +1109,23 @@
947
1109
  ]
948
1110
  },
949
1111
  {
950
- "id": 2577,
1112
+ "id": 2589,
951
1113
  "nodeType": "ImportDirective",
952
1114
  "src": "58:50:8",
953
1115
  "nodes": [],
954
1116
  "absolutePath": "../../node_modules/@latticexyz/store/src/IStore.sol",
955
1117
  "file": "./IStore.sol",
956
1118
  "nameLocation": "-1:-1:-1",
957
- "scope": 2678,
958
- "sourceUnit": 1132,
1119
+ "scope": 2690,
1120
+ "sourceUnit": 1144,
959
1121
  "symbolAliases": [
960
1122
  {
961
1123
  "foreign": {
962
- "id": 2575,
1124
+ "id": 2587,
963
1125
  "name": "IStore",
964
1126
  "nodeType": "Identifier",
965
1127
  "overloadedDeclarations": [],
966
- "referencedDeclaration": 1100,
1128
+ "referencedDeclaration": 1112,
967
1129
  "src": "67:6:8",
968
1130
  "typeDescriptions": {}
969
1131
  },
@@ -971,11 +1133,11 @@
971
1133
  },
972
1134
  {
973
1135
  "foreign": {
974
- "id": 2576,
1136
+ "id": 2588,
975
1137
  "name": "IStoreHook",
976
1138
  "nodeType": "Identifier",
977
1139
  "overloadedDeclarations": [],
978
- "referencedDeclaration": 1131,
1140
+ "referencedDeclaration": 1143,
979
1141
  "src": "75:10:8",
980
1142
  "typeDescriptions": {}
981
1143
  },
@@ -985,23 +1147,23 @@
985
1147
  "unitAlias": ""
986
1148
  },
987
1149
  {
988
- "id": 2579,
1150
+ "id": 2591,
989
1151
  "nodeType": "ImportDirective",
990
1152
  "src": "109:44:8",
991
1153
  "nodes": [],
992
1154
  "absolutePath": "../../node_modules/@latticexyz/store/src/StoreCore.sol",
993
1155
  "file": "./StoreCore.sol",
994
1156
  "nameLocation": "-1:-1:-1",
995
- "scope": 2678,
996
- "sourceUnit": 4267,
1157
+ "scope": 2690,
1158
+ "sourceUnit": 4498,
997
1159
  "symbolAliases": [
998
1160
  {
999
1161
  "foreign": {
1000
- "id": 2578,
1162
+ "id": 2590,
1001
1163
  "name": "StoreCore",
1002
1164
  "nodeType": "Identifier",
1003
1165
  "overloadedDeclarations": [],
1004
- "referencedDeclaration": 3603,
1166
+ "referencedDeclaration": 3736,
1005
1167
  "src": "118:9:8",
1006
1168
  "typeDescriptions": {}
1007
1169
  },
@@ -1011,23 +1173,23 @@
1011
1173
  "unitAlias": ""
1012
1174
  },
1013
1175
  {
1014
- "id": 2581,
1176
+ "id": 2593,
1015
1177
  "nodeType": "ImportDirective",
1016
1178
  "src": "154:38:8",
1017
1179
  "nodes": [],
1018
1180
  "absolutePath": "../../node_modules/@latticexyz/store/src/Schema.sol",
1019
1181
  "file": "./Schema.sol",
1020
1182
  "nameLocation": "-1:-1:-1",
1021
- "scope": 2678,
1022
- "sourceUnit": 2324,
1183
+ "scope": 2690,
1184
+ "sourceUnit": 2336,
1023
1185
  "symbolAliases": [
1024
1186
  {
1025
1187
  "foreign": {
1026
- "id": 2580,
1188
+ "id": 2592,
1027
1189
  "name": "Schema",
1028
1190
  "nodeType": "Identifier",
1029
1191
  "overloadedDeclarations": [],
1030
- "referencedDeclaration": 1561,
1192
+ "referencedDeclaration": 1573,
1031
1193
  "src": "163:6:8",
1032
1194
  "typeDescriptions": {}
1033
1195
  },
@@ -1037,17 +1199,17 @@
1037
1199
  "unitAlias": ""
1038
1200
  },
1039
1201
  {
1040
- "id": 2677,
1202
+ "id": 2689,
1041
1203
  "nodeType": "ContractDefinition",
1042
1204
  "src": "194:972:8",
1043
1205
  "nodes": [
1044
1206
  {
1045
- "id": 2592,
1207
+ "id": 2604,
1046
1208
  "nodeType": "FunctionDefinition",
1047
1209
  "src": "232:47:8",
1048
1210
  "nodes": [],
1049
1211
  "body": {
1050
- "id": 2591,
1212
+ "id": 2603,
1051
1213
  "nodeType": "Block",
1052
1214
  "src": "246:33:8",
1053
1215
  "nodes": [],
@@ -1058,32 +1220,32 @@
1058
1220
  "expression": {
1059
1221
  "argumentTypes": [],
1060
1222
  "expression": {
1061
- "id": 2586,
1223
+ "id": 2598,
1062
1224
  "name": "StoreCore",
1063
1225
  "nodeType": "Identifier",
1064
1226
  "overloadedDeclarations": [],
1065
- "referencedDeclaration": 3603,
1227
+ "referencedDeclaration": 3736,
1066
1228
  "src": "252:9:8",
1067
1229
  "typeDescriptions": {
1068
- "typeIdentifier": "t_type$_t_contract$_StoreCore_$3603_$",
1230
+ "typeIdentifier": "t_type$_t_contract$_StoreCore_$3736_$",
1069
1231
  "typeString": "type(library StoreCore)"
1070
1232
  }
1071
1233
  },
1072
- "id": 2588,
1234
+ "id": 2600,
1073
1235
  "isConstant": false,
1074
1236
  "isLValue": false,
1075
1237
  "isPure": false,
1076
1238
  "lValueRequested": false,
1077
1239
  "memberName": "initialize",
1078
1240
  "nodeType": "MemberAccess",
1079
- "referencedDeclaration": 2779,
1241
+ "referencedDeclaration": 2803,
1080
1242
  "src": "252:20:8",
1081
1243
  "typeDescriptions": {
1082
1244
  "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
1083
1245
  "typeString": "function ()"
1084
1246
  }
1085
1247
  },
1086
- "id": 2589,
1248
+ "id": 2601,
1087
1249
  "isConstant": false,
1088
1250
  "isLValue": false,
1089
1251
  "isPure": false,
@@ -1098,7 +1260,7 @@
1098
1260
  "typeString": "tuple()"
1099
1261
  }
1100
1262
  },
1101
- "id": 2590,
1263
+ "id": 2602,
1102
1264
  "nodeType": "ExpressionStatement",
1103
1265
  "src": "252:22:8"
1104
1266
  }
@@ -1110,49 +1272,49 @@
1110
1272
  "name": "",
1111
1273
  "nameLocation": "-1:-1:-1",
1112
1274
  "parameters": {
1113
- "id": 2584,
1275
+ "id": 2596,
1114
1276
  "nodeType": "ParameterList",
1115
1277
  "parameters": [],
1116
1278
  "src": "243:2:8"
1117
1279
  },
1118
1280
  "returnParameters": {
1119
- "id": 2585,
1281
+ "id": 2597,
1120
1282
  "nodeType": "ParameterList",
1121
1283
  "parameters": [],
1122
1284
  "src": "246:0:8"
1123
1285
  },
1124
- "scope": 2677,
1286
+ "scope": 2689,
1125
1287
  "stateMutability": "nonpayable",
1126
1288
  "virtual": false,
1127
1289
  "visibility": "internal"
1128
1290
  },
1129
1291
  {
1130
- "id": 2608,
1292
+ "id": 2620,
1131
1293
  "nodeType": "FunctionDefinition",
1132
1294
  "src": "283:124:8",
1133
1295
  "nodes": [],
1134
1296
  "body": {
1135
- "id": 2607,
1297
+ "id": 2619,
1136
1298
  "nodeType": "Block",
1137
1299
  "src": "361:46:8",
1138
1300
  "nodes": [],
1139
1301
  "statements": [
1140
1302
  {
1141
1303
  "expression": {
1142
- "id": 2605,
1304
+ "id": 2617,
1143
1305
  "isConstant": false,
1144
1306
  "isLValue": false,
1145
1307
  "isPure": false,
1146
1308
  "lValueRequested": false,
1147
1309
  "leftHandSide": {
1148
- "id": 2600,
1310
+ "id": 2612,
1149
1311
  "name": "schema",
1150
1312
  "nodeType": "Identifier",
1151
1313
  "overloadedDeclarations": [],
1152
- "referencedDeclaration": 2598,
1314
+ "referencedDeclaration": 2610,
1153
1315
  "src": "367:6:8",
1154
1316
  "typeDescriptions": {
1155
- "typeIdentifier": "t_userDefinedValueType$_Schema_$1561",
1317
+ "typeIdentifier": "t_userDefinedValueType$_Schema_$1573",
1156
1318
  "typeString": "Schema"
1157
1319
  }
1158
1320
  },
@@ -1161,11 +1323,11 @@
1161
1323
  "rightHandSide": {
1162
1324
  "arguments": [
1163
1325
  {
1164
- "id": 2603,
1326
+ "id": 2615,
1165
1327
  "name": "table",
1166
1328
  "nodeType": "Identifier",
1167
1329
  "overloadedDeclarations": [],
1168
- "referencedDeclaration": 2594,
1330
+ "referencedDeclaration": 2606,
1169
1331
  "src": "396:5:8",
1170
1332
  "typeDescriptions": {
1171
1333
  "typeIdentifier": "t_uint256",
@@ -1181,32 +1343,32 @@
1181
1343
  }
1182
1344
  ],
1183
1345
  "expression": {
1184
- "id": 2601,
1346
+ "id": 2613,
1185
1347
  "name": "StoreCore",
1186
1348
  "nodeType": "Identifier",
1187
1349
  "overloadedDeclarations": [],
1188
- "referencedDeclaration": 3603,
1350
+ "referencedDeclaration": 3736,
1189
1351
  "src": "376:9:8",
1190
1352
  "typeDescriptions": {
1191
- "typeIdentifier": "t_type$_t_contract$_StoreCore_$3603_$",
1353
+ "typeIdentifier": "t_type$_t_contract$_StoreCore_$3736_$",
1192
1354
  "typeString": "type(library StoreCore)"
1193
1355
  }
1194
1356
  },
1195
- "id": 2602,
1357
+ "id": 2614,
1196
1358
  "isConstant": false,
1197
1359
  "isLValue": false,
1198
1360
  "isPure": false,
1199
1361
  "lValueRequested": false,
1200
1362
  "memberName": "getSchema",
1201
1363
  "nodeType": "MemberAccess",
1202
- "referencedDeclaration": 2841,
1364
+ "referencedDeclaration": 2829,
1203
1365
  "src": "376:19:8",
1204
1366
  "typeDescriptions": {
1205
- "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_userDefinedValueType$_Schema_$1561_$",
1367
+ "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_userDefinedValueType$_Schema_$1573_$",
1206
1368
  "typeString": "function (uint256) view returns (Schema)"
1207
1369
  }
1208
1370
  },
1209
- "id": 2604,
1371
+ "id": 2616,
1210
1372
  "isConstant": false,
1211
1373
  "isLValue": false,
1212
1374
  "isPure": false,
@@ -1217,17 +1379,17 @@
1217
1379
  "src": "376:26:8",
1218
1380
  "tryCall": false,
1219
1381
  "typeDescriptions": {
1220
- "typeIdentifier": "t_userDefinedValueType$_Schema_$1561",
1382
+ "typeIdentifier": "t_userDefinedValueType$_Schema_$1573",
1221
1383
  "typeString": "Schema"
1222
1384
  }
1223
1385
  },
1224
1386
  "src": "367:35:8",
1225
1387
  "typeDescriptions": {
1226
- "typeIdentifier": "t_userDefinedValueType$_Schema_$1561",
1388
+ "typeIdentifier": "t_userDefinedValueType$_Schema_$1573",
1227
1389
  "typeString": "Schema"
1228
1390
  }
1229
1391
  },
1230
- "id": 2606,
1392
+ "id": 2618,
1231
1393
  "nodeType": "ExpressionStatement",
1232
1394
  "src": "367:35:8"
1233
1395
  }
@@ -1243,17 +1405,17 @@
1243
1405
  "name": "getSchema",
1244
1406
  "nameLocation": "292:9:8",
1245
1407
  "parameters": {
1246
- "id": 2595,
1408
+ "id": 2607,
1247
1409
  "nodeType": "ParameterList",
1248
1410
  "parameters": [
1249
1411
  {
1250
1412
  "constant": false,
1251
- "id": 2594,
1413
+ "id": 2606,
1252
1414
  "mutability": "mutable",
1253
1415
  "name": "table",
1254
1416
  "nameLocation": "310:5:8",
1255
1417
  "nodeType": "VariableDeclaration",
1256
- "scope": 2608,
1418
+ "scope": 2620,
1257
1419
  "src": "302:13:8",
1258
1420
  "stateVariable": false,
1259
1421
  "storageLocation": "default",
@@ -1262,7 +1424,7 @@
1262
1424
  "typeString": "uint256"
1263
1425
  },
1264
1426
  "typeName": {
1265
- "id": 2593,
1427
+ "id": 2605,
1266
1428
  "name": "uint256",
1267
1429
  "nodeType": "ElementaryTypeName",
1268
1430
  "src": "302:7:8",
@@ -1277,38 +1439,38 @@
1277
1439
  "src": "301:15:8"
1278
1440
  },
1279
1441
  "returnParameters": {
1280
- "id": 2599,
1442
+ "id": 2611,
1281
1443
  "nodeType": "ParameterList",
1282
1444
  "parameters": [
1283
1445
  {
1284
1446
  "constant": false,
1285
- "id": 2598,
1447
+ "id": 2610,
1286
1448
  "mutability": "mutable",
1287
1449
  "name": "schema",
1288
1450
  "nameLocation": "353:6:8",
1289
1451
  "nodeType": "VariableDeclaration",
1290
- "scope": 2608,
1452
+ "scope": 2620,
1291
1453
  "src": "346:13:8",
1292
1454
  "stateVariable": false,
1293
1455
  "storageLocation": "default",
1294
1456
  "typeDescriptions": {
1295
- "typeIdentifier": "t_userDefinedValueType$_Schema_$1561",
1457
+ "typeIdentifier": "t_userDefinedValueType$_Schema_$1573",
1296
1458
  "typeString": "Schema"
1297
1459
  },
1298
1460
  "typeName": {
1299
- "id": 2597,
1461
+ "id": 2609,
1300
1462
  "nodeType": "UserDefinedTypeName",
1301
1463
  "pathNode": {
1302
- "id": 2596,
1464
+ "id": 2608,
1303
1465
  "name": "Schema",
1304
1466
  "nodeType": "IdentifierPath",
1305
- "referencedDeclaration": 1561,
1467
+ "referencedDeclaration": 1573,
1306
1468
  "src": "346:6:8"
1307
1469
  },
1308
- "referencedDeclaration": 1561,
1470
+ "referencedDeclaration": 1573,
1309
1471
  "src": "346:6:8",
1310
1472
  "typeDescriptions": {
1311
- "typeIdentifier": "t_userDefinedValueType$_Schema_$1561",
1473
+ "typeIdentifier": "t_userDefinedValueType$_Schema_$1573",
1312
1474
  "typeString": "Schema"
1313
1475
  }
1314
1476
  },
@@ -1317,35 +1479,35 @@
1317
1479
  ],
1318
1480
  "src": "345:15:8"
1319
1481
  },
1320
- "scope": 2677,
1482
+ "scope": 2689,
1321
1483
  "stateMutability": "view",
1322
1484
  "virtual": true,
1323
1485
  "visibility": "public"
1324
1486
  },
1325
1487
  {
1326
- "id": 2627,
1488
+ "id": 2639,
1327
1489
  "nodeType": "FunctionDefinition",
1328
1490
  "src": "484:155:8",
1329
1491
  "nodes": [],
1330
1492
  "body": {
1331
- "id": 2626,
1493
+ "id": 2638,
1332
1494
  "nodeType": "Block",
1333
1495
  "src": "590:49:8",
1334
1496
  "nodes": [],
1335
1497
  "statements": [
1336
1498
  {
1337
1499
  "expression": {
1338
- "id": 2624,
1500
+ "id": 2636,
1339
1501
  "isConstant": false,
1340
1502
  "isLValue": false,
1341
1503
  "isPure": false,
1342
1504
  "lValueRequested": false,
1343
1505
  "leftHandSide": {
1344
- "id": 2618,
1506
+ "id": 2630,
1345
1507
  "name": "data",
1346
1508
  "nodeType": "Identifier",
1347
1509
  "overloadedDeclarations": [],
1348
- "referencedDeclaration": 2616,
1510
+ "referencedDeclaration": 2628,
1349
1511
  "src": "596:4:8",
1350
1512
  "typeDescriptions": {
1351
1513
  "typeIdentifier": "t_bytes_memory_ptr",
@@ -1357,11 +1519,11 @@
1357
1519
  "rightHandSide": {
1358
1520
  "arguments": [
1359
1521
  {
1360
- "id": 2621,
1522
+ "id": 2633,
1361
1523
  "name": "table",
1362
1524
  "nodeType": "Identifier",
1363
1525
  "overloadedDeclarations": [],
1364
- "referencedDeclaration": 2610,
1526
+ "referencedDeclaration": 2622,
1365
1527
  "src": "623:5:8",
1366
1528
  "typeDescriptions": {
1367
1529
  "typeIdentifier": "t_uint256",
@@ -1369,11 +1531,11 @@
1369
1531
  }
1370
1532
  },
1371
1533
  {
1372
- "id": 2622,
1534
+ "id": 2634,
1373
1535
  "name": "key",
1374
1536
  "nodeType": "Identifier",
1375
1537
  "overloadedDeclarations": [],
1376
- "referencedDeclaration": 2613,
1538
+ "referencedDeclaration": 2625,
1377
1539
  "src": "630:3:8",
1378
1540
  "typeDescriptions": {
1379
1541
  "typeIdentifier": "t_array$_t_bytes32_$dyn_calldata_ptr",
@@ -1393,32 +1555,32 @@
1393
1555
  }
1394
1556
  ],
1395
1557
  "expression": {
1396
- "id": 2619,
1558
+ "id": 2631,
1397
1559
  "name": "StoreCore",
1398
1560
  "nodeType": "Identifier",
1399
1561
  "overloadedDeclarations": [],
1400
- "referencedDeclaration": 3603,
1562
+ "referencedDeclaration": 3736,
1401
1563
  "src": "603:9:8",
1402
1564
  "typeDescriptions": {
1403
- "typeIdentifier": "t_type$_t_contract$_StoreCore_$3603_$",
1565
+ "typeIdentifier": "t_type$_t_contract$_StoreCore_$3736_$",
1404
1566
  "typeString": "type(library StoreCore)"
1405
1567
  }
1406
1568
  },
1407
- "id": 2620,
1569
+ "id": 2632,
1408
1570
  "isConstant": false,
1409
1571
  "isLValue": false,
1410
1572
  "isPure": false,
1411
1573
  "lValueRequested": false,
1412
1574
  "memberName": "getRecord",
1413
1575
  "nodeType": "MemberAccess",
1414
- "referencedDeclaration": 3380,
1576
+ "referencedDeclaration": 3513,
1415
1577
  "src": "603:19:8",
1416
1578
  "typeDescriptions": {
1417
1579
  "typeIdentifier": "t_function_internal_view$_t_uint256_$_t_array$_t_bytes32_$dyn_memory_ptr_$returns$_t_bytes_memory_ptr_$",
1418
1580
  "typeString": "function (uint256,bytes32[] memory) view returns (bytes memory)"
1419
1581
  }
1420
1582
  },
1421
- "id": 2623,
1583
+ "id": 2635,
1422
1584
  "isConstant": false,
1423
1585
  "isLValue": false,
1424
1586
  "isPure": false,
@@ -1439,14 +1601,14 @@
1439
1601
  "typeString": "bytes memory"
1440
1602
  }
1441
1603
  },
1442
- "id": 2625,
1604
+ "id": 2637,
1443
1605
  "nodeType": "ExpressionStatement",
1444
1606
  "src": "596:38:8"
1445
1607
  }
1446
1608
  ]
1447
1609
  },
1448
1610
  "baseFunctions": [
1449
- 1071
1611
+ 1083
1450
1612
  ],
1451
1613
  "functionSelector": "d99ddc07",
1452
1614
  "implemented": true,
@@ -1455,17 +1617,17 @@
1455
1617
  "name": "getRecord",
1456
1618
  "nameLocation": "493:9:8",
1457
1619
  "parameters": {
1458
- "id": 2614,
1620
+ "id": 2626,
1459
1621
  "nodeType": "ParameterList",
1460
1622
  "parameters": [
1461
1623
  {
1462
1624
  "constant": false,
1463
- "id": 2610,
1625
+ "id": 2622,
1464
1626
  "mutability": "mutable",
1465
1627
  "name": "table",
1466
1628
  "nameLocation": "511:5:8",
1467
1629
  "nodeType": "VariableDeclaration",
1468
- "scope": 2627,
1630
+ "scope": 2639,
1469
1631
  "src": "503:13:8",
1470
1632
  "stateVariable": false,
1471
1633
  "storageLocation": "default",
@@ -1474,7 +1636,7 @@
1474
1636
  "typeString": "uint256"
1475
1637
  },
1476
1638
  "typeName": {
1477
- "id": 2609,
1639
+ "id": 2621,
1478
1640
  "name": "uint256",
1479
1641
  "nodeType": "ElementaryTypeName",
1480
1642
  "src": "503:7:8",
@@ -1487,12 +1649,12 @@
1487
1649
  },
1488
1650
  {
1489
1651
  "constant": false,
1490
- "id": 2613,
1652
+ "id": 2625,
1491
1653
  "mutability": "mutable",
1492
1654
  "name": "key",
1493
1655
  "nameLocation": "537:3:8",
1494
1656
  "nodeType": "VariableDeclaration",
1495
- "scope": 2627,
1657
+ "scope": 2639,
1496
1658
  "src": "518:22:8",
1497
1659
  "stateVariable": false,
1498
1660
  "storageLocation": "calldata",
@@ -1502,7 +1664,7 @@
1502
1664
  },
1503
1665
  "typeName": {
1504
1666
  "baseType": {
1505
- "id": 2611,
1667
+ "id": 2623,
1506
1668
  "name": "bytes32",
1507
1669
  "nodeType": "ElementaryTypeName",
1508
1670
  "src": "518:7:8",
@@ -1511,7 +1673,7 @@
1511
1673
  "typeString": "bytes32"
1512
1674
  }
1513
1675
  },
1514
- "id": 2612,
1676
+ "id": 2624,
1515
1677
  "nodeType": "ArrayTypeName",
1516
1678
  "src": "518:9:8",
1517
1679
  "typeDescriptions": {
@@ -1525,17 +1687,17 @@
1525
1687
  "src": "502:39:8"
1526
1688
  },
1527
1689
  "returnParameters": {
1528
- "id": 2617,
1690
+ "id": 2629,
1529
1691
  "nodeType": "ParameterList",
1530
1692
  "parameters": [
1531
1693
  {
1532
1694
  "constant": false,
1533
- "id": 2616,
1695
+ "id": 2628,
1534
1696
  "mutability": "mutable",
1535
1697
  "name": "data",
1536
1698
  "nameLocation": "584:4:8",
1537
1699
  "nodeType": "VariableDeclaration",
1538
- "scope": 2627,
1700
+ "scope": 2639,
1539
1701
  "src": "571:17:8",
1540
1702
  "stateVariable": false,
1541
1703
  "storageLocation": "memory",
@@ -1544,7 +1706,7 @@
1544
1706
  "typeString": "bytes"
1545
1707
  },
1546
1708
  "typeName": {
1547
- "id": 2615,
1709
+ "id": 2627,
1548
1710
  "name": "bytes",
1549
1711
  "nodeType": "ElementaryTypeName",
1550
1712
  "src": "571:5:8",
@@ -1558,35 +1720,35 @@
1558
1720
  ],
1559
1721
  "src": "570:19:8"
1560
1722
  },
1561
- "scope": 2677,
1723
+ "scope": 2689,
1562
1724
  "stateMutability": "view",
1563
1725
  "virtual": true,
1564
1726
  "visibility": "public"
1565
1727
  },
1566
1728
  {
1567
- "id": 2650,
1729
+ "id": 2662,
1568
1730
  "nodeType": "FunctionDefinition",
1569
1731
  "src": "690:194:8",
1570
1732
  "nodes": [],
1571
1733
  "body": {
1572
- "id": 2649,
1734
+ "id": 2661,
1573
1735
  "nodeType": "Block",
1574
1736
  "src": "827:57:8",
1575
1737
  "nodes": [],
1576
1738
  "statements": [
1577
1739
  {
1578
1740
  "expression": {
1579
- "id": 2647,
1741
+ "id": 2659,
1580
1742
  "isConstant": false,
1581
1743
  "isLValue": false,
1582
1744
  "isPure": false,
1583
1745
  "lValueRequested": false,
1584
1746
  "leftHandSide": {
1585
- "id": 2640,
1747
+ "id": 2652,
1586
1748
  "name": "data",
1587
1749
  "nodeType": "Identifier",
1588
1750
  "overloadedDeclarations": [],
1589
- "referencedDeclaration": 2638,
1751
+ "referencedDeclaration": 2650,
1590
1752
  "src": "833:4:8",
1591
1753
  "typeDescriptions": {
1592
1754
  "typeIdentifier": "t_bytes_memory_ptr",
@@ -1598,11 +1760,11 @@
1598
1760
  "rightHandSide": {
1599
1761
  "arguments": [
1600
1762
  {
1601
- "id": 2643,
1763
+ "id": 2655,
1602
1764
  "name": "table",
1603
1765
  "nodeType": "Identifier",
1604
1766
  "overloadedDeclarations": [],
1605
- "referencedDeclaration": 2629,
1767
+ "referencedDeclaration": 2641,
1606
1768
  "src": "860:5:8",
1607
1769
  "typeDescriptions": {
1608
1770
  "typeIdentifier": "t_uint256",
@@ -1610,11 +1772,11 @@
1610
1772
  }
1611
1773
  },
1612
1774
  {
1613
- "id": 2644,
1775
+ "id": 2656,
1614
1776
  "name": "key",
1615
1777
  "nodeType": "Identifier",
1616
1778
  "overloadedDeclarations": [],
1617
- "referencedDeclaration": 2632,
1779
+ "referencedDeclaration": 2644,
1618
1780
  "src": "867:3:8",
1619
1781
  "typeDescriptions": {
1620
1782
  "typeIdentifier": "t_array$_t_bytes32_$dyn_calldata_ptr",
@@ -1622,14 +1784,14 @@
1622
1784
  }
1623
1785
  },
1624
1786
  {
1625
- "id": 2645,
1787
+ "id": 2657,
1626
1788
  "name": "schema",
1627
1789
  "nodeType": "Identifier",
1628
1790
  "overloadedDeclarations": [],
1629
- "referencedDeclaration": 2635,
1791
+ "referencedDeclaration": 2647,
1630
1792
  "src": "872:6:8",
1631
1793
  "typeDescriptions": {
1632
- "typeIdentifier": "t_userDefinedValueType$_Schema_$1561",
1794
+ "typeIdentifier": "t_userDefinedValueType$_Schema_$1573",
1633
1795
  "typeString": "Schema"
1634
1796
  }
1635
1797
  }
@@ -1645,37 +1807,37 @@
1645
1807
  "typeString": "bytes32[] calldata"
1646
1808
  },
1647
1809
  {
1648
- "typeIdentifier": "t_userDefinedValueType$_Schema_$1561",
1810
+ "typeIdentifier": "t_userDefinedValueType$_Schema_$1573",
1649
1811
  "typeString": "Schema"
1650
1812
  }
1651
1813
  ],
1652
1814
  "expression": {
1653
- "id": 2641,
1815
+ "id": 2653,
1654
1816
  "name": "StoreCore",
1655
1817
  "nodeType": "Identifier",
1656
1818
  "overloadedDeclarations": [],
1657
- "referencedDeclaration": 3603,
1819
+ "referencedDeclaration": 3736,
1658
1820
  "src": "840:9:8",
1659
1821
  "typeDescriptions": {
1660
- "typeIdentifier": "t_type$_t_contract$_StoreCore_$3603_$",
1822
+ "typeIdentifier": "t_type$_t_contract$_StoreCore_$3736_$",
1661
1823
  "typeString": "type(library StoreCore)"
1662
1824
  }
1663
1825
  },
1664
- "id": 2642,
1826
+ "id": 2654,
1665
1827
  "isConstant": false,
1666
1828
  "isLValue": false,
1667
1829
  "isPure": false,
1668
1830
  "lValueRequested": false,
1669
1831
  "memberName": "getRecord",
1670
1832
  "nodeType": "MemberAccess",
1671
- "referencedDeclaration": 3533,
1833
+ "referencedDeclaration": 3666,
1672
1834
  "src": "840:19:8",
1673
1835
  "typeDescriptions": {
1674
- "typeIdentifier": "t_function_internal_view$_t_uint256_$_t_array$_t_bytes32_$dyn_memory_ptr_$_t_userDefinedValueType$_Schema_$1561_$returns$_t_bytes_memory_ptr_$",
1836
+ "typeIdentifier": "t_function_internal_view$_t_uint256_$_t_array$_t_bytes32_$dyn_memory_ptr_$_t_userDefinedValueType$_Schema_$1573_$returns$_t_bytes_memory_ptr_$",
1675
1837
  "typeString": "function (uint256,bytes32[] memory,Schema) view returns (bytes memory)"
1676
1838
  }
1677
1839
  },
1678
- "id": 2646,
1840
+ "id": 2658,
1679
1841
  "isConstant": false,
1680
1842
  "isLValue": false,
1681
1843
  "isPure": false,
@@ -1696,14 +1858,14 @@
1696
1858
  "typeString": "bytes memory"
1697
1859
  }
1698
1860
  },
1699
- "id": 2648,
1861
+ "id": 2660,
1700
1862
  "nodeType": "ExpressionStatement",
1701
1863
  "src": "833:46:8"
1702
1864
  }
1703
1865
  ]
1704
1866
  },
1705
1867
  "baseFunctions": [
1706
- 1084
1868
+ 1096
1707
1869
  ],
1708
1870
  "functionSelector": "a2d3d4fb",
1709
1871
  "implemented": true,
@@ -1712,17 +1874,17 @@
1712
1874
  "name": "getRecord",
1713
1875
  "nameLocation": "699:9:8",
1714
1876
  "parameters": {
1715
- "id": 2636,
1877
+ "id": 2648,
1716
1878
  "nodeType": "ParameterList",
1717
1879
  "parameters": [
1718
1880
  {
1719
1881
  "constant": false,
1720
- "id": 2629,
1882
+ "id": 2641,
1721
1883
  "mutability": "mutable",
1722
1884
  "name": "table",
1723
1885
  "nameLocation": "722:5:8",
1724
1886
  "nodeType": "VariableDeclaration",
1725
- "scope": 2650,
1887
+ "scope": 2662,
1726
1888
  "src": "714:13:8",
1727
1889
  "stateVariable": false,
1728
1890
  "storageLocation": "default",
@@ -1731,7 +1893,7 @@
1731
1893
  "typeString": "uint256"
1732
1894
  },
1733
1895
  "typeName": {
1734
- "id": 2628,
1896
+ "id": 2640,
1735
1897
  "name": "uint256",
1736
1898
  "nodeType": "ElementaryTypeName",
1737
1899
  "src": "714:7:8",
@@ -1744,12 +1906,12 @@
1744
1906
  },
1745
1907
  {
1746
1908
  "constant": false,
1747
- "id": 2632,
1909
+ "id": 2644,
1748
1910
  "mutability": "mutable",
1749
1911
  "name": "key",
1750
1912
  "nameLocation": "752:3:8",
1751
1913
  "nodeType": "VariableDeclaration",
1752
- "scope": 2650,
1914
+ "scope": 2662,
1753
1915
  "src": "733:22:8",
1754
1916
  "stateVariable": false,
1755
1917
  "storageLocation": "calldata",
@@ -1759,7 +1921,7 @@
1759
1921
  },
1760
1922
  "typeName": {
1761
1923
  "baseType": {
1762
- "id": 2630,
1924
+ "id": 2642,
1763
1925
  "name": "bytes32",
1764
1926
  "nodeType": "ElementaryTypeName",
1765
1927
  "src": "733:7:8",
@@ -1768,7 +1930,7 @@
1768
1930
  "typeString": "bytes32"
1769
1931
  }
1770
1932
  },
1771
- "id": 2631,
1933
+ "id": 2643,
1772
1934
  "nodeType": "ArrayTypeName",
1773
1935
  "src": "733:9:8",
1774
1936
  "typeDescriptions": {
@@ -1780,33 +1942,33 @@
1780
1942
  },
1781
1943
  {
1782
1944
  "constant": false,
1783
- "id": 2635,
1945
+ "id": 2647,
1784
1946
  "mutability": "mutable",
1785
1947
  "name": "schema",
1786
1948
  "nameLocation": "768:6:8",
1787
1949
  "nodeType": "VariableDeclaration",
1788
- "scope": 2650,
1950
+ "scope": 2662,
1789
1951
  "src": "761:13:8",
1790
1952
  "stateVariable": false,
1791
1953
  "storageLocation": "default",
1792
1954
  "typeDescriptions": {
1793
- "typeIdentifier": "t_userDefinedValueType$_Schema_$1561",
1955
+ "typeIdentifier": "t_userDefinedValueType$_Schema_$1573",
1794
1956
  "typeString": "Schema"
1795
1957
  },
1796
1958
  "typeName": {
1797
- "id": 2634,
1959
+ "id": 2646,
1798
1960
  "nodeType": "UserDefinedTypeName",
1799
1961
  "pathNode": {
1800
- "id": 2633,
1962
+ "id": 2645,
1801
1963
  "name": "Schema",
1802
1964
  "nodeType": "IdentifierPath",
1803
- "referencedDeclaration": 1561,
1965
+ "referencedDeclaration": 1573,
1804
1966
  "src": "761:6:8"
1805
1967
  },
1806
- "referencedDeclaration": 1561,
1968
+ "referencedDeclaration": 1573,
1807
1969
  "src": "761:6:8",
1808
1970
  "typeDescriptions": {
1809
- "typeIdentifier": "t_userDefinedValueType$_Schema_$1561",
1971
+ "typeIdentifier": "t_userDefinedValueType$_Schema_$1573",
1810
1972
  "typeString": "Schema"
1811
1973
  }
1812
1974
  },
@@ -1816,17 +1978,17 @@
1816
1978
  "src": "708:70:8"
1817
1979
  },
1818
1980
  "returnParameters": {
1819
- "id": 2639,
1981
+ "id": 2651,
1820
1982
  "nodeType": "ParameterList",
1821
1983
  "parameters": [
1822
1984
  {
1823
1985
  "constant": false,
1824
- "id": 2638,
1986
+ "id": 2650,
1825
1987
  "mutability": "mutable",
1826
1988
  "name": "data",
1827
1989
  "nameLocation": "821:4:8",
1828
1990
  "nodeType": "VariableDeclaration",
1829
- "scope": 2650,
1991
+ "scope": 2662,
1830
1992
  "src": "808:17:8",
1831
1993
  "stateVariable": false,
1832
1994
  "storageLocation": "memory",
@@ -1835,7 +1997,7 @@
1835
1997
  "typeString": "bytes"
1836
1998
  },
1837
1999
  "typeName": {
1838
- "id": 2637,
2000
+ "id": 2649,
1839
2001
  "name": "bytes",
1840
2002
  "nodeType": "ElementaryTypeName",
1841
2003
  "src": "808:5:8",
@@ -1849,35 +2011,35 @@
1849
2011
  ],
1850
2012
  "src": "807:19:8"
1851
2013
  },
1852
- "scope": 2677,
2014
+ "scope": 2689,
1853
2015
  "stateMutability": "view",
1854
2016
  "virtual": true,
1855
2017
  "visibility": "public"
1856
2018
  },
1857
2019
  {
1858
- "id": 2672,
2020
+ "id": 2684,
1859
2021
  "nodeType": "FunctionDefinition",
1860
2022
  "src": "926:201:8",
1861
2023
  "nodes": [],
1862
2024
  "body": {
1863
- "id": 2671,
2025
+ "id": 2683,
1864
2026
  "nodeType": "Block",
1865
2027
  "src": "1066:61:8",
1866
2028
  "nodes": [],
1867
2029
  "statements": [
1868
2030
  {
1869
2031
  "expression": {
1870
- "id": 2669,
2032
+ "id": 2681,
1871
2033
  "isConstant": false,
1872
2034
  "isLValue": false,
1873
2035
  "isPure": false,
1874
2036
  "lValueRequested": false,
1875
2037
  "leftHandSide": {
1876
- "id": 2662,
2038
+ "id": 2674,
1877
2039
  "name": "data",
1878
2040
  "nodeType": "Identifier",
1879
2041
  "overloadedDeclarations": [],
1880
- "referencedDeclaration": 2660,
2042
+ "referencedDeclaration": 2672,
1881
2043
  "src": "1072:4:8",
1882
2044
  "typeDescriptions": {
1883
2045
  "typeIdentifier": "t_bytes_memory_ptr",
@@ -1889,11 +2051,11 @@
1889
2051
  "rightHandSide": {
1890
2052
  "arguments": [
1891
2053
  {
1892
- "id": 2665,
2054
+ "id": 2677,
1893
2055
  "name": "table",
1894
2056
  "nodeType": "Identifier",
1895
2057
  "overloadedDeclarations": [],
1896
- "referencedDeclaration": 2652,
2058
+ "referencedDeclaration": 2664,
1897
2059
  "src": "1098:5:8",
1898
2060
  "typeDescriptions": {
1899
2061
  "typeIdentifier": "t_uint256",
@@ -1901,11 +2063,11 @@
1901
2063
  }
1902
2064
  },
1903
2065
  {
1904
- "id": 2666,
2066
+ "id": 2678,
1905
2067
  "name": "key",
1906
2068
  "nodeType": "Identifier",
1907
2069
  "overloadedDeclarations": [],
1908
- "referencedDeclaration": 2655,
2070
+ "referencedDeclaration": 2667,
1909
2071
  "src": "1105:3:8",
1910
2072
  "typeDescriptions": {
1911
2073
  "typeIdentifier": "t_array$_t_bytes32_$dyn_calldata_ptr",
@@ -1913,11 +2075,11 @@
1913
2075
  }
1914
2076
  },
1915
2077
  {
1916
- "id": 2667,
2078
+ "id": 2679,
1917
2079
  "name": "schemaIndex",
1918
2080
  "nodeType": "Identifier",
1919
2081
  "overloadedDeclarations": [],
1920
- "referencedDeclaration": 2657,
2082
+ "referencedDeclaration": 2669,
1921
2083
  "src": "1110:11:8",
1922
2084
  "typeDescriptions": {
1923
2085
  "typeIdentifier": "t_uint8",
@@ -1941,32 +2103,32 @@
1941
2103
  }
1942
2104
  ],
1943
2105
  "expression": {
1944
- "id": 2663,
2106
+ "id": 2675,
1945
2107
  "name": "StoreCore",
1946
2108
  "nodeType": "Identifier",
1947
2109
  "overloadedDeclarations": [],
1948
- "referencedDeclaration": 3603,
2110
+ "referencedDeclaration": 3736,
1949
2111
  "src": "1079:9:8",
1950
2112
  "typeDescriptions": {
1951
- "typeIdentifier": "t_type$_t_contract$_StoreCore_$3603_$",
2113
+ "typeIdentifier": "t_type$_t_contract$_StoreCore_$3736_$",
1952
2114
  "typeString": "type(library StoreCore)"
1953
2115
  }
1954
2116
  },
1955
- "id": 2664,
2117
+ "id": 2676,
1956
2118
  "isConstant": false,
1957
2119
  "isLValue": false,
1958
2120
  "isPure": false,
1959
2121
  "lValueRequested": false,
1960
2122
  "memberName": "getField",
1961
2123
  "nodeType": "MemberAccess",
1962
- "referencedDeclaration": 3561,
2124
+ "referencedDeclaration": 3694,
1963
2125
  "src": "1079:18:8",
1964
2126
  "typeDescriptions": {
1965
2127
  "typeIdentifier": "t_function_internal_view$_t_uint256_$_t_array$_t_bytes32_$dyn_memory_ptr_$_t_uint8_$returns$_t_bytes_memory_ptr_$",
1966
2128
  "typeString": "function (uint256,bytes32[] memory,uint8) view returns (bytes memory)"
1967
2129
  }
1968
2130
  },
1969
- "id": 2668,
2131
+ "id": 2680,
1970
2132
  "isConstant": false,
1971
2133
  "isLValue": false,
1972
2134
  "isPure": false,
@@ -1987,14 +2149,14 @@
1987
2149
  "typeString": "bytes memory"
1988
2150
  }
1989
2151
  },
1990
- "id": 2670,
2152
+ "id": 2682,
1991
2153
  "nodeType": "ExpressionStatement",
1992
2154
  "src": "1072:50:8"
1993
2155
  }
1994
2156
  ]
1995
2157
  },
1996
2158
  "baseFunctions": [
1997
- 1096
2159
+ 1108
1998
2160
  ],
1999
2161
  "functionSelector": "d4a0126e",
2000
2162
  "implemented": true,
@@ -2003,17 +2165,17 @@
2003
2165
  "name": "getField",
2004
2166
  "nameLocation": "935:8:8",
2005
2167
  "parameters": {
2006
- "id": 2658,
2168
+ "id": 2670,
2007
2169
  "nodeType": "ParameterList",
2008
2170
  "parameters": [
2009
2171
  {
2010
2172
  "constant": false,
2011
- "id": 2652,
2173
+ "id": 2664,
2012
2174
  "mutability": "mutable",
2013
2175
  "name": "table",
2014
2176
  "nameLocation": "957:5:8",
2015
2177
  "nodeType": "VariableDeclaration",
2016
- "scope": 2672,
2178
+ "scope": 2684,
2017
2179
  "src": "949:13:8",
2018
2180
  "stateVariable": false,
2019
2181
  "storageLocation": "default",
@@ -2022,7 +2184,7 @@
2022
2184
  "typeString": "uint256"
2023
2185
  },
2024
2186
  "typeName": {
2025
- "id": 2651,
2187
+ "id": 2663,
2026
2188
  "name": "uint256",
2027
2189
  "nodeType": "ElementaryTypeName",
2028
2190
  "src": "949:7:8",
@@ -2035,12 +2197,12 @@
2035
2197
  },
2036
2198
  {
2037
2199
  "constant": false,
2038
- "id": 2655,
2200
+ "id": 2667,
2039
2201
  "mutability": "mutable",
2040
2202
  "name": "key",
2041
2203
  "nameLocation": "987:3:8",
2042
2204
  "nodeType": "VariableDeclaration",
2043
- "scope": 2672,
2205
+ "scope": 2684,
2044
2206
  "src": "968:22:8",
2045
2207
  "stateVariable": false,
2046
2208
  "storageLocation": "calldata",
@@ -2050,7 +2212,7 @@
2050
2212
  },
2051
2213
  "typeName": {
2052
2214
  "baseType": {
2053
- "id": 2653,
2215
+ "id": 2665,
2054
2216
  "name": "bytes32",
2055
2217
  "nodeType": "ElementaryTypeName",
2056
2218
  "src": "968:7:8",
@@ -2059,7 +2221,7 @@
2059
2221
  "typeString": "bytes32"
2060
2222
  }
2061
2223
  },
2062
- "id": 2654,
2224
+ "id": 2666,
2063
2225
  "nodeType": "ArrayTypeName",
2064
2226
  "src": "968:9:8",
2065
2227
  "typeDescriptions": {
@@ -2071,12 +2233,12 @@
2071
2233
  },
2072
2234
  {
2073
2235
  "constant": false,
2074
- "id": 2657,
2236
+ "id": 2669,
2075
2237
  "mutability": "mutable",
2076
2238
  "name": "schemaIndex",
2077
2239
  "nameLocation": "1002:11:8",
2078
2240
  "nodeType": "VariableDeclaration",
2079
- "scope": 2672,
2241
+ "scope": 2684,
2080
2242
  "src": "996:17:8",
2081
2243
  "stateVariable": false,
2082
2244
  "storageLocation": "default",
@@ -2085,7 +2247,7 @@
2085
2247
  "typeString": "uint8"
2086
2248
  },
2087
2249
  "typeName": {
2088
- "id": 2656,
2250
+ "id": 2668,
2089
2251
  "name": "uint8",
2090
2252
  "nodeType": "ElementaryTypeName",
2091
2253
  "src": "996:5:8",
@@ -2100,17 +2262,17 @@
2100
2262
  "src": "943:74:8"
2101
2263
  },
2102
2264
  "returnParameters": {
2103
- "id": 2661,
2265
+ "id": 2673,
2104
2266
  "nodeType": "ParameterList",
2105
2267
  "parameters": [
2106
2268
  {
2107
2269
  "constant": false,
2108
- "id": 2660,
2270
+ "id": 2672,
2109
2271
  "mutability": "mutable",
2110
2272
  "name": "data",
2111
2273
  "nameLocation": "1060:4:8",
2112
2274
  "nodeType": "VariableDeclaration",
2113
- "scope": 2672,
2275
+ "scope": 2684,
2114
2276
  "src": "1047:17:8",
2115
2277
  "stateVariable": false,
2116
2278
  "storageLocation": "memory",
@@ -2119,7 +2281,7 @@
2119
2281
  "typeString": "bytes"
2120
2282
  },
2121
2283
  "typeName": {
2122
- "id": 2659,
2284
+ "id": 2671,
2123
2285
  "name": "bytes",
2124
2286
  "nodeType": "ElementaryTypeName",
2125
2287
  "src": "1047:5:8",
@@ -2133,25 +2295,25 @@
2133
2295
  ],
2134
2296
  "src": "1046:19:8"
2135
2297
  },
2136
- "scope": 2677,
2298
+ "scope": 2689,
2137
2299
  "stateMutability": "view",
2138
2300
  "virtual": true,
2139
2301
  "visibility": "public"
2140
2302
  },
2141
2303
  {
2142
- "id": 2676,
2304
+ "id": 2688,
2143
2305
  "nodeType": "FunctionDefinition",
2144
2306
  "src": "1131:33:8",
2145
2307
  "nodes": [],
2146
2308
  "body": {
2147
- "id": 2675,
2309
+ "id": 2687,
2148
2310
  "nodeType": "Block",
2149
2311
  "src": "1162:2:8",
2150
2312
  "nodes": [],
2151
2313
  "statements": []
2152
2314
  },
2153
2315
  "baseFunctions": [
2154
- 1099
2316
+ 1111
2155
2317
  ],
2156
2318
  "functionSelector": "a5c2f007",
2157
2319
  "implemented": true,
@@ -2160,18 +2322,18 @@
2160
2322
  "name": "isStore",
2161
2323
  "nameLocation": "1140:7:8",
2162
2324
  "parameters": {
2163
- "id": 2673,
2325
+ "id": 2685,
2164
2326
  "nodeType": "ParameterList",
2165
2327
  "parameters": [],
2166
2328
  "src": "1147:2:8"
2167
2329
  },
2168
2330
  "returnParameters": {
2169
- "id": 2674,
2331
+ "id": 2686,
2170
2332
  "nodeType": "ParameterList",
2171
2333
  "parameters": [],
2172
2334
  "src": "1162:0:8"
2173
2335
  },
2174
- "scope": 2677,
2336
+ "scope": 2689,
2175
2337
  "stateMutability": "view",
2176
2338
  "virtual": false,
2177
2339
  "visibility": "public"
@@ -2181,13 +2343,13 @@
2181
2343
  "baseContracts": [
2182
2344
  {
2183
2345
  "baseName": {
2184
- "id": 2582,
2346
+ "id": 2594,
2185
2347
  "name": "IStore",
2186
2348
  "nodeType": "IdentifierPath",
2187
- "referencedDeclaration": 1100,
2349
+ "referencedDeclaration": 1112,
2188
2350
  "src": "221:6:8"
2189
2351
  },
2190
- "id": 2583,
2352
+ "id": 2595,
2191
2353
  "nodeType": "InheritanceSpecifier",
2192
2354
  "src": "221:6:8"
2193
2355
  }
@@ -2197,17 +2359,20 @@
2197
2359
  "contractKind": "contract",
2198
2360
  "fullyImplemented": false,
2199
2361
  "linearizedBaseContracts": [
2200
- 2677,
2201
- 1100
2362
+ 2689,
2363
+ 1112
2202
2364
  ],
2203
2365
  "name": "Store",
2204
2366
  "nameLocation": "212:5:8",
2205
- "scope": 2678,
2367
+ "scope": 2690,
2206
2368
  "usedErrors": [
2207
- 1569,
2208
- 1571,
2209
- 2734,
2210
- 2738
2369
+ 1581,
2370
+ 1583,
2371
+ 2360,
2372
+ 2748,
2373
+ 2752,
2374
+ 2760,
2375
+ 2766
2211
2376
  ]
2212
2377
  }
2213
2378
  ],