@agoric/zoe 0.26.3-upgrade-14-dev-0169c7e.0 → 0.26.3-upgrade-16-dev-8879538.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 (269) hide show
  1. package/README.md +7 -7
  2. package/bundles/bundle-contractFacet-js-meta.json +622 -313
  3. package/bundles/bundle-contractFacet.d.ts +3 -3
  4. package/bundles/bundle-contractFacet.js +1 -1
  5. package/exported.js +1 -12
  6. package/package.json +75 -60
  7. package/src/cleanProposal.d.ts +2 -2
  8. package/src/cleanProposal.d.ts.map +1 -1
  9. package/src/cleanProposal.js +15 -12
  10. package/src/contractFacet/exit.d.ts.map +1 -1
  11. package/src/contractFacet/exit.js +1 -0
  12. package/src/contractFacet/internal-types.d.ts +2 -2
  13. package/src/contractFacet/internal-types.d.ts.map +1 -1
  14. package/src/contractFacet/internal-types.js +1 -1
  15. package/src/contractFacet/offerHandlerStorage.d.ts +4 -1
  16. package/src/contractFacet/offerHandlerStorage.d.ts.map +1 -1
  17. package/src/contractFacet/offerHandlerStorage.js +11 -3
  18. package/src/contractFacet/reallocate.d.ts +3 -0
  19. package/src/contractFacet/reallocate.d.ts.map +1 -0
  20. package/src/contractFacet/reallocate.js +94 -0
  21. package/src/contractFacet/rightsConservation.d.ts.map +1 -1
  22. package/src/contractFacet/rightsConservation.js +3 -0
  23. package/src/contractFacet/types-ambient.d.ts +259 -0
  24. package/src/contractFacet/types-ambient.js +1 -0
  25. package/src/contractFacet/vatRoot.d.ts +4 -4
  26. package/src/contractFacet/vatRoot.d.ts.map +1 -1
  27. package/src/contractFacet/zcfMint.d.ts +5 -3
  28. package/src/contractFacet/zcfMint.d.ts.map +1 -1
  29. package/src/contractFacet/zcfMint.js +4 -4
  30. package/src/contractFacet/zcfSeat.d.ts +4 -2
  31. package/src/contractFacet/zcfSeat.d.ts.map +1 -1
  32. package/src/contractFacet/zcfSeat.js +125 -5
  33. package/src/contractFacet/zcfZygote.d.ts +1 -2
  34. package/src/contractFacet/zcfZygote.d.ts.map +1 -1
  35. package/src/contractFacet/zcfZygote.js +95 -42
  36. package/src/contractSupport/atomicTransfer.d.ts +0 -6
  37. package/src/contractSupport/atomicTransfer.d.ts.map +1 -1
  38. package/src/contractSupport/atomicTransfer.js +5 -90
  39. package/src/contractSupport/bondingCurves.js +2 -2
  40. package/src/contractSupport/durability.d.ts +3 -3
  41. package/src/contractSupport/durability.d.ts.map +1 -1
  42. package/src/contractSupport/durability.js +5 -5
  43. package/src/contractSupport/index.d.ts +1 -0
  44. package/src/contractSupport/index.js +1 -0
  45. package/src/contractSupport/prepare-ownable.d.ts +11 -0
  46. package/src/contractSupport/prepare-ownable.d.ts.map +1 -0
  47. package/src/contractSupport/prepare-ownable.js +100 -0
  48. package/src/contractSupport/priceAuthority.d.ts +23 -15
  49. package/src/contractSupport/priceAuthority.d.ts.map +1 -1
  50. package/src/contractSupport/priceAuthority.js +32 -17
  51. package/src/contractSupport/priceAuthorityInitial.d.ts +3 -2
  52. package/src/contractSupport/priceAuthorityInitial.d.ts.map +1 -1
  53. package/src/contractSupport/priceAuthorityInitial.js +5 -2
  54. package/src/contractSupport/priceAuthorityQuoteMint.d.ts +2 -1
  55. package/src/contractSupport/priceAuthorityQuoteMint.d.ts.map +1 -1
  56. package/src/contractSupport/priceAuthorityQuoteMint.js +23 -27
  57. package/src/contractSupport/priceAuthorityTransform.d.ts +14 -12
  58. package/src/contractSupport/priceAuthorityTransform.d.ts.map +1 -1
  59. package/src/contractSupport/priceAuthorityTransform.js +10 -8
  60. package/src/contractSupport/priceQuote.d.ts +7 -5
  61. package/src/contractSupport/priceQuote.d.ts.map +1 -1
  62. package/src/contractSupport/priceQuote.js +5 -1
  63. package/src/contractSupport/ratio.d.ts +2 -2
  64. package/src/contractSupport/ratio.d.ts.map +1 -1
  65. package/src/contractSupport/ratio.js +19 -15
  66. package/src/contractSupport/recorder.d.ts +31 -117
  67. package/src/contractSupport/recorder.d.ts.map +1 -1
  68. package/src/contractSupport/recorder.js +21 -10
  69. package/src/contractSupport/safeMath.d.ts +7 -7
  70. package/src/contractSupport/safeMath.d.ts.map +1 -1
  71. package/src/contractSupport/statistics.d.ts +1 -1
  72. package/src/contractSupport/statistics.d.ts.map +1 -1
  73. package/src/contractSupport/topics.d.ts +1 -1
  74. package/src/contractSupport/topics.d.ts.map +1 -1
  75. package/src/contractSupport/{types.d.ts → types-ambient.d.ts} +4 -4
  76. package/src/contractSupport/types-ambient.d.ts.map +1 -0
  77. package/src/contractSupport/{types.js → types-ambient.js} +1 -1
  78. package/src/contractSupport/zoeHelpers.d.ts +1 -1
  79. package/src/contractSupport/zoeHelpers.d.ts.map +1 -1
  80. package/src/contractSupport/zoeHelpers.js +5 -11
  81. package/src/contracts/auction/firstPriceLogic.d.ts.map +1 -1
  82. package/src/contracts/auction/firstPriceLogic.js +5 -8
  83. package/src/contracts/auction/index.d.ts +10 -10
  84. package/src/contracts/auction/index.d.ts.map +1 -1
  85. package/src/contracts/auction/index.js +2 -1
  86. package/src/contracts/auction/secondPriceLogic.d.ts.map +1 -1
  87. package/src/contracts/auction/secondPriceLogic.js +1 -4
  88. package/src/contracts/automaticRefund.d.ts +1 -1
  89. package/src/contracts/automaticRefund.d.ts.map +1 -1
  90. package/src/contracts/autoswap.d.ts.map +1 -1
  91. package/src/contracts/autoswap.js +8 -9
  92. package/src/contracts/barterExchange.d.ts +1 -1
  93. package/src/contracts/barterExchange.d.ts.map +1 -1
  94. package/src/contracts/barterExchange.js +2 -3
  95. package/src/contracts/callSpread/calculateShares.d.ts +1 -8
  96. package/src/contracts/callSpread/calculateShares.d.ts.map +1 -1
  97. package/src/contracts/callSpread/calculateShares.js +1 -1
  98. package/src/contracts/callSpread/fundedCallSpread.d.ts +4 -0
  99. package/src/contracts/callSpread/fundedCallSpread.d.ts.map +1 -1
  100. package/src/contracts/callSpread/fundedCallSpread.js +6 -4
  101. package/src/contracts/callSpread/payoffHandler.d.ts.map +1 -1
  102. package/src/contracts/callSpread/payoffHandler.js +2 -1
  103. package/src/contracts/callSpread/percent.d.ts +2 -4
  104. package/src/contracts/callSpread/percent.d.ts.map +1 -1
  105. package/src/contracts/callSpread/position.d.ts +2 -2
  106. package/src/contracts/callSpread/pricedCallSpread.d.ts +6 -5
  107. package/src/contracts/callSpread/pricedCallSpread.d.ts.map +1 -1
  108. package/src/contracts/callSpread/pricedCallSpread.js +8 -4
  109. package/src/contracts/callSpread/{types.d.ts → types-ambient.d.ts} +3 -3
  110. package/src/contracts/callSpread/types-ambient.d.ts.map +1 -0
  111. package/src/contracts/coveredCall-durable.d.ts +2 -4
  112. package/src/contracts/coveredCall-durable.d.ts.map +1 -1
  113. package/src/contracts/exported.js +3 -3
  114. package/src/contracts/loan/borrow.d.ts.map +1 -1
  115. package/src/contracts/loan/borrow.js +7 -4
  116. package/src/contracts/loan/close.d.ts.map +1 -1
  117. package/src/contracts/loan/close.js +3 -7
  118. package/src/contracts/loan/index.d.ts +5 -1
  119. package/src/contracts/loan/index.d.ts.map +1 -1
  120. package/src/contracts/loan/index.js +4 -0
  121. package/src/contracts/loan/liquidate.d.ts +1 -12
  122. package/src/contracts/loan/liquidate.d.ts.map +1 -1
  123. package/src/contracts/loan/liquidate.js +4 -2
  124. package/src/contracts/loan/scheduleLiquidation.d.ts.map +1 -1
  125. package/src/contracts/loan/scheduleLiquidation.js +1 -0
  126. package/src/contracts/loan/{types.d.ts → types-ambient.d.ts} +16 -17
  127. package/src/contracts/loan/types-ambient.d.ts.map +1 -0
  128. package/src/contracts/loan/{types.js → types-ambient.js} +11 -18
  129. package/src/contracts/loan/updateDebt.js +1 -1
  130. package/src/contracts/mintAndSellNFT.d.ts.map +1 -1
  131. package/src/contracts/mintPayments.d.ts +14 -6
  132. package/src/contracts/mintPayments.d.ts.map +1 -1
  133. package/src/contracts/mintPayments.js +1 -1
  134. package/src/contracts/oracle.d.ts +25 -3
  135. package/src/contracts/oracle.d.ts.map +1 -1
  136. package/src/contracts/oracle.js +7 -0
  137. package/src/contracts/otcDesk.d.ts +3 -3
  138. package/src/contracts/otcDesk.d.ts.map +1 -1
  139. package/src/contracts/otcDesk.js +1 -1
  140. package/src/contracts/priceAggregator.d.ts +112 -18
  141. package/src/contracts/priceAggregator.d.ts.map +1 -1
  142. package/src/contracts/priceAggregator.js +16 -18
  143. package/src/contracts/priceAggregatorTypes.d.ts +2 -2
  144. package/src/contracts/priceAggregatorTypes.d.ts.map +1 -1
  145. package/src/contracts/scaledPriceAuthority.d.ts +4 -5
  146. package/src/contracts/scaledPriceAuthority.d.ts.map +1 -1
  147. package/src/contracts/scaledPriceAuthority.js +6 -0
  148. package/src/contracts/sellItems.d.ts +2 -2
  149. package/src/contracts/sellItems.d.ts.map +1 -1
  150. package/src/contracts/sellItems.js +2 -3
  151. package/src/contracts/simpleExchange.d.ts +3 -3
  152. package/src/contracts/{types.d.ts → types-ambient.d.ts} +1 -1
  153. package/src/contracts/types-ambient.d.ts.map +1 -0
  154. package/src/handleWarning.d.ts.map +1 -1
  155. package/src/instanceRecordStorage.d.ts +1 -1
  156. package/src/instanceRecordStorage.d.ts.map +1 -1
  157. package/src/internal-types.d.ts +20 -32
  158. package/src/internal-types.d.ts.map +1 -1
  159. package/src/internal-types.js +18 -58
  160. package/src/issuerRecord.d.ts +2 -2
  161. package/src/issuerRecord.d.ts.map +1 -1
  162. package/src/issuerStorage.d.ts +4 -4
  163. package/src/issuerStorage.d.ts.map +1 -1
  164. package/src/issuerStorage.js +12 -28
  165. package/src/makeHandle.d.ts +2 -2
  166. package/src/makeHandle.d.ts.map +1 -1
  167. package/src/makeHandle.js +1 -1
  168. package/src/typeGuards.d.ts +119 -20
  169. package/src/typeGuards.d.ts.map +1 -1
  170. package/src/typeGuards.js +18 -9
  171. package/src/types-ambient.d.ts +41 -0
  172. package/src/types-ambient.d.ts.map +1 -0
  173. package/src/{types.js → types-ambient.js} +6 -14
  174. package/src/zoeService/escrowStorage.d.ts +1 -1
  175. package/src/zoeService/escrowStorage.d.ts.map +1 -1
  176. package/src/zoeService/escrowStorage.js +20 -27
  177. package/src/zoeService/feeMint.d.ts +9 -16
  178. package/src/zoeService/feeMint.d.ts.map +1 -1
  179. package/src/zoeService/feeMint.js +21 -15
  180. package/src/zoeService/installationStorage.d.ts +5 -20
  181. package/src/zoeService/installationStorage.d.ts.map +1 -1
  182. package/src/zoeService/installationStorage.js +11 -7
  183. package/src/zoeService/instanceAdminStorage.d.ts +22 -42
  184. package/src/zoeService/instanceAdminStorage.d.ts.map +1 -1
  185. package/src/zoeService/instanceAdminStorage.js +1 -0
  186. package/src/zoeService/internal-types.d.ts +16 -16
  187. package/src/zoeService/internal-types.d.ts.map +1 -1
  188. package/src/zoeService/internal-types.js +6 -6
  189. package/src/zoeService/invitationQueries.d.ts.map +1 -1
  190. package/src/zoeService/invitationQueries.js +7 -5
  191. package/src/zoeService/makeInvitation.d.ts +3 -3
  192. package/src/zoeService/makeInvitation.d.ts.map +1 -1
  193. package/src/zoeService/makeInvitation.js +25 -21
  194. package/src/zoeService/offer/burnInvitation.d.ts.map +1 -1
  195. package/src/zoeService/offer/offer.d.ts.map +1 -1
  196. package/src/zoeService/offer/offer.js +2 -5
  197. package/src/zoeService/originalZoeSeat.d.ts +34 -0
  198. package/src/zoeService/originalZoeSeat.d.ts.map +1 -0
  199. package/src/zoeService/originalZoeSeat.js +353 -0
  200. package/src/zoeService/startInstance.d.ts +3 -3
  201. package/src/zoeService/startInstance.d.ts.map +1 -1
  202. package/src/zoeService/startInstance.js +17 -11
  203. package/src/zoeService/{types.d.ts → types-ambient.d.ts} +26 -31
  204. package/src/zoeService/types-ambient.d.ts.map +1 -0
  205. package/src/zoeService/{types.js → types-ambient.js} +19 -32
  206. package/src/zoeService/utils.d.ts +54 -58
  207. package/src/zoeService/utils.test-d.d.ts +2 -0
  208. package/src/zoeService/utils.test-d.d.ts.map +1 -0
  209. package/src/zoeService/utils.test-d.ts +33 -0
  210. package/src/zoeService/zoe.d.ts +9 -13
  211. package/src/zoeService/zoe.d.ts.map +1 -1
  212. package/src/zoeService/zoe.js +7 -7
  213. package/src/zoeService/zoeSeat.d.ts +15 -45
  214. package/src/zoeService/zoeSeat.d.ts.map +1 -1
  215. package/src/zoeService/zoeSeat.js +214 -114
  216. package/src/zoeService/zoeStorageManager.d.ts +9 -43
  217. package/src/zoeService/zoeStorageManager.d.ts.map +1 -1
  218. package/src/zoeService/zoeStorageManager.js +8 -6
  219. package/tools/fakePriceAuthority.d.ts +9 -8
  220. package/tools/fakePriceAuthority.d.ts.map +1 -1
  221. package/tools/fakePriceAuthority.js +21 -17
  222. package/tools/fakeVatAdmin.d.ts +10 -10
  223. package/tools/manualPriceAuthority.d.ts +11 -6
  224. package/tools/manualPriceAuthority.d.ts.map +1 -1
  225. package/tools/manualPriceAuthority.js +15 -2
  226. package/tools/manualTimer.d.ts +21 -40
  227. package/tools/manualTimer.d.ts.map +1 -1
  228. package/tools/manualTimer.js +30 -16
  229. package/tools/prepare-test-env.js +1 -1
  230. package/tools/scriptedOracle.d.ts +3 -3
  231. package/tools/scriptedOracle.d.ts.map +1 -1
  232. package/tools/scriptedOracle.js +1 -1
  233. package/tools/scriptedPriceAuthority.d.ts +4 -0
  234. package/tools/scriptedPriceAuthority.d.ts.map +1 -1
  235. package/tools/scriptedPriceAuthority.js +6 -1
  236. package/tools/setup-zoe.d.ts +8 -9
  237. package/tools/setup-zoe.d.ts.map +1 -1
  238. package/tools/setup-zoe.js +16 -1
  239. package/tools/test-utils.d.ts +20 -0
  240. package/tools/test-utils.d.ts.map +1 -0
  241. package/tools/test-utils.js +26 -0
  242. package/tools/types.d.ts +21 -21
  243. package/tools/types.d.ts.map +1 -1
  244. package/tools/types.js +10 -10
  245. package/CHANGELOG.md +0 -1203
  246. package/src/contractFacet/types.d.ts +0 -191
  247. package/src/contractFacet/types.d.ts.map +0 -1
  248. package/src/contractFacet/types.js +0 -256
  249. package/src/contractSupport/types.d.ts.map +0 -1
  250. package/src/contracts/callSpread/types.d.ts.map +0 -1
  251. package/src/contracts/loan/types.d.ts.map +0 -1
  252. package/src/contracts/types.d.ts.map +0 -1
  253. package/src/objArrayConversion.d.ts +0 -5
  254. package/src/objArrayConversion.d.ts.map +0 -1
  255. package/src/objArrayConversion.js +0 -35
  256. package/src/types.d.ts +0 -45
  257. package/src/types.d.ts.map +0 -1
  258. package/src/zoeService/types.d.ts.map +0 -1
  259. package/tools/internal-types.d.ts +0 -12
  260. package/tools/internal-types.d.ts.map +0 -1
  261. package/tools/internal-types.js +0 -14
  262. package/tools/priceAuthorityRegistry.d.ts +0 -20
  263. package/tools/priceAuthorityRegistry.d.ts.map +0 -1
  264. package/tools/priceAuthorityRegistry.js +0 -209
  265. package/tools/types-ambient.d.ts +0 -142
  266. package/tools/types-ambient.d.ts.map +0 -1
  267. package/tools/types-ambient.js +0 -160
  268. /package/src/contracts/callSpread/{types.js → types-ambient.js} +0 -0
  269. /package/src/contracts/{types.js → types-ambient.js} +0 -0
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "bundleFileName": "bundle-contractFacet.js",
3
- "bundleTime": "2024-02-08T22:46:52.138Z",
3
+ "bundleTime": "2024-06-03T19:34:53.887Z",
4
+ "bundleSize": 1489761,
4
5
  "moduleSource": {
5
6
  "relative": "../../src/contractFacet/vatRoot.js",
6
7
  "absolute": "/home/runner/work/agoric-sdk/agoric-sdk/packages/zoe/src/contractFacet/vatRoot.js"
@@ -8,675 +9,983 @@
8
9
  "contents": [
9
10
  {
10
11
  "relativePath": "",
11
- "mtime": "2024-02-08T22:44:59.690Z"
12
+ "mtime": "2024-06-03T19:32:33.184Z",
13
+ "size": 2897
12
14
  },
13
15
  {
14
- "relativePath": "../../internal-types.js",
15
- "mtime": "2024-02-08T22:44:59.690Z"
16
- },
17
- {
18
- "relativePath": "../zcfZygote.js",
19
- "mtime": "2024-02-08T22:44:59.690Z"
16
+ "relativePath": "../../../../../node_modules/@endo/marshal/index.js",
17
+ "mtime": "2024-05-29T19:19:07.389Z",
18
+ "size": 941
20
19
  },
21
20
  {
22
21
  "relativePath": "../../../../../node_modules/@endo/far/src/index.js",
23
- "mtime": "2024-02-07T03:11:44.247Z"
22
+ "mtime": "2024-05-29T19:19:07.292Z",
23
+ "size": 1240
24
24
  },
25
25
  {
26
- "relativePath": "../../../../../node_modules/@endo/marshal/index.js",
27
- "mtime": "2024-02-07T03:11:44.410Z"
28
- },
29
- {
30
- "relativePath": "../../cleanProposal.js",
31
- "mtime": "2024-02-08T22:44:59.690Z"
26
+ "relativePath": "../../internal-types.js",
27
+ "mtime": "2024-06-03T19:32:33.188Z",
28
+ "size": 8985
32
29
  },
33
30
  {
34
- "relativePath": "../../handleWarning.js",
35
- "mtime": "2024-02-08T22:44:59.690Z"
31
+ "relativePath": "../zcfZygote.js",
32
+ "mtime": "2024-06-03T19:32:33.184Z",
33
+ "size": 17449
36
34
  },
37
35
  {
38
- "relativePath": "../../instanceRecordStorage.js",
39
- "mtime": "2024-02-08T22:44:59.690Z"
36
+ "relativePath": "../../../../../node_modules/@endo/marshal/src/deeplyFulfilled.js",
37
+ "mtime": "2024-05-29T19:19:07.389Z",
38
+ "size": 2914
40
39
  },
41
40
  {
42
- "relativePath": "../../issuerStorage.js",
43
- "mtime": "2024-02-08T22:44:59.690Z"
41
+ "relativePath": "../../../../../node_modules/@endo/marshal/src/encodeToCapData.js",
42
+ "mtime": "2024-05-29T19:19:07.389Z",
43
+ "size": 16039
44
44
  },
45
45
  {
46
- "relativePath": "../../makeHandle.js",
47
- "mtime": "2024-02-08T22:44:59.690Z"
46
+ "relativePath": "../../../../../node_modules/@endo/marshal/src/marshal.js",
47
+ "mtime": "2024-05-29T19:19:07.389Z",
48
+ "size": 14636
48
49
  },
49
50
  {
50
- "relativePath": "../../typeGuards.js",
51
- "mtime": "2024-02-08T22:44:59.690Z"
51
+ "relativePath": "../../../../../node_modules/@endo/marshal/src/marshal-stringify.js",
52
+ "mtime": "2024-05-29T19:19:07.389Z",
53
+ "size": 1370
52
54
  },
53
55
  {
54
- "relativePath": "../evalContractCode.js",
55
- "mtime": "2024-02-08T22:44:59.690Z"
56
+ "relativePath": "../../../../../node_modules/@endo/marshal/src/marshal-justin.js",
57
+ "mtime": "2024-05-29T19:19:07.389Z",
58
+ "size": 13298
56
59
  },
57
60
  {
58
- "relativePath": "../exit.js",
59
- "mtime": "2024-02-08T22:44:59.690Z"
61
+ "relativePath": "../../../../../node_modules/@endo/marshal/src/encodePassable.js",
62
+ "mtime": "2024-05-29T19:19:07.389Z",
63
+ "size": 28974
60
64
  },
61
65
  {
62
- "relativePath": "../internal-types.js",
63
- "mtime": "2024-02-08T22:44:59.690Z"
66
+ "relativePath": "../../../../../node_modules/@endo/marshal/src/rankOrder.js",
67
+ "mtime": "2024-05-29T19:19:07.389Z",
68
+ "size": 15401
64
69
  },
65
70
  {
66
- "relativePath": "../offerHandlerStorage.js",
67
- "mtime": "2024-02-08T22:44:59.690Z"
71
+ "relativePath": "../../../../../node_modules/@endo/marshal/src/types.js",
72
+ "mtime": "2024-05-29T19:19:07.389Z",
73
+ "size": 7559
68
74
  },
69
75
  {
70
- "relativePath": "../zcfMint.js",
71
- "mtime": "2024-02-08T22:44:59.690Z"
76
+ "relativePath": "../../../../../node_modules/@endo/pass-style/index.js",
77
+ "mtime": "2024-05-29T19:19:07.742Z",
78
+ "size": 1076
72
79
  },
73
80
  {
74
- "relativePath": "../zcfSeat.js",
75
- "mtime": "2024-02-08T22:44:59.690Z"
81
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/src/no-shim.js",
82
+ "mtime": "2024-05-29T19:19:07.877Z",
83
+ "size": 190
76
84
  },
77
85
  {
78
86
  "relativePath": "../../../../ERTP/src/index.js",
79
- "mtime": "2024-02-08T22:44:59.562Z"
87
+ "mtime": "2024-06-03T19:32:33.008Z",
88
+ "size": 331
80
89
  },
81
90
  {
82
- "relativePath": "../../../../internal/src/index.js",
83
- "mtime": "2024-02-08T22:44:59.638Z"
91
+ "relativePath": "../../../../store/src/index.js",
92
+ "mtime": "2024-06-03T19:32:33.144Z",
93
+ "size": 1621
84
94
  },
85
95
  {
86
- "relativePath": "../../../../store/src/index.js",
87
- "mtime": "2024-02-08T22:44:59.646Z"
96
+ "relativePath": "../../../../vat-data/src/index.js",
97
+ "mtime": "2024-06-03T19:32:33.168Z",
98
+ "size": 1485
88
99
  },
89
100
  {
90
- "relativePath": "../../../../SwingSet/src/types-ambient.js",
91
- "mtime": "2024-02-08T22:44:59.582Z"
101
+ "relativePath": "../../../../../node_modules/@endo/promise-kit/index.js",
102
+ "mtime": "2024-05-29T19:19:07.507Z",
103
+ "size": 1613
92
104
  },
93
105
  {
94
- "relativePath": "../../../../vat-data/src/index.js",
95
- "mtime": "2024-02-08T22:44:59.670Z"
106
+ "relativePath": "../../../../internal/src/index.js",
107
+ "mtime": "2024-06-03T19:32:33.132Z",
108
+ "size": 417
96
109
  },
97
110
  {
98
- "relativePath": "../../../../../node_modules/@endo/eventual-send/src/no-shim.js",
99
- "mtime": "2024-02-07T03:11:45.270Z"
111
+ "relativePath": "../../cleanProposal.js",
112
+ "mtime": "2024-06-03T19:32:33.184Z",
113
+ "size": 5688
100
114
  },
101
115
  {
102
- "relativePath": "../../../../../node_modules/@endo/promise-kit/index.js",
103
- "mtime": "2024-02-07T03:11:44.508Z"
116
+ "relativePath": "../../handleWarning.js",
117
+ "mtime": "2024-06-03T19:32:33.188Z",
118
+ "size": 531
104
119
  },
105
120
  {
106
- "relativePath": "../../../../../node_modules/@endo/pass-style/index.js",
107
- "mtime": "2024-02-07T03:11:45.630Z"
121
+ "relativePath": "../../instanceRecordStorage.js",
122
+ "mtime": "2024-06-03T19:32:33.188Z",
123
+ "size": 3744
108
124
  },
109
125
  {
110
- "relativePath": "../../../../../node_modules/@endo/marshal/src/deeplyFulfilled.js",
111
- "mtime": "2024-02-07T03:11:44.410Z"
126
+ "relativePath": "../../issuerStorage.js",
127
+ "mtime": "2024-06-03T19:32:33.188Z",
128
+ "size": 6813
112
129
  },
113
130
  {
114
- "relativePath": "../../../../../node_modules/@endo/marshal/src/encodePassable.js",
115
- "mtime": "2024-02-07T03:11:44.410Z"
131
+ "relativePath": "../../makeHandle.js",
132
+ "mtime": "2024-06-03T19:32:33.188Z",
133
+ "size": 1353
116
134
  },
117
135
  {
118
- "relativePath": "../../../../../node_modules/@endo/marshal/src/encodeToCapData.js",
119
- "mtime": "2024-02-07T03:11:44.410Z"
136
+ "relativePath": "../evalContractCode.js",
137
+ "mtime": "2024-06-03T19:32:33.184Z",
138
+ "size": 972
120
139
  },
121
140
  {
122
- "relativePath": "../../../../../node_modules/@endo/marshal/src/marshal-justin.js",
123
- "mtime": "2024-02-07T03:11:44.410Z"
141
+ "relativePath": "../exit.js",
142
+ "mtime": "2024-06-03T19:32:33.184Z",
143
+ "size": 3651
124
144
  },
125
145
  {
126
- "relativePath": "../../../../../node_modules/@endo/marshal/src/marshal-stringify.js",
127
- "mtime": "2024-02-07T03:11:44.410Z"
146
+ "relativePath": "../offerHandlerStorage.js",
147
+ "mtime": "2024-06-03T19:32:33.184Z",
148
+ "size": 2583
128
149
  },
129
150
  {
130
- "relativePath": "../../../../../node_modules/@endo/marshal/src/marshal.js",
131
- "mtime": "2024-02-07T03:11:44.410Z"
151
+ "relativePath": "../zcfSeat.js",
152
+ "mtime": "2024-06-03T19:32:33.184Z",
153
+ "size": 18458
132
154
  },
133
155
  {
134
- "relativePath": "../../../../../node_modules/@endo/marshal/src/rankOrder.js",
135
- "mtime": "2024-02-07T03:11:44.410Z"
156
+ "relativePath": "../../typeGuards.js",
157
+ "mtime": "2024-06-03T19:32:33.188Z",
158
+ "size": 12857
136
159
  },
137
160
  {
138
- "relativePath": "../../../../../node_modules/@endo/marshal/src/types.js",
139
- "mtime": "2024-02-07T03:11:44.410Z"
161
+ "relativePath": "../zcfMint.js",
162
+ "mtime": "2024-06-03T19:32:33.184Z",
163
+ "size": 5881
140
164
  },
141
165
  {
142
- "relativePath": "../../objArrayConversion.js",
143
- "mtime": "2024-02-08T22:44:59.690Z"
166
+ "relativePath": "../../../../../node_modules/@endo/errors/index.js",
167
+ "mtime": "2024-05-29T19:19:07.823Z",
168
+ "size": 2603
144
169
  },
145
170
  {
146
- "relativePath": "../../../../assert/src/assert.js",
147
- "mtime": "2024-02-08T22:44:59.606Z"
171
+ "relativePath": "../../../../../node_modules/@endo/nat/src/index.js",
172
+ "mtime": "2024-05-29T19:19:07.434Z",
173
+ "size": 2522
148
174
  },
149
175
  {
150
- "relativePath": "../../issuerRecord.js",
151
- "mtime": "2024-02-08T22:44:59.690Z"
176
+ "relativePath": "../../../../../node_modules/@endo/common/object-map.js",
177
+ "mtime": "2024-05-29T19:19:07.747Z",
178
+ "size": 2213
152
179
  },
153
180
  {
154
- "relativePath": "../../../../notifier/src/index.js",
155
- "mtime": "2024-02-08T22:44:59.638Z"
181
+ "relativePath": "../../../../../node_modules/@endo/marshal/src/encodeToSmallcaps.js",
182
+ "mtime": "2024-05-29T19:19:07.389Z",
183
+ "size": 16566
156
184
  },
157
185
  {
158
- "relativePath": "../../../../time/index.js",
159
- "mtime": "2024-02-08T22:44:59.666Z"
186
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/iter-helpers.js",
187
+ "mtime": "2024-05-29T19:19:07.742Z",
188
+ "size": 1810
160
189
  },
161
190
  {
162
- "relativePath": "../../../../../node_modules/@endo/import-bundle/src/index.js",
163
- "mtime": "2024-02-07T03:11:44.957Z"
191
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/passStyle-helpers.js",
192
+ "mtime": "2024-05-29T19:19:07.742Z",
193
+ "size": 5931
164
194
  },
165
195
  {
166
- "relativePath": "../allocationMath.js",
167
- "mtime": "2024-02-08T22:44:59.690Z"
196
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/error.js",
197
+ "mtime": "2024-05-29T19:19:07.742Z",
198
+ "size": 6402
168
199
  },
169
200
  {
170
- "relativePath": "../types.js",
171
- "mtime": "2024-02-08T22:44:59.690Z"
201
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/remotable.js",
202
+ "mtime": "2024-05-29T19:19:07.742Z",
203
+ "size": 8632
172
204
  },
173
205
  {
174
- "relativePath": "../offerSafety.js",
175
- "mtime": "2024-02-08T22:44:59.690Z"
206
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/symbol.js",
207
+ "mtime": "2024-05-29T19:19:07.742Z",
208
+ "size": 3971
176
209
  },
177
210
  {
178
- "relativePath": "../rightsConservation.js",
179
- "mtime": "2024-02-08T22:44:59.690Z"
211
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/string.js",
212
+ "mtime": "2024-05-29T19:19:07.742Z",
213
+ "size": 3402
180
214
  },
181
215
  {
182
- "relativePath": "../../../../ERTP/src/amountMath.js",
183
- "mtime": "2024-02-08T22:44:59.562Z"
216
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/passStyleOf.js",
217
+ "mtime": "2024-05-29T19:19:07.742Z",
218
+ "size": 12909
184
219
  },
185
220
  {
186
- "relativePath": "../../../../ERTP/src/issuerKit.js",
187
- "mtime": "2024-02-08T22:44:59.562Z"
221
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/makeTagged.js",
222
+ "mtime": "2024-05-29T19:19:07.742Z",
223
+ "size": 792
188
224
  },
189
225
  {
190
- "relativePath": "../../../../ERTP/src/typeGuards.js",
191
- "mtime": "2024-02-08T22:44:59.562Z"
226
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/make-far.js",
227
+ "mtime": "2024-05-29T19:19:07.742Z",
228
+ "size": 8349
192
229
  },
193
230
  {
194
- "relativePath": "../../../../internal/src/config.js",
195
- "mtime": "2024-02-08T22:44:59.638Z"
231
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/typeGuards.js",
232
+ "mtime": "2024-05-29T19:19:07.742Z",
233
+ "size": 2220
196
234
  },
197
235
  {
198
- "relativePath": "../../../../internal/src/debug.js",
199
- "mtime": "2024-02-08T22:44:59.638Z"
236
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/types.js",
237
+ "mtime": "2024-05-29T19:19:07.742Z",
238
+ "size": 45
200
239
  },
201
240
  {
202
- "relativePath": "../../../../internal/src/method-tools.js",
203
- "mtime": "2024-02-08T22:44:59.638Z"
241
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/src/E.js",
242
+ "mtime": "2024-05-29T19:19:07.877Z",
243
+ "size": 13991
204
244
  },
205
245
  {
206
- "relativePath": "../../../../internal/src/typeGuards.js",
207
- "mtime": "2024-02-08T22:44:59.638Z"
246
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/src/exports.js",
247
+ "mtime": "2024-05-29T19:19:07.877Z",
248
+ "size": 76
208
249
  },
209
250
  {
210
- "relativePath": "../../../../internal/src/utils.js",
211
- "mtime": "2024-02-08T22:44:59.638Z"
251
+ "relativePath": "../../../../ERTP/src/amountMath.js",
252
+ "mtime": "2024-06-03T19:32:33.008Z",
253
+ "size": 13790
212
254
  },
213
255
  {
214
- "relativePath": "../../../../store/src/legacy/legacyMap.js",
215
- "mtime": "2024-02-08T22:44:59.646Z"
256
+ "relativePath": "../../../../ERTP/src/issuerKit.js",
257
+ "mtime": "2024-06-03T19:32:33.008Z",
258
+ "size": 13260
216
259
  },
217
260
  {
218
- "relativePath": "../../../../store/src/legacy/legacyWeakMap.js",
219
- "mtime": "2024-02-08T22:44:59.646Z"
261
+ "relativePath": "../../../../ERTP/src/typeGuards.js",
262
+ "mtime": "2024-06-03T19:32:33.008Z",
263
+ "size": 8177
220
264
  },
221
265
  {
222
- "relativePath": "../../../../store/src/stores/scalarMapStore.js",
223
- "mtime": "2024-02-08T22:44:59.646Z"
266
+ "relativePath": "../../../../store/src/stores/scalarWeakSetStore.js",
267
+ "mtime": "2024-06-03T19:32:33.144Z",
268
+ "size": 3296
224
269
  },
225
270
  {
226
271
  "relativePath": "../../../../store/src/stores/scalarSetStore.js",
227
- "mtime": "2024-02-08T22:44:59.646Z"
272
+ "mtime": "2024-06-03T19:32:33.144Z",
273
+ "size": 3082
228
274
  },
229
275
  {
230
276
  "relativePath": "../../../../store/src/stores/scalarWeakMapStore.js",
231
- "mtime": "2024-02-08T22:44:59.646Z"
277
+ "mtime": "2024-06-03T19:32:33.144Z",
278
+ "size": 4577
232
279
  },
233
280
  {
234
- "relativePath": "../../../../store/src/stores/scalarWeakSetStore.js",
235
- "mtime": "2024-02-08T22:44:59.646Z"
281
+ "relativePath": "../../../../store/src/stores/scalarMapStore.js",
282
+ "mtime": "2024-06-03T19:32:33.144Z",
283
+ "size": 4958
236
284
  },
237
285
  {
238
286
  "relativePath": "../../../../store/src/stores/store-utils.js",
239
- "mtime": "2024-02-08T22:44:59.646Z"
287
+ "mtime": "2024-06-03T19:32:33.144Z",
288
+ "size": 6337
289
+ },
290
+ {
291
+ "relativePath": "../../../../../node_modules/@endo/patterns/index.js",
292
+ "mtime": "2024-05-29T19:19:07.458Z",
293
+ "size": 1898
240
294
  },
241
295
  {
242
296
  "relativePath": "../../../../../node_modules/@endo/exo/index.js",
243
- "mtime": "2024-02-07T03:11:45.612Z"
297
+ "mtime": "2024-05-29T19:19:07.953Z",
298
+ "size": 225
244
299
  },
245
300
  {
246
- "relativePath": "../../../../../node_modules/@endo/patterns/index.js",
247
- "mtime": "2024-02-07T03:11:45.537Z"
301
+ "relativePath": "../../../../store/src/legacy/legacyMap.js",
302
+ "mtime": "2024-06-03T19:32:33.144Z",
303
+ "size": 2573
248
304
  },
249
305
  {
250
- "relativePath": "../../../../../node_modules/@endo/eventual-send/src/E.js",
251
- "mtime": "2024-02-07T03:11:45.270Z"
306
+ "relativePath": "../../../../store/src/legacy/legacyWeakMap.js",
307
+ "mtime": "2024-06-03T19:32:33.144Z",
308
+ "size": 1403
252
309
  },
253
310
  {
254
- "relativePath": "../../../../vat-data/src/exo-utils.js",
255
- "mtime": "2024-02-08T22:44:59.670Z"
311
+ "relativePath": "../../../../store/src/types.js",
312
+ "mtime": "2024-06-03T19:32:33.144Z",
313
+ "size": 7815
256
314
  },
257
315
  {
258
316
  "relativePath": "../../../../vat-data/src/vat-data-bindings.js",
259
- "mtime": "2024-02-08T22:44:59.670Z"
317
+ "mtime": "2024-06-03T19:32:33.168Z",
318
+ "size": 6111
260
319
  },
261
320
  {
262
- "relativePath": "../../../../../node_modules/@endo/promise-kit/src/is-promise.js",
263
- "mtime": "2024-02-07T03:11:44.508Z"
321
+ "relativePath": "../../../../vat-data/src/exo-utils.js",
322
+ "mtime": "2024-06-03T19:32:33.168Z",
323
+ "size": 9180
324
+ },
325
+ {
326
+ "relativePath": "../../../../../node_modules/@endo/promise-kit/src/promise-executor-kit.js",
327
+ "mtime": "2024-05-29T19:19:07.507Z",
328
+ "size": 1535
264
329
  },
265
330
  {
266
331
  "relativePath": "../../../../../node_modules/@endo/promise-kit/src/memo-race.js",
267
- "mtime": "2024-02-07T03:11:44.508Z"
332
+ "mtime": "2024-05-29T19:19:07.507Z",
333
+ "size": 4738
268
334
  },
269
335
  {
270
- "relativePath": "../../../../../node_modules/@endo/promise-kit/src/promise-executor-kit.js",
271
- "mtime": "2024-02-07T03:11:44.508Z"
336
+ "relativePath": "../../../../../node_modules/@endo/promise-kit/src/is-promise.js",
337
+ "mtime": "2024-05-29T19:19:07.507Z",
338
+ "size": 290
272
339
  },
273
340
  {
274
341
  "relativePath": "../../../../../node_modules/@endo/promise-kit/src/types.js",
275
- "mtime": "2024-02-07T03:11:44.508Z"
342
+ "mtime": "2024-05-29T19:19:07.507Z",
343
+ "size": 681
276
344
  },
277
345
  {
278
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/error.js",
279
- "mtime": "2024-02-07T03:11:45.630Z"
346
+ "relativePath": "../../../../internal/src/config.js",
347
+ "mtime": "2024-06-03T19:32:33.132Z",
348
+ "size": 1308
280
349
  },
281
350
  {
282
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/iter-helpers.js",
283
- "mtime": "2024-02-07T03:11:45.630Z"
351
+ "relativePath": "../../../../internal/src/debug.js",
352
+ "mtime": "2024-06-03T19:32:33.132Z",
353
+ "size": 1029
284
354
  },
285
355
  {
286
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/make-far.js",
287
- "mtime": "2024-02-07T03:11:45.630Z"
356
+ "relativePath": "../../../../internal/src/utils.js",
357
+ "mtime": "2024-06-03T19:32:33.132Z",
358
+ "size": 8790
288
359
  },
289
360
  {
290
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/makeTagged.js",
291
- "mtime": "2024-02-07T03:11:45.630Z"
361
+ "relativePath": "../../../../internal/src/method-tools.js",
362
+ "mtime": "2024-06-03T19:32:33.132Z",
363
+ "size": 3853
292
364
  },
293
365
  {
294
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/passStyle-helpers.js",
295
- "mtime": "2024-02-07T03:11:45.630Z"
366
+ "relativePath": "../../../../internal/src/typeGuards.js",
367
+ "mtime": "2024-06-03T19:32:33.132Z",
368
+ "size": 316
296
369
  },
297
370
  {
298
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/passStyleOf.js",
299
- "mtime": "2024-02-07T03:11:45.630Z"
371
+ "relativePath": "../../../../internal/src/types.js",
372
+ "mtime": "2024-06-03T19:32:33.132Z",
373
+ "size": 62
300
374
  },
301
375
  {
302
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/remotable.js",
303
- "mtime": "2024-02-07T03:11:45.630Z"
376
+ "relativePath": "../../../../../node_modules/@endo/common/from-unique-entries.js",
377
+ "mtime": "2024-05-29T19:19:07.747Z",
378
+ "size": 911
304
379
  },
305
380
  {
306
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/symbol.js",
307
- "mtime": "2024-02-07T03:11:45.630Z"
381
+ "relativePath": "../../../../assert/src/assert.js",
382
+ "mtime": "2024-06-03T19:32:33.052Z",
383
+ "size": 2504
308
384
  },
309
385
  {
310
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/typeGuards.js",
311
- "mtime": "2024-02-07T03:11:45.630Z"
386
+ "relativePath": "../../issuerRecord.js",
387
+ "mtime": "2024-06-03T19:32:33.188Z",
388
+ "size": 744
312
389
  },
313
390
  {
314
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/types.js",
315
- "mtime": "2024-02-07T03:11:45.630Z"
391
+ "relativePath": "../../../../../node_modules/@endo/import-bundle/src/index.js",
392
+ "mtime": "2024-05-29T19:19:08.531Z",
393
+ "size": 4964
316
394
  },
317
395
  {
318
- "relativePath": "../../../../../node_modules/@endo/nat/src/index.js",
319
- "mtime": "2024-02-07T03:11:44.429Z"
396
+ "relativePath": "../../../../time/index.js",
397
+ "mtime": "2024-06-03T19:32:33.168Z",
398
+ "size": 160
320
399
  },
321
400
  {
322
- "relativePath": "../../../../../node_modules/@endo/marshal/src/encodeToSmallcaps.js",
323
- "mtime": "2024-02-07T03:11:44.410Z"
401
+ "relativePath": "../offerSafety.js",
402
+ "mtime": "2024-06-03T19:32:33.184Z",
403
+ "size": 3720
324
404
  },
325
405
  {
326
- "relativePath": "../../../../assert/src/types.js",
327
- "mtime": "2024-02-08T22:44:59.606Z"
406
+ "relativePath": "../rightsConservation.js",
407
+ "mtime": "2024-06-03T19:32:33.184Z",
408
+ "size": 3286
328
409
  },
329
410
  {
330
- "relativePath": "../../../../notifier/src/asyncIterableAdaptor.js",
331
- "mtime": "2024-02-08T22:44:59.638Z"
411
+ "relativePath": "../allocationMath.js",
412
+ "mtime": "2024-06-03T19:32:33.184Z",
413
+ "size": 3054
332
414
  },
333
415
  {
334
- "relativePath": "../../../../notifier/src/notifier.js",
335
- "mtime": "2024-02-08T22:44:59.638Z"
416
+ "relativePath": "../reallocate.js",
417
+ "mtime": "2024-06-03T19:32:33.184Z",
418
+ "size": 3065
336
419
  },
337
420
  {
338
- "relativePath": "../../../../notifier/src/publish-kit.js",
339
- "mtime": "2024-02-08T22:44:59.638Z"
421
+ "relativePath": "../../contractSupport/atomicTransfer.js",
422
+ "mtime": "2024-06-03T19:32:33.184Z",
423
+ "size": 3885
340
424
  },
341
425
  {
342
- "relativePath": "../../../../notifier/src/stored-notifier.js",
343
- "mtime": "2024-02-08T22:44:59.638Z"
426
+ "relativePath": "../../../../notifier/src/index.js",
427
+ "mtime": "2024-06-03T19:32:33.136Z",
428
+ "size": 910
344
429
  },
345
430
  {
346
- "relativePath": "../../../../notifier/src/storesub.js",
347
- "mtime": "2024-02-08T22:44:59.638Z"
431
+ "relativePath": "../internal-types.js",
432
+ "mtime": "2024-06-03T19:32:33.184Z",
433
+ "size": 411
348
434
  },
349
435
  {
350
- "relativePath": "../../../../notifier/src/subscribe.js",
351
- "mtime": "2024-02-08T22:44:59.638Z"
436
+ "relativePath": "../types-ambient.js",
437
+ "mtime": "2024-06-03T19:32:33.184Z",
438
+ "size": 49
352
439
  },
353
440
  {
354
- "relativePath": "../../../../notifier/src/subscriber.js",
355
- "mtime": "2024-02-08T22:44:59.638Z"
441
+ "relativePath": "../../../../../node_modules/@endo/env-options/index.js",
442
+ "mtime": "2024-05-29T19:19:07.242Z",
443
+ "size": 38
356
444
  },
357
445
  {
358
- "relativePath": "../../../../time/src/timeMath.js",
359
- "mtime": "2024-02-08T22:44:59.666Z"
446
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/copyArray.js",
447
+ "mtime": "2024-05-29T19:19:07.742Z",
448
+ "size": 1512
360
449
  },
361
450
  {
362
- "relativePath": "../../../../time/src/typeGuards.js",
363
- "mtime": "2024-02-08T22:44:59.666Z"
451
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/copyRecord.js",
452
+ "mtime": "2024-05-29T19:19:07.742Z",
453
+ "size": 1586
364
454
  },
365
455
  {
366
- "relativePath": "../../../../../node_modules/@endo/import-bundle/src/compartment-wrapper.js",
367
- "mtime": "2024-02-07T03:11:44.957Z"
456
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/tagged.js",
457
+ "mtime": "2024-05-29T19:19:07.742Z",
458
+ "size": 1471
368
459
  },
369
460
  {
370
- "relativePath": "../../../../../node_modules/@endo/base64/index.js",
371
- "mtime": "2024-02-07T03:11:45.085Z"
461
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/safe-promise.js",
462
+ "mtime": "2024-05-29T19:19:07.742Z",
463
+ "size": 4994
372
464
  },
373
465
  {
374
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/import-archive.js",
375
- "mtime": "2024-02-07T03:11:44.223Z"
466
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/utils.js",
467
+ "mtime": "2024-05-29T19:19:07.877Z",
468
+ "size": 125
376
469
  },
377
470
  {
378
- "relativePath": "../../../../ERTP/src/mathHelpers/copyBagMathHelpers.js",
379
- "mtime": "2024-02-08T22:44:59.562Z"
471
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/src/track-turns.js",
472
+ "mtime": "2024-05-29T19:19:07.877Z",
473
+ "size": 3719
380
474
  },
381
475
  {
382
- "relativePath": "../../../../ERTP/src/mathHelpers/copySetMathHelpers.js",
383
- "mtime": "2024-02-08T22:44:59.562Z"
476
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/src/message-breakpoints.js",
477
+ "mtime": "2024-05-29T19:19:07.877Z",
478
+ "size": 5618
384
479
  },
385
480
  {
386
481
  "relativePath": "../../../../ERTP/src/mathHelpers/natMathHelpers.js",
387
- "mtime": "2024-02-08T22:44:59.562Z"
482
+ "mtime": "2024-06-03T19:32:33.008Z",
483
+ "size": 1147
388
484
  },
389
485
  {
390
486
  "relativePath": "../../../../ERTP/src/mathHelpers/setMathHelpers.js",
391
- "mtime": "2024-02-08T22:44:59.562Z"
487
+ "mtime": "2024-06-03T19:32:33.008Z",
488
+ "size": 1131
489
+ },
490
+ {
491
+ "relativePath": "../../../../ERTP/src/mathHelpers/copySetMathHelpers.js",
492
+ "mtime": "2024-06-03T19:32:33.008Z",
493
+ "size": 684
494
+ },
495
+ {
496
+ "relativePath": "../../../../ERTP/src/mathHelpers/copyBagMathHelpers.js",
497
+ "mtime": "2024-06-03T19:32:33.008Z",
498
+ "size": 677
499
+ },
500
+ {
501
+ "relativePath": "../../../../zone/durable.js",
502
+ "mtime": "2024-06-03T19:32:33.196Z",
503
+ "size": 52
392
504
  },
393
505
  {
394
506
  "relativePath": "../../../../ERTP/src/displayInfo.js",
395
- "mtime": "2024-02-08T22:44:59.562Z"
507
+ "mtime": "2024-06-03T19:32:33.008Z",
508
+ "size": 1016
396
509
  },
397
510
  {
398
511
  "relativePath": "../../../../ERTP/src/paymentLedger.js",
399
- "mtime": "2024-02-08T22:44:59.562Z"
512
+ "mtime": "2024-06-03T19:32:33.008Z",
513
+ "size": 12447
400
514
  },
401
515
  {
402
- "relativePath": "../../../../ERTP/src/types-ambient.js",
403
- "mtime": "2024-02-08T22:44:59.562Z"
516
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/checkKey.js",
517
+ "mtime": "2024-05-29T19:19:07.458Z",
518
+ "size": 14735
404
519
  },
405
520
  {
406
- "relativePath": "../../../../../node_modules/@endo/stream/index.js",
407
- "mtime": "2024-02-07T03:11:45.549Z"
521
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/copySet.js",
522
+ "mtime": "2024-05-29T19:19:07.458Z",
523
+ "size": 3011
408
524
  },
409
525
  {
410
- "relativePath": "../../../../../node_modules/jessie.js/src/main.js",
411
- "mtime": "2024-02-07T03:11:45.439Z"
526
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/copyBag.js",
527
+ "mtime": "2024-05-29T19:19:07.458Z",
528
+ "size": 3991
412
529
  },
413
530
  {
414
- "relativePath": "../../../../store/src/types.js",
415
- "mtime": "2024-02-08T22:44:59.646Z"
531
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/compareKeys.js",
532
+ "mtime": "2024-05-29T19:19:07.458Z",
533
+ "size": 8303
416
534
  },
417
535
  {
418
- "relativePath": "../../../../../node_modules/@endo/exo/src/exo-makers.js",
419
- "mtime": "2024-02-07T03:11:45.612Z"
536
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/merge-set-operators.js",
537
+ "mtime": "2024-05-29T19:19:07.458Z",
538
+ "size": 9558
420
539
  },
421
540
  {
422
- "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/checkKey.js",
423
- "mtime": "2024-02-07T03:11:45.537Z"
541
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/merge-bag-operators.js",
542
+ "mtime": "2024-05-29T19:19:07.458Z",
543
+ "size": 8748
424
544
  },
425
545
  {
426
- "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/compareKeys.js",
427
- "mtime": "2024-02-07T03:11:45.537Z"
546
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/patterns/patternMatchers.js",
547
+ "mtime": "2024-05-29T19:19:07.458Z",
548
+ "size": 62060
428
549
  },
429
550
  {
430
- "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/copyBag.js",
431
- "mtime": "2024-02-07T03:11:45.537Z"
551
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/patterns/getGuardPayloads.js",
552
+ "mtime": "2024-05-29T19:19:07.458Z",
553
+ "size": 9710
432
554
  },
433
555
  {
434
- "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/copySet.js",
435
- "mtime": "2024-02-07T03:11:45.537Z"
556
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/types.js",
557
+ "mtime": "2024-05-29T19:19:07.458Z",
558
+ "size": 23662
436
559
  },
437
560
  {
438
- "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/merge-bag-operators.js",
439
- "mtime": "2024-02-07T03:11:45.537Z"
561
+ "relativePath": "../../../../../node_modules/@endo/common/list-difference.js",
562
+ "mtime": "2024-05-29T19:19:07.747Z",
563
+ "size": 755
440
564
  },
441
565
  {
442
- "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/merge-set-operators.js",
443
- "mtime": "2024-02-07T03:11:45.537Z"
566
+ "relativePath": "../../../../../node_modules/@endo/exo/src/exo-makers.js",
567
+ "mtime": "2024-05-29T19:19:07.953Z",
568
+ "size": 6947
444
569
  },
445
570
  {
446
- "relativePath": "../../../../../node_modules/@endo/patterns/src/patterns/patternMatchers.js",
447
- "mtime": "2024-02-07T03:11:45.537Z"
571
+ "relativePath": "../../../../../node_modules/@endo/exo/src/types.js",
572
+ "mtime": "2024-05-29T19:19:07.953Z",
573
+ "size": 45
448
574
  },
449
575
  {
450
- "relativePath": "../../../../../node_modules/@endo/patterns/src/types.js",
451
- "mtime": "2024-02-07T03:11:45.537Z"
576
+ "relativePath": "../../../../../node_modules/@endo/exo/src/get-interface.js",
577
+ "mtime": "2024-05-29T19:19:07.953Z",
578
+ "size": 826
452
579
  },
453
580
  {
454
- "relativePath": "../../../../../node_modules/@endo/patterns/src/utils.js",
455
- "mtime": "2024-02-07T03:11:45.537Z"
581
+ "relativePath": "../../../../../node_modules/@endo/stream/index.js",
582
+ "mtime": "2024-05-29T19:19:08.016Z",
583
+ "size": 6485
456
584
  },
457
585
  {
458
- "relativePath": "../../../../../node_modules/@endo/eventual-send/src/track-turns.js",
459
- "mtime": "2024-02-07T03:11:45.270Z"
586
+ "relativePath": "../../../../../node_modules/jessie.js/src/main.js",
587
+ "mtime": "2024-05-29T19:19:08.759Z",
588
+ "size": 66
460
589
  },
461
590
  {
462
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/copyArray.js",
463
- "mtime": "2024-02-07T03:11:45.630Z"
591
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/import-archive.js",
592
+ "mtime": "2024-05-29T19:19:07.171Z",
593
+ "size": 91
464
594
  },
465
595
  {
466
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/copyRecord.js",
467
- "mtime": "2024-02-07T03:11:45.630Z"
596
+ "relativePath": "../../../../../node_modules/@endo/base64/index.js",
597
+ "mtime": "2024-05-29T19:19:08.135Z",
598
+ "size": 164
468
599
  },
469
600
  {
470
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/safe-promise.js",
471
- "mtime": "2024-02-07T03:11:45.630Z"
601
+ "relativePath": "../../../../../node_modules/@endo/import-bundle/src/compartment-wrapper.js",
602
+ "mtime": "2024-05-29T19:19:08.531Z",
603
+ "size": 2676
472
604
  },
473
605
  {
474
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/tagged.js",
475
- "mtime": "2024-02-07T03:11:45.630Z"
606
+ "relativePath": "../../../../time/src/timeMath.js",
607
+ "mtime": "2024-06-03T19:32:33.168Z",
608
+ "size": 8432
476
609
  },
477
610
  {
478
- "relativePath": "../../../../notifier/src/types-ambient.js",
479
- "mtime": "2024-02-08T22:44:59.638Z"
611
+ "relativePath": "../../../../time/src/typeGuards.js",
612
+ "mtime": "2024-06-03T19:32:33.168Z",
613
+ "size": 688
480
614
  },
481
615
  {
482
- "relativePath": "../../../../internal/src/lib-chainStorage.js",
483
- "mtime": "2024-02-08T22:44:59.638Z"
616
+ "relativePath": "../../../../time/src/types.js",
617
+ "mtime": "2024-06-03T19:32:33.168Z",
618
+ "size": 58
484
619
  },
485
620
  {
486
- "relativePath": "../../../../internal/src/upgrade-api.js",
487
- "mtime": "2024-02-08T22:44:59.638Z"
621
+ "relativePath": "../../../../notifier/src/publish-kit.js",
622
+ "mtime": "2024-06-03T19:32:33.136Z",
623
+ "size": 14436
624
+ },
625
+ {
626
+ "relativePath": "../../../../notifier/src/subscribe.js",
627
+ "mtime": "2024-06-03T19:32:33.136Z",
628
+ "size": 9386
629
+ },
630
+ {
631
+ "relativePath": "../../../../notifier/src/notifier.js",
632
+ "mtime": "2024-06-03T19:32:33.136Z",
633
+ "size": 5772
634
+ },
635
+ {
636
+ "relativePath": "../../../../notifier/src/subscriber.js",
637
+ "mtime": "2024-06-03T19:32:33.136Z",
638
+ "size": 2525
488
639
  },
489
640
  {
490
641
  "relativePath": "../../../../notifier/src/topic.js",
491
- "mtime": "2024-02-08T22:44:59.638Z"
642
+ "mtime": "2024-06-03T19:32:33.136Z",
643
+ "size": 1142
492
644
  },
493
645
  {
494
- "relativePath": "../../../../../node_modules/@endo/base64/atob.js",
495
- "mtime": "2024-02-07T03:11:45.085Z"
646
+ "relativePath": "../../../../notifier/src/asyncIterableAdaptor.js",
647
+ "mtime": "2024-06-03T19:32:33.136Z",
648
+ "size": 4148
496
649
  },
497
650
  {
498
- "relativePath": "../../../../../node_modules/@endo/base64/btoa.js",
499
- "mtime": "2024-02-07T03:11:45.085Z"
651
+ "relativePath": "../../../../notifier/src/storesub.js",
652
+ "mtime": "2024-06-03T19:32:33.136Z",
653
+ "size": 7802
500
654
  },
501
655
  {
502
- "relativePath": "../../../../../node_modules/@endo/base64/src/decode.js",
503
- "mtime": "2024-02-07T03:11:45.085Z"
656
+ "relativePath": "../../../../notifier/src/stored-notifier.js",
657
+ "mtime": "2024-06-03T19:32:33.136Z",
658
+ "size": 2295
504
659
  },
505
660
  {
506
- "relativePath": "../../../../../node_modules/@endo/base64/src/encode.js",
507
- "mtime": "2024-02-07T03:11:45.085Z"
661
+ "relativePath": "../../../../notifier/src/types.js",
662
+ "mtime": "2024-06-03T19:32:33.136Z",
663
+ "size": 10117
508
664
  },
509
665
  {
510
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/import-archive.js",
511
- "mtime": "2024-02-07T03:11:44.223Z"
666
+ "relativePath": "../../../../../node_modules/@endo/env-options/src/env-options.js",
667
+ "mtime": "2024-05-29T19:19:07.242Z",
668
+ "size": 4330
669
+ },
670
+ {
671
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/src/local.js",
672
+ "mtime": "2024-05-29T19:19:07.877Z",
673
+ "size": 4000
674
+ },
675
+ {
676
+ "relativePath": "../../../../zone/src/durable.js",
677
+ "mtime": "2024-06-03T19:32:33.196Z",
678
+ "size": 3771
512
679
  },
513
680
  {
514
681
  "relativePath": "../../../../ERTP/src/payment.js",
515
- "mtime": "2024-02-08T22:44:59.562Z"
682
+ "mtime": "2024-06-03T19:32:33.008Z",
683
+ "size": 716
516
684
  },
517
685
  {
518
686
  "relativePath": "../../../../ERTP/src/purse.js",
519
- "mtime": "2024-02-08T22:44:59.562Z"
687
+ "mtime": "2024-06-03T19:32:33.008Z",
688
+ "size": 6231
689
+ },
690
+ {
691
+ "relativePath": "../../../../../node_modules/@endo/common/ident-checker.js",
692
+ "mtime": "2024-05-29T19:19:07.747Z",
693
+ "size": 1613
694
+ },
695
+ {
696
+ "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/keycollection-operators.js",
697
+ "mtime": "2024-05-29T19:19:07.458Z",
698
+ "size": 7647
520
699
  },
521
700
  {
522
- "relativePath": "../../../../store/exported.js",
523
- "mtime": "2024-02-08T22:44:59.646Z"
701
+ "relativePath": "../../../../../node_modules/@endo/common/apply-labeling-error.js",
702
+ "mtime": "2024-05-29T19:19:07.747Z",
703
+ "size": 2206
704
+ },
705
+ {
706
+ "relativePath": "../../../../../node_modules/@endo/exo/src/exo-tools.js",
707
+ "mtime": "2024-05-29T19:19:07.953Z",
708
+ "size": 15822
524
709
  },
525
710
  {
526
711
  "relativePath": "../../../../../node_modules/jessie.js/src/ring0/main.js",
527
- "mtime": "2024-02-07T03:11:45.439Z"
712
+ "mtime": "2024-05-29T19:19:08.759Z",
713
+ "size": 132
528
714
  },
529
715
  {
530
716
  "relativePath": "../../../../../node_modules/jessie.js/src/ring1/main.js",
531
- "mtime": "2024-02-07T03:11:45.439Z"
717
+ "mtime": "2024-05-29T19:19:08.759Z",
718
+ "size": 34
532
719
  },
533
720
  {
534
- "relativePath": "../../../../../node_modules/@endo/exo/src/exo-tools.js",
535
- "mtime": "2024-02-07T03:11:45.612Z"
721
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/import-archive.js",
722
+ "mtime": "2024-05-29T19:19:07.171Z",
723
+ "size": 14040
536
724
  },
537
725
  {
538
- "relativePath": "../../../../internal/src/callback.js",
539
- "mtime": "2024-02-08T22:44:59.638Z"
726
+ "relativePath": "../../../../../node_modules/@endo/base64/src/encode.js",
727
+ "mtime": "2024-05-29T19:19:08.135Z",
728
+ "size": 1968
540
729
  },
541
730
  {
542
- "relativePath": "../../../../zone/src/index.js",
543
- "mtime": "2024-02-08T22:44:59.702Z"
731
+ "relativePath": "../../../../../node_modules/@endo/base64/src/decode.js",
732
+ "mtime": "2024-05-29T19:19:08.135Z",
733
+ "size": 2435
544
734
  },
545
735
  {
546
- "relativePath": "../../../../../node_modules/@endo/base64/decode.js",
547
- "mtime": "2024-02-07T03:11:45.085Z"
736
+ "relativePath": "../../../../../node_modules/@endo/base64/btoa.js",
737
+ "mtime": "2024-05-29T19:19:08.135Z",
738
+ "size": 512
548
739
  },
549
740
  {
550
- "relativePath": "../../../../../node_modules/@endo/base64/encode.js",
551
- "mtime": "2024-02-07T03:11:45.085Z"
741
+ "relativePath": "../../../../../node_modules/@endo/base64/atob.js",
742
+ "mtime": "2024-05-29T19:19:08.135Z",
743
+ "size": 330
552
744
  },
553
745
  {
554
- "relativePath": "../../../../../node_modules/@endo/base64/src/common.js",
555
- "mtime": "2024-02-07T03:11:45.085Z"
746
+ "relativePath": "../../../../internal/src/upgrade-api.js",
747
+ "mtime": "2024-06-03T19:32:33.132Z",
748
+ "size": 1276
556
749
  },
557
750
  {
558
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/compartment-map.js",
559
- "mtime": "2024-02-07T03:11:44.223Z"
751
+ "relativePath": "../../../../internal/src/lib-chainStorage.js",
752
+ "mtime": "2024-06-03T19:32:33.132Z",
753
+ "size": 9694
560
754
  },
561
755
  {
562
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/json.js",
563
- "mtime": "2024-02-07T03:11:44.223Z"
756
+ "relativePath": "../../../../base-zone/src/index.js",
757
+ "mtime": "2024-06-03T19:32:33.060Z",
758
+ "size": 306
564
759
  },
565
760
  {
566
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/link.js",
567
- "mtime": "2024-02-07T03:11:44.223Z"
761
+ "relativePath": "../../../../ERTP/src/transientNotifier.js",
762
+ "mtime": "2024-06-03T19:32:33.008Z",
763
+ "size": 1051
568
764
  },
569
765
  {
570
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/node-module-specifier.js",
571
- "mtime": "2024-02-07T03:11:44.223Z"
766
+ "relativePath": "../../../../ERTP/src/amountStore.js",
767
+ "mtime": "2024-06-03T19:32:33.008Z",
768
+ "size": 938
572
769
  },
573
770
  {
574
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-bytes.js",
575
- "mtime": "2024-02-07T03:11:44.223Z"
771
+ "relativePath": "../../../../../node_modules/@endo/common/make-iterator.js",
772
+ "mtime": "2024-05-29T19:19:07.747Z",
773
+ "size": 335
576
774
  },
577
775
  {
578
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-json.js",
579
- "mtime": "2024-02-07T03:11:44.223Z"
776
+ "relativePath": "../../../../../node_modules/@endo/common/make-array-iterator.js",
777
+ "mtime": "2024-05-29T19:19:07.747Z",
778
+ "size": 600
779
+ },
780
+ {
781
+ "relativePath": "../../../../../node_modules/@endo/common/throw-labeled.js",
782
+ "mtime": "2024-05-29T19:19:07.747Z",
783
+ "size": 833
784
+ },
785
+ {
786
+ "relativePath": "../../../../../node_modules/jessie.js/src/ring0/E.js",
787
+ "mtime": "2024-05-29T19:19:08.759Z",
788
+ "size": 27
789
+ },
790
+ {
791
+ "relativePath": "../../../../../node_modules/jessie.js/src/ring0/makers.js",
792
+ "mtime": "2024-05-29T19:19:08.759Z",
793
+ "size": 1611
794
+ },
795
+ {
796
+ "relativePath": "../../../../../node_modules/jessie.js/src/ring0/async-generate.js",
797
+ "mtime": "2024-05-29T19:19:08.759Z",
798
+ "size": 559
799
+ },
800
+ {
801
+ "relativePath": "../../../../../node_modules/jessie.js/src/ring1/async-tools.js",
802
+ "mtime": "2024-05-29T19:19:08.759Z",
803
+ "size": 862
804
+ },
805
+ {
806
+ "relativePath": "../../../../../node_modules/@endo/zip/index.js",
807
+ "mtime": "2024-05-29T19:19:08.571Z",
808
+ "size": 183
809
+ },
810
+ {
811
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/link.js",
812
+ "mtime": "2024-05-29T19:19:07.171Z",
813
+ "size": 15203
580
814
  },
581
815
  {
582
816
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-pre-cjs.js",
583
- "mtime": "2024-02-07T03:11:44.223Z"
817
+ "mtime": "2024-05-29T19:19:07.171Z",
818
+ "size": 1379
584
819
  },
585
820
  {
586
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-pre-mjs.js",
587
- "mtime": "2024-02-07T03:11:44.223Z"
821
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-json.js",
822
+ "mtime": "2024-05-29T19:19:07.171Z",
823
+ "size": 950
588
824
  },
589
825
  {
590
826
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-text.js",
591
- "mtime": "2024-02-07T03:11:44.223Z"
827
+ "mtime": "2024-05-29T19:19:07.171Z",
828
+ "size": 905
829
+ },
830
+ {
831
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-bytes.js",
832
+ "mtime": "2024-05-29T19:19:07.171Z",
833
+ "size": 970
834
+ },
835
+ {
836
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-pre-mjs.js",
837
+ "mtime": "2024-05-29T19:19:07.171Z",
838
+ "size": 845
839
+ },
840
+ {
841
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/json.js",
842
+ "mtime": "2024-05-29T19:19:07.171Z",
843
+ "size": 441
592
844
  },
593
845
  {
594
846
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/powers.js",
595
- "mtime": "2024-02-07T03:11:44.223Z"
847
+ "mtime": "2024-05-29T19:19:07.171Z",
848
+ "size": 1020
596
849
  },
597
850
  {
598
- "relativePath": "../../../../../node_modules/@endo/zip/index.js",
599
- "mtime": "2024-02-07T03:11:45.170Z"
851
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/node-module-specifier.js",
852
+ "mtime": "2024-05-29T19:19:07.171Z",
853
+ "size": 4994
600
854
  },
601
855
  {
602
- "relativePath": "../../../../ERTP/src/transientNotifier.js",
603
- "mtime": "2024-02-08T22:44:59.562Z"
856
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/compartment-map.js",
857
+ "mtime": "2024-05-29T19:19:07.171Z",
858
+ "size": 12994
604
859
  },
605
860
  {
606
- "relativePath": "../../../../../node_modules/jessie.js/src/ring0/E.js",
607
- "mtime": "2024-02-07T03:11:45.439Z"
861
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/import-hook.js",
862
+ "mtime": "2024-05-29T19:19:07.171Z",
863
+ "size": 14131
608
864
  },
609
865
  {
610
- "relativePath": "../../../../../node_modules/jessie.js/src/ring0/async-generate.js",
611
- "mtime": "2024-02-07T03:11:45.439Z"
866
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/policy.js",
867
+ "mtime": "2024-05-29T19:19:07.171Z",
868
+ "size": 14828
612
869
  },
613
870
  {
614
- "relativePath": "../../../../../node_modules/jessie.js/src/ring0/makers.js",
615
- "mtime": "2024-02-07T03:11:45.439Z"
871
+ "relativePath": "../../../../../node_modules/@endo/base64/src/common.js",
872
+ "mtime": "2024-05-29T19:19:08.135Z",
873
+ "size": 526
616
874
  },
617
875
  {
618
- "relativePath": "../../../../../node_modules/jessie.js/src/ring1/async-tools.js",
619
- "mtime": "2024-02-07T03:11:45.439Z"
876
+ "relativePath": "../../../../../node_modules/@endo/base64/encode.js",
877
+ "mtime": "2024-05-29T19:19:08.135Z",
878
+ "size": 48
879
+ },
880
+ {
881
+ "relativePath": "../../../../../node_modules/@endo/base64/decode.js",
882
+ "mtime": "2024-05-29T19:19:08.135Z",
883
+ "size": 48
620
884
  },
621
885
  {
622
- "relativePath": "../../../../zone/src/heap.js",
623
- "mtime": "2024-02-08T22:44:59.702Z"
886
+ "relativePath": "../../../../base-zone/heap.js",
887
+ "mtime": "2024-06-03T19:32:33.060Z",
888
+ "size": 49
624
889
  },
625
890
  {
626
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/policy-format.js",
627
- "mtime": "2024-02-07T03:11:44.223Z"
891
+ "relativePath": "../../../../internal/src/callback.js",
892
+ "mtime": "2024-06-03T19:32:33.132Z",
893
+ "size": 9513
628
894
  },
629
895
  {
630
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/extension.js",
631
- "mtime": "2024-02-07T03:11:44.223Z"
896
+ "relativePath": "../../../../base-zone/src/exports.js",
897
+ "mtime": "2024-06-03T19:32:33.060Z",
898
+ "size": 76
632
899
  },
633
900
  {
634
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/policy.js",
635
- "mtime": "2024-02-07T03:11:44.223Z"
901
+ "relativePath": "../../../../base-zone/src/make-once.js",
902
+ "mtime": "2024-06-03T19:32:33.060Z",
903
+ "size": 3274
636
904
  },
637
905
  {
638
- "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-cjs-shared-export-wrapper.js",
639
- "mtime": "2024-02-07T03:11:44.223Z"
906
+ "relativePath": "../../../../base-zone/src/keys.js",
907
+ "mtime": "2024-06-03T19:32:33.060Z",
908
+ "size": 552
640
909
  },
641
910
  {
642
- "relativePath": "../../../../../node_modules/@endo/zip/src/reader.js",
643
- "mtime": "2024-02-07T03:11:45.170Z"
911
+ "relativePath": "../../../../base-zone/src/is-passable.js",
912
+ "mtime": "2024-06-03T19:32:33.060Z",
913
+ "size": 266
914
+ },
915
+ {
916
+ "relativePath": "../../../../base-zone/src/watch-promise.js",
917
+ "mtime": "2024-06-03T19:32:33.060Z",
918
+ "size": 2360
644
919
  },
645
920
  {
646
921
  "relativePath": "../../../../../node_modules/@endo/zip/src/types.js",
647
- "mtime": "2024-02-07T03:11:45.170Z"
922
+ "mtime": "2024-05-29T19:19:08.571Z",
923
+ "size": 1349
924
+ },
925
+ {
926
+ "relativePath": "../../../../../node_modules/@endo/zip/src/reader.js",
927
+ "mtime": "2024-05-29T19:19:08.571Z",
928
+ "size": 1384
648
929
  },
649
930
  {
650
931
  "relativePath": "../../../../../node_modules/@endo/zip/src/writer.js",
651
- "mtime": "2024-02-07T03:11:45.170Z"
932
+ "mtime": "2024-05-29T19:19:08.571Z",
933
+ "size": 1434
934
+ },
935
+ {
936
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/extension.js",
937
+ "mtime": "2024-05-29T19:19:07.171Z",
938
+ "size": 512
939
+ },
940
+ {
941
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-cjs-shared-export-wrapper.js",
942
+ "mtime": "2024-05-29T19:19:07.171Z",
943
+ "size": 5866
944
+ },
945
+ {
946
+ "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/policy-format.js",
947
+ "mtime": "2024-05-29T19:19:07.171Z",
948
+ "size": 6685
949
+ },
950
+ {
951
+ "relativePath": "../../../../base-zone/src/heap.js",
952
+ "mtime": "2024-06-03T19:32:33.060Z",
953
+ "size": 1843
652
954
  },
653
955
  {
654
956
  "relativePath": "../../../../../node_modules/@endo/zip/src/buffer-reader.js",
655
- "mtime": "2024-02-07T03:11:45.170Z"
957
+ "mtime": "2024-05-29T19:19:08.571Z",
958
+ "size": 6160
656
959
  },
657
960
  {
658
961
  "relativePath": "../../../../../node_modules/@endo/zip/src/format-reader.js",
659
- "mtime": "2024-02-07T03:11:45.170Z"
962
+ "mtime": "2024-05-29T19:19:08.571Z",
963
+ "size": 14620
660
964
  },
661
965
  {
662
966
  "relativePath": "../../../../../node_modules/@endo/zip/src/buffer-writer.js",
663
- "mtime": "2024-02-07T03:11:45.170Z"
967
+ "mtime": "2024-05-29T19:19:08.571Z",
968
+ "size": 4177
664
969
  },
665
970
  {
666
971
  "relativePath": "../../../../../node_modules/@endo/zip/src/format-writer.js",
667
- "mtime": "2024-02-07T03:11:45.170Z"
668
- },
669
- {
670
- "relativePath": "../../../../../node_modules/@endo/zip/src/compression.js",
671
- "mtime": "2024-02-07T03:11:45.170Z"
972
+ "mtime": "2024-05-29T19:19:08.571Z",
973
+ "size": 7377
672
974
  },
673
975
  {
674
976
  "relativePath": "../../../../../node_modules/@endo/zip/src/crc32.js",
675
- "mtime": "2024-02-07T03:11:45.170Z"
977
+ "mtime": "2024-05-29T19:19:08.571Z",
978
+ "size": 1005
676
979
  },
677
980
  {
678
981
  "relativePath": "../../../../../node_modules/@endo/zip/src/signature.js",
679
- "mtime": "2024-02-07T03:11:45.170Z"
982
+ "mtime": "2024-05-29T19:19:08.571Z",
983
+ "size": 616
984
+ },
985
+ {
986
+ "relativePath": "../../../../../node_modules/@endo/zip/src/compression.js",
987
+ "mtime": "2024-05-29T19:19:08.571Z",
988
+ "size": 89
680
989
  }
681
990
  ]
682
991
  }