@ballkidz/defifa 0.0.1

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 (59) hide show
  1. package/.gas-snapshot +2 -0
  2. package/CRYPTO_ECON.md +955 -0
  3. package/CRYPTO_ECON.pdf +0 -0
  4. package/CRYPTO_ECON.tex +800 -0
  5. package/README.md +119 -0
  6. package/SKILLS.md +177 -0
  7. package/deployments/defifa-v5/arbitrum_sepolia/DefifaDelegate.json +4867 -0
  8. package/deployments/defifa-v5/arbitrum_sepolia/DefifaDeployer.json +1719 -0
  9. package/deployments/defifa-v5/arbitrum_sepolia/DefifaGovernor.json +1535 -0
  10. package/deployments/defifa-v5/arbitrum_sepolia/DefifaTokenUriResolver.json +295 -0
  11. package/deployments/defifa-v5/base_sepolia/DefifaDelegate.json +4875 -0
  12. package/deployments/defifa-v5/base_sepolia/DefifaDeployer.json +1725 -0
  13. package/deployments/defifa-v5/base_sepolia/DefifaGovernor.json +1543 -0
  14. package/deployments/defifa-v5/base_sepolia/DefifaTokenUriResolver.json +301 -0
  15. package/deployments/defifa-v5/optimism_sepolia/DefifaDelegate.json +4875 -0
  16. package/deployments/defifa-v5/optimism_sepolia/DefifaDeployer.json +1725 -0
  17. package/deployments/defifa-v5/optimism_sepolia/DefifaGovernor.json +1543 -0
  18. package/deployments/defifa-v5/optimism_sepolia/DefifaTokenUriResolver.json +301 -0
  19. package/deployments/defifa-v5/sepolia/DefifaDelegate.json +4875 -0
  20. package/deployments/defifa-v5/sepolia/DefifaDeployer.json +1725 -0
  21. package/deployments/defifa-v5/sepolia/DefifaGovernor.json +1543 -0
  22. package/deployments/defifa-v5/sepolia/DefifaTokenUriResolver.json +301 -0
  23. package/foundry.lock +17 -0
  24. package/foundry.toml +35 -0
  25. package/package.json +33 -0
  26. package/remappings.txt +6 -0
  27. package/script/Deploy.s.sol +109 -0
  28. package/script/helpers/DefifaDeploymentLib.sol +83 -0
  29. package/slither-ci.config.json +10 -0
  30. package/sphinx.lock +521 -0
  31. package/src/DefifaDeployer.sol +894 -0
  32. package/src/DefifaGovernor.sol +490 -0
  33. package/src/DefifaHook.sol +1056 -0
  34. package/src/DefifaProjectOwner.sol +63 -0
  35. package/src/DefifaTokenUriResolver.sol +312 -0
  36. package/src/enums/DefifaGamePhase.sol +11 -0
  37. package/src/enums/DefifaScorecardState.sol +10 -0
  38. package/src/interfaces/IDefifaDeployer.sol +108 -0
  39. package/src/interfaces/IDefifaGamePhaseReporter.sol +8 -0
  40. package/src/interfaces/IDefifaGamePotReporter.sol +8 -0
  41. package/src/interfaces/IDefifaGovernor.sol +132 -0
  42. package/src/interfaces/IDefifaHook.sol +228 -0
  43. package/src/interfaces/IDefifaTokenUriResolver.sol +10 -0
  44. package/src/libraries/DefifaFontImporter.sol +19 -0
  45. package/src/libraries/DefifaHookLib.sol +358 -0
  46. package/src/structs/DefifaAttestations.sol +9 -0
  47. package/src/structs/DefifaDelegation.sol +9 -0
  48. package/src/structs/DefifaLaunchProjectData.sol +59 -0
  49. package/src/structs/DefifaOpsData.sol +20 -0
  50. package/src/structs/DefifaScorecard.sol +9 -0
  51. package/src/structs/DefifaTierCashOutWeight.sol +9 -0
  52. package/src/structs/DefifaTierParams.sol +16 -0
  53. package/test/DefifaFeeAccounting.t.sol +559 -0
  54. package/test/DefifaGovernor.t.sol +1333 -0
  55. package/test/DefifaMintCostInvariant.t.sol +299 -0
  56. package/test/DefifaNoContest.t.sol +922 -0
  57. package/test/DefifaSecurity.t.sol +717 -0
  58. package/test/SVG.t.sol +164 -0
  59. package/test/deployScript.t.sol +144 -0
@@ -0,0 +1,1543 @@
1
+ {
2
+ "format": "sphinx-sol-ct-artifact-1",
3
+ "merkleRoot": "0xb7149150da4a21f5e44df929622f7bf5f8a6bfee8d83c108f14adc174a50c70d",
4
+ "address": "0xe2f954b35c29b7e3bad27aaa31a3ac443626877d",
5
+ "sourceName": "contracts/DefifaGovernor.sol",
6
+ "contractName": "DefifaGovernor",
7
+ "chainId": "0x14a34",
8
+ "abi": [
9
+ {
10
+ "inputs": [
11
+ {
12
+ "internalType": "contract IJBController",
13
+ "name": "_controller",
14
+ "type": "address"
15
+ },
16
+ {
17
+ "internalType": "address",
18
+ "name": "_owner",
19
+ "type": "address"
20
+ }
21
+ ],
22
+ "stateMutability": "nonpayable",
23
+ "type": "constructor"
24
+ },
25
+ {
26
+ "inputs": [],
27
+ "name": "MAX_ATTESTATION_POWER_TIER",
28
+ "outputs": [
29
+ {
30
+ "internalType": "uint256",
31
+ "name": "",
32
+ "type": "uint256"
33
+ }
34
+ ],
35
+ "stateMutability": "view",
36
+ "type": "function"
37
+ },
38
+ {
39
+ "inputs": [
40
+ {
41
+ "internalType": "uint256",
42
+ "name": "_gameId",
43
+ "type": "uint256"
44
+ },
45
+ {
46
+ "internalType": "uint256",
47
+ "name": "_scorecardId",
48
+ "type": "uint256"
49
+ }
50
+ ],
51
+ "name": "attestToScorecardFrom",
52
+ "outputs": [
53
+ {
54
+ "internalType": "uint256",
55
+ "name": "weight",
56
+ "type": "uint256"
57
+ }
58
+ ],
59
+ "stateMutability": "nonpayable",
60
+ "type": "function"
61
+ },
62
+ {
63
+ "inputs": [
64
+ {
65
+ "internalType": "uint256",
66
+ "name": "_gameId",
67
+ "type": "uint256"
68
+ },
69
+ {
70
+ "internalType": "uint256",
71
+ "name": "_scorecardId",
72
+ "type": "uint256"
73
+ }
74
+ ],
75
+ "name": "attestationCountOf",
76
+ "outputs": [
77
+ {
78
+ "internalType": "uint256",
79
+ "name": "",
80
+ "type": "uint256"
81
+ }
82
+ ],
83
+ "stateMutability": "view",
84
+ "type": "function"
85
+ },
86
+ {
87
+ "inputs": [
88
+ {
89
+ "internalType": "uint256",
90
+ "name": "_gameId",
91
+ "type": "uint256"
92
+ }
93
+ ],
94
+ "name": "attestationGracePeriodOf",
95
+ "outputs": [
96
+ {
97
+ "internalType": "uint256",
98
+ "name": "",
99
+ "type": "uint256"
100
+ }
101
+ ],
102
+ "stateMutability": "view",
103
+ "type": "function"
104
+ },
105
+ {
106
+ "inputs": [
107
+ {
108
+ "internalType": "uint256",
109
+ "name": "_gameId",
110
+ "type": "uint256"
111
+ }
112
+ ],
113
+ "name": "attestationStartTimeOf",
114
+ "outputs": [
115
+ {
116
+ "internalType": "uint256",
117
+ "name": "",
118
+ "type": "uint256"
119
+ }
120
+ ],
121
+ "stateMutability": "view",
122
+ "type": "function"
123
+ },
124
+ {
125
+ "inputs": [],
126
+ "name": "controller",
127
+ "outputs": [
128
+ {
129
+ "internalType": "contract IJBController",
130
+ "name": "",
131
+ "type": "address"
132
+ }
133
+ ],
134
+ "stateMutability": "view",
135
+ "type": "function"
136
+ },
137
+ {
138
+ "inputs": [
139
+ {
140
+ "internalType": "uint256",
141
+ "name": "",
142
+ "type": "uint256"
143
+ }
144
+ ],
145
+ "name": "defaultAttestationDelegateProposalOf",
146
+ "outputs": [
147
+ {
148
+ "internalType": "uint256",
149
+ "name": "",
150
+ "type": "uint256"
151
+ }
152
+ ],
153
+ "stateMutability": "view",
154
+ "type": "function"
155
+ },
156
+ {
157
+ "inputs": [
158
+ {
159
+ "internalType": "uint256",
160
+ "name": "_gameId",
161
+ "type": "uint256"
162
+ },
163
+ {
164
+ "internalType": "address",
165
+ "name": "_account",
166
+ "type": "address"
167
+ },
168
+ {
169
+ "internalType": "uint48",
170
+ "name": "_timestamp",
171
+ "type": "uint48"
172
+ }
173
+ ],
174
+ "name": "getAttestationWeight",
175
+ "outputs": [
176
+ {
177
+ "internalType": "uint256",
178
+ "name": "attestationPower",
179
+ "type": "uint256"
180
+ }
181
+ ],
182
+ "stateMutability": "view",
183
+ "type": "function"
184
+ },
185
+ {
186
+ "inputs": [
187
+ {
188
+ "internalType": "uint256",
189
+ "name": "_gameId",
190
+ "type": "uint256"
191
+ },
192
+ {
193
+ "internalType": "uint256",
194
+ "name": "_scorecardId",
195
+ "type": "uint256"
196
+ },
197
+ {
198
+ "internalType": "address",
199
+ "name": "_account",
200
+ "type": "address"
201
+ }
202
+ ],
203
+ "name": "hasAttestedTo",
204
+ "outputs": [
205
+ {
206
+ "internalType": "bool",
207
+ "name": "",
208
+ "type": "bool"
209
+ }
210
+ ],
211
+ "stateMutability": "view",
212
+ "type": "function"
213
+ },
214
+ {
215
+ "inputs": [
216
+ {
217
+ "internalType": "uint256",
218
+ "name": "_gameId",
219
+ "type": "uint256"
220
+ },
221
+ {
222
+ "internalType": "uint256",
223
+ "name": "_attestationStartTime",
224
+ "type": "uint256"
225
+ },
226
+ {
227
+ "internalType": "uint256",
228
+ "name": "_attestationGracePeriod",
229
+ "type": "uint256"
230
+ }
231
+ ],
232
+ "name": "initializeGame",
233
+ "outputs": [],
234
+ "stateMutability": "nonpayable",
235
+ "type": "function"
236
+ },
237
+ {
238
+ "inputs": [],
239
+ "name": "owner",
240
+ "outputs": [
241
+ {
242
+ "internalType": "address",
243
+ "name": "",
244
+ "type": "address"
245
+ }
246
+ ],
247
+ "stateMutability": "view",
248
+ "type": "function"
249
+ },
250
+ {
251
+ "inputs": [
252
+ {
253
+ "internalType": "uint256",
254
+ "name": "_gameId",
255
+ "type": "uint256"
256
+ }
257
+ ],
258
+ "name": "quorum",
259
+ "outputs": [
260
+ {
261
+ "internalType": "uint256",
262
+ "name": "",
263
+ "type": "uint256"
264
+ }
265
+ ],
266
+ "stateMutability": "view",
267
+ "type": "function"
268
+ },
269
+ {
270
+ "inputs": [
271
+ {
272
+ "internalType": "uint256",
273
+ "name": "",
274
+ "type": "uint256"
275
+ }
276
+ ],
277
+ "name": "ratifiedScorecardIdOf",
278
+ "outputs": [
279
+ {
280
+ "internalType": "uint256",
281
+ "name": "",
282
+ "type": "uint256"
283
+ }
284
+ ],
285
+ "stateMutability": "view",
286
+ "type": "function"
287
+ },
288
+ {
289
+ "inputs": [
290
+ {
291
+ "internalType": "uint256",
292
+ "name": "_gameId",
293
+ "type": "uint256"
294
+ },
295
+ {
296
+ "components": [
297
+ {
298
+ "internalType": "uint256",
299
+ "name": "id",
300
+ "type": "uint256"
301
+ },
302
+ {
303
+ "internalType": "uint256",
304
+ "name": "cashOutWeight",
305
+ "type": "uint256"
306
+ }
307
+ ],
308
+ "internalType": "struct DefifaTierCashOutWeight[]",
309
+ "name": "_tierWeights",
310
+ "type": "tuple[]"
311
+ }
312
+ ],
313
+ "name": "ratifyScorecardFrom",
314
+ "outputs": [
315
+ {
316
+ "internalType": "uint256",
317
+ "name": "scorecardId",
318
+ "type": "uint256"
319
+ }
320
+ ],
321
+ "stateMutability": "nonpayable",
322
+ "type": "function"
323
+ },
324
+ {
325
+ "inputs": [],
326
+ "name": "renounceOwnership",
327
+ "outputs": [],
328
+ "stateMutability": "nonpayable",
329
+ "type": "function"
330
+ },
331
+ {
332
+ "inputs": [
333
+ {
334
+ "internalType": "address",
335
+ "name": "_gameDelegate",
336
+ "type": "address"
337
+ },
338
+ {
339
+ "components": [
340
+ {
341
+ "internalType": "uint256",
342
+ "name": "id",
343
+ "type": "uint256"
344
+ },
345
+ {
346
+ "internalType": "uint256",
347
+ "name": "cashOutWeight",
348
+ "type": "uint256"
349
+ }
350
+ ],
351
+ "internalType": "struct DefifaTierCashOutWeight[]",
352
+ "name": "_tierWeights",
353
+ "type": "tuple[]"
354
+ }
355
+ ],
356
+ "name": "scorecardIdOf",
357
+ "outputs": [
358
+ {
359
+ "internalType": "uint256",
360
+ "name": "",
361
+ "type": "uint256"
362
+ }
363
+ ],
364
+ "stateMutability": "pure",
365
+ "type": "function"
366
+ },
367
+ {
368
+ "inputs": [
369
+ {
370
+ "internalType": "uint256",
371
+ "name": "_gameId",
372
+ "type": "uint256"
373
+ },
374
+ {
375
+ "internalType": "uint256",
376
+ "name": "_scorecardId",
377
+ "type": "uint256"
378
+ }
379
+ ],
380
+ "name": "stateOf",
381
+ "outputs": [
382
+ {
383
+ "internalType": "enum DefifaScorecardState",
384
+ "name": "",
385
+ "type": "uint8"
386
+ }
387
+ ],
388
+ "stateMutability": "view",
389
+ "type": "function"
390
+ },
391
+ {
392
+ "inputs": [
393
+ {
394
+ "internalType": "uint256",
395
+ "name": "_gameId",
396
+ "type": "uint256"
397
+ },
398
+ {
399
+ "components": [
400
+ {
401
+ "internalType": "uint256",
402
+ "name": "id",
403
+ "type": "uint256"
404
+ },
405
+ {
406
+ "internalType": "uint256",
407
+ "name": "cashOutWeight",
408
+ "type": "uint256"
409
+ }
410
+ ],
411
+ "internalType": "struct DefifaTierCashOutWeight[]",
412
+ "name": "_tierWeights",
413
+ "type": "tuple[]"
414
+ }
415
+ ],
416
+ "name": "submitScorecardFor",
417
+ "outputs": [
418
+ {
419
+ "internalType": "uint256",
420
+ "name": "scorecardId",
421
+ "type": "uint256"
422
+ }
423
+ ],
424
+ "stateMutability": "nonpayable",
425
+ "type": "function"
426
+ },
427
+ {
428
+ "inputs": [
429
+ {
430
+ "internalType": "address",
431
+ "name": "newOwner",
432
+ "type": "address"
433
+ }
434
+ ],
435
+ "name": "transferOwnership",
436
+ "outputs": [],
437
+ "stateMutability": "nonpayable",
438
+ "type": "function"
439
+ },
440
+ {
441
+ "anonymous": false,
442
+ "inputs": [
443
+ {
444
+ "indexed": true,
445
+ "internalType": "uint256",
446
+ "name": "gameId",
447
+ "type": "uint256"
448
+ },
449
+ {
450
+ "indexed": false,
451
+ "internalType": "uint256",
452
+ "name": "attestationStartTime",
453
+ "type": "uint256"
454
+ },
455
+ {
456
+ "indexed": false,
457
+ "internalType": "uint256",
458
+ "name": "attestationGracePeriod",
459
+ "type": "uint256"
460
+ },
461
+ {
462
+ "indexed": false,
463
+ "internalType": "address",
464
+ "name": "caller",
465
+ "type": "address"
466
+ }
467
+ ],
468
+ "name": "GameInitialized",
469
+ "type": "event"
470
+ },
471
+ {
472
+ "anonymous": false,
473
+ "inputs": [
474
+ {
475
+ "indexed": true,
476
+ "internalType": "address",
477
+ "name": "previousOwner",
478
+ "type": "address"
479
+ },
480
+ {
481
+ "indexed": true,
482
+ "internalType": "address",
483
+ "name": "newOwner",
484
+ "type": "address"
485
+ }
486
+ ],
487
+ "name": "OwnershipTransferred",
488
+ "type": "event"
489
+ },
490
+ {
491
+ "anonymous": false,
492
+ "inputs": [
493
+ {
494
+ "indexed": true,
495
+ "internalType": "uint256",
496
+ "name": "gameId",
497
+ "type": "uint256"
498
+ },
499
+ {
500
+ "indexed": true,
501
+ "internalType": "uint256",
502
+ "name": "scorecardId",
503
+ "type": "uint256"
504
+ },
505
+ {
506
+ "indexed": false,
507
+ "internalType": "uint256",
508
+ "name": "weight",
509
+ "type": "uint256"
510
+ },
511
+ {
512
+ "indexed": false,
513
+ "internalType": "address",
514
+ "name": "caller",
515
+ "type": "address"
516
+ }
517
+ ],
518
+ "name": "ScorecardAttested",
519
+ "type": "event"
520
+ },
521
+ {
522
+ "anonymous": false,
523
+ "inputs": [
524
+ {
525
+ "indexed": true,
526
+ "internalType": "uint256",
527
+ "name": "gameId",
528
+ "type": "uint256"
529
+ },
530
+ {
531
+ "indexed": true,
532
+ "internalType": "uint256",
533
+ "name": "scorecardId",
534
+ "type": "uint256"
535
+ },
536
+ {
537
+ "indexed": false,
538
+ "internalType": "address",
539
+ "name": "caller",
540
+ "type": "address"
541
+ }
542
+ ],
543
+ "name": "ScorecardRatified",
544
+ "type": "event"
545
+ },
546
+ {
547
+ "anonymous": false,
548
+ "inputs": [
549
+ {
550
+ "indexed": true,
551
+ "internalType": "uint256",
552
+ "name": "gameId",
553
+ "type": "uint256"
554
+ },
555
+ {
556
+ "indexed": true,
557
+ "internalType": "uint256",
558
+ "name": "scorecardId",
559
+ "type": "uint256"
560
+ },
561
+ {
562
+ "components": [
563
+ {
564
+ "internalType": "uint256",
565
+ "name": "id",
566
+ "type": "uint256"
567
+ },
568
+ {
569
+ "internalType": "uint256",
570
+ "name": "cashOutWeight",
571
+ "type": "uint256"
572
+ }
573
+ ],
574
+ "indexed": false,
575
+ "internalType": "struct DefifaTierCashOutWeight[]",
576
+ "name": "tierWeights",
577
+ "type": "tuple[]"
578
+ },
579
+ {
580
+ "indexed": false,
581
+ "internalType": "bool",
582
+ "name": "isDefaultAttestationDelegate",
583
+ "type": "bool"
584
+ },
585
+ {
586
+ "indexed": false,
587
+ "internalType": "address",
588
+ "name": "caller",
589
+ "type": "address"
590
+ }
591
+ ],
592
+ "name": "ScorecardSubmitted",
593
+ "type": "event"
594
+ },
595
+ {
596
+ "inputs": [],
597
+ "name": "ALREADY_ATTESTED",
598
+ "type": "error"
599
+ },
600
+ {
601
+ "inputs": [],
602
+ "name": "ALREADY_RATIFIED",
603
+ "type": "error"
604
+ },
605
+ {
606
+ "inputs": [],
607
+ "name": "DUPLICATE_SCORECARD",
608
+ "type": "error"
609
+ },
610
+ {
611
+ "inputs": [],
612
+ "name": "FailedCall",
613
+ "type": "error"
614
+ },
615
+ {
616
+ "inputs": [],
617
+ "name": "GAME_NOT_FOUND",
618
+ "type": "error"
619
+ },
620
+ {
621
+ "inputs": [],
622
+ "name": "INCORRECT_TIER_ORDER",
623
+ "type": "error"
624
+ },
625
+ {
626
+ "inputs": [],
627
+ "name": "NOT_ALLOWED",
628
+ "type": "error"
629
+ },
630
+ {
631
+ "inputs": [
632
+ {
633
+ "internalType": "address",
634
+ "name": "owner",
635
+ "type": "address"
636
+ }
637
+ ],
638
+ "name": "OwnableInvalidOwner",
639
+ "type": "error"
640
+ },
641
+ {
642
+ "inputs": [
643
+ {
644
+ "internalType": "address",
645
+ "name": "account",
646
+ "type": "address"
647
+ }
648
+ ],
649
+ "name": "OwnableUnauthorizedAccount",
650
+ "type": "error"
651
+ },
652
+ {
653
+ "inputs": [
654
+ {
655
+ "internalType": "uint256",
656
+ "name": "x",
657
+ "type": "uint256"
658
+ },
659
+ {
660
+ "internalType": "uint256",
661
+ "name": "y",
662
+ "type": "uint256"
663
+ },
664
+ {
665
+ "internalType": "uint256",
666
+ "name": "denominator",
667
+ "type": "uint256"
668
+ }
669
+ ],
670
+ "name": "PRBMath_MulDiv_Overflow",
671
+ "type": "error"
672
+ },
673
+ {
674
+ "inputs": [],
675
+ "name": "UNKNOWN_PROPOSAL",
676
+ "type": "error"
677
+ },
678
+ {
679
+ "inputs": [],
680
+ "name": "UNOWNED_PROPOSED_CASHOUT_VALUE",
681
+ "type": "error"
682
+ }
683
+ ],
684
+ "args": [],
685
+ "solcInputHash": "0e8ae70cf88a21c2333e81569efbc13e",
686
+ "receipt": {
687
+ "type": "0x2",
688
+ "status": "0x1",
689
+ "cumulativeGasUsed": "0x1bb970",
690
+ "logs": [
691
+ {
692
+ "address": "0xa2ea7657440875bf916cbfc0cfa88f13e38ad463",
693
+ "topics": [
694
+ "0x572f161235911da04685a68c06adf558fc7e4a36909dca394650e0adc19cc93d",
695
+ "0x000000000000000000000000755ff2f75a0a586ecfa2b9a3c959cb662458a105",
696
+ "0x000000000000000000000000f99fe00bf35369acadc62f2cf302c66fefbc7a11",
697
+ "0xafd9c9c58c6e24fbc3db87f0dc757b77ba7064c88a3218d6f928827dfe8bcc35"
698
+ ],
699
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000",
700
+ "blockHash": "0x8cfb807d47f3dd219043d29c2d347df6bbcfb5296591c77c4af00e2a7a1e1e3a",
701
+ "blockNumber": "0x200aa80",
702
+ "blockTimestamp": "0x6914b3e0",
703
+ "transactionHash": "0x50a29445b82f0dd4727fe547a8841187d4f94fd91f995fdd632554a3795f1a42",
704
+ "transactionIndex": "0x3",
705
+ "logIndex": "0x6",
706
+ "removed": false
707
+ },
708
+ {
709
+ "address": "0xe2f954b35c29b7e3bad27aaa31a3ac443626877d",
710
+ "topics": [
711
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
712
+ "0x0000000000000000000000000000000000000000000000000000000000000000",
713
+ "0x000000000000000000000000e22e214f8646eafd1c89ece0eb1d553de96af4a9"
714
+ ],
715
+ "data": "0x",
716
+ "blockHash": "0x8cfb807d47f3dd219043d29c2d347df6bbcfb5296591c77c4af00e2a7a1e1e3a",
717
+ "blockNumber": "0x200aa80",
718
+ "blockTimestamp": "0x6914b3e0",
719
+ "transactionHash": "0x50a29445b82f0dd4727fe547a8841187d4f94fd91f995fdd632554a3795f1a42",
720
+ "transactionIndex": "0x3",
721
+ "logIndex": "0x7",
722
+ "removed": false
723
+ },
724
+ {
725
+ "address": "0xe22e214f8646eafd1c89ece0eb1d553de96af4a9",
726
+ "topics": [
727
+ "0x6895c13664aa4f67288b25d7a21d7aaa34916e355fb9b6fae0a139a9085becb8",
728
+ "0x000000000000000000000000f99fe00bf35369acadc62f2cf302c66fefbc7a11"
729
+ ],
730
+ "data": "0x",
731
+ "blockHash": "0x8cfb807d47f3dd219043d29c2d347df6bbcfb5296591c77c4af00e2a7a1e1e3a",
732
+ "blockNumber": "0x200aa80",
733
+ "blockTimestamp": "0x6914b3e0",
734
+ "transactionHash": "0x50a29445b82f0dd4727fe547a8841187d4f94fd91f995fdd632554a3795f1a42",
735
+ "transactionIndex": "0x3",
736
+ "logIndex": "0x8",
737
+ "removed": false
738
+ },
739
+ {
740
+ "address": "0xf99fe00bf35369acadc62f2cf302c66fefbc7a11",
741
+ "topics": [
742
+ "0xa65fb05c5808f5f389d72edeaf719ce38f4cc55c1f69ca3cbfb31c21501caa07",
743
+ "0xb7149150da4a21f5e44df929622f7bf5f8a6bfee8d83c108f14adc174a50c70d"
744
+ ],
745
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000003",
746
+ "blockHash": "0x8cfb807d47f3dd219043d29c2d347df6bbcfb5296591c77c4af00e2a7a1e1e3a",
747
+ "blockNumber": "0x200aa80",
748
+ "blockTimestamp": "0x6914b3e0",
749
+ "transactionHash": "0x50a29445b82f0dd4727fe547a8841187d4f94fd91f995fdd632554a3795f1a42",
750
+ "transactionIndex": "0x3",
751
+ "logIndex": "0x9",
752
+ "removed": false
753
+ }
754
+ ],
755
+ "logsBloom": "0x00000000000010000400000000080000000000000000000000800000000000000800000000000000000000000040000000001000000100000000000000000010000004000000200000000000000000000001000000000880000000000000000000000000020000000000000000000800000000000000000000000000000000400800000000000000000104000000000000000020000000080000000000010000004000040004000000000020000000002200020000008000000008000004000000000002000000000000000000000000000000000000000000000008000020000000000020000000000000000000000200020200000080000000000000000000",
756
+ "transactionHash": "0x50a29445b82f0dd4727fe547a8841187d4f94fd91f995fdd632554a3795f1a42",
757
+ "transactionIndex": "0x3",
758
+ "blockHash": "0x8cfb807d47f3dd219043d29c2d347df6bbcfb5296591c77c4af00e2a7a1e1e3a",
759
+ "blockNumber": "0x200aa80",
760
+ "gasUsed": "0x176027",
761
+ "effectiveGasPrice": "0x249f4c",
762
+ "from": "0x755ff2f75a0a586ecfa2b9a3c959cb662458a105",
763
+ "to": "0xa2ea7657440875bf916cbfc0cfa88f13e38ad463",
764
+ "contractAddress": null
765
+ },
766
+ "bytecode": "0x60a0346100ed57601f6118fb38819003918201601f19168301916001600160401b038311848410176100f15780849260409485528339810103126100ed5780516001600160a01b039182821682036100ed57602001518281168091036100ed5780156100d5575f80546001600160a01b03198116831782556040519416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a36080526117f5908161010682396080518181816101910152818161031b015281816106cb0152818161101301526113100152f35b604051631e4fbdf760e01b81525f6004820152602490fd5b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080604081815260049182361015610015575f80fd5b5f3560e01c908163222e143b14610c05575080632511642914610aeb578063517a618014610acd5780635e34fbfe14610a88578063715018a614610a445780638da5cb5b14610a1d57806391fb2e98146109ff57806392347991146109a9578063b7e8f6da1461066d578063c543882f146105f2578063ce1e82d5146102d1578063d826e899146102a5578063deec0bb014610259578063f0a92a1e14610232578063f2fde38b146101c0578063f77c47911461017d578063f80c73a114610157578063f8ce560a146101325763f94633fb146100f0575f80fd5b3461012e5761010761010136610c33565b906114de565b905190600581101561011b57602092508152f35b602183634e487b7160e01b5f525260245ffd5b5f80fd5b503461012e57602036600319011261012e57610150602092356112e0565b9051908152f35b503461012e57602036600319011261012e5781602092355f528252805f20549051908152f35b503461012e575f36600319011261012e57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50903461012e57602036600319011261012e576101db610c49565b906101e461167a565b6001600160a01b0391821692831561021c5750505f548260018060a01b03198216175f55165f805160206117808339815191525f80a3005b905f6024925191631e4fbdf760e01b8352820152fd5b503461012e57602036600319011261012e57602091355f5260058252805f20549051908152f35b503461012e578060031936011261012e57610272610c49565b602435906001600160401b03821161012e5761029f61029960209561015094369101610c5f565b906116a5565b906116e1565b503461012e576020906102b736610c33565b905f5260028352815f20905f528252805f20549051908152f35b50903461012e576102e136610c8f565b93919092815f5260209460058652835f20546105e35783516320c94b1360e11b8152828101849052610380956024926001600160a01b03927f00000000000000000000000000000000000000000000000000000000000000008416929089818781875afa998a156105d9575f9a61059c575b505061022091610362916116a5565b97019661037281848a51166116e1565b9761037d89886114de565b600581101561058a5760030361057a575f9184839289845260058d528b8b8520555116828c83519301915af184893d1561056a57503d9190506001600160401b03821161055857916103ef8a9287948a51916103e286601f19601f8401160184610ce3565b82523d5f8684013e611754565b50875163293c499960e01b815292839182905afa90811561051557829189915f9161051f575b50848851809481936331a9108f60e11b83528a8a840152165afa908115610515575f916104e0575b501691823b1561012e575f809383875180968193635b33a66f60e11b835289878401525af180156104d6579086949392916104a4575b5050507f47c473fdeacbc61881306133d8e38075619b3cfed85b1a2c9552ddd3a788dc2f858451338152a351908152f35b92935090916001600160401b0383116104c5575050825282905f8080610473565b604190634e487b7160e01b5f52525ffd5b85513d5f823e3d90fd5b90508781813d831161050e575b6104f78183610ce3565b8101031261012e5761050890610d5a565b5f61043d565b503d6104ed565b86513d5f823e3d90fd5b92505081813d8311610551575b6105368183610ce3565b8101031261012e5751818116810361012e578782915f610415565b503d61052c565b84604187634e487b7160e01b5f52525ffd5b916103ef90606094929490611754565b8751634ae18d2b60e11b81528690fd5b85602188634e487b7160e01b5f52525ffd5b610362929a506102209391816105c692903d106105d2575b6105be8183610ce3565b810190610d6e565b90509991819350610353565b503d6105b4565b89513d5f823e3d90fd5b50825163e63e122560e01b8152fd5b50903461012e57606036600319011261012e5760607f8134704271052dad7aa04d6ab4df63250a5f2aa4639fcc0d0ddb74cb0edf86479135926024359060443561063a61167a565b8215610665575b855f5260036020528060301b8317825f2055815192835260208301523390820152a2005b429250610641565b50903461012e5761067d36610c8f565b909391805f5260209460058652835f205461099957815f5260038652835f2054156109895783516320c94b1360e11b81528581018390526001600160a01b03939061038090602490828183817f00000000000000000000000000000000000000000000000000000000000000008b165afa92831561097f575f9361095e575b50505f5b8381106108bc575050610220019561071f8588511661029f84866116a5565b96845f5260018952865f20885f528952865f20805465ffffffffffff8082166108ac57928b92899286958a5f5260038652808d5f2054168042115f14610877575061076b5f5b42610cc2565b1665ffffffffffff1982168117835565ffffffffffff60301b6107906107658d611264565b60301b169160018060601b031916171790555116885192838092637f98988760e01b82525afa90811561086d57908895949392915f91610822575b50955f805160206117a08339815191529495961633149081610812575b506107ff87519384936060855260608501916112a2565b908983015233878301520390a351908152f35b855f52895285875f20555f6107e8565b809596508a8092503d8311610866575b61083c8183610ce3565b8101031261012e57879561085d5f805160206117a083398151915295610d5a565b909695946107cb565b503d610832565b87513d5f823e3d90fd5b92955092955092504281039081116108995792899286959261076b8f96610765565b601186634e487b7160e01b5f525260245ffd5b8951630440a45760e41b81528590fd5b896108c882868861127e565b01351515806108ee575b6108de57600101610700565b87516321e0209160e21b81528990fd5b5086610220840151168a61090383878961127e565b35848c8c5194859384926342c9297160e11b84528301525afa9081156105d9575f91610931575b50156108d2565b90508a81813d8311610957575b6109488183610ce3565b8101031261012e57515f61092a565b503d61093e565b610975929350803d106105d2576105be8183610ce3565b9050905f806106fc565b88513d5f823e3d90fd5b50505051633f45d9c960e21b8152fd5b5050505163e63e122560e01b8152fd5b503461012e57606036600319011261012e576044356001600160a01b0381169081900361012e57602092355f5260028352815f206024355f5283526001825f2001905f52825260ff815f20541690519015158152f35b503461012e57602036600319011261012e5761015060209235611264565b503461012e575f36600319011261012e575f5490516001600160a01b039091168152602090f35b3461012e575f36600319011261012e57610a5c61167a565b5f80546001600160a01b0319811682556001600160a01b03165f805160206117808339815191528280a3005b503461012e57606036600319011261012e57602435916001600160a01b038316830361012e5760443565ffffffffffff8116810361012e576020936101509235610fde565b503461012e575f36600319011261012e5760209051633b9aca008152f35b50903461012e57610afb36610c33565b815f9492945260209360018552825f20825f528552825f2093610b1e83836114de565b6005811015610bf25760018114159081610be6575b50610bd857815f5260028652835f20835f528652835f20946001860191335f5282885260ff865f205416610bca575065ffffffffffff610b769154163384610fde565b94610b82868254610cc2565b9055335f528552825f20600160ff198254161790557fc49d39a4ac0db2fda0e72ce3ff9d5ee27f409cecd8fa183fd8bf36a05f9c788d8380518681523388820152a351908152f35b855163944e4a3160e01b8152fd5b8351634ae18d2b60e11b8152fd5b6003915014155f610b33565b602182634e487b7160e01b5f525260245ffd5b9050823461012e57602036600319011261012e5760209265ffffffffffff91355f52600384525f2054168152f35b604090600319011261012e576004359060243590565b600435906001600160a01b038216820361012e57565b9181601f8401121561012e578235916001600160401b03831161012e576020808501948460061b01011161012e57565b90604060031983011261012e5760043591602435906001600160401b03821161012e57610cbe91600401610c5f565b9091565b91908201809211610ccf57565b634e487b7160e01b5f52601160045260245ffd5b601f909101601f19168101906001600160401b03821190821017610d0657604052565b634e487b7160e01b5f52604160045260245ffd5b519065ffffffffffff8216820361012e57565b519063ffffffff8216820361012e57565b519061ffff8216820361012e57565b5190811515820361012e57565b51906001600160a01b038216820361012e57565b80929103610380811261012e5761012080821261012e576040805190946001600160401b039390919083820185811183821017610d06578752610db083610d1a565b8252610dbe60208401610d1a565b6020830152610dce878401610d1a565b87830152610dde60608401610d1a565b6060830152610def60808401610d2d565b608083015260a08301516001600160701b038116810361012e5760a0830152610e1a60c08401610d2d565b60c083015260e08301516001600160a01b038116810361012e5760e083015261010091828401518382015296610260809261011f19011261012e5780519582870190811187821017610d06578152610e73848601610d3e565b865261014090610e84858301610d3e565b602088015261016090610e98868301610d2d565b90880152610180610eaa868201610d4d565b60608901526101a090610ebe878301610d4d565b60808a01526101c092610ed2888501610d4d565b60a08b01526101e094610ee6898701610d4d565b60c08c015261020096610efa8a8901610d4d565b60e08d015261022098610f0e8b8b01610d4d565b908d01526102409a610f218b8d01610d4d565b908d01528901610f3090610d4d565b908b0152610f416102808901610d4d565b908a0152610f526102a08801610d4d565b90890152610f636102c08701610d4d565b90880152610f746102e08601610d4d565b90870152610f856103008501610d4d565b90860152610f966103208401610d4d565b90850152610fa76103408301610d5a565b9084015261036001610fb890610d3e565b9082015290565b9081602091031261012e57516001600160a01b038116810361012e5790565b604080516320c94b1360e11b81526004808201939093525f9594936001600160a01b03939092916024919061038090818185817f00000000000000000000000000000000000000000000000000000000000000008b165afa9182156104d6579061022092915f92611245575b5050019585875116918451809363975057e760e01b8252818360209687935afa908115610515578893929185915f91611218575b506024858c511689519b8c93849263f1bea54f60e01b845287840152165afa978815610515575f986111e9575b505f5b8881106110c15750505050505050505050565b600181018082116111d757848b51169088519163caa00cf960e01b8352868b168584015281898401526044888460648165ffffffffffff8b169586868301525afa9384156111cd575f9461119e575b5083611123575b505050506001016110ae565b90939e92938891888f5116938c5194859384926330ea612d60e11b84528a8401528d8301525afa9081156105d9575f91611170575b50611165906001936115ba565b019b905f8080611117565b90508681813d8311611197575b6111878183610ce3565b8101031261012e57516001611158565b503d61117d565b9093508881813d83116111c6575b6111b68183610ce3565b8101031261012e5751925f611110565b503d6111ac565b8b513d5f823e3d90fd5b86601184634e487b7160e01b5f52525ffd5b9097508381813d8311611211575b6112018183610ce3565b8101031261012e5751965f6110ab565b503d6111f7565b6112389150823d841161123e575b6112308183610ce3565b810190610fbf565b5f61107e565b503d611226565b61125b9250803d106105d2576105be8183610ce3565b90505f8061104a565b5f52600360205265ffffffffffff60405f205460301c1690565b919081101561128e5760061b0190565b634e487b7160e01b5f52603260045260245ffd5b9190808252602080920192915f905b8282106112bf575050505090565b833585528381013585820152604094850194909301926001909101906112b1565b604080516320c94b1360e11b815260048082019390935290916024916001600160a01b03919061038090818186817f000000000000000000000000000000000000000000000000000000000000000088165afa918215610515579061022092915f926114bf575b50500193828551168151809163975057e760e01b8252818560209485935afa90811561149857859183915f916114a2575b506024838a51168651988993849263f1bea54f60e01b84528a840152165afa948515611498575f95611469575b505f965f5b8681106113bf57505050505050505060011c90565b82825116600182018083116114575785908a8851809481936342c9297160e11b83528c8301525afa908115610515575f9161142a575b50611403575b6001016113aa565b97633b9aca00810180911161141857976113fb565b87601187634e487b7160e01b5f52525ffd5b90508481813d8311611450575b6114418183610ce3565b8101031261012e57515f6113f5565b503d611437565b89601189634e487b7160e01b5f52525ffd5b9094508181813d8311611491575b6114818183610ce3565b8101031261012e5751935f6113a5565b503d611477565b83513d5f823e3d90fd5b6114b99150823d841161123e576112308183610ce3565b5f611378565b6114d59250803d106105d2576105be8183610ce3565b90505f80611347565b90815f5260209060058252604091825f2054806115a45750600181525f83812083825282528390208351908185016001600160401b03811183821017610d06578552549065ffffffffffff90818316808252828583019460301c1684521561159357518116421115611589574291511610156115805761155d846112e0565b935f5260028152825f20915f52525f205410155f1461157b57600390565b600190565b50505050600190565b5050505050505f90565b855163eb24c39f60e01b8152600490fd5b9250509150145f146115b557600490565b600290565b90633b9aca00905f1983830992808302928380861095039480860395146116585782851015611635579082910960018219018216809204600280826003021880830282030280830282030280830282030280830282030280830282030280920290030293600183805f03040190848311900302920304170290565b8260649260405192630c740aef60e31b8452600484015260248301526044820152fd5b505080925015611666570490565b634e487b7160e01b5f52601260045260245ffd5b5f546001600160a01b0316330361168d57565b60405163118cdaa760e01b8152336004820152602490fd5b906116de906116d0604051938492623e985f60e61b60208501526020602485015260448401916112a2565b03601f198101835282610ce3565b90565b90604051908160208082019460018060a01b031685526040808301528251928360608401525f5b84811061173d5750505080825f6080611737958195010152601f80199101168101036060810184520182610ce3565b51902090565b818101830151868201608001528593508201611708565b90919061177d575080511561176b57602081519101fd5b60405163d6bda27560e01b8152600490fd5b56fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a8529171c1868e465ad2895d671a738ffb5f0764bd6dffd13339152af5c5f3a0a26469706673582212203a6a974292eaed698e3f1d2a55fac27d1c813d481ab560dc502dbad89c14c86164736f6c63430008170033",
767
+ "deployedBytecode": "0x6080604081815260049182361015610015575f80fd5b5f3560e01c908163222e143b14610c05575080632511642914610aeb578063517a618014610acd5780635e34fbfe14610a88578063715018a614610a445780638da5cb5b14610a1d57806391fb2e98146109ff57806392347991146109a9578063b7e8f6da1461066d578063c543882f146105f2578063ce1e82d5146102d1578063d826e899146102a5578063deec0bb014610259578063f0a92a1e14610232578063f2fde38b146101c0578063f77c47911461017d578063f80c73a114610157578063f8ce560a146101325763f94633fb146100f0575f80fd5b3461012e5761010761010136610c33565b906114de565b905190600581101561011b57602092508152f35b602183634e487b7160e01b5f525260245ffd5b5f80fd5b503461012e57602036600319011261012e57610150602092356112e0565b9051908152f35b503461012e57602036600319011261012e5781602092355f528252805f20549051908152f35b503461012e575f36600319011261012e57517f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a6001600160a01b03168152602090f35b50903461012e57602036600319011261012e576101db610c49565b906101e461167a565b6001600160a01b0391821692831561021c5750505f548260018060a01b03198216175f55165f805160206117808339815191525f80a3005b905f6024925191631e4fbdf760e01b8352820152fd5b503461012e57602036600319011261012e57602091355f5260058252805f20549051908152f35b503461012e578060031936011261012e57610272610c49565b602435906001600160401b03821161012e5761029f61029960209561015094369101610c5f565b906116a5565b906116e1565b503461012e576020906102b736610c33565b905f5260028352815f20905f528252805f20549051908152f35b50903461012e576102e136610c8f565b93919092815f5260209460058652835f20546105e35783516320c94b1360e11b8152828101849052610380956024926001600160a01b03927f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a8416929089818781875afa998a156105d9575f9a61059c575b505061022091610362916116a5565b97019661037281848a51166116e1565b9761037d89886114de565b600581101561058a5760030361057a575f9184839289845260058d528b8b8520555116828c83519301915af184893d1561056a57503d9190506001600160401b03821161055857916103ef8a9287948a51916103e286601f19601f8401160184610ce3565b82523d5f8684013e611754565b50875163293c499960e01b815292839182905afa90811561051557829189915f9161051f575b50848851809481936331a9108f60e11b83528a8a840152165afa908115610515575f916104e0575b501691823b1561012e575f809383875180968193635b33a66f60e11b835289878401525af180156104d6579086949392916104a4575b5050507f47c473fdeacbc61881306133d8e38075619b3cfed85b1a2c9552ddd3a788dc2f858451338152a351908152f35b92935090916001600160401b0383116104c5575050825282905f8080610473565b604190634e487b7160e01b5f52525ffd5b85513d5f823e3d90fd5b90508781813d831161050e575b6104f78183610ce3565b8101031261012e5761050890610d5a565b5f61043d565b503d6104ed565b86513d5f823e3d90fd5b92505081813d8311610551575b6105368183610ce3565b8101031261012e5751818116810361012e578782915f610415565b503d61052c565b84604187634e487b7160e01b5f52525ffd5b916103ef90606094929490611754565b8751634ae18d2b60e11b81528690fd5b85602188634e487b7160e01b5f52525ffd5b610362929a506102209391816105c692903d106105d2575b6105be8183610ce3565b810190610d6e565b90509991819350610353565b503d6105b4565b89513d5f823e3d90fd5b50825163e63e122560e01b8152fd5b50903461012e57606036600319011261012e5760607f8134704271052dad7aa04d6ab4df63250a5f2aa4639fcc0d0ddb74cb0edf86479135926024359060443561063a61167a565b8215610665575b855f5260036020528060301b8317825f2055815192835260208301523390820152a2005b429250610641565b50903461012e5761067d36610c8f565b909391805f5260209460058652835f205461099957815f5260038652835f2054156109895783516320c94b1360e11b81528581018390526001600160a01b03939061038090602490828183817f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a8b165afa92831561097f575f9361095e575b50505f5b8381106108bc575050610220019561071f8588511661029f84866116a5565b96845f5260018952865f20885f528952865f20805465ffffffffffff8082166108ac57928b92899286958a5f5260038652808d5f2054168042115f14610877575061076b5f5b42610cc2565b1665ffffffffffff1982168117835565ffffffffffff60301b6107906107658d611264565b60301b169160018060601b031916171790555116885192838092637f98988760e01b82525afa90811561086d57908895949392915f91610822575b50955f805160206117a08339815191529495961633149081610812575b506107ff87519384936060855260608501916112a2565b908983015233878301520390a351908152f35b855f52895285875f20555f6107e8565b809596508a8092503d8311610866575b61083c8183610ce3565b8101031261012e57879561085d5f805160206117a083398151915295610d5a565b909695946107cb565b503d610832565b87513d5f823e3d90fd5b92955092955092504281039081116108995792899286959261076b8f96610765565b601186634e487b7160e01b5f525260245ffd5b8951630440a45760e41b81528590fd5b896108c882868861127e565b01351515806108ee575b6108de57600101610700565b87516321e0209160e21b81528990fd5b5086610220840151168a61090383878961127e565b35848c8c5194859384926342c9297160e11b84528301525afa9081156105d9575f91610931575b50156108d2565b90508a81813d8311610957575b6109488183610ce3565b8101031261012e57515f61092a565b503d61093e565b610975929350803d106105d2576105be8183610ce3565b9050905f806106fc565b88513d5f823e3d90fd5b50505051633f45d9c960e21b8152fd5b5050505163e63e122560e01b8152fd5b503461012e57606036600319011261012e576044356001600160a01b0381169081900361012e57602092355f5260028352815f206024355f5283526001825f2001905f52825260ff815f20541690519015158152f35b503461012e57602036600319011261012e5761015060209235611264565b503461012e575f36600319011261012e575f5490516001600160a01b039091168152602090f35b3461012e575f36600319011261012e57610a5c61167a565b5f80546001600160a01b0319811682556001600160a01b03165f805160206117808339815191528280a3005b503461012e57606036600319011261012e57602435916001600160a01b038316830361012e5760443565ffffffffffff8116810361012e576020936101509235610fde565b503461012e575f36600319011261012e5760209051633b9aca008152f35b50903461012e57610afb36610c33565b815f9492945260209360018552825f20825f528552825f2093610b1e83836114de565b6005811015610bf25760018114159081610be6575b50610bd857815f5260028652835f20835f528652835f20946001860191335f5282885260ff865f205416610bca575065ffffffffffff610b769154163384610fde565b94610b82868254610cc2565b9055335f528552825f20600160ff198254161790557fc49d39a4ac0db2fda0e72ce3ff9d5ee27f409cecd8fa183fd8bf36a05f9c788d8380518681523388820152a351908152f35b855163944e4a3160e01b8152fd5b8351634ae18d2b60e11b8152fd5b6003915014155f610b33565b602182634e487b7160e01b5f525260245ffd5b9050823461012e57602036600319011261012e5760209265ffffffffffff91355f52600384525f2054168152f35b604090600319011261012e576004359060243590565b600435906001600160a01b038216820361012e57565b9181601f8401121561012e578235916001600160401b03831161012e576020808501948460061b01011161012e57565b90604060031983011261012e5760043591602435906001600160401b03821161012e57610cbe91600401610c5f565b9091565b91908201809211610ccf57565b634e487b7160e01b5f52601160045260245ffd5b601f909101601f19168101906001600160401b03821190821017610d0657604052565b634e487b7160e01b5f52604160045260245ffd5b519065ffffffffffff8216820361012e57565b519063ffffffff8216820361012e57565b519061ffff8216820361012e57565b5190811515820361012e57565b51906001600160a01b038216820361012e57565b80929103610380811261012e5761012080821261012e576040805190946001600160401b039390919083820185811183821017610d06578752610db083610d1a565b8252610dbe60208401610d1a565b6020830152610dce878401610d1a565b87830152610dde60608401610d1a565b6060830152610def60808401610d2d565b608083015260a08301516001600160701b038116810361012e5760a0830152610e1a60c08401610d2d565b60c083015260e08301516001600160a01b038116810361012e5760e083015261010091828401518382015296610260809261011f19011261012e5780519582870190811187821017610d06578152610e73848601610d3e565b865261014090610e84858301610d3e565b602088015261016090610e98868301610d2d565b90880152610180610eaa868201610d4d565b60608901526101a090610ebe878301610d4d565b60808a01526101c092610ed2888501610d4d565b60a08b01526101e094610ee6898701610d4d565b60c08c015261020096610efa8a8901610d4d565b60e08d015261022098610f0e8b8b01610d4d565b908d01526102409a610f218b8d01610d4d565b908d01528901610f3090610d4d565b908b0152610f416102808901610d4d565b908a0152610f526102a08801610d4d565b90890152610f636102c08701610d4d565b90880152610f746102e08601610d4d565b90870152610f856103008501610d4d565b90860152610f966103208401610d4d565b90850152610fa76103408301610d5a565b9084015261036001610fb890610d3e565b9082015290565b9081602091031261012e57516001600160a01b038116810361012e5790565b604080516320c94b1360e11b81526004808201939093525f9594936001600160a01b03939092916024919061038090818185817f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a8b165afa9182156104d6579061022092915f92611245575b5050019585875116918451809363975057e760e01b8252818360209687935afa908115610515578893929185915f91611218575b506024858c511689519b8c93849263f1bea54f60e01b845287840152165afa978815610515575f986111e9575b505f5b8881106110c15750505050505050505050565b600181018082116111d757848b51169088519163caa00cf960e01b8352868b168584015281898401526044888460648165ffffffffffff8b169586868301525afa9384156111cd575f9461119e575b5083611123575b505050506001016110ae565b90939e92938891888f5116938c5194859384926330ea612d60e11b84528a8401528d8301525afa9081156105d9575f91611170575b50611165906001936115ba565b019b905f8080611117565b90508681813d8311611197575b6111878183610ce3565b8101031261012e57516001611158565b503d61117d565b9093508881813d83116111c6575b6111b68183610ce3565b8101031261012e5751925f611110565b503d6111ac565b8b513d5f823e3d90fd5b86601184634e487b7160e01b5f52525ffd5b9097508381813d8311611211575b6112018183610ce3565b8101031261012e5751965f6110ab565b503d6111f7565b6112389150823d841161123e575b6112308183610ce3565b810190610fbf565b5f61107e565b503d611226565b61125b9250803d106105d2576105be8183610ce3565b90505f8061104a565b5f52600360205265ffffffffffff60405f205460301c1690565b919081101561128e5760061b0190565b634e487b7160e01b5f52603260045260245ffd5b9190808252602080920192915f905b8282106112bf575050505090565b833585528381013585820152604094850194909301926001909101906112b1565b604080516320c94b1360e11b815260048082019390935290916024916001600160a01b03919061038090818186817f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a88165afa918215610515579061022092915f926114bf575b50500193828551168151809163975057e760e01b8252818560209485935afa90811561149857859183915f916114a2575b506024838a51168651988993849263f1bea54f60e01b84528a840152165afa948515611498575f95611469575b505f965f5b8681106113bf57505050505050505060011c90565b82825116600182018083116114575785908a8851809481936342c9297160e11b83528c8301525afa908115610515575f9161142a575b50611403575b6001016113aa565b97633b9aca00810180911161141857976113fb565b87601187634e487b7160e01b5f52525ffd5b90508481813d8311611450575b6114418183610ce3565b8101031261012e57515f6113f5565b503d611437565b89601189634e487b7160e01b5f52525ffd5b9094508181813d8311611491575b6114818183610ce3565b8101031261012e5751935f6113a5565b503d611477565b83513d5f823e3d90fd5b6114b99150823d841161123e576112308183610ce3565b5f611378565b6114d59250803d106105d2576105be8183610ce3565b90505f80611347565b90815f5260209060058252604091825f2054806115a45750600181525f83812083825282528390208351908185016001600160401b03811183821017610d06578552549065ffffffffffff90818316808252828583019460301c1684521561159357518116421115611589574291511610156115805761155d846112e0565b935f5260028152825f20915f52525f205410155f1461157b57600390565b600190565b50505050600190565b5050505050505f90565b855163eb24c39f60e01b8152600490fd5b9250509150145f146115b557600490565b600290565b90633b9aca00905f1983830992808302928380861095039480860395146116585782851015611635579082910960018219018216809204600280826003021880830282030280830282030280830282030280830282030280830282030280920290030293600183805f03040190848311900302920304170290565b8260649260405192630c740aef60e31b8452600484015260248301526044820152fd5b505080925015611666570490565b634e487b7160e01b5f52601260045260245ffd5b5f546001600160a01b0316330361168d57565b60405163118cdaa760e01b8152336004820152602490fd5b906116de906116d0604051938492623e985f60e61b60208501526020602485015260448401916112a2565b03601f198101835282610ce3565b90565b90604051908160208082019460018060a01b031685526040808301528251928360608401525f5b84811061173d5750505080825f6080611737958195010152601f80199101168101036060810184520182610ce3565b51902090565b818101830151868201608001528593508201611708565b90919061177d575080511561176b57602081519101fd5b60405163d6bda27560e01b8152600490fd5b56fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a8529171c1868e465ad2895d671a738ffb5f0764bd6dffd13339152af5c5f3a0a26469706673582212203a6a974292eaed698e3f1d2a55fac27d1c813d481ab560dc502dbad89c14c86164736f6c63430008170033",
768
+ "metadata": "{\"compiler\":{\"version\":\"0.8.23+commit.f704f362\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IJBController\",\"name\":\"_controller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"ALREADY_ATTESTED\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ALREADY_RATIFIED\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"DUPLICATE_SCORECARD\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GAME_NOT_FOUND\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"INCORRECT_TIER_ORDER\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NOT_ALLOWED\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"x\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"y\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"denominator\",\"type\":\"uint256\"}],\"name\":\"PRBMath_MulDiv_Overflow\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UNKNOWN_PROPOSAL\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UNOWNED_PROPOSED_CASHOUT_VALUE\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"gameId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"attestationStartTime\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"attestationGracePeriod\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"GameInitialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"gameId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"ScorecardAttested\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"gameId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"ScorecardRatified\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"gameId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cashOutWeight\",\"type\":\"uint256\"}],\"indexed\":false,\"internalType\":\"struct DefifaTierCashOutWeight[]\",\"name\":\"tierWeights\",\"type\":\"tuple[]\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"isDefaultAttestationDelegate\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"ScorecardSubmitted\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"MAX_ATTESTATION_POWER_TIER\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_scorecardId\",\"type\":\"uint256\"}],\"name\":\"attestToScorecardFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_scorecardId\",\"type\":\"uint256\"}],\"name\":\"attestationCountOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"}],\"name\":\"attestationGracePeriodOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"}],\"name\":\"attestationStartTimeOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"controller\",\"outputs\":[{\"internalType\":\"contract IJBController\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"defaultAttestationDelegateProposalOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"},{\"internalType\":\"uint48\",\"name\":\"_timestamp\",\"type\":\"uint48\"}],\"name\":\"getAttestationWeight\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"attestationPower\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_scorecardId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"}],\"name\":\"hasAttestedTo\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_attestationStartTime\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_attestationGracePeriod\",\"type\":\"uint256\"}],\"name\":\"initializeGame\",\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"ratifiedScorecardIdOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cashOutWeight\",\"type\":\"uint256\"}],\"internalType\":\"struct DefifaTierCashOutWeight[]\",\"name\":\"_tierWeights\",\"type\":\"tuple[]\"}],\"name\":\"ratifyScorecardFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_gameDelegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cashOutWeight\",\"type\":\"uint256\"}],\"internalType\":\"struct DefifaTierCashOutWeight[]\",\"name\":\"_tierWeights\",\"type\":\"tuple[]\"}],\"name\":\"scorecardIdOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_scorecardId\",\"type\":\"uint256\"}],\"name\":\"stateOf\",\"outputs\":[{\"internalType\":\"enum DefifaScorecardState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cashOutWeight\",\"type\":\"uint256\"}],\"internalType\":\"struct DefifaTierCashOutWeight[]\",\"name\":\"_tierWeights\",\"type\":\"tuple[]\"}],\"name\":\"submitScorecardFor\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"attestToScorecardFrom(uint256,uint256)\":{\"params\":{\"_gameId\":\"The ID of the game to which the scorecard belongs.\",\"_scorecardId\":\"The scorecard ID.\"},\"returns\":{\"weight\":\"The attestation weight that was applied.\"}},\"attestationCountOf(uint256,uint256)\":{\"params\":{\"_gameId\":\"The ID of the game to which the scorecard belongs.\",\"_scorecardId\":\"The ID of the scorecard to get attestations of.\"},\"returns\":{\"_0\":\"The number of attestations the given scorecard has.\"}},\"attestationGracePeriodOf(uint256)\":{\"params\":{\"_gameId\":\"The ID of the game to get the attestation period of.\"},\"returns\":{\"_0\":\"The attestation period in number of blocks.\"}},\"attestationStartTimeOf(uint256)\":{\"details\":\"This can be increassed to leave time for users to aquire attestation power, or delegate it, before a scorecard becomes live.\",\"params\":{\"_gameId\":\"The ID of the game to get the attestation delay of.\"},\"returns\":{\"_0\":\"The delay, in seconds.\"}},\"getAttestationWeight(uint256,address,uint48)\":{\"params\":{\"_account\":\"The account to get attestations for.\",\"_gameId\":\"The ID of the game for which attestations are being counted.\",\"_timestamp\":\"The timestamp to measure attestations from.\"},\"returns\":{\"attestationPower\":\"The amount of attestation power of an account.\"}},\"hasAttestedTo(uint256,uint256,address)\":{\"params\":{\"_account\":\"The address to check the attestation status of.\",\"_gameId\":\"The ID of the game to which the scorecard belongs.\",\"_scorecardId\":\"The ID of the scorecard to query attestations from.\"},\"returns\":{\"_0\":\"A flag indicating if the given account has already attested to the scorecard.\"}},\"initializeGame(uint256,uint256,uint256)\":{\"params\":{\"_attestationGracePeriod\":\"The amount of time that must go by before a scorecard can be ratified.\",\"_attestationStartTime\":\"The amount of time between a scorecard being submitted and attestations to it being enabled, measured in seconds.\"}},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"quorum(uint256)\":{\"details\":\"The quorum is 50% voting weight from all tiers that have been minted from.\",\"returns\":{\"_0\":\"The quorum number of attestations.\"}},\"ratifyScorecardFrom(uint256,(uint256,uint256)[])\":{\"params\":{\"_tierWeights\":\"The weights of each tier in the approved scorecard.\"},\"returns\":{\"scorecardId\":\"The scorecard ID that was ratified.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"scorecardIdOf(address,(uint256,uint256)[])\":{\"params\":{\"_gameDelegate\":\"The address where the game is being played.\",\"_tierWeights\":\"The weights of each tier in the scorecard.\"}},\"stateOf(uint256,uint256)\":{\"params\":{\"_gameId\":\"The ID of the game to get a proposal state of.\",\"_scorecardId\":\"The ID of the proposal to get the state of.\"},\"returns\":{\"_0\":\"The state.\"}},\"submitScorecardFor(uint256,(uint256,uint256)[])\":{\"params\":{\"_tierWeights\":\"The weights of each tier in the scorecard.\"},\"returns\":{\"scorecardId\":\"The scorecard's ID.\"}},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"MAX_ATTESTATION_POWER_TIER()\":{\"notice\":\"The max attestation power each tier has if every token within the tier attestations.\"},\"attestToScorecardFrom(uint256,uint256)\":{\"notice\":\"Attests to a scorecard.\"},\"attestationCountOf(uint256,uint256)\":{\"notice\":\"The number of attestations the given scorecard has.\"},\"attestationGracePeriodOf(uint256)\":{\"notice\":\"The amount of time that must go by before a scorecard can be ratified.\"},\"attestationStartTimeOf(uint256)\":{\"notice\":\"The amount of time between a scorecard being submitted and attestations to it being enabled, measured in seconds.\"},\"controller()\":{\"notice\":\"The controller with which new projects should be deployed.\"},\"defaultAttestationDelegateProposalOf(uint256)\":{\"notice\":\"The latest proposal submitted by the default attestation delegate. _gameId The ID of the game of the default attestation delegate proposal.\"},\"getAttestationWeight(uint256,address,uint48)\":{\"notice\":\"Gets an account's attestation power given a number of tiers to look through.\"},\"hasAttestedTo(uint256,uint256,address)\":{\"notice\":\"A flag indicating if the given account has already attested to the scorecard.\"},\"initializeGame(uint256,uint256,uint256)\":{\"notice\":\"Initializes a game.\"},\"quorum(uint256)\":{\"notice\":\"The number of attestation units that must have participated in a proposal for it to be ratified.\"},\"ratifiedScorecardIdOf(uint256)\":{\"notice\":\"The scorecard that has been ratified. _gameId The ID of the game of the ratified scorecard.\"},\"ratifyScorecardFrom(uint256,(uint256,uint256)[])\":{\"notice\":\"Ratifies a scorecard that has been approved.\"},\"scorecardIdOf(address,(uint256,uint256)[])\":{\"notice\":\"The ID of a scorecard representing the provided tier weights.\"},\"stateOf(uint256,uint256)\":{\"notice\":\"The state of a proposal.\"},\"submitScorecardFor(uint256,(uint256,uint256)[])\":{\"notice\":\"Submits a scorecard to be attested to.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DefifaGovernor.sol\":\"DefifaGovernor\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":10},\"remappings\":[\"@arbitrum/=node_modules/@arbitrum/\",\"@bananapus/=node_modules/@bananapus/\",\"@chainlink/=node_modules/@chainlink/\",\"@eth-optimism/=node_modules/@eth-optimism/\",\"@offchainlabs/=node_modules/@offchainlabs/\",\"@openzeppelin/=node_modules/@openzeppelin/\",\"@prb/math/=node_modules/@prb/math/\",\"@scroll-tech/=node_modules/@scroll-tech/\",\"@sphinx-labs/contracts/=node_modules/@sphinx-labs/contracts/contracts/foundry/\",\"@uniswap/=node_modules/@uniswap/\",\"@zksync/=node_modules/@zksync/\",\"base64/=lib/base64/\",\"capsules/=lib/capsules/contracts/\",\"ds-test/=lib/forge-std/lib/ds-test/src/\",\"forge-std/=lib/forge-std/src/\",\"hardhat/=node_modules/hardhat/\",\"solady/=node_modules/solady/\",\"solmate/=node_modules/solmate/\",\"typeface/=lib/typeface/contracts/\"],\"viaIR\":true},\"sources\":{\"contracts/DefifaDelegate.sol\":{\"keccak256\":\"0x9104af25cdf7cec73a2982b1a7b54412c67b1cc8dd22f708058854b0d45a8d62\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://898fe89b80d8cac7e63ae634abdee350b1bd757e7a2680b66dc3d3954daa1c4e\",\"dweb:/ipfs/QmPyJskfzv5LvYUsBc3KvjdwhnM4C3kwEWsNQfiBy3R8AA\"]},\"contracts/DefifaGovernor.sol\":{\"keccak256\":\"0xbae4fffcf4c818a42453d7493b48c2dc2291c9a9da60a1def85673eddeed0410\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6f91c3817700214d0d58da5844edf858f6f8a99dbda2a28d33a03552a1a96521\",\"dweb:/ipfs/QmZYawpERx2nXLL7pAqkEPW4Abv73KQxHv4nwWrLtGt6bE\"]},\"contracts/enums/DefifaGamePhase.sol\":{\"keccak256\":\"0xf2486e4e253632ac3d480d7289e759e13c2b652b1293222175801dd89d78791e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a8a6f440d7b58ca7388f122221328d4423136183fb8bdabde4869bbcdcac3d30\",\"dweb:/ipfs/Qmcqs1LXUKLw2FBq5Bs1FSaruwu8dvGRQLVegC44iFjbcj\"]},\"contracts/enums/DefifaScorecardState.sol\":{\"keccak256\":\"0x362e81e2e8fe789b3677d6ac66674932e4e382a18cd227d670f2ca595b03d464\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cb08da9bdb6eb72bf10c68bdc53378aaf769d4ce73c2c9808ddd5a96f364bca\",\"dweb:/ipfs/QmWxGLpKim8aZvMqeSVCKmU9hzka8Jj5xnLkLCASQ1uAQL\"]},\"contracts/interfaces/IDefifaDelegate.sol\":{\"keccak256\":\"0x13473336806a368a7d2a0ec29f47c7f8f219a0a87e44968c2d1c89db23182e16\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://55c2d75dfa15e2b9b74c74e50c19f9af70d4d1a2af0d4a4c8b51185ff94c68fd\",\"dweb:/ipfs/QmeNT8kVjjdzMqWDq3ZVC1bBaQLjgPp69Dip1ZQkcDRh7d\"]},\"contracts/interfaces/IDefifaDeployer.sol\":{\"keccak256\":\"0xabb5ef38a91f365552f374be38ed91ffb0ac8bb07ad63e0286c594ab68901e3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1252a15e4ed1f8a301e7fe189b1a282079379bbbc629fae70205c2b8b5929716\",\"dweb:/ipfs/QmXz5QA46S9hpk3PfXZD5GgCqkcwvCw41S5Ek3Y2CUFeGx\"]},\"contracts/interfaces/IDefifaGamePhaseReporter.sol\":{\"keccak256\":\"0xe3af51c58dcf373de5090be2347a3659c44901bf84881e988029f8338581080a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81fa1a3abc418b613699e5982a44f4eaeadc2e73f8a259f4893591b68343b906\",\"dweb:/ipfs/QmdXNrAEAn312hziK8UKDz9dWRvH88p2HeWoVpod9PkyZ3\"]},\"contracts/interfaces/IDefifaGamePotReporter.sol\":{\"keccak256\":\"0x3034956baed910156222da9df0932008eef5ac6dca7c0e9a06fbf0c82f2d5ae4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5e61e750e0cce0e93a21300a2f7ee0fa01fa1a1191c88ea147be335f1fa427a6\",\"dweb:/ipfs/QmQBXVYJkkPjfFJEMBLJcM3VfrMEGpsr5ZdLWvedryqSDq\"]},\"contracts/interfaces/IDefifaGovernor.sol\":{\"keccak256\":\"0xfa50de33a167cb35ef5b44010effd1f92a9d5b99ddd522e5cf8d29610d5668f1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60e46d719f4d48a80790b0fb489ea96d77f41bab16d53fb83432e0db5f3a4d36\",\"dweb:/ipfs/QmeGuWFtNbq3JsBftV6tdTutgMN1EaJghGXWoThSEmP2P8\"]},\"contracts/structs/DefifaAttestations.sol\":{\"keccak256\":\"0x264dfe3e838db0bfe0e5391e527a18cdd53f3f719507a4fc72d3ffe79e82cddf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6dbb85465bdbc3ec3cf98e50d5b220c8ca0f889d365428fc2cc29145b5e101f9\",\"dweb:/ipfs/QmQcDEmfBdHWVypXXp4Y7uM9EBSbQ5yMc5nvhwVMiaGDJ4\"]},\"contracts/structs/DefifaDelegation.sol\":{\"keccak256\":\"0xc2dd2d049c462e0137ba84dc2b0fa8d9d0139c9d324f1440e9e943f4161b3422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://14f446455bf221717bac8498e1ee8fe386b28aa768628cb4522e718740e1ba46\",\"dweb:/ipfs/QmQziN3zjYUiZ4Cm9BLtDVbNNY7ZbL5HhvTJqpQdwy2uvx\"]},\"contracts/structs/DefifaLaunchProjectData.sol\":{\"keccak256\":\"0x03bf07a53ea50ea66bb59f86b528ca3985e0020da3fa25cbcbf41962e11f3f13\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://31f349045f659bbef47223703d90a1bb0e45b284e52d703112c944d2ad40dc32\",\"dweb:/ipfs/QmcKkYDiM3AvpMzaYfyvK2BnMDem95dmev4VsN2kTNGCN3\"]},\"contracts/structs/DefifaOpsData.sol\":{\"keccak256\":\"0x7830dc81c4ae943c81f5e628696cc31f2ff5fa2507e5a01b180c8d5ac2c20d44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1680c66ef1b131483d4189e40b890a6122d34faff4b4add676d9cf5144f47067\",\"dweb:/ipfs/QmRWhSHjtRfU8LhkJaCr3fTCJAZpQenThq9vL7EoWbRhqG\"]},\"contracts/structs/DefifaScorecard.sol\":{\"keccak256\":\"0xd68ebd2618854d1d7b1abd8950e99ddd5c74e71f450574a003244c1ebf03c97a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5bd0ec917cf337c45a0309ddde098716be5a84c5715fda841b69e917352509a3\",\"dweb:/ipfs/QmXHC4TCKmBXFjps38UzpRyLEVKDTfBMwq5JduQPdGRGL9\"]},\"contracts/structs/DefifaTierCashOutWeight.sol\":{\"keccak256\":\"0x887924246fed02168924efd07cba0beaa261de1962a3065674665ef4fbd7c1f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5477867a360e1c898b34630330645dd5f6f3d07052b7c75c3b8a4677f97bc075\",\"dweb:/ipfs/Qmc43QdoNqUSriku1Lin31HHXXxmdV9WHyYFdCApNfn5fa\"]},\"contracts/structs/DefifaTierParams.sol\":{\"keccak256\":\"0x24ac4b77b88338fb91b39f7bfc25ad55e27843bc12d37ff9db70ecf13f537219\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://261fe2a691cbb1c42fbbe3d5ac2f79e43f70fcc6b739045de01b86bae513bc9a\",\"dweb:/ipfs/QmfJGPbQYYn5Ehg9zccHWir4LCn2FfCBhTdoa5AkRHEYAm\"]},\"node_modules/@bananapus/721-hook-v5/src/JB721TiersHook.sol\":{\"keccak256\":\"0x286e699f4ca81ea84217bbdcc4e4efa426ba9cc5d0886719232dd4d2e604a1b6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://adf31e0beae7d3381a1a841786e2f78dee5b73084ba030c345440b11d8aa0b67\",\"dweb:/ipfs/QmNmXeaVoTrQ9hSMXMZ1r7vvemDpB8FAbdfxPfXqWrj4SE\"]},\"node_modules/@bananapus/721-hook-v5/src/abstract/ERC721.sol\":{\"keccak256\":\"0xee3758d50043b58a173dada85fb33a0a2b4a9f8e57e11a213d0f1d021cd2ffc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f9b8cbac216d14a83dcc54fee0e660e8131afee94a21ec0c0af5dd7853692bb1\",\"dweb:/ipfs/QmRU67EeBHtqE7osaBd286poaTDjS7cAVMwt6UXdBBDRGP\"]},\"node_modules/@bananapus/721-hook-v5/src/abstract/JB721Hook.sol\":{\"keccak256\":\"0x3de2a2a70ce211879e6f49e3032a6630b5c56589ff222410c1e375c3ba34e87c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d9e944468f255e8cafa01b485e9eb8e8abfa2cd28462a9013547000c5484272a\",\"dweb:/ipfs/QmfKDiSgxW7Miq4jwFqeJEtFLLUTYgTEEGirwtNBKMGaUi\"]},\"node_modules/@bananapus/721-hook-v5/src/interfaces/IJB721Hook.sol\":{\"keccak256\":\"0x1e7b684c86c0f44b0b680c7aba9e511c89892bc0638424722920368911a087f2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96995e70a8f15d5600b509ad689c8f2ea6f8116cc7cce9c529b7a41c12c854dc\",\"dweb:/ipfs/QmaAARj3BDSQNsPwkFxauDpWBNgb4kYdzo19tUNdBbc6cX\"]},\"node_modules/@bananapus/721-hook-v5/src/interfaces/IJB721TiersHook.sol\":{\"keccak256\":\"0x107f91c5a0674717684d75e0c71106dd1d2937c0089366c7bb555be7fffdd6b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3ce29d75e454845d0636e671c60c7a691e4a77d1c88fe17dbc435945890465b1\",\"dweb:/ipfs/QmewJn8HeiqKggWA8scLUbwv1TMiit8Va8A5A3K7N9Euss\"]},\"node_modules/@bananapus/721-hook-v5/src/interfaces/IJB721TiersHookStore.sol\":{\"keccak256\":\"0x01d419bf6b9dce2ab162f8aac82f0e4a6d948f53819a42ed023e8f23e358c9c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0e0b14b2ae2032bd256614522078cf0f831c35d1f64d1ea2050227117d08c060\",\"dweb:/ipfs/QmP1xbw5597GDvNVgT5Te6w8LBqeXHq4x6HeXYmqLqw2RC\"]},\"node_modules/@bananapus/721-hook-v5/src/interfaces/IJB721TokenUriResolver.sol\":{\"keccak256\":\"0xfa599167098f4459320ec4141a98a17b2dfffbce422baa27d8b4e4530f61ece1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b758b161f4c7b520b2c34b4d91e585e961b8f4ca278eebb91d791f7f2f45140\",\"dweb:/ipfs/QmcD9DF7NJ9QykQpT4KPzm4bs3fkjzukdAUWwdU6Atfw85\"]},\"node_modules/@bananapus/721-hook-v5/src/libraries/JB721TiersRulesetMetadataResolver.sol\":{\"keccak256\":\"0xe1e224860fce816c0566c4b22044eb2f5a767a09764d00482b954733bf18e51e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://043663de2a9c7e822e947e0b68833e77985d493bebcb48f86bf1b67f937417fc\",\"dweb:/ipfs/QmXVXPdpLfmT2a97gUQ5d2XSsHXhgpiTfs7w2ZtoD55uAd\"]},\"node_modules/@bananapus/721-hook-v5/src/libraries/JBIpfsDecoder.sol\":{\"keccak256\":\"0xb93ba562ac1fc9d3829be00e61f3a90f51df5661cf0f2c819a7f1d8ba19ec171\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc9bc948fac8897d9720ef25b13d63c60b40a18aa1897dd1c657fc278c416b4f\",\"dweb:/ipfs/QmNtiJTALZW5zfyKVy7XG5GkqGgMrfkVvU4Auu4bb9cGQc\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721InitTiersConfig.sol\":{\"keccak256\":\"0xfe7147d09467fd8f9b755d2a1485f22bb4a8797acd0e97623258498ddac2e441\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9ee21464af9e6c78f580c6920757017cdfbd276728773338a67660fedfea0fd2\",\"dweb:/ipfs/QmVYviC7uQ7rEvdpzD6U4BN19P5f8uMuC7jWffzQWvuFcu\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721Tier.sol\":{\"keccak256\":\"0x99232aa73d5715977332dc7c93b03552a93259e59ae00e86b4ddc200f06adaf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://721c0cf10a29fa11677718faafb3a2ecfcb4fbe4e1c09e70a7fac681c80fcc94\",\"dweb:/ipfs/QmSUR77E9PqnpB5kBcKNz2CGBjG9XL9FH57RWVYu3Q7GMR\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TierConfig.sol\":{\"keccak256\":\"0x86e54a0de4deab9d105bf276586aebe256188b193e83eb7a6f6f93e4a29ae9c5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04bfcc07d452c26dfc50d3a5eb62df4b3b81e063defd752e0aa5ed049a78eef4\",\"dweb:/ipfs/QmWd5nJHUvZPHxJXkrYCboXaqdtiWWkQG26sNM6qkJuAgD\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TiersHookFlags.sol\":{\"keccak256\":\"0x283d8429f31bd58875c056515aa42abd09c95362bd929e85cfc44a0d92585766\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9a580b89fe99d9f8e930c58a4d0d63a5ff7c01c79d210af01373d066c9e72ed6\",\"dweb:/ipfs/QmdY1eSGSoTjv4KSdsG4Tm5CzJN6iqk3qTRga5ZWNbejRz\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TiersMintReservesConfig.sol\":{\"keccak256\":\"0x86fe586a05e6d4bc6fab9b68996a7f4b74c5362ca6f24b9d8057ed7e4cd1c5ac\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0915f17d1f958ab1fe6b214d99ed62f1f858684898c803f1a8a6a557472dd140\",\"dweb:/ipfs/QmUhdnSV8UzkgvbtkYEKHrpyDEmc2aJxW5HQ1gucuxxu5A\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TiersRulesetMetadata.sol\":{\"keccak256\":\"0x6720a6ada2a882f99afa050e40b6c925439da4339240565a0e706521b3aadc6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ede4a3165276d9d89eeea2dfd56f68d77dbfaedb738b30c8a0faa81c3a153b1b\",\"dweb:/ipfs/QmXa4QCb6K9MXxwNKed17VWeX9crKeMjkQnVk2xMARzh76\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TiersSetDiscountPercentConfig.sol\":{\"keccak256\":\"0x4672eacb6b0cda5e6f5f72ddb91463c52fb90b4df421053e3b40024f19a59954\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9d8e3a0b35d6b2a6ec66527594263400189b6c766bfd6943c83704380a989aec\",\"dweb:/ipfs/QmUE7NhFWsxjFRzTuRyHJ7oRx3JXD9CnG83t29PjGAhwPR\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JBLaunchProjectConfig.sol\":{\"keccak256\":\"0xf671b41a02209c38171be1c390b247ddd0e4424e3c032b1b898ac519bfd87932\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81f9d439880dc0f498cb6b66d742739dfe10f8bc97532f39eb0f5c7df75c4ab0\",\"dweb:/ipfs/QmYY4jj1SxgrFhQHpKFwmv7qmb2cpnSeDcpPCobAFXgzmX\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JBPayDataHookRulesetConfig.sol\":{\"keccak256\":\"0xb8c9b727af33c31e5de91f3fe276aa52abcad3ea2aa010a0652a5ba532d805ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://500635eaafbf6c37a5f51ca36618b04e87fae5e59030d7d2b20d9eb989e4c17d\",\"dweb:/ipfs/QmcPa3aczMHMpQEt4aQLzXyVLk4buCuRwtfpczSWMeYMnG\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JBPayDataHookRulesetMetadata.sol\":{\"keccak256\":\"0x8e96cc925255913471645456563fabf7183782a1266b64322e3a96c241af1089\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://925d629f24110f98f97296eecbb4241048296088f7326fc459b330aeb45b3f0e\",\"dweb:/ipfs/QmbtCnFCTACsufCvV4CTDhNzW1bF1miHpA9ZC6nV5XCK4v\"]},\"node_modules/@bananapus/address-registry-v5/src/interfaces/IJBAddressRegistry.sol\":{\"keccak256\":\"0x984b1f4a0301ee5a5fe44d6d228aa0a60161e0ff69509ef3d5f829c4b154e423\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c1e46de177797b8585c8030377f470ac6737ddf3496f0a3a6b16e01ad7712dab\",\"dweb:/ipfs/QmW771SQMskbmJG9GHJPMhzJGTFpU3JVj2YxFtLSaAb3Xk\"]},\"node_modules/@bananapus/core-v5/src/abstract/JBPermissioned.sol\":{\"keccak256\":\"0xbaaa61c6aa043522617d3c1a86960c23b9978ee2a6c9d593b00beeeb6ce64423\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://09beed8608e02ce9dbf28814309aaf62c9eec67e0701a26113bdbb4cbae56c42\",\"dweb:/ipfs/QmZrHFnpjX9uBzbFrSjqQgQBkvpJ1ZyvjtT9RfneNGv32S\"]},\"node_modules/@bananapus/core-v5/src/enums/JBApprovalStatus.sol\":{\"keccak256\":\"0x61c69b6bac7d24b566d87cda23a77e4ca9cdb87200b106aba8534cb9a0973e33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a9ca7249de76f77a8252eefe6bd1b63d47952f25a2acfa2c8db967cdff4470c\",\"dweb:/ipfs/QmaxSxptRQNj8bNy96EreENmrnRWdKmhyihBcxyWzBX5BN\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBCashOutHook.sol\":{\"keccak256\":\"0x6c516b030f55065eb169d666d11dbd82c4a0b8cea7782ebc5e79433cade38670\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fa0659eb08477176f130ccaf387d4bde71f0ecca2b24f61124d225f2f50397a3\",\"dweb:/ipfs/QmRNBRGhdGpLQLkC4wK4VrgNEw4EdSiJ4ZZJfiJU4aNt2L\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBController.sol\":{\"keccak256\":\"0xc903b660dccd57e610e1d834407b2bead1fc456153e106f2582407e505a39a96\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://624bb32a7cd93ce056ea2705332821abd9cd7c83f419bbb279ad96e47c2b6013\",\"dweb:/ipfs/QmXKmQAGecR2zYAXMZ54erg5QnYoWNue4Ek3jCJCUyfW7q\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBDirectory.sol\":{\"keccak256\":\"0xcb97db460d2948a7f51c660fe0d1b1749047a419027711c476b86ad3573534c5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a909c7a3d471054537894dca827e6e018e92ac25299b43026e5b1e335ec4de68\",\"dweb:/ipfs/QmU1GT3F8PNMjSiPPP5cSLLofefHYFJXnywMCdqqM9xUeh\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBDirectoryAccessControl.sol\":{\"keccak256\":\"0x1ea768919979d9f625920c05a5e633739febc822ce14b1e4724d739b19c10fb8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7c5391a510bd610a97978245b7306d8d21c79d7c45c15f590ba9b603ea751154\",\"dweb:/ipfs/QmPSJvVWswqzv3bVq422UhA2BybMsiHoYFWGPp5Jh6Xs6a\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBFundAccessLimits.sol\":{\"keccak256\":\"0xfd8ea4cffd289e7fef6e53b5c8983eb6b941de306517f40c047048d3a8a2ca08\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2765cdee206f8b1b53874448e2481db001cd3706753190cfc9381318c7a7c41c\",\"dweb:/ipfs/QmQ5UYSadtzrb7BcTR93KnAYKXawdyDUG5HjjASV1zbys5\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPayHook.sol\":{\"keccak256\":\"0x9438866782c652c2942f4d114e35f393cd3c8b0334abce8387eed90bca35e8b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cfd99daf57213f92325aad7d7d16e98476d38e870470e95ba01e3ae3cdecc95d\",\"dweb:/ipfs/QmUKKAVGf7ki8BHksr99tFcRW8APveeB5tNH63ctTbbCW8\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPermissioned.sol\":{\"keccak256\":\"0x5b038d4dee116584e88b230920e56d48e135053e3f7e5642eaea14a775c1dad7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://19e43102f349fd4a1da1c0943ffb8f2950007fe4bb4bb7e8f74fc142575d091b\",\"dweb:/ipfs/QmXHAt4KzDTdDZgDDefEXH2WKi7NcfkJb9R7nxW5uDqsNp\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPermissions.sol\":{\"keccak256\":\"0x49d2b91a866004af098a6770b28040071885b048b4b50744b12a1e5b212c5e5e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://089b4dda50be91412ffe1fbe333f78cc894f073c1a7afe469f10a2cee12fbf9e\",\"dweb:/ipfs/QmYPPBZ6HwBa1RNkNGqGcR2xgj4fnWBzrPHHoJG3kZA6AN\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPriceFeed.sol\":{\"keccak256\":\"0x4bd84c0f1a5d4729ed709bcddd43f4c50ec4a165ece79780af8dce482ed07d4a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://62bac4bfb6982fb002f620c77e5c445e62d50241a5aa64a07e51d929f5a42180\",\"dweb:/ipfs/QmWgJUDreVY2BuMX38a1iUUR5kNbMwGnKG3VvurB7oZtuM\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPrices.sol\":{\"keccak256\":\"0xb4d5244daa52aafab0c9b8806b7f973afa6a3b298add5966d586d27b78424cfb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a819f74455aaa4f679ded378424702f3992608a640d7f943b19938eb4ff711da\",\"dweb:/ipfs/QmSMGvVTsMW3L5YSUyXTKoEsgNpGEutnq4frEZHuDdeDvz\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBProjectUriRegistry.sol\":{\"keccak256\":\"0xc9ab647179d7d0c857fdd881d6ce96f06254739440ed08e85a1c2042218f7c7d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8529368f30c98c8d5a69acdbe4ac79e3eeb4afa5a9cd278325c5f2184ef3d50f\",\"dweb:/ipfs/QmfUaozYiAGt1UwBDUEZvon1tEBS5sLPzqpN9dNdjQotPN\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBProjects.sol\":{\"keccak256\":\"0x4ae42a9cc29b517b26d2b9b635deb82c16696b777deeca92dfcad33b0f81c0a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1dcbd860e7d7f05232d90c5e9cfd3d01e2ce986ffcdb053473d8a4d387b1a48a\",\"dweb:/ipfs/QmWKWoSJJbVWDumbnzXJBJyXmAacgC97bxMtchh8te41bn\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBRulesetApprovalHook.sol\":{\"keccak256\":\"0x5f0dc5968277b572ba5dc74518906dfb33a9684b7a199c7843f4e66af1c11fb9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://323ce3731aebdf5bf8055b8550055e856feed700d293af8beaf8a750625a0975\",\"dweb:/ipfs/QmU2ErV2uzvXnsJt1qBKm73H2qWcEqYtQGHtZEpx93DaWJ\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBRulesetDataHook.sol\":{\"keccak256\":\"0x45a88aa9f26512f7fc3deff6d00be9a292fc07a76c8311f175249400e83d1837\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1e88b996c3a05f87f7391ebcb9cd6d46c6ce8768083945f26a98c4ac4509e64c\",\"dweb:/ipfs/QmbpuYi6mYV8K8qrh8syWvbPc34pFrXG6QeC23m4MsX3r9\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBRulesets.sol\":{\"keccak256\":\"0xf287c7a4a162cd58084ed10ee5f9f31c992addff0ce2f2ac7e810cc393546f30\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c851b72de52c3ceb73c6b1849ad0cc7c0832fd126ee52cc838a163ab6d3055b8\",\"dweb:/ipfs/Qmbv6k6pSeNMwZoTUKzDNb18DMGR8DboRMrYQBydATuVZw\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBSplitHook.sol\":{\"keccak256\":\"0xeb8dfac7a4b81897a1c3b5d0d853a406bcff33720fb187d5ca5bb3dcc0ba3a12\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36aaeef6107cfe5b0127e063ea215aac7200f8af02e28a48e61111abd3254688\",\"dweb:/ipfs/QmQ8yQANXnhQCAWBGKsKCDsJ3A8hnTKNg5tyo79GfWXTcV\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBSplits.sol\":{\"keccak256\":\"0x424e6d1189b9ba7a5d441e7675ae09ff893c13c62b9ddde4dd6bc2690e96c6f3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e30ed7ab1daf20ff324aacfef7150a243b5db496eceaf032c7012ccb3c4227d\",\"dweb:/ipfs/QmRj5EZKmDjJy8tpvKbpz8vPSKHR5C9Q5ENe7oSLij4H8M\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBTerminal.sol\":{\"keccak256\":\"0x5a4c0ef6c8fd10069a408cc42a862909f7b47aba46327da5003203508d8f17d9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://09d8854151c21046b6b939189ad2139c669888e6baf47034a0cb754104d1efe6\",\"dweb:/ipfs/QmaMrxnf6K6znvDBwdAqsw5x6yuR4SY1BdNtyz226siAt5\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBToken.sol\":{\"keccak256\":\"0xc2c0a75d97e3a20fd6964b09381736de03f56e58c27a874a0c96a21e02d0e577\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6ef8d476174aca6c35f7fb24ff8be619191bfd22038d3729ca4803252d3dae6a\",\"dweb:/ipfs/QmdWtAwf2A4P88of9gUyWY6hodT9fqpxJK4NBVQt9ys2Jd\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBTokenUriResolver.sol\":{\"keccak256\":\"0xfa5cb00dcd6085d1ef912d071fe73c63f9478a2cd0f9d8bddaf659b6af2d0967\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://282e4e7c342d65f77cde0e9a08fcaf20ef5cf379c7a48b639842c0ffd0b2afb8\",\"dweb:/ipfs/QmbnN3PEQeZaXdPLT75V1J79kMg7KqSMru37RHrL3z8Yf2\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBTokens.sol\":{\"keccak256\":\"0xe3f0cca072afcac9ee3c875b7439a6edb4a9276e9dba01184d11e8270a25f258\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bc3e437b8588965b911a750dc632ac1aca4f9348a137877047a62df598a17bc7\",\"dweb:/ipfs/QmdXjVMdCFcw8HFbhxZZbj9KzxNx2ThjVfcDhFBt1khfvL\"]},\"node_modules/@bananapus/core-v5/src/libraries/JBConstants.sol\":{\"keccak256\":\"0x4dd0f809f1f10cf961e85632e5f3ea5e49716b104a0e8bc4d8ccc2081e9d007a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://09432ec01de81f7c295579fa3176610776cb186fba4c50d799108a18f14e5cc6\",\"dweb:/ipfs/QmS52c525xJui5u1xoY76PTq2n1pvnUzThBK38A1fsWdLp\"]},\"node_modules/@bananapus/core-v5/src/libraries/JBMetadataResolver.sol\":{\"keccak256\":\"0x52402cc945b1a23d0560a2a9c93a11271ce0ab18e592a4d78fc449a8b417526d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://912b5056f5768b14f26e4e2a754b90ce631a1f4898af6883f6d1e4a1f4ce87c8\",\"dweb:/ipfs/QmdnGcjTQtxscD1QDTERN2xqVA6iJnLCkfq1vWSUmDYYtX\"]},\"node_modules/@bananapus/core-v5/src/libraries/JBRulesetMetadataResolver.sol\":{\"keccak256\":\"0x3ed84aa51ce7ee94c65c507bb6f209fef4ae89c7446a2ed841602a235afcf43d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cbeb6faae79112f85366ee53ad5c65f41a68f799912a5f09b0d6a49f8d9df647\",\"dweb:/ipfs/QmdEyZ6QF5q9UHMwbxWA9RrFwtL5iYHRydCAnHdKqqukDB\"]},\"node_modules/@bananapus/core-v5/src/structs/JBAccountingContext.sol\":{\"keccak256\":\"0x9c47e048a719f784f601df69a583505432217b9868a0244876d277f84dd1ebdf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8565f194b87914da9a02af2e760ae2ed2a9d185c6f11229f7035140776d2fec9\",\"dweb:/ipfs/QmPs2fic8W3F5e5zNRwmGmJFjb3JWGPWJ3YUe5o82nQgEn\"]},\"node_modules/@bananapus/core-v5/src/structs/JBAfterCashOutRecordedContext.sol\":{\"keccak256\":\"0xa1acdb1a5670f66f730e71f8eff120766b6f5c934e6cd699c7f1a7cc93adf658\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9c7655c9c42b30132688b395251748c809c334370ee584cb9bac46e1fb8f162\",\"dweb:/ipfs/QmbMV1wg1Fm236HaA6nnMSvRkzeYCKPRhMYDbqkAxieY7x\"]},\"node_modules/@bananapus/core-v5/src/structs/JBAfterPayRecordedContext.sol\":{\"keccak256\":\"0x3bfc01ae9944a0ff5c41125e18ebb8efca58d7aa4e471d2ffa6d8588afb689ab\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://beb21399142d9b89539cfc8aa94119bc106bd1ea847b922d4c78f3f8804a5cba\",\"dweb:/ipfs/QmXDwJXrzCb6zh1KYwVdN2PEY86uK62MTfYF1M2MBtbEP7\"]},\"node_modules/@bananapus/core-v5/src/structs/JBBeforeCashOutRecordedContext.sol\":{\"keccak256\":\"0x7b2119f3e0725becc552ed5dcfa51683960a8772550c95ac5e2f75240ced367c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://03369dd07a9126ce453d83ac409919326f0aaa48ff9eac5c703092b3824d79c9\",\"dweb:/ipfs/Qmc1QKw6FfmeBD372RnDyeW27QyzEUjMX5up5rk8SHRYGa\"]},\"node_modules/@bananapus/core-v5/src/structs/JBBeforePayRecordedContext.sol\":{\"keccak256\":\"0xbc98b968d84be2f0ddbb24240723c7179ec9c5e02e5fbd5843dd0e76623a3ea5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1310e522696a9fc6f7f96b04c293fab3b4cf1e722bdbb7aa1eec7b3ecc25402f\",\"dweb:/ipfs/QmTYiijDJRuQcMhLrmpbHzHAQFPq6jurPP5HjyYtnzbpnK\"]},\"node_modules/@bananapus/core-v5/src/structs/JBCashOutHookSpecification.sol\":{\"keccak256\":\"0x67a6e781019979e626eaa81d84a800b2656603c23ae455e15d0fa1a6f03c1736\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43ce54447dda62d449a1e3575a9e4cb9c5a2adb41b45423dcefeb7d9afe8336\",\"dweb:/ipfs/QmW77REnQcvsfv4gwTLj2CyynmaGC3a6om7zCFWmERhrPY\"]},\"node_modules/@bananapus/core-v5/src/structs/JBCurrencyAmount.sol\":{\"keccak256\":\"0x7f321bbcbd13abfbc8f0d08a5adaaf8ef312db5bb899012fcffb6170fbb962a9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf9301ef1dbb3abda7b492585377617508ba048c6170f21a5e7d2b3c034eb384\",\"dweb:/ipfs/QmcetEFxSYLLNSZzPBpNn3Fc8sFcrFE8A8h12ZSj2tLgxD\"]},\"node_modules/@bananapus/core-v5/src/structs/JBFundAccessLimitGroup.sol\":{\"keccak256\":\"0x9fdaa8d017b72da25f583700a444a86849df053f7fb8eac874ec5139bcf651e5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c8e44c49ee444a98424a0dbeb6897a76a0bf00d88a613f62ac2012afdac754ee\",\"dweb:/ipfs/QmdYkAiRi5bXM1YYNkc7BiqimHSFodMGn1cjHR5hcpm4xH\"]},\"node_modules/@bananapus/core-v5/src/structs/JBPayHookSpecification.sol\":{\"keccak256\":\"0x955f0bfca97300b9e5927dc181753830ee362f83fa9ca32a90daade32aa0cfd5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f517af1597c7c40f8d3da53f7a6684a3e162950a16559d6bf6ea3b727bb11546\",\"dweb:/ipfs/QmRWo2ZTYXmVZTzNJDYhsJNsEaHphjpUfx9eNz2cciyz86\"]},\"node_modules/@bananapus/core-v5/src/structs/JBPermissionsData.sol\":{\"keccak256\":\"0x65e26b78a1f00d81a21abd255c9670b600efca60cf36a993b8f48ecb268464a4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d108c721c4281b13de34641befd2a1e9fac73a70195ef5ca957abda6fca9acca\",\"dweb:/ipfs/QmWoJo7wzSKY3z4YCpFvR8DoCUTKviiuFEj2tBkcgKUqW1\"]},\"node_modules/@bananapus/core-v5/src/structs/JBRuleset.sol\":{\"keccak256\":\"0x2d1f0a8457e94addae51a8222b1837e372847624fde96bb3178e7aee52ab2b24\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bbb1478e8f5d1c20f981e5a0d5e526d002add1e05ddced87ccd45543ed00c9e4\",\"dweb:/ipfs/QmZkgaYdwkbnvW2MGwVe9FeHjac8XyZTP1YZcWUApiGZgE\"]},\"node_modules/@bananapus/core-v5/src/structs/JBRulesetConfig.sol\":{\"keccak256\":\"0xeba54f25ad84b9c6009f62ded187b58f97e0822e9b19ab0986aee6603ca5400a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a51743febf78f2ede92d32a2b18c3c5f06f02c413c2d01f28dc296840b068ef\",\"dweb:/ipfs/QmVSRDtB7xUgaLGW5tSJr7PhW5XPxkWg226Sk2g75qWpxh\"]},\"node_modules/@bananapus/core-v5/src/structs/JBRulesetMetadata.sol\":{\"keccak256\":\"0x318f0b75275c3822df53a02e98782c9e98e7961116f2ad66a528c6adcd14c946\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d60f62390e43d182bfe875d1ac57e9de10426d81038ba7d8c3727b22392299e2\",\"dweb:/ipfs/QmUtE6fcP25wEhVJNEbrPHyFPkg5hp2PFf5xcwBeHPmNAf\"]},\"node_modules/@bananapus/core-v5/src/structs/JBRulesetWithMetadata.sol\":{\"keccak256\":\"0x1bcfadf20488f6df65227f8d4d0fbf9b7539456a2389567f7fe3900d23289bc3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a15c399a71e5373f8c0484c6d6b83521eda31e063a2c53e4c5cec4e74550343\",\"dweb:/ipfs/QmQwi8zkjoTVXbK89NeETYimWCacTrNsesJdpLSvGdqMPX\"]},\"node_modules/@bananapus/core-v5/src/structs/JBSplit.sol\":{\"keccak256\":\"0xfcedbb8b6937ee00578a4c3ec70e2555a2c0a5c18f1eba3b96701b07c1dd94a4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7014a7b6f30f35941898eea1d9d32a2d75c807f59e2f0fcb430efc8c25edc1da\",\"dweb:/ipfs/QmWitPTxQCDUfoWrRRrYvE9YhuTcwCAXxVvkVLNk9Jsem1\"]},\"node_modules/@bananapus/core-v5/src/structs/JBSplitGroup.sol\":{\"keccak256\":\"0x8dc98fa9e730bee8bcc0a8acf1bc4db1c9b0edf307d969c9c9caa4d6b8d856d9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66f4306e0e69c82033927952564fd617e7c4b29aa8b165d5b53a0ebe3109ea12\",\"dweb:/ipfs/QmQqN1u7FHAdEtEZNRcKvZwYtXEQVQnLd6FMzHESP7wDtx\"]},\"node_modules/@bananapus/core-v5/src/structs/JBSplitHookContext.sol\":{\"keccak256\":\"0x1cef82bf434f91d518092ea7e57db4a72ce7654f48a7db9bf44882900b6b6623\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc5012008ab7e74cf766fe1c202a23e3a73365356bcf1e0b04ec01baf21b204b\",\"dweb:/ipfs/QmSwJvd6Yrg9XZMhjquBcak5sfUswbR5nPEuJBfpjM54VT\"]},\"node_modules/@bananapus/core-v5/src/structs/JBTerminalConfig.sol\":{\"keccak256\":\"0x9e31505080d3754b6d7db96095b0545930ef6dbc035b91fcc32fdc76a0e7c2a5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f7702ab33a1b713c37e5397a55d8ef089289f4da8034cfe9622cbc69a98c47de\",\"dweb:/ipfs/QmXyiXps4aJyiM7vtDC373QUoqwB4DMETaZzC5cZPJKaAK\"]},\"node_modules/@bananapus/core-v5/src/structs/JBTokenAmount.sol\":{\"keccak256\":\"0xc61593d33d5ec30e695d382948a1b944d01e29a8f2bfd29f75ecebcdbc7816de\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8992c1e5fca0c2342ecc0e734dfba6a2a752e4c29184784931d0971e44305051\",\"dweb:/ipfs/QmYNcaW3qeCkgAExUaFTq238fgfJuoYCTwjCn7jm94U4dJ\"]},\"node_modules/@bananapus/ownable-v5/src/JBOwnable.sol\":{\"keccak256\":\"0xad1f9fcc7cfa404a6c20b0eafbc71a2c90a4a3f9aebeaa4b2cab63355892ed30\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd0ef227f070c6c68c998c711e70e61850eabe789a026e34f11e8e0d506739a6\",\"dweb:/ipfs/QmPeZXX7Lq8Q3jHSMvQR5W6UprCy5z5BPY8tz6KXEt4a5S\"]},\"node_modules/@bananapus/ownable-v5/src/JBOwnableOverrides.sol\":{\"keccak256\":\"0x3ccb51dfe5ea52398b63013dba97552f5b1a443bc6df8713458ee5ce75230bd0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd2985c7e5783482a64b774d3be8bcf6736c5e754ffd4c0baa3647fb0ff53b69\",\"dweb:/ipfs/QmfEYE8EXGPbvNcWZj4H4DX2HLxscYcFSckpAGwttt4SRS\"]},\"node_modules/@bananapus/ownable-v5/src/interfaces/IJBOwnable.sol\":{\"keccak256\":\"0xa94807eab5362c523d403a10902db431753b9b1e4b73259d4d7e217fc6cdf766\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d5cd284927df617997d055dfaa5f17b9c22c5ce678b9c87b627d14aaa87fa8d2\",\"dweb:/ipfs/Qma1M9MV1FFsaPF5oAMDL7KdidFzCjZ6EZ8mdLo9MXkgxa\"]},\"node_modules/@bananapus/ownable-v5/src/structs/JBOwner.sol\":{\"keccak256\":\"0x535d669344addf9ce4a62320960699ae8c47b4a615327a1cb32590b4e046c069\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://64e228cc198dafde001eb65092eebf6e99f91420b993deb9c5dc8204cf2469ce\",\"dweb:/ipfs/QmWpKRsMt3SwToaVyNjF6ZJZaL3Kz2QDfee8BBN2FExV3i\"]},\"node_modules/@bananapus/permission-ids-v5/src/JBPermissionIds.sol\":{\"keccak256\":\"0x03d598c570091f294bebe9c7b59bfc2d907d5b70a3193c3bdb9ddec67edae1e0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://afb1aefda01e53fa79441bab1fa9cb46154e0db9d16bec8f9b7fa80d200916db\",\"dweb:/ipfs/Qmbkt9HgWmz5rgehRttkzFqW9SkwRYvXYqtHmuxHVxz8ZD\"]},\"node_modules/@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"node_modules/@openzeppelin/contracts/interfaces/IERC2981.sol\":{\"keccak256\":\"0xafab0e6c71905303c47dd254168cb31efc91f0ae284cde609b0202f97f85469e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://824d05aec56eb82a2a3c28eece530dc0792d3a008b09d01444e57cf4aceb0445\",\"dweb:/ipfs/QmVvqmJ5UobuRU9Q4JMyXxBfzKs2cpjbWXMNpxX4binTX8\"]},\"node_modules/@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]},\"node_modules/@openzeppelin/contracts/metatx/ERC2771Context.sol\":{\"keccak256\":\"0x345acfb731203002ef98916d5a222339709db0ad44dc4a389e7f1ce4088ce59b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e1dcd7e6c8ca2b402e232d2e44666c282a894c475bca15532464a47513222e5d\",\"dweb:/ipfs/QmbfGjwHHCUxHtkCECoisxr7JDiZXSFtrHNizwwKzNNSHJ\"]},\"node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"node_modules/@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"node_modules/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"node_modules/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"node_modules/@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x6d0ae6e206645341fd122d278c2cb643dea260c190531f2f3f6a0426e77b00c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://032d1201d839435be2c85b72e33206b3ea980c569d6ebf7fa57d811ab580a82f\",\"dweb:/ipfs/QmeqQjAtMvdZT2tG7zm39itcRJkuwu8AEReK6WRnLJ18DD\"]},\"node_modules/@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"node_modules/@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"node_modules/@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"node_modules/@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0xad148d59f05165f9217d0a9e1ac8f772abb02ea6aaad8a756315c532bf79f9f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15e3599867c2182f5831e9268b274b2ef2047825837df6b4d81c9e89254b093e\",\"dweb:/ipfs/QmZbL7XAYr5RmaNaooPgZRmcDXaudfsYQfYD9y5iAECvpS\"]},\"node_modules/@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"node_modules/@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"node_modules/@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"node_modules/@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"node_modules/@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"node_modules/@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0xe32a5a466492f6a3b871d705d045fc2f8d6e6c8bf69288011531ff875003993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://61c69a907ca80a9cff4bdf30f64d5ee458a6c54f0a87ed7e4c2a1b9275256851\",\"dweb:/ipfs/QmVmhbvE7w5Hs9tj9NBPLk6yAirrEhaRYgTRT9USat4H9a\"]},\"node_modules/@prb/math/src/Common.sol\":{\"keccak256\":\"0x8225a3898d2f11f585da1fb82234800e9717fa080dbe53d450fd429a3a632e99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2dcbf39ca575f68f32f0d1c66391de94082424956e7585e849813966f8c0fc05\",\"dweb:/ipfs/QmYvk8vXFDUJHrmqbtutYXfoLomLBosYLyBzuPoYBxsQ42\"]}},\"version\":1}",
769
+ "gitCommit": "65e9171fc69ba65af9e9ac84f021a9fd6cb1787d",
770
+ "history": [
771
+ {
772
+ "format": "sphinx-sol-ct-artifact-1",
773
+ "merkleRoot": "0xf08f9ca7dcb710bbe0f088e7fa547a30ed0560e0de626166d34dde93c2b21941",
774
+ "address": "0xf6ae3f8bb41b55ae23412c64fdb135c0f6cb86ae",
775
+ "sourceName": "contracts/DefifaGovernor.sol",
776
+ "contractName": "DefifaGovernor",
777
+ "chainId": "0x14a34",
778
+ "abi": [
779
+ {
780
+ "inputs": [
781
+ {
782
+ "internalType": "contract IJBController",
783
+ "name": "_controller",
784
+ "type": "address"
785
+ },
786
+ {
787
+ "internalType": "address",
788
+ "name": "_owner",
789
+ "type": "address"
790
+ }
791
+ ],
792
+ "stateMutability": "nonpayable",
793
+ "type": "constructor"
794
+ },
795
+ {
796
+ "inputs": [],
797
+ "name": "MAX_ATTESTATION_POWER_TIER",
798
+ "outputs": [
799
+ {
800
+ "internalType": "uint256",
801
+ "name": "",
802
+ "type": "uint256"
803
+ }
804
+ ],
805
+ "stateMutability": "view",
806
+ "type": "function"
807
+ },
808
+ {
809
+ "inputs": [
810
+ {
811
+ "internalType": "uint256",
812
+ "name": "_gameId",
813
+ "type": "uint256"
814
+ },
815
+ {
816
+ "internalType": "uint256",
817
+ "name": "_scorecardId",
818
+ "type": "uint256"
819
+ }
820
+ ],
821
+ "name": "attestToScorecardFrom",
822
+ "outputs": [
823
+ {
824
+ "internalType": "uint256",
825
+ "name": "weight",
826
+ "type": "uint256"
827
+ }
828
+ ],
829
+ "stateMutability": "nonpayable",
830
+ "type": "function"
831
+ },
832
+ {
833
+ "inputs": [
834
+ {
835
+ "internalType": "uint256",
836
+ "name": "_gameId",
837
+ "type": "uint256"
838
+ },
839
+ {
840
+ "internalType": "uint256",
841
+ "name": "_scorecardId",
842
+ "type": "uint256"
843
+ }
844
+ ],
845
+ "name": "attestationCountOf",
846
+ "outputs": [
847
+ {
848
+ "internalType": "uint256",
849
+ "name": "",
850
+ "type": "uint256"
851
+ }
852
+ ],
853
+ "stateMutability": "view",
854
+ "type": "function"
855
+ },
856
+ {
857
+ "inputs": [
858
+ {
859
+ "internalType": "uint256",
860
+ "name": "_gameId",
861
+ "type": "uint256"
862
+ }
863
+ ],
864
+ "name": "attestationGracePeriodOf",
865
+ "outputs": [
866
+ {
867
+ "internalType": "uint256",
868
+ "name": "",
869
+ "type": "uint256"
870
+ }
871
+ ],
872
+ "stateMutability": "view",
873
+ "type": "function"
874
+ },
875
+ {
876
+ "inputs": [
877
+ {
878
+ "internalType": "uint256",
879
+ "name": "_gameId",
880
+ "type": "uint256"
881
+ }
882
+ ],
883
+ "name": "attestationStartTimeOf",
884
+ "outputs": [
885
+ {
886
+ "internalType": "uint256",
887
+ "name": "",
888
+ "type": "uint256"
889
+ }
890
+ ],
891
+ "stateMutability": "view",
892
+ "type": "function"
893
+ },
894
+ {
895
+ "inputs": [],
896
+ "name": "controller",
897
+ "outputs": [
898
+ {
899
+ "internalType": "contract IJBController",
900
+ "name": "",
901
+ "type": "address"
902
+ }
903
+ ],
904
+ "stateMutability": "view",
905
+ "type": "function"
906
+ },
907
+ {
908
+ "inputs": [
909
+ {
910
+ "internalType": "uint256",
911
+ "name": "",
912
+ "type": "uint256"
913
+ }
914
+ ],
915
+ "name": "defaultAttestationDelegateProposalOf",
916
+ "outputs": [
917
+ {
918
+ "internalType": "uint256",
919
+ "name": "",
920
+ "type": "uint256"
921
+ }
922
+ ],
923
+ "stateMutability": "view",
924
+ "type": "function"
925
+ },
926
+ {
927
+ "inputs": [
928
+ {
929
+ "internalType": "uint256",
930
+ "name": "_gameId",
931
+ "type": "uint256"
932
+ },
933
+ {
934
+ "internalType": "address",
935
+ "name": "_account",
936
+ "type": "address"
937
+ },
938
+ {
939
+ "internalType": "uint48",
940
+ "name": "_timestamp",
941
+ "type": "uint48"
942
+ }
943
+ ],
944
+ "name": "getAttestationWeight",
945
+ "outputs": [
946
+ {
947
+ "internalType": "uint256",
948
+ "name": "attestationPower",
949
+ "type": "uint256"
950
+ }
951
+ ],
952
+ "stateMutability": "view",
953
+ "type": "function"
954
+ },
955
+ {
956
+ "inputs": [
957
+ {
958
+ "internalType": "uint256",
959
+ "name": "_gameId",
960
+ "type": "uint256"
961
+ },
962
+ {
963
+ "internalType": "uint256",
964
+ "name": "_scorecardId",
965
+ "type": "uint256"
966
+ },
967
+ {
968
+ "internalType": "address",
969
+ "name": "_account",
970
+ "type": "address"
971
+ }
972
+ ],
973
+ "name": "hasAttestedTo",
974
+ "outputs": [
975
+ {
976
+ "internalType": "bool",
977
+ "name": "",
978
+ "type": "bool"
979
+ }
980
+ ],
981
+ "stateMutability": "view",
982
+ "type": "function"
983
+ },
984
+ {
985
+ "inputs": [
986
+ {
987
+ "internalType": "uint256",
988
+ "name": "_gameId",
989
+ "type": "uint256"
990
+ },
991
+ {
992
+ "internalType": "uint256",
993
+ "name": "_attestationStartTime",
994
+ "type": "uint256"
995
+ },
996
+ {
997
+ "internalType": "uint256",
998
+ "name": "_attestationGracePeriod",
999
+ "type": "uint256"
1000
+ }
1001
+ ],
1002
+ "name": "initializeGame",
1003
+ "outputs": [],
1004
+ "stateMutability": "nonpayable",
1005
+ "type": "function"
1006
+ },
1007
+ {
1008
+ "inputs": [],
1009
+ "name": "owner",
1010
+ "outputs": [
1011
+ {
1012
+ "internalType": "address",
1013
+ "name": "",
1014
+ "type": "address"
1015
+ }
1016
+ ],
1017
+ "stateMutability": "view",
1018
+ "type": "function"
1019
+ },
1020
+ {
1021
+ "inputs": [
1022
+ {
1023
+ "internalType": "uint256",
1024
+ "name": "_gameId",
1025
+ "type": "uint256"
1026
+ }
1027
+ ],
1028
+ "name": "quorum",
1029
+ "outputs": [
1030
+ {
1031
+ "internalType": "uint256",
1032
+ "name": "",
1033
+ "type": "uint256"
1034
+ }
1035
+ ],
1036
+ "stateMutability": "view",
1037
+ "type": "function"
1038
+ },
1039
+ {
1040
+ "inputs": [
1041
+ {
1042
+ "internalType": "uint256",
1043
+ "name": "",
1044
+ "type": "uint256"
1045
+ }
1046
+ ],
1047
+ "name": "ratifiedScorecardIdOf",
1048
+ "outputs": [
1049
+ {
1050
+ "internalType": "uint256",
1051
+ "name": "",
1052
+ "type": "uint256"
1053
+ }
1054
+ ],
1055
+ "stateMutability": "view",
1056
+ "type": "function"
1057
+ },
1058
+ {
1059
+ "inputs": [
1060
+ {
1061
+ "internalType": "uint256",
1062
+ "name": "_gameId",
1063
+ "type": "uint256"
1064
+ },
1065
+ {
1066
+ "components": [
1067
+ {
1068
+ "internalType": "uint256",
1069
+ "name": "id",
1070
+ "type": "uint256"
1071
+ },
1072
+ {
1073
+ "internalType": "uint256",
1074
+ "name": "cashOutWeight",
1075
+ "type": "uint256"
1076
+ }
1077
+ ],
1078
+ "internalType": "struct DefifaTierCashOutWeight[]",
1079
+ "name": "_tierWeights",
1080
+ "type": "tuple[]"
1081
+ }
1082
+ ],
1083
+ "name": "ratifyScorecardFrom",
1084
+ "outputs": [
1085
+ {
1086
+ "internalType": "uint256",
1087
+ "name": "scorecardId",
1088
+ "type": "uint256"
1089
+ }
1090
+ ],
1091
+ "stateMutability": "nonpayable",
1092
+ "type": "function"
1093
+ },
1094
+ {
1095
+ "inputs": [],
1096
+ "name": "renounceOwnership",
1097
+ "outputs": [],
1098
+ "stateMutability": "nonpayable",
1099
+ "type": "function"
1100
+ },
1101
+ {
1102
+ "inputs": [
1103
+ {
1104
+ "internalType": "address",
1105
+ "name": "_gameDelegate",
1106
+ "type": "address"
1107
+ },
1108
+ {
1109
+ "components": [
1110
+ {
1111
+ "internalType": "uint256",
1112
+ "name": "id",
1113
+ "type": "uint256"
1114
+ },
1115
+ {
1116
+ "internalType": "uint256",
1117
+ "name": "cashOutWeight",
1118
+ "type": "uint256"
1119
+ }
1120
+ ],
1121
+ "internalType": "struct DefifaTierCashOutWeight[]",
1122
+ "name": "_tierWeights",
1123
+ "type": "tuple[]"
1124
+ }
1125
+ ],
1126
+ "name": "scorecardIdOf",
1127
+ "outputs": [
1128
+ {
1129
+ "internalType": "uint256",
1130
+ "name": "",
1131
+ "type": "uint256"
1132
+ }
1133
+ ],
1134
+ "stateMutability": "pure",
1135
+ "type": "function"
1136
+ },
1137
+ {
1138
+ "inputs": [
1139
+ {
1140
+ "internalType": "uint256",
1141
+ "name": "_gameId",
1142
+ "type": "uint256"
1143
+ },
1144
+ {
1145
+ "internalType": "uint256",
1146
+ "name": "_scorecardId",
1147
+ "type": "uint256"
1148
+ }
1149
+ ],
1150
+ "name": "stateOf",
1151
+ "outputs": [
1152
+ {
1153
+ "internalType": "enum DefifaScorecardState",
1154
+ "name": "",
1155
+ "type": "uint8"
1156
+ }
1157
+ ],
1158
+ "stateMutability": "view",
1159
+ "type": "function"
1160
+ },
1161
+ {
1162
+ "inputs": [
1163
+ {
1164
+ "internalType": "uint256",
1165
+ "name": "_gameId",
1166
+ "type": "uint256"
1167
+ },
1168
+ {
1169
+ "components": [
1170
+ {
1171
+ "internalType": "uint256",
1172
+ "name": "id",
1173
+ "type": "uint256"
1174
+ },
1175
+ {
1176
+ "internalType": "uint256",
1177
+ "name": "cashOutWeight",
1178
+ "type": "uint256"
1179
+ }
1180
+ ],
1181
+ "internalType": "struct DefifaTierCashOutWeight[]",
1182
+ "name": "_tierWeights",
1183
+ "type": "tuple[]"
1184
+ }
1185
+ ],
1186
+ "name": "submitScorecardFor",
1187
+ "outputs": [
1188
+ {
1189
+ "internalType": "uint256",
1190
+ "name": "scorecardId",
1191
+ "type": "uint256"
1192
+ }
1193
+ ],
1194
+ "stateMutability": "nonpayable",
1195
+ "type": "function"
1196
+ },
1197
+ {
1198
+ "inputs": [
1199
+ {
1200
+ "internalType": "address",
1201
+ "name": "newOwner",
1202
+ "type": "address"
1203
+ }
1204
+ ],
1205
+ "name": "transferOwnership",
1206
+ "outputs": [],
1207
+ "stateMutability": "nonpayable",
1208
+ "type": "function"
1209
+ },
1210
+ {
1211
+ "anonymous": false,
1212
+ "inputs": [
1213
+ {
1214
+ "indexed": true,
1215
+ "internalType": "uint256",
1216
+ "name": "gameId",
1217
+ "type": "uint256"
1218
+ },
1219
+ {
1220
+ "indexed": false,
1221
+ "internalType": "uint256",
1222
+ "name": "attestationStartTime",
1223
+ "type": "uint256"
1224
+ },
1225
+ {
1226
+ "indexed": false,
1227
+ "internalType": "uint256",
1228
+ "name": "attestationGracePeriod",
1229
+ "type": "uint256"
1230
+ },
1231
+ {
1232
+ "indexed": false,
1233
+ "internalType": "address",
1234
+ "name": "caller",
1235
+ "type": "address"
1236
+ }
1237
+ ],
1238
+ "name": "GameInitialized",
1239
+ "type": "event"
1240
+ },
1241
+ {
1242
+ "anonymous": false,
1243
+ "inputs": [
1244
+ {
1245
+ "indexed": true,
1246
+ "internalType": "address",
1247
+ "name": "previousOwner",
1248
+ "type": "address"
1249
+ },
1250
+ {
1251
+ "indexed": true,
1252
+ "internalType": "address",
1253
+ "name": "newOwner",
1254
+ "type": "address"
1255
+ }
1256
+ ],
1257
+ "name": "OwnershipTransferred",
1258
+ "type": "event"
1259
+ },
1260
+ {
1261
+ "anonymous": false,
1262
+ "inputs": [
1263
+ {
1264
+ "indexed": true,
1265
+ "internalType": "uint256",
1266
+ "name": "gameId",
1267
+ "type": "uint256"
1268
+ },
1269
+ {
1270
+ "indexed": true,
1271
+ "internalType": "uint256",
1272
+ "name": "scorecardId",
1273
+ "type": "uint256"
1274
+ },
1275
+ {
1276
+ "indexed": false,
1277
+ "internalType": "uint256",
1278
+ "name": "weight",
1279
+ "type": "uint256"
1280
+ },
1281
+ {
1282
+ "indexed": false,
1283
+ "internalType": "address",
1284
+ "name": "caller",
1285
+ "type": "address"
1286
+ }
1287
+ ],
1288
+ "name": "ScorecardAttested",
1289
+ "type": "event"
1290
+ },
1291
+ {
1292
+ "anonymous": false,
1293
+ "inputs": [
1294
+ {
1295
+ "indexed": true,
1296
+ "internalType": "uint256",
1297
+ "name": "gameId",
1298
+ "type": "uint256"
1299
+ },
1300
+ {
1301
+ "indexed": true,
1302
+ "internalType": "uint256",
1303
+ "name": "scorecardId",
1304
+ "type": "uint256"
1305
+ },
1306
+ {
1307
+ "indexed": false,
1308
+ "internalType": "address",
1309
+ "name": "caller",
1310
+ "type": "address"
1311
+ }
1312
+ ],
1313
+ "name": "ScorecardRatified",
1314
+ "type": "event"
1315
+ },
1316
+ {
1317
+ "anonymous": false,
1318
+ "inputs": [
1319
+ {
1320
+ "indexed": true,
1321
+ "internalType": "uint256",
1322
+ "name": "gameId",
1323
+ "type": "uint256"
1324
+ },
1325
+ {
1326
+ "indexed": true,
1327
+ "internalType": "uint256",
1328
+ "name": "scorecardId",
1329
+ "type": "uint256"
1330
+ },
1331
+ {
1332
+ "components": [
1333
+ {
1334
+ "internalType": "uint256",
1335
+ "name": "id",
1336
+ "type": "uint256"
1337
+ },
1338
+ {
1339
+ "internalType": "uint256",
1340
+ "name": "cashOutWeight",
1341
+ "type": "uint256"
1342
+ }
1343
+ ],
1344
+ "indexed": false,
1345
+ "internalType": "struct DefifaTierCashOutWeight[]",
1346
+ "name": "tierWeights",
1347
+ "type": "tuple[]"
1348
+ },
1349
+ {
1350
+ "indexed": false,
1351
+ "internalType": "bool",
1352
+ "name": "isDefaultAttestationDelegate",
1353
+ "type": "bool"
1354
+ },
1355
+ {
1356
+ "indexed": false,
1357
+ "internalType": "address",
1358
+ "name": "caller",
1359
+ "type": "address"
1360
+ }
1361
+ ],
1362
+ "name": "ScorecardSubmitted",
1363
+ "type": "event"
1364
+ },
1365
+ {
1366
+ "inputs": [],
1367
+ "name": "ALREADY_ATTESTED",
1368
+ "type": "error"
1369
+ },
1370
+ {
1371
+ "inputs": [],
1372
+ "name": "ALREADY_RATIFIED",
1373
+ "type": "error"
1374
+ },
1375
+ {
1376
+ "inputs": [],
1377
+ "name": "DUPLICATE_SCORECARD",
1378
+ "type": "error"
1379
+ },
1380
+ {
1381
+ "inputs": [],
1382
+ "name": "FailedCall",
1383
+ "type": "error"
1384
+ },
1385
+ {
1386
+ "inputs": [],
1387
+ "name": "GAME_NOT_FOUND",
1388
+ "type": "error"
1389
+ },
1390
+ {
1391
+ "inputs": [],
1392
+ "name": "INCORRECT_TIER_ORDER",
1393
+ "type": "error"
1394
+ },
1395
+ {
1396
+ "inputs": [],
1397
+ "name": "NOT_ALLOWED",
1398
+ "type": "error"
1399
+ },
1400
+ {
1401
+ "inputs": [
1402
+ {
1403
+ "internalType": "address",
1404
+ "name": "owner",
1405
+ "type": "address"
1406
+ }
1407
+ ],
1408
+ "name": "OwnableInvalidOwner",
1409
+ "type": "error"
1410
+ },
1411
+ {
1412
+ "inputs": [
1413
+ {
1414
+ "internalType": "address",
1415
+ "name": "account",
1416
+ "type": "address"
1417
+ }
1418
+ ],
1419
+ "name": "OwnableUnauthorizedAccount",
1420
+ "type": "error"
1421
+ },
1422
+ {
1423
+ "inputs": [
1424
+ {
1425
+ "internalType": "uint256",
1426
+ "name": "x",
1427
+ "type": "uint256"
1428
+ },
1429
+ {
1430
+ "internalType": "uint256",
1431
+ "name": "y",
1432
+ "type": "uint256"
1433
+ },
1434
+ {
1435
+ "internalType": "uint256",
1436
+ "name": "denominator",
1437
+ "type": "uint256"
1438
+ }
1439
+ ],
1440
+ "name": "PRBMath_MulDiv_Overflow",
1441
+ "type": "error"
1442
+ },
1443
+ {
1444
+ "inputs": [],
1445
+ "name": "UNKNOWN_PROPOSAL",
1446
+ "type": "error"
1447
+ },
1448
+ {
1449
+ "inputs": [],
1450
+ "name": "UNOWNED_PROPOSED_CASHOUT_VALUE",
1451
+ "type": "error"
1452
+ }
1453
+ ],
1454
+ "args": [],
1455
+ "solcInputHash": "0e8ae70cf88a21c2333e81569efbc13e",
1456
+ "receipt": {
1457
+ "type": "0x2",
1458
+ "status": "0x1",
1459
+ "cumulativeGasUsed": "0xdd133a",
1460
+ "logs": [
1461
+ {
1462
+ "address": "0xa2ea7657440875bf916cbfc0cfa88f13e38ad463",
1463
+ "topics": [
1464
+ "0x572f161235911da04685a68c06adf558fc7e4a36909dca394650e0adc19cc93d",
1465
+ "0x000000000000000000000000755ff2f75a0a586ecfa2b9a3c959cb662458a105",
1466
+ "0x000000000000000000000000f99fe00bf35369acadc62f2cf302c66fefbc7a11",
1467
+ "0xa6b9e8d4d3e28a8d781df7ef3272f2bd90c14f0803f4a73433baef24ddc950ca"
1468
+ ],
1469
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000",
1470
+ "blockHash": "0x27646372d2dcf29a09ff4dcfa2c210c806c9ed8e12a5ba8a1aca8c33432418b4",
1471
+ "blockNumber": "0x1f55434",
1472
+ "blockTimestamp": "0x68fe0748",
1473
+ "transactionHash": "0x5b4301a4ee8e29e45dcde8ca28833e0ef34ba5bfd424a95c2cf9a61931349a3f",
1474
+ "transactionIndex": "0x1d",
1475
+ "logIndex": "0x170",
1476
+ "removed": false
1477
+ },
1478
+ {
1479
+ "address": "0xf6ae3f8bb41b55ae23412c64fdb135c0f6cb86ae",
1480
+ "topics": [
1481
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
1482
+ "0x0000000000000000000000000000000000000000000000000000000000000000",
1483
+ "0x000000000000000000000000e22e214f8646eafd1c89ece0eb1d553de96af4a9"
1484
+ ],
1485
+ "data": "0x",
1486
+ "blockHash": "0x27646372d2dcf29a09ff4dcfa2c210c806c9ed8e12a5ba8a1aca8c33432418b4",
1487
+ "blockNumber": "0x1f55434",
1488
+ "blockTimestamp": "0x68fe0748",
1489
+ "transactionHash": "0x5b4301a4ee8e29e45dcde8ca28833e0ef34ba5bfd424a95c2cf9a61931349a3f",
1490
+ "transactionIndex": "0x1d",
1491
+ "logIndex": "0x171",
1492
+ "removed": false
1493
+ },
1494
+ {
1495
+ "address": "0xe22e214f8646eafd1c89ece0eb1d553de96af4a9",
1496
+ "topics": [
1497
+ "0x6895c13664aa4f67288b25d7a21d7aaa34916e355fb9b6fae0a139a9085becb8",
1498
+ "0x000000000000000000000000f99fe00bf35369acadc62f2cf302c66fefbc7a11"
1499
+ ],
1500
+ "data": "0x",
1501
+ "blockHash": "0x27646372d2dcf29a09ff4dcfa2c210c806c9ed8e12a5ba8a1aca8c33432418b4",
1502
+ "blockNumber": "0x1f55434",
1503
+ "blockTimestamp": "0x68fe0748",
1504
+ "transactionHash": "0x5b4301a4ee8e29e45dcde8ca28833e0ef34ba5bfd424a95c2cf9a61931349a3f",
1505
+ "transactionIndex": "0x1d",
1506
+ "logIndex": "0x172",
1507
+ "removed": false
1508
+ },
1509
+ {
1510
+ "address": "0xf99fe00bf35369acadc62f2cf302c66fefbc7a11",
1511
+ "topics": [
1512
+ "0xa65fb05c5808f5f389d72edeaf719ce38f4cc55c1f69ca3cbfb31c21501caa07",
1513
+ "0xf08f9ca7dcb710bbe0f088e7fa547a30ed0560e0de626166d34dde93c2b21941"
1514
+ ],
1515
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000003",
1516
+ "blockHash": "0x27646372d2dcf29a09ff4dcfa2c210c806c9ed8e12a5ba8a1aca8c33432418b4",
1517
+ "blockNumber": "0x1f55434",
1518
+ "blockTimestamp": "0x68fe0748",
1519
+ "transactionHash": "0x5b4301a4ee8e29e45dcde8ca28833e0ef34ba5bfd424a95c2cf9a61931349a3f",
1520
+ "transactionIndex": "0x1d",
1521
+ "logIndex": "0x173",
1522
+ "removed": false
1523
+ }
1524
+ ],
1525
+ "logsBloom": "0x00000000000010000400080000080000000000800000000000800000000200000800000000000000000000000040000000000000000000000000000000000010000004000000200000000000000000000001000000000880000000000000000000000000020000000000000200000800000000000000000000000000000000c00800000000000000000104000000000000000020000000080000000000000000004000040000000080000020000000002200400000000000000008000004000000000002000000000000000000000000000000000000000000000000000020000000000020000000000000000000000200020100000080000000000000000000",
1526
+ "transactionHash": "0x5b4301a4ee8e29e45dcde8ca28833e0ef34ba5bfd424a95c2cf9a61931349a3f",
1527
+ "transactionIndex": "0x1d",
1528
+ "blockHash": "0x27646372d2dcf29a09ff4dcfa2c210c806c9ed8e12a5ba8a1aca8c33432418b4",
1529
+ "blockNumber": "0x1f55434",
1530
+ "gasUsed": "0x176029",
1531
+ "effectiveGasPrice": "0x249f73",
1532
+ "from": "0x755ff2f75a0a586ecfa2b9a3c959cb662458a105",
1533
+ "to": "0xa2ea7657440875bf916cbfc0cfa88f13e38ad463",
1534
+ "contractAddress": null
1535
+ },
1536
+ "bytecode": "0x60a0346100ed57601f6118fb38819003918201601f19168301916001600160401b038311848410176100f15780849260409485528339810103126100ed5780516001600160a01b039182821682036100ed57602001518281168091036100ed5780156100d5575f80546001600160a01b03198116831782556040519416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a36080526117f5908161010682396080518181816101910152818161031b015281816106cb0152818161101301526113100152f35b604051631e4fbdf760e01b81525f6004820152602490fd5b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080604081815260049182361015610015575f80fd5b5f3560e01c908163222e143b14610c05575080632511642914610aeb578063517a618014610acd5780635e34fbfe14610a88578063715018a614610a445780638da5cb5b14610a1d57806391fb2e98146109ff57806392347991146109a9578063b7e8f6da1461066d578063c543882f146105f2578063ce1e82d5146102d1578063d826e899146102a5578063deec0bb014610259578063f0a92a1e14610232578063f2fde38b146101c0578063f77c47911461017d578063f80c73a114610157578063f8ce560a146101325763f94633fb146100f0575f80fd5b3461012e5761010761010136610c33565b906114de565b905190600581101561011b57602092508152f35b602183634e487b7160e01b5f525260245ffd5b5f80fd5b503461012e57602036600319011261012e57610150602092356112e0565b9051908152f35b503461012e57602036600319011261012e5781602092355f528252805f20549051908152f35b503461012e575f36600319011261012e57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50903461012e57602036600319011261012e576101db610c49565b906101e461167a565b6001600160a01b0391821692831561021c5750505f548260018060a01b03198216175f55165f805160206117808339815191525f80a3005b905f6024925191631e4fbdf760e01b8352820152fd5b503461012e57602036600319011261012e57602091355f5260058252805f20549051908152f35b503461012e578060031936011261012e57610272610c49565b602435906001600160401b03821161012e5761029f61029960209561015094369101610c5f565b906116a5565b906116e1565b503461012e576020906102b736610c33565b905f5260028352815f20905f528252805f20549051908152f35b50903461012e576102e136610c8f565b93919092815f5260209460058652835f20546105e35783516320c94b1360e11b8152828101849052610380956024926001600160a01b03927f00000000000000000000000000000000000000000000000000000000000000008416929089818781875afa998a156105d9575f9a61059c575b505061022091610362916116a5565b97019661037281848a51166116e1565b9761037d89886114de565b600581101561058a5760030361057a575f9184839289845260058d528b8b8520555116828c83519301915af184893d1561056a57503d9190506001600160401b03821161055857916103ef8a9287948a51916103e286601f19601f8401160184610ce3565b82523d5f8684013e611754565b50875163293c499960e01b815292839182905afa90811561051557829189915f9161051f575b50848851809481936331a9108f60e11b83528a8a840152165afa908115610515575f916104e0575b501691823b1561012e575f809383875180968193635b33a66f60e11b835289878401525af180156104d6579086949392916104a4575b5050507f47c473fdeacbc61881306133d8e38075619b3cfed85b1a2c9552ddd3a788dc2f858451338152a351908152f35b92935090916001600160401b0383116104c5575050825282905f8080610473565b604190634e487b7160e01b5f52525ffd5b85513d5f823e3d90fd5b90508781813d831161050e575b6104f78183610ce3565b8101031261012e5761050890610d5a565b5f61043d565b503d6104ed565b86513d5f823e3d90fd5b92505081813d8311610551575b6105368183610ce3565b8101031261012e5751818116810361012e578782915f610415565b503d61052c565b84604187634e487b7160e01b5f52525ffd5b916103ef90606094929490611754565b8751634ae18d2b60e11b81528690fd5b85602188634e487b7160e01b5f52525ffd5b610362929a506102209391816105c692903d106105d2575b6105be8183610ce3565b810190610d6e565b90509991819350610353565b503d6105b4565b89513d5f823e3d90fd5b50825163e63e122560e01b8152fd5b50903461012e57606036600319011261012e5760607f8134704271052dad7aa04d6ab4df63250a5f2aa4639fcc0d0ddb74cb0edf86479135926024359060443561063a61167a565b8215610665575b855f5260036020528060301b8317825f2055815192835260208301523390820152a2005b429250610641565b50903461012e5761067d36610c8f565b909391805f5260209460058652835f205461099957815f5260038652835f2054156109895783516320c94b1360e11b81528581018390526001600160a01b03939061038090602490828183817f00000000000000000000000000000000000000000000000000000000000000008b165afa92831561097f575f9361095e575b50505f5b8381106108bc575050610220019561071f8588511661029f84866116a5565b96845f5260018952865f20885f528952865f20805465ffffffffffff8082166108ac57928b92899286958a5f5260038652808d5f2054168042115f14610877575061076b5f5b42610cc2565b1665ffffffffffff1982168117835565ffffffffffff60301b6107906107658d611264565b60301b169160018060601b031916171790555116885192838092637f98988760e01b82525afa90811561086d57908895949392915f91610822575b50955f805160206117a08339815191529495961633149081610812575b506107ff87519384936060855260608501916112a2565b908983015233878301520390a351908152f35b855f52895285875f20555f6107e8565b809596508a8092503d8311610866575b61083c8183610ce3565b8101031261012e57879561085d5f805160206117a083398151915295610d5a565b909695946107cb565b503d610832565b87513d5f823e3d90fd5b92955092955092504281039081116108995792899286959261076b8f96610765565b601186634e487b7160e01b5f525260245ffd5b8951630440a45760e41b81528590fd5b896108c882868861127e565b01351515806108ee575b6108de57600101610700565b87516321e0209160e21b81528990fd5b5086610220840151168a61090383878961127e565b35848c8c5194859384926342c9297160e11b84528301525afa9081156105d9575f91610931575b50156108d2565b90508a81813d8311610957575b6109488183610ce3565b8101031261012e57515f61092a565b503d61093e565b610975929350803d106105d2576105be8183610ce3565b9050905f806106fc565b88513d5f823e3d90fd5b50505051633f45d9c960e21b8152fd5b5050505163e63e122560e01b8152fd5b503461012e57606036600319011261012e576044356001600160a01b0381169081900361012e57602092355f5260028352815f206024355f5283526001825f2001905f52825260ff815f20541690519015158152f35b503461012e57602036600319011261012e5761015060209235611264565b503461012e575f36600319011261012e575f5490516001600160a01b039091168152602090f35b3461012e575f36600319011261012e57610a5c61167a565b5f80546001600160a01b0319811682556001600160a01b03165f805160206117808339815191528280a3005b503461012e57606036600319011261012e57602435916001600160a01b038316830361012e5760443565ffffffffffff8116810361012e576020936101509235610fde565b503461012e575f36600319011261012e5760209051633b9aca008152f35b50903461012e57610afb36610c33565b815f9492945260209360018552825f20825f528552825f2093610b1e83836114de565b6005811015610bf25760018114159081610be6575b50610bd857815f5260028652835f20835f528652835f20946001860191335f5282885260ff865f205416610bca575065ffffffffffff610b769154163384610fde565b94610b82868254610cc2565b9055335f528552825f20600160ff198254161790557fc49d39a4ac0db2fda0e72ce3ff9d5ee27f409cecd8fa183fd8bf36a05f9c788d8380518681523388820152a351908152f35b855163944e4a3160e01b8152fd5b8351634ae18d2b60e11b8152fd5b6003915014155f610b33565b602182634e487b7160e01b5f525260245ffd5b9050823461012e57602036600319011261012e5760209265ffffffffffff91355f52600384525f2054168152f35b604090600319011261012e576004359060243590565b600435906001600160a01b038216820361012e57565b9181601f8401121561012e578235916001600160401b03831161012e576020808501948460061b01011161012e57565b90604060031983011261012e5760043591602435906001600160401b03821161012e57610cbe91600401610c5f565b9091565b91908201809211610ccf57565b634e487b7160e01b5f52601160045260245ffd5b601f909101601f19168101906001600160401b03821190821017610d0657604052565b634e487b7160e01b5f52604160045260245ffd5b519065ffffffffffff8216820361012e57565b519063ffffffff8216820361012e57565b519061ffff8216820361012e57565b5190811515820361012e57565b51906001600160a01b038216820361012e57565b80929103610380811261012e5761012080821261012e576040805190946001600160401b039390919083820185811183821017610d06578752610db083610d1a565b8252610dbe60208401610d1a565b6020830152610dce878401610d1a565b87830152610dde60608401610d1a565b6060830152610def60808401610d2d565b608083015260a08301516001600160701b038116810361012e5760a0830152610e1a60c08401610d2d565b60c083015260e08301516001600160a01b038116810361012e5760e083015261010091828401518382015296610260809261011f19011261012e5780519582870190811187821017610d06578152610e73848601610d3e565b865261014090610e84858301610d3e565b602088015261016090610e98868301610d2d565b90880152610180610eaa868201610d4d565b60608901526101a090610ebe878301610d4d565b60808a01526101c092610ed2888501610d4d565b60a08b01526101e094610ee6898701610d4d565b60c08c015261020096610efa8a8901610d4d565b60e08d015261022098610f0e8b8b01610d4d565b908d01526102409a610f218b8d01610d4d565b908d01528901610f3090610d4d565b908b0152610f416102808901610d4d565b908a0152610f526102a08801610d4d565b90890152610f636102c08701610d4d565b90880152610f746102e08601610d4d565b90870152610f856103008501610d4d565b90860152610f966103208401610d4d565b90850152610fa76103408301610d5a565b9084015261036001610fb890610d3e565b9082015290565b9081602091031261012e57516001600160a01b038116810361012e5790565b604080516320c94b1360e11b81526004808201939093525f9594936001600160a01b03939092916024919061038090818185817f00000000000000000000000000000000000000000000000000000000000000008b165afa9182156104d6579061022092915f92611245575b5050019585875116918451809363975057e760e01b8252818360209687935afa908115610515578893929185915f91611218575b506024858c511689519b8c93849263f1bea54f60e01b845287840152165afa978815610515575f986111e9575b505f5b8881106110c15750505050505050505050565b600181018082116111d757848b51169088519163caa00cf960e01b8352868b168584015281898401526044888460648165ffffffffffff8b169586868301525afa9384156111cd575f9461119e575b5083611123575b505050506001016110ae565b90939e92938891888f5116938c5194859384926330ea612d60e11b84528a8401528d8301525afa9081156105d9575f91611170575b50611165906001936115ba565b019b905f8080611117565b90508681813d8311611197575b6111878183610ce3565b8101031261012e57516001611158565b503d61117d565b9093508881813d83116111c6575b6111b68183610ce3565b8101031261012e5751925f611110565b503d6111ac565b8b513d5f823e3d90fd5b86601184634e487b7160e01b5f52525ffd5b9097508381813d8311611211575b6112018183610ce3565b8101031261012e5751965f6110ab565b503d6111f7565b6112389150823d841161123e575b6112308183610ce3565b810190610fbf565b5f61107e565b503d611226565b61125b9250803d106105d2576105be8183610ce3565b90505f8061104a565b5f52600360205265ffffffffffff60405f205460301c1690565b919081101561128e5760061b0190565b634e487b7160e01b5f52603260045260245ffd5b9190808252602080920192915f905b8282106112bf575050505090565b833585528381013585820152604094850194909301926001909101906112b1565b604080516320c94b1360e11b815260048082019390935290916024916001600160a01b03919061038090818186817f000000000000000000000000000000000000000000000000000000000000000088165afa918215610515579061022092915f926114bf575b50500193828551168151809163975057e760e01b8252818560209485935afa90811561149857859183915f916114a2575b506024838a51168651988993849263f1bea54f60e01b84528a840152165afa948515611498575f95611469575b505f965f5b8681106113bf57505050505050505060011c90565b82825116600182018083116114575785908a8851809481936342c9297160e11b83528c8301525afa908115610515575f9161142a575b50611403575b6001016113aa565b97633b9aca00810180911161141857976113fb565b87601187634e487b7160e01b5f52525ffd5b90508481813d8311611450575b6114418183610ce3565b8101031261012e57515f6113f5565b503d611437565b89601189634e487b7160e01b5f52525ffd5b9094508181813d8311611491575b6114818183610ce3565b8101031261012e5751935f6113a5565b503d611477565b83513d5f823e3d90fd5b6114b99150823d841161123e576112308183610ce3565b5f611378565b6114d59250803d106105d2576105be8183610ce3565b90505f80611347565b90815f5260209060058252604091825f2054806115a45750600181525f83812083825282528390208351908185016001600160401b03811183821017610d06578552549065ffffffffffff90818316808252828583019460301c1684521561159357518116421115611589574291511610156115805761155d846112e0565b935f5260028152825f20915f52525f205410155f1461157b57600390565b600190565b50505050600190565b5050505050505f90565b855163eb24c39f60e01b8152600490fd5b9250509150145f146115b557600490565b600290565b90633b9aca00905f1983830992808302928380861095039480860395146116585782851015611635579082910960018219018216809204600280826003021880830282030280830282030280830282030280830282030280830282030280920290030293600183805f03040190848311900302920304170290565b8260649260405192630c740aef60e31b8452600484015260248301526044820152fd5b505080925015611666570490565b634e487b7160e01b5f52601260045260245ffd5b5f546001600160a01b0316330361168d57565b60405163118cdaa760e01b8152336004820152602490fd5b906116de906116d0604051938492623e985f60e61b60208501526020602485015260448401916112a2565b03601f198101835282610ce3565b90565b90604051908160208082019460018060a01b031685526040808301528251928360608401525f5b84811061173d5750505080825f6080611737958195010152601f80199101168101036060810184520182610ce3565b51902090565b818101830151868201608001528593508201611708565b90919061177d575080511561176b57602081519101fd5b60405163d6bda27560e01b8152600490fd5b56fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a8529171c1868e465ad2895d671a738ffb5f0764bd6dffd13339152af5c5f3a0a26469706673582212203a6a974292eaed698e3f1d2a55fac27d1c813d481ab560dc502dbad89c14c86164736f6c63430008170033",
1537
+ "deployedBytecode": "0x6080604081815260049182361015610015575f80fd5b5f3560e01c908163222e143b14610c05575080632511642914610aeb578063517a618014610acd5780635e34fbfe14610a88578063715018a614610a445780638da5cb5b14610a1d57806391fb2e98146109ff57806392347991146109a9578063b7e8f6da1461066d578063c543882f146105f2578063ce1e82d5146102d1578063d826e899146102a5578063deec0bb014610259578063f0a92a1e14610232578063f2fde38b146101c0578063f77c47911461017d578063f80c73a114610157578063f8ce560a146101325763f94633fb146100f0575f80fd5b3461012e5761010761010136610c33565b906114de565b905190600581101561011b57602092508152f35b602183634e487b7160e01b5f525260245ffd5b5f80fd5b503461012e57602036600319011261012e57610150602092356112e0565b9051908152f35b503461012e57602036600319011261012e5781602092355f528252805f20549051908152f35b503461012e575f36600319011261012e57517f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a6001600160a01b03168152602090f35b50903461012e57602036600319011261012e576101db610c49565b906101e461167a565b6001600160a01b0391821692831561021c5750505f548260018060a01b03198216175f55165f805160206117808339815191525f80a3005b905f6024925191631e4fbdf760e01b8352820152fd5b503461012e57602036600319011261012e57602091355f5260058252805f20549051908152f35b503461012e578060031936011261012e57610272610c49565b602435906001600160401b03821161012e5761029f61029960209561015094369101610c5f565b906116a5565b906116e1565b503461012e576020906102b736610c33565b905f5260028352815f20905f528252805f20549051908152f35b50903461012e576102e136610c8f565b93919092815f5260209460058652835f20546105e35783516320c94b1360e11b8152828101849052610380956024926001600160a01b03927f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a8416929089818781875afa998a156105d9575f9a61059c575b505061022091610362916116a5565b97019661037281848a51166116e1565b9761037d89886114de565b600581101561058a5760030361057a575f9184839289845260058d528b8b8520555116828c83519301915af184893d1561056a57503d9190506001600160401b03821161055857916103ef8a9287948a51916103e286601f19601f8401160184610ce3565b82523d5f8684013e611754565b50875163293c499960e01b815292839182905afa90811561051557829189915f9161051f575b50848851809481936331a9108f60e11b83528a8a840152165afa908115610515575f916104e0575b501691823b1561012e575f809383875180968193635b33a66f60e11b835289878401525af180156104d6579086949392916104a4575b5050507f47c473fdeacbc61881306133d8e38075619b3cfed85b1a2c9552ddd3a788dc2f858451338152a351908152f35b92935090916001600160401b0383116104c5575050825282905f8080610473565b604190634e487b7160e01b5f52525ffd5b85513d5f823e3d90fd5b90508781813d831161050e575b6104f78183610ce3565b8101031261012e5761050890610d5a565b5f61043d565b503d6104ed565b86513d5f823e3d90fd5b92505081813d8311610551575b6105368183610ce3565b8101031261012e5751818116810361012e578782915f610415565b503d61052c565b84604187634e487b7160e01b5f52525ffd5b916103ef90606094929490611754565b8751634ae18d2b60e11b81528690fd5b85602188634e487b7160e01b5f52525ffd5b610362929a506102209391816105c692903d106105d2575b6105be8183610ce3565b810190610d6e565b90509991819350610353565b503d6105b4565b89513d5f823e3d90fd5b50825163e63e122560e01b8152fd5b50903461012e57606036600319011261012e5760607f8134704271052dad7aa04d6ab4df63250a5f2aa4639fcc0d0ddb74cb0edf86479135926024359060443561063a61167a565b8215610665575b855f5260036020528060301b8317825f2055815192835260208301523390820152a2005b429250610641565b50903461012e5761067d36610c8f565b909391805f5260209460058652835f205461099957815f5260038652835f2054156109895783516320c94b1360e11b81528581018390526001600160a01b03939061038090602490828183817f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a8b165afa92831561097f575f9361095e575b50505f5b8381106108bc575050610220019561071f8588511661029f84866116a5565b96845f5260018952865f20885f528952865f20805465ffffffffffff8082166108ac57928b92899286958a5f5260038652808d5f2054168042115f14610877575061076b5f5b42610cc2565b1665ffffffffffff1982168117835565ffffffffffff60301b6107906107658d611264565b60301b169160018060601b031916171790555116885192838092637f98988760e01b82525afa90811561086d57908895949392915f91610822575b50955f805160206117a08339815191529495961633149081610812575b506107ff87519384936060855260608501916112a2565b908983015233878301520390a351908152f35b855f52895285875f20555f6107e8565b809596508a8092503d8311610866575b61083c8183610ce3565b8101031261012e57879561085d5f805160206117a083398151915295610d5a565b909695946107cb565b503d610832565b87513d5f823e3d90fd5b92955092955092504281039081116108995792899286959261076b8f96610765565b601186634e487b7160e01b5f525260245ffd5b8951630440a45760e41b81528590fd5b896108c882868861127e565b01351515806108ee575b6108de57600101610700565b87516321e0209160e21b81528990fd5b5086610220840151168a61090383878961127e565b35848c8c5194859384926342c9297160e11b84528301525afa9081156105d9575f91610931575b50156108d2565b90508a81813d8311610957575b6109488183610ce3565b8101031261012e57515f61092a565b503d61093e565b610975929350803d106105d2576105be8183610ce3565b9050905f806106fc565b88513d5f823e3d90fd5b50505051633f45d9c960e21b8152fd5b5050505163e63e122560e01b8152fd5b503461012e57606036600319011261012e576044356001600160a01b0381169081900361012e57602092355f5260028352815f206024355f5283526001825f2001905f52825260ff815f20541690519015158152f35b503461012e57602036600319011261012e5761015060209235611264565b503461012e575f36600319011261012e575f5490516001600160a01b039091168152602090f35b3461012e575f36600319011261012e57610a5c61167a565b5f80546001600160a01b0319811682556001600160a01b03165f805160206117808339815191528280a3005b503461012e57606036600319011261012e57602435916001600160a01b038316830361012e5760443565ffffffffffff8116810361012e576020936101509235610fde565b503461012e575f36600319011261012e5760209051633b9aca008152f35b50903461012e57610afb36610c33565b815f9492945260209360018552825f20825f528552825f2093610b1e83836114de565b6005811015610bf25760018114159081610be6575b50610bd857815f5260028652835f20835f528652835f20946001860191335f5282885260ff865f205416610bca575065ffffffffffff610b769154163384610fde565b94610b82868254610cc2565b9055335f528552825f20600160ff198254161790557fc49d39a4ac0db2fda0e72ce3ff9d5ee27f409cecd8fa183fd8bf36a05f9c788d8380518681523388820152a351908152f35b855163944e4a3160e01b8152fd5b8351634ae18d2b60e11b8152fd5b6003915014155f610b33565b602182634e487b7160e01b5f525260245ffd5b9050823461012e57602036600319011261012e5760209265ffffffffffff91355f52600384525f2054168152f35b604090600319011261012e576004359060243590565b600435906001600160a01b038216820361012e57565b9181601f8401121561012e578235916001600160401b03831161012e576020808501948460061b01011161012e57565b90604060031983011261012e5760043591602435906001600160401b03821161012e57610cbe91600401610c5f565b9091565b91908201809211610ccf57565b634e487b7160e01b5f52601160045260245ffd5b601f909101601f19168101906001600160401b03821190821017610d0657604052565b634e487b7160e01b5f52604160045260245ffd5b519065ffffffffffff8216820361012e57565b519063ffffffff8216820361012e57565b519061ffff8216820361012e57565b5190811515820361012e57565b51906001600160a01b038216820361012e57565b80929103610380811261012e5761012080821261012e576040805190946001600160401b039390919083820185811183821017610d06578752610db083610d1a565b8252610dbe60208401610d1a565b6020830152610dce878401610d1a565b87830152610dde60608401610d1a565b6060830152610def60808401610d2d565b608083015260a08301516001600160701b038116810361012e5760a0830152610e1a60c08401610d2d565b60c083015260e08301516001600160a01b038116810361012e5760e083015261010091828401518382015296610260809261011f19011261012e5780519582870190811187821017610d06578152610e73848601610d3e565b865261014090610e84858301610d3e565b602088015261016090610e98868301610d2d565b90880152610180610eaa868201610d4d565b60608901526101a090610ebe878301610d4d565b60808a01526101c092610ed2888501610d4d565b60a08b01526101e094610ee6898701610d4d565b60c08c015261020096610efa8a8901610d4d565b60e08d015261022098610f0e8b8b01610d4d565b908d01526102409a610f218b8d01610d4d565b908d01528901610f3090610d4d565b908b0152610f416102808901610d4d565b908a0152610f526102a08801610d4d565b90890152610f636102c08701610d4d565b90880152610f746102e08601610d4d565b90870152610f856103008501610d4d565b90860152610f966103208401610d4d565b90850152610fa76103408301610d5a565b9084015261036001610fb890610d3e565b9082015290565b9081602091031261012e57516001600160a01b038116810361012e5790565b604080516320c94b1360e11b81526004808201939093525f9594936001600160a01b03939092916024919061038090818185817f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a8b165afa9182156104d6579061022092915f92611245575b5050019585875116918451809363975057e760e01b8252818360209687935afa908115610515578893929185915f91611218575b506024858c511689519b8c93849263f1bea54f60e01b845287840152165afa978815610515575f986111e9575b505f5b8881106110c15750505050505050505050565b600181018082116111d757848b51169088519163caa00cf960e01b8352868b168584015281898401526044888460648165ffffffffffff8b169586868301525afa9384156111cd575f9461119e575b5083611123575b505050506001016110ae565b90939e92938891888f5116938c5194859384926330ea612d60e11b84528a8401528d8301525afa9081156105d9575f91611170575b50611165906001936115ba565b019b905f8080611117565b90508681813d8311611197575b6111878183610ce3565b8101031261012e57516001611158565b503d61117d565b9093508881813d83116111c6575b6111b68183610ce3565b8101031261012e5751925f611110565b503d6111ac565b8b513d5f823e3d90fd5b86601184634e487b7160e01b5f52525ffd5b9097508381813d8311611211575b6112018183610ce3565b8101031261012e5751965f6110ab565b503d6111f7565b6112389150823d841161123e575b6112308183610ce3565b810190610fbf565b5f61107e565b503d611226565b61125b9250803d106105d2576105be8183610ce3565b90505f8061104a565b5f52600360205265ffffffffffff60405f205460301c1690565b919081101561128e5760061b0190565b634e487b7160e01b5f52603260045260245ffd5b9190808252602080920192915f905b8282106112bf575050505090565b833585528381013585820152604094850194909301926001909101906112b1565b604080516320c94b1360e11b815260048082019390935290916024916001600160a01b03919061038090818186817f00000000000000000000000027da30646502e2f642be5281322ae8c394f7668a88165afa918215610515579061022092915f926114bf575b50500193828551168151809163975057e760e01b8252818560209485935afa90811561149857859183915f916114a2575b506024838a51168651988993849263f1bea54f60e01b84528a840152165afa948515611498575f95611469575b505f965f5b8681106113bf57505050505050505060011c90565b82825116600182018083116114575785908a8851809481936342c9297160e11b83528c8301525afa908115610515575f9161142a575b50611403575b6001016113aa565b97633b9aca00810180911161141857976113fb565b87601187634e487b7160e01b5f52525ffd5b90508481813d8311611450575b6114418183610ce3565b8101031261012e57515f6113f5565b503d611437565b89601189634e487b7160e01b5f52525ffd5b9094508181813d8311611491575b6114818183610ce3565b8101031261012e5751935f6113a5565b503d611477565b83513d5f823e3d90fd5b6114b99150823d841161123e576112308183610ce3565b5f611378565b6114d59250803d106105d2576105be8183610ce3565b90505f80611347565b90815f5260209060058252604091825f2054806115a45750600181525f83812083825282528390208351908185016001600160401b03811183821017610d06578552549065ffffffffffff90818316808252828583019460301c1684521561159357518116421115611589574291511610156115805761155d846112e0565b935f5260028152825f20915f52525f205410155f1461157b57600390565b600190565b50505050600190565b5050505050505f90565b855163eb24c39f60e01b8152600490fd5b9250509150145f146115b557600490565b600290565b90633b9aca00905f1983830992808302928380861095039480860395146116585782851015611635579082910960018219018216809204600280826003021880830282030280830282030280830282030280830282030280830282030280920290030293600183805f03040190848311900302920304170290565b8260649260405192630c740aef60e31b8452600484015260248301526044820152fd5b505080925015611666570490565b634e487b7160e01b5f52601260045260245ffd5b5f546001600160a01b0316330361168d57565b60405163118cdaa760e01b8152336004820152602490fd5b906116de906116d0604051938492623e985f60e61b60208501526020602485015260448401916112a2565b03601f198101835282610ce3565b90565b90604051908160208082019460018060a01b031685526040808301528251928360608401525f5b84811061173d5750505080825f6080611737958195010152601f80199101168101036060810184520182610ce3565b51902090565b818101830151868201608001528593508201611708565b90919061177d575080511561176b57602081519101fd5b60405163d6bda27560e01b8152600490fd5b56fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a8529171c1868e465ad2895d671a738ffb5f0764bd6dffd13339152af5c5f3a0a26469706673582212203a6a974292eaed698e3f1d2a55fac27d1c813d481ab560dc502dbad89c14c86164736f6c63430008170033",
1538
+ "metadata": "{\"compiler\":{\"version\":\"0.8.23+commit.f704f362\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IJBController\",\"name\":\"_controller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"ALREADY_ATTESTED\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ALREADY_RATIFIED\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"DUPLICATE_SCORECARD\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GAME_NOT_FOUND\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"INCORRECT_TIER_ORDER\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NOT_ALLOWED\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"x\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"y\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"denominator\",\"type\":\"uint256\"}],\"name\":\"PRBMath_MulDiv_Overflow\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UNKNOWN_PROPOSAL\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UNOWNED_PROPOSED_CASHOUT_VALUE\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"gameId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"attestationStartTime\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"attestationGracePeriod\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"GameInitialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"gameId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"ScorecardAttested\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"gameId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"ScorecardRatified\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"gameId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cashOutWeight\",\"type\":\"uint256\"}],\"indexed\":false,\"internalType\":\"struct DefifaTierCashOutWeight[]\",\"name\":\"tierWeights\",\"type\":\"tuple[]\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"isDefaultAttestationDelegate\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"ScorecardSubmitted\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"MAX_ATTESTATION_POWER_TIER\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_scorecardId\",\"type\":\"uint256\"}],\"name\":\"attestToScorecardFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_scorecardId\",\"type\":\"uint256\"}],\"name\":\"attestationCountOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"}],\"name\":\"attestationGracePeriodOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"}],\"name\":\"attestationStartTimeOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"controller\",\"outputs\":[{\"internalType\":\"contract IJBController\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"defaultAttestationDelegateProposalOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"},{\"internalType\":\"uint48\",\"name\":\"_timestamp\",\"type\":\"uint48\"}],\"name\":\"getAttestationWeight\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"attestationPower\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_scorecardId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_account\",\"type\":\"address\"}],\"name\":\"hasAttestedTo\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_attestationStartTime\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_attestationGracePeriod\",\"type\":\"uint256\"}],\"name\":\"initializeGame\",\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"ratifiedScorecardIdOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cashOutWeight\",\"type\":\"uint256\"}],\"internalType\":\"struct DefifaTierCashOutWeight[]\",\"name\":\"_tierWeights\",\"type\":\"tuple[]\"}],\"name\":\"ratifyScorecardFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_gameDelegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cashOutWeight\",\"type\":\"uint256\"}],\"internalType\":\"struct DefifaTierCashOutWeight[]\",\"name\":\"_tierWeights\",\"type\":\"tuple[]\"}],\"name\":\"scorecardIdOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_scorecardId\",\"type\":\"uint256\"}],\"name\":\"stateOf\",\"outputs\":[{\"internalType\":\"enum DefifaScorecardState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_gameId\",\"type\":\"uint256\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cashOutWeight\",\"type\":\"uint256\"}],\"internalType\":\"struct DefifaTierCashOutWeight[]\",\"name\":\"_tierWeights\",\"type\":\"tuple[]\"}],\"name\":\"submitScorecardFor\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"scorecardId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"attestToScorecardFrom(uint256,uint256)\":{\"params\":{\"_gameId\":\"The ID of the game to which the scorecard belongs.\",\"_scorecardId\":\"The scorecard ID.\"},\"returns\":{\"weight\":\"The attestation weight that was applied.\"}},\"attestationCountOf(uint256,uint256)\":{\"params\":{\"_gameId\":\"The ID of the game to which the scorecard belongs.\",\"_scorecardId\":\"The ID of the scorecard to get attestations of.\"},\"returns\":{\"_0\":\"The number of attestations the given scorecard has.\"}},\"attestationGracePeriodOf(uint256)\":{\"params\":{\"_gameId\":\"The ID of the game to get the attestation period of.\"},\"returns\":{\"_0\":\"The attestation period in number of blocks.\"}},\"attestationStartTimeOf(uint256)\":{\"details\":\"This can be increassed to leave time for users to aquire attestation power, or delegate it, before a scorecard becomes live.\",\"params\":{\"_gameId\":\"The ID of the game to get the attestation delay of.\"},\"returns\":{\"_0\":\"The delay, in seconds.\"}},\"getAttestationWeight(uint256,address,uint48)\":{\"params\":{\"_account\":\"The account to get attestations for.\",\"_gameId\":\"The ID of the game for which attestations are being counted.\",\"_timestamp\":\"The timestamp to measure attestations from.\"},\"returns\":{\"attestationPower\":\"The amount of attestation power of an account.\"}},\"hasAttestedTo(uint256,uint256,address)\":{\"params\":{\"_account\":\"The address to check the attestation status of.\",\"_gameId\":\"The ID of the game to which the scorecard belongs.\",\"_scorecardId\":\"The ID of the scorecard to query attestations from.\"},\"returns\":{\"_0\":\"A flag indicating if the given account has already attested to the scorecard.\"}},\"initializeGame(uint256,uint256,uint256)\":{\"params\":{\"_attestationGracePeriod\":\"The amount of time that must go by before a scorecard can be ratified.\",\"_attestationStartTime\":\"The amount of time between a scorecard being submitted and attestations to it being enabled, measured in seconds.\"}},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"quorum(uint256)\":{\"details\":\"The quorum is 50% voting weight from all tiers that have been minted from.\",\"returns\":{\"_0\":\"The quorum number of attestations.\"}},\"ratifyScorecardFrom(uint256,(uint256,uint256)[])\":{\"params\":{\"_tierWeights\":\"The weights of each tier in the approved scorecard.\"},\"returns\":{\"scorecardId\":\"The scorecard ID that was ratified.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"scorecardIdOf(address,(uint256,uint256)[])\":{\"params\":{\"_gameDelegate\":\"The address where the game is being played.\",\"_tierWeights\":\"The weights of each tier in the scorecard.\"}},\"stateOf(uint256,uint256)\":{\"params\":{\"_gameId\":\"The ID of the game to get a proposal state of.\",\"_scorecardId\":\"The ID of the proposal to get the state of.\"},\"returns\":{\"_0\":\"The state.\"}},\"submitScorecardFor(uint256,(uint256,uint256)[])\":{\"params\":{\"_tierWeights\":\"The weights of each tier in the scorecard.\"},\"returns\":{\"scorecardId\":\"The scorecard's ID.\"}},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"MAX_ATTESTATION_POWER_TIER()\":{\"notice\":\"The max attestation power each tier has if every token within the tier attestations.\"},\"attestToScorecardFrom(uint256,uint256)\":{\"notice\":\"Attests to a scorecard.\"},\"attestationCountOf(uint256,uint256)\":{\"notice\":\"The number of attestations the given scorecard has.\"},\"attestationGracePeriodOf(uint256)\":{\"notice\":\"The amount of time that must go by before a scorecard can be ratified.\"},\"attestationStartTimeOf(uint256)\":{\"notice\":\"The amount of time between a scorecard being submitted and attestations to it being enabled, measured in seconds.\"},\"controller()\":{\"notice\":\"The controller with which new projects should be deployed.\"},\"defaultAttestationDelegateProposalOf(uint256)\":{\"notice\":\"The latest proposal submitted by the default attestation delegate. _gameId The ID of the game of the default attestation delegate proposal.\"},\"getAttestationWeight(uint256,address,uint48)\":{\"notice\":\"Gets an account's attestation power given a number of tiers to look through.\"},\"hasAttestedTo(uint256,uint256,address)\":{\"notice\":\"A flag indicating if the given account has already attested to the scorecard.\"},\"initializeGame(uint256,uint256,uint256)\":{\"notice\":\"Initializes a game.\"},\"quorum(uint256)\":{\"notice\":\"The number of attestation units that must have participated in a proposal for it to be ratified.\"},\"ratifiedScorecardIdOf(uint256)\":{\"notice\":\"The scorecard that has been ratified. _gameId The ID of the game of the ratified scorecard.\"},\"ratifyScorecardFrom(uint256,(uint256,uint256)[])\":{\"notice\":\"Ratifies a scorecard that has been approved.\"},\"scorecardIdOf(address,(uint256,uint256)[])\":{\"notice\":\"The ID of a scorecard representing the provided tier weights.\"},\"stateOf(uint256,uint256)\":{\"notice\":\"The state of a proposal.\"},\"submitScorecardFor(uint256,(uint256,uint256)[])\":{\"notice\":\"Submits a scorecard to be attested to.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/DefifaGovernor.sol\":\"DefifaGovernor\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":10},\"remappings\":[\"@arbitrum/=node_modules/@arbitrum/\",\"@bananapus/=node_modules/@bananapus/\",\"@chainlink/=node_modules/@chainlink/\",\"@eth-optimism/=node_modules/@eth-optimism/\",\"@offchainlabs/=node_modules/@offchainlabs/\",\"@openzeppelin/=node_modules/@openzeppelin/\",\"@prb/math/=node_modules/@prb/math/\",\"@scroll-tech/=node_modules/@scroll-tech/\",\"@sphinx-labs/contracts/=node_modules/@sphinx-labs/contracts/contracts/foundry/\",\"@uniswap/=node_modules/@uniswap/\",\"@zksync/=node_modules/@zksync/\",\"base64/=lib/base64/\",\"capsules/=lib/capsules/contracts/\",\"ds-test/=lib/forge-std/lib/ds-test/src/\",\"forge-std/=lib/forge-std/src/\",\"hardhat/=node_modules/hardhat/\",\"solady/=node_modules/solady/\",\"solmate/=node_modules/solmate/\",\"typeface/=lib/typeface/contracts/\"],\"viaIR\":true},\"sources\":{\"contracts/DefifaDelegate.sol\":{\"keccak256\":\"0x9104af25cdf7cec73a2982b1a7b54412c67b1cc8dd22f708058854b0d45a8d62\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://898fe89b80d8cac7e63ae634abdee350b1bd757e7a2680b66dc3d3954daa1c4e\",\"dweb:/ipfs/QmPyJskfzv5LvYUsBc3KvjdwhnM4C3kwEWsNQfiBy3R8AA\"]},\"contracts/DefifaGovernor.sol\":{\"keccak256\":\"0xbae4fffcf4c818a42453d7493b48c2dc2291c9a9da60a1def85673eddeed0410\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6f91c3817700214d0d58da5844edf858f6f8a99dbda2a28d33a03552a1a96521\",\"dweb:/ipfs/QmZYawpERx2nXLL7pAqkEPW4Abv73KQxHv4nwWrLtGt6bE\"]},\"contracts/enums/DefifaGamePhase.sol\":{\"keccak256\":\"0xf2486e4e253632ac3d480d7289e759e13c2b652b1293222175801dd89d78791e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a8a6f440d7b58ca7388f122221328d4423136183fb8bdabde4869bbcdcac3d30\",\"dweb:/ipfs/Qmcqs1LXUKLw2FBq5Bs1FSaruwu8dvGRQLVegC44iFjbcj\"]},\"contracts/enums/DefifaScorecardState.sol\":{\"keccak256\":\"0x362e81e2e8fe789b3677d6ac66674932e4e382a18cd227d670f2ca595b03d464\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cb08da9bdb6eb72bf10c68bdc53378aaf769d4ce73c2c9808ddd5a96f364bca\",\"dweb:/ipfs/QmWxGLpKim8aZvMqeSVCKmU9hzka8Jj5xnLkLCASQ1uAQL\"]},\"contracts/interfaces/IDefifaDelegate.sol\":{\"keccak256\":\"0x13473336806a368a7d2a0ec29f47c7f8f219a0a87e44968c2d1c89db23182e16\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://55c2d75dfa15e2b9b74c74e50c19f9af70d4d1a2af0d4a4c8b51185ff94c68fd\",\"dweb:/ipfs/QmeNT8kVjjdzMqWDq3ZVC1bBaQLjgPp69Dip1ZQkcDRh7d\"]},\"contracts/interfaces/IDefifaDeployer.sol\":{\"keccak256\":\"0xabb5ef38a91f365552f374be38ed91ffb0ac8bb07ad63e0286c594ab68901e3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1252a15e4ed1f8a301e7fe189b1a282079379bbbc629fae70205c2b8b5929716\",\"dweb:/ipfs/QmXz5QA46S9hpk3PfXZD5GgCqkcwvCw41S5Ek3Y2CUFeGx\"]},\"contracts/interfaces/IDefifaGamePhaseReporter.sol\":{\"keccak256\":\"0xe3af51c58dcf373de5090be2347a3659c44901bf84881e988029f8338581080a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81fa1a3abc418b613699e5982a44f4eaeadc2e73f8a259f4893591b68343b906\",\"dweb:/ipfs/QmdXNrAEAn312hziK8UKDz9dWRvH88p2HeWoVpod9PkyZ3\"]},\"contracts/interfaces/IDefifaGamePotReporter.sol\":{\"keccak256\":\"0x3034956baed910156222da9df0932008eef5ac6dca7c0e9a06fbf0c82f2d5ae4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5e61e750e0cce0e93a21300a2f7ee0fa01fa1a1191c88ea147be335f1fa427a6\",\"dweb:/ipfs/QmQBXVYJkkPjfFJEMBLJcM3VfrMEGpsr5ZdLWvedryqSDq\"]},\"contracts/interfaces/IDefifaGovernor.sol\":{\"keccak256\":\"0xfa50de33a167cb35ef5b44010effd1f92a9d5b99ddd522e5cf8d29610d5668f1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60e46d719f4d48a80790b0fb489ea96d77f41bab16d53fb83432e0db5f3a4d36\",\"dweb:/ipfs/QmeGuWFtNbq3JsBftV6tdTutgMN1EaJghGXWoThSEmP2P8\"]},\"contracts/structs/DefifaAttestations.sol\":{\"keccak256\":\"0x264dfe3e838db0bfe0e5391e527a18cdd53f3f719507a4fc72d3ffe79e82cddf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6dbb85465bdbc3ec3cf98e50d5b220c8ca0f889d365428fc2cc29145b5e101f9\",\"dweb:/ipfs/QmQcDEmfBdHWVypXXp4Y7uM9EBSbQ5yMc5nvhwVMiaGDJ4\"]},\"contracts/structs/DefifaDelegation.sol\":{\"keccak256\":\"0xc2dd2d049c462e0137ba84dc2b0fa8d9d0139c9d324f1440e9e943f4161b3422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://14f446455bf221717bac8498e1ee8fe386b28aa768628cb4522e718740e1ba46\",\"dweb:/ipfs/QmQziN3zjYUiZ4Cm9BLtDVbNNY7ZbL5HhvTJqpQdwy2uvx\"]},\"contracts/structs/DefifaLaunchProjectData.sol\":{\"keccak256\":\"0x03bf07a53ea50ea66bb59f86b528ca3985e0020da3fa25cbcbf41962e11f3f13\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://31f349045f659bbef47223703d90a1bb0e45b284e52d703112c944d2ad40dc32\",\"dweb:/ipfs/QmcKkYDiM3AvpMzaYfyvK2BnMDem95dmev4VsN2kTNGCN3\"]},\"contracts/structs/DefifaOpsData.sol\":{\"keccak256\":\"0x7830dc81c4ae943c81f5e628696cc31f2ff5fa2507e5a01b180c8d5ac2c20d44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1680c66ef1b131483d4189e40b890a6122d34faff4b4add676d9cf5144f47067\",\"dweb:/ipfs/QmRWhSHjtRfU8LhkJaCr3fTCJAZpQenThq9vL7EoWbRhqG\"]},\"contracts/structs/DefifaScorecard.sol\":{\"keccak256\":\"0xd68ebd2618854d1d7b1abd8950e99ddd5c74e71f450574a003244c1ebf03c97a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5bd0ec917cf337c45a0309ddde098716be5a84c5715fda841b69e917352509a3\",\"dweb:/ipfs/QmXHC4TCKmBXFjps38UzpRyLEVKDTfBMwq5JduQPdGRGL9\"]},\"contracts/structs/DefifaTierCashOutWeight.sol\":{\"keccak256\":\"0x887924246fed02168924efd07cba0beaa261de1962a3065674665ef4fbd7c1f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5477867a360e1c898b34630330645dd5f6f3d07052b7c75c3b8a4677f97bc075\",\"dweb:/ipfs/Qmc43QdoNqUSriku1Lin31HHXXxmdV9WHyYFdCApNfn5fa\"]},\"contracts/structs/DefifaTierParams.sol\":{\"keccak256\":\"0x24ac4b77b88338fb91b39f7bfc25ad55e27843bc12d37ff9db70ecf13f537219\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://261fe2a691cbb1c42fbbe3d5ac2f79e43f70fcc6b739045de01b86bae513bc9a\",\"dweb:/ipfs/QmfJGPbQYYn5Ehg9zccHWir4LCn2FfCBhTdoa5AkRHEYAm\"]},\"node_modules/@bananapus/721-hook-v5/src/JB721TiersHook.sol\":{\"keccak256\":\"0x286e699f4ca81ea84217bbdcc4e4efa426ba9cc5d0886719232dd4d2e604a1b6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://adf31e0beae7d3381a1a841786e2f78dee5b73084ba030c345440b11d8aa0b67\",\"dweb:/ipfs/QmNmXeaVoTrQ9hSMXMZ1r7vvemDpB8FAbdfxPfXqWrj4SE\"]},\"node_modules/@bananapus/721-hook-v5/src/abstract/ERC721.sol\":{\"keccak256\":\"0xee3758d50043b58a173dada85fb33a0a2b4a9f8e57e11a213d0f1d021cd2ffc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f9b8cbac216d14a83dcc54fee0e660e8131afee94a21ec0c0af5dd7853692bb1\",\"dweb:/ipfs/QmRU67EeBHtqE7osaBd286poaTDjS7cAVMwt6UXdBBDRGP\"]},\"node_modules/@bananapus/721-hook-v5/src/abstract/JB721Hook.sol\":{\"keccak256\":\"0x3de2a2a70ce211879e6f49e3032a6630b5c56589ff222410c1e375c3ba34e87c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d9e944468f255e8cafa01b485e9eb8e8abfa2cd28462a9013547000c5484272a\",\"dweb:/ipfs/QmfKDiSgxW7Miq4jwFqeJEtFLLUTYgTEEGirwtNBKMGaUi\"]},\"node_modules/@bananapus/721-hook-v5/src/interfaces/IJB721Hook.sol\":{\"keccak256\":\"0x1e7b684c86c0f44b0b680c7aba9e511c89892bc0638424722920368911a087f2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96995e70a8f15d5600b509ad689c8f2ea6f8116cc7cce9c529b7a41c12c854dc\",\"dweb:/ipfs/QmaAARj3BDSQNsPwkFxauDpWBNgb4kYdzo19tUNdBbc6cX\"]},\"node_modules/@bananapus/721-hook-v5/src/interfaces/IJB721TiersHook.sol\":{\"keccak256\":\"0x107f91c5a0674717684d75e0c71106dd1d2937c0089366c7bb555be7fffdd6b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3ce29d75e454845d0636e671c60c7a691e4a77d1c88fe17dbc435945890465b1\",\"dweb:/ipfs/QmewJn8HeiqKggWA8scLUbwv1TMiit8Va8A5A3K7N9Euss\"]},\"node_modules/@bananapus/721-hook-v5/src/interfaces/IJB721TiersHookStore.sol\":{\"keccak256\":\"0x01d419bf6b9dce2ab162f8aac82f0e4a6d948f53819a42ed023e8f23e358c9c2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0e0b14b2ae2032bd256614522078cf0f831c35d1f64d1ea2050227117d08c060\",\"dweb:/ipfs/QmP1xbw5597GDvNVgT5Te6w8LBqeXHq4x6HeXYmqLqw2RC\"]},\"node_modules/@bananapus/721-hook-v5/src/interfaces/IJB721TokenUriResolver.sol\":{\"keccak256\":\"0xfa599167098f4459320ec4141a98a17b2dfffbce422baa27d8b4e4530f61ece1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b758b161f4c7b520b2c34b4d91e585e961b8f4ca278eebb91d791f7f2f45140\",\"dweb:/ipfs/QmcD9DF7NJ9QykQpT4KPzm4bs3fkjzukdAUWwdU6Atfw85\"]},\"node_modules/@bananapus/721-hook-v5/src/libraries/JB721TiersRulesetMetadataResolver.sol\":{\"keccak256\":\"0xe1e224860fce816c0566c4b22044eb2f5a767a09764d00482b954733bf18e51e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://043663de2a9c7e822e947e0b68833e77985d493bebcb48f86bf1b67f937417fc\",\"dweb:/ipfs/QmXVXPdpLfmT2a97gUQ5d2XSsHXhgpiTfs7w2ZtoD55uAd\"]},\"node_modules/@bananapus/721-hook-v5/src/libraries/JBIpfsDecoder.sol\":{\"keccak256\":\"0xb93ba562ac1fc9d3829be00e61f3a90f51df5661cf0f2c819a7f1d8ba19ec171\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc9bc948fac8897d9720ef25b13d63c60b40a18aa1897dd1c657fc278c416b4f\",\"dweb:/ipfs/QmNtiJTALZW5zfyKVy7XG5GkqGgMrfkVvU4Auu4bb9cGQc\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721InitTiersConfig.sol\":{\"keccak256\":\"0xfe7147d09467fd8f9b755d2a1485f22bb4a8797acd0e97623258498ddac2e441\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9ee21464af9e6c78f580c6920757017cdfbd276728773338a67660fedfea0fd2\",\"dweb:/ipfs/QmVYviC7uQ7rEvdpzD6U4BN19P5f8uMuC7jWffzQWvuFcu\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721Tier.sol\":{\"keccak256\":\"0x99232aa73d5715977332dc7c93b03552a93259e59ae00e86b4ddc200f06adaf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://721c0cf10a29fa11677718faafb3a2ecfcb4fbe4e1c09e70a7fac681c80fcc94\",\"dweb:/ipfs/QmSUR77E9PqnpB5kBcKNz2CGBjG9XL9FH57RWVYu3Q7GMR\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TierConfig.sol\":{\"keccak256\":\"0x86e54a0de4deab9d105bf276586aebe256188b193e83eb7a6f6f93e4a29ae9c5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04bfcc07d452c26dfc50d3a5eb62df4b3b81e063defd752e0aa5ed049a78eef4\",\"dweb:/ipfs/QmWd5nJHUvZPHxJXkrYCboXaqdtiWWkQG26sNM6qkJuAgD\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TiersHookFlags.sol\":{\"keccak256\":\"0x283d8429f31bd58875c056515aa42abd09c95362bd929e85cfc44a0d92585766\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9a580b89fe99d9f8e930c58a4d0d63a5ff7c01c79d210af01373d066c9e72ed6\",\"dweb:/ipfs/QmdY1eSGSoTjv4KSdsG4Tm5CzJN6iqk3qTRga5ZWNbejRz\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TiersMintReservesConfig.sol\":{\"keccak256\":\"0x86fe586a05e6d4bc6fab9b68996a7f4b74c5362ca6f24b9d8057ed7e4cd1c5ac\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0915f17d1f958ab1fe6b214d99ed62f1f858684898c803f1a8a6a557472dd140\",\"dweb:/ipfs/QmUhdnSV8UzkgvbtkYEKHrpyDEmc2aJxW5HQ1gucuxxu5A\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TiersRulesetMetadata.sol\":{\"keccak256\":\"0x6720a6ada2a882f99afa050e40b6c925439da4339240565a0e706521b3aadc6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ede4a3165276d9d89eeea2dfd56f68d77dbfaedb738b30c8a0faa81c3a153b1b\",\"dweb:/ipfs/QmXa4QCb6K9MXxwNKed17VWeX9crKeMjkQnVk2xMARzh76\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JB721TiersSetDiscountPercentConfig.sol\":{\"keccak256\":\"0x4672eacb6b0cda5e6f5f72ddb91463c52fb90b4df421053e3b40024f19a59954\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9d8e3a0b35d6b2a6ec66527594263400189b6c766bfd6943c83704380a989aec\",\"dweb:/ipfs/QmUE7NhFWsxjFRzTuRyHJ7oRx3JXD9CnG83t29PjGAhwPR\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JBLaunchProjectConfig.sol\":{\"keccak256\":\"0xf671b41a02209c38171be1c390b247ddd0e4424e3c032b1b898ac519bfd87932\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81f9d439880dc0f498cb6b66d742739dfe10f8bc97532f39eb0f5c7df75c4ab0\",\"dweb:/ipfs/QmYY4jj1SxgrFhQHpKFwmv7qmb2cpnSeDcpPCobAFXgzmX\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JBPayDataHookRulesetConfig.sol\":{\"keccak256\":\"0xb8c9b727af33c31e5de91f3fe276aa52abcad3ea2aa010a0652a5ba532d805ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://500635eaafbf6c37a5f51ca36618b04e87fae5e59030d7d2b20d9eb989e4c17d\",\"dweb:/ipfs/QmcPa3aczMHMpQEt4aQLzXyVLk4buCuRwtfpczSWMeYMnG\"]},\"node_modules/@bananapus/721-hook-v5/src/structs/JBPayDataHookRulesetMetadata.sol\":{\"keccak256\":\"0x8e96cc925255913471645456563fabf7183782a1266b64322e3a96c241af1089\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://925d629f24110f98f97296eecbb4241048296088f7326fc459b330aeb45b3f0e\",\"dweb:/ipfs/QmbtCnFCTACsufCvV4CTDhNzW1bF1miHpA9ZC6nV5XCK4v\"]},\"node_modules/@bananapus/address-registry-v5/src/interfaces/IJBAddressRegistry.sol\":{\"keccak256\":\"0x984b1f4a0301ee5a5fe44d6d228aa0a60161e0ff69509ef3d5f829c4b154e423\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c1e46de177797b8585c8030377f470ac6737ddf3496f0a3a6b16e01ad7712dab\",\"dweb:/ipfs/QmW771SQMskbmJG9GHJPMhzJGTFpU3JVj2YxFtLSaAb3Xk\"]},\"node_modules/@bananapus/core-v5/src/abstract/JBPermissioned.sol\":{\"keccak256\":\"0xbaaa61c6aa043522617d3c1a86960c23b9978ee2a6c9d593b00beeeb6ce64423\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://09beed8608e02ce9dbf28814309aaf62c9eec67e0701a26113bdbb4cbae56c42\",\"dweb:/ipfs/QmZrHFnpjX9uBzbFrSjqQgQBkvpJ1ZyvjtT9RfneNGv32S\"]},\"node_modules/@bananapus/core-v5/src/enums/JBApprovalStatus.sol\":{\"keccak256\":\"0x61c69b6bac7d24b566d87cda23a77e4ca9cdb87200b106aba8534cb9a0973e33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a9ca7249de76f77a8252eefe6bd1b63d47952f25a2acfa2c8db967cdff4470c\",\"dweb:/ipfs/QmaxSxptRQNj8bNy96EreENmrnRWdKmhyihBcxyWzBX5BN\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBCashOutHook.sol\":{\"keccak256\":\"0x6c516b030f55065eb169d666d11dbd82c4a0b8cea7782ebc5e79433cade38670\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fa0659eb08477176f130ccaf387d4bde71f0ecca2b24f61124d225f2f50397a3\",\"dweb:/ipfs/QmRNBRGhdGpLQLkC4wK4VrgNEw4EdSiJ4ZZJfiJU4aNt2L\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBController.sol\":{\"keccak256\":\"0xc903b660dccd57e610e1d834407b2bead1fc456153e106f2582407e505a39a96\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://624bb32a7cd93ce056ea2705332821abd9cd7c83f419bbb279ad96e47c2b6013\",\"dweb:/ipfs/QmXKmQAGecR2zYAXMZ54erg5QnYoWNue4Ek3jCJCUyfW7q\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBDirectory.sol\":{\"keccak256\":\"0xcb97db460d2948a7f51c660fe0d1b1749047a419027711c476b86ad3573534c5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a909c7a3d471054537894dca827e6e018e92ac25299b43026e5b1e335ec4de68\",\"dweb:/ipfs/QmU1GT3F8PNMjSiPPP5cSLLofefHYFJXnywMCdqqM9xUeh\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBDirectoryAccessControl.sol\":{\"keccak256\":\"0x1ea768919979d9f625920c05a5e633739febc822ce14b1e4724d739b19c10fb8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7c5391a510bd610a97978245b7306d8d21c79d7c45c15f590ba9b603ea751154\",\"dweb:/ipfs/QmPSJvVWswqzv3bVq422UhA2BybMsiHoYFWGPp5Jh6Xs6a\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBFundAccessLimits.sol\":{\"keccak256\":\"0xfd8ea4cffd289e7fef6e53b5c8983eb6b941de306517f40c047048d3a8a2ca08\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2765cdee206f8b1b53874448e2481db001cd3706753190cfc9381318c7a7c41c\",\"dweb:/ipfs/QmQ5UYSadtzrb7BcTR93KnAYKXawdyDUG5HjjASV1zbys5\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPayHook.sol\":{\"keccak256\":\"0x9438866782c652c2942f4d114e35f393cd3c8b0334abce8387eed90bca35e8b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cfd99daf57213f92325aad7d7d16e98476d38e870470e95ba01e3ae3cdecc95d\",\"dweb:/ipfs/QmUKKAVGf7ki8BHksr99tFcRW8APveeB5tNH63ctTbbCW8\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPermissioned.sol\":{\"keccak256\":\"0x5b038d4dee116584e88b230920e56d48e135053e3f7e5642eaea14a775c1dad7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://19e43102f349fd4a1da1c0943ffb8f2950007fe4bb4bb7e8f74fc142575d091b\",\"dweb:/ipfs/QmXHAt4KzDTdDZgDDefEXH2WKi7NcfkJb9R7nxW5uDqsNp\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPermissions.sol\":{\"keccak256\":\"0x49d2b91a866004af098a6770b28040071885b048b4b50744b12a1e5b212c5e5e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://089b4dda50be91412ffe1fbe333f78cc894f073c1a7afe469f10a2cee12fbf9e\",\"dweb:/ipfs/QmYPPBZ6HwBa1RNkNGqGcR2xgj4fnWBzrPHHoJG3kZA6AN\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPriceFeed.sol\":{\"keccak256\":\"0x4bd84c0f1a5d4729ed709bcddd43f4c50ec4a165ece79780af8dce482ed07d4a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://62bac4bfb6982fb002f620c77e5c445e62d50241a5aa64a07e51d929f5a42180\",\"dweb:/ipfs/QmWgJUDreVY2BuMX38a1iUUR5kNbMwGnKG3VvurB7oZtuM\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBPrices.sol\":{\"keccak256\":\"0xb4d5244daa52aafab0c9b8806b7f973afa6a3b298add5966d586d27b78424cfb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a819f74455aaa4f679ded378424702f3992608a640d7f943b19938eb4ff711da\",\"dweb:/ipfs/QmSMGvVTsMW3L5YSUyXTKoEsgNpGEutnq4frEZHuDdeDvz\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBProjectUriRegistry.sol\":{\"keccak256\":\"0xc9ab647179d7d0c857fdd881d6ce96f06254739440ed08e85a1c2042218f7c7d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8529368f30c98c8d5a69acdbe4ac79e3eeb4afa5a9cd278325c5f2184ef3d50f\",\"dweb:/ipfs/QmfUaozYiAGt1UwBDUEZvon1tEBS5sLPzqpN9dNdjQotPN\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBProjects.sol\":{\"keccak256\":\"0x4ae42a9cc29b517b26d2b9b635deb82c16696b777deeca92dfcad33b0f81c0a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1dcbd860e7d7f05232d90c5e9cfd3d01e2ce986ffcdb053473d8a4d387b1a48a\",\"dweb:/ipfs/QmWKWoSJJbVWDumbnzXJBJyXmAacgC97bxMtchh8te41bn\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBRulesetApprovalHook.sol\":{\"keccak256\":\"0x5f0dc5968277b572ba5dc74518906dfb33a9684b7a199c7843f4e66af1c11fb9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://323ce3731aebdf5bf8055b8550055e856feed700d293af8beaf8a750625a0975\",\"dweb:/ipfs/QmU2ErV2uzvXnsJt1qBKm73H2qWcEqYtQGHtZEpx93DaWJ\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBRulesetDataHook.sol\":{\"keccak256\":\"0x45a88aa9f26512f7fc3deff6d00be9a292fc07a76c8311f175249400e83d1837\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1e88b996c3a05f87f7391ebcb9cd6d46c6ce8768083945f26a98c4ac4509e64c\",\"dweb:/ipfs/QmbpuYi6mYV8K8qrh8syWvbPc34pFrXG6QeC23m4MsX3r9\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBRulesets.sol\":{\"keccak256\":\"0xf287c7a4a162cd58084ed10ee5f9f31c992addff0ce2f2ac7e810cc393546f30\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c851b72de52c3ceb73c6b1849ad0cc7c0832fd126ee52cc838a163ab6d3055b8\",\"dweb:/ipfs/Qmbv6k6pSeNMwZoTUKzDNb18DMGR8DboRMrYQBydATuVZw\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBSplitHook.sol\":{\"keccak256\":\"0xeb8dfac7a4b81897a1c3b5d0d853a406bcff33720fb187d5ca5bb3dcc0ba3a12\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36aaeef6107cfe5b0127e063ea215aac7200f8af02e28a48e61111abd3254688\",\"dweb:/ipfs/QmQ8yQANXnhQCAWBGKsKCDsJ3A8hnTKNg5tyo79GfWXTcV\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBSplits.sol\":{\"keccak256\":\"0x424e6d1189b9ba7a5d441e7675ae09ff893c13c62b9ddde4dd6bc2690e96c6f3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7e30ed7ab1daf20ff324aacfef7150a243b5db496eceaf032c7012ccb3c4227d\",\"dweb:/ipfs/QmRj5EZKmDjJy8tpvKbpz8vPSKHR5C9Q5ENe7oSLij4H8M\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBTerminal.sol\":{\"keccak256\":\"0x5a4c0ef6c8fd10069a408cc42a862909f7b47aba46327da5003203508d8f17d9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://09d8854151c21046b6b939189ad2139c669888e6baf47034a0cb754104d1efe6\",\"dweb:/ipfs/QmaMrxnf6K6znvDBwdAqsw5x6yuR4SY1BdNtyz226siAt5\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBToken.sol\":{\"keccak256\":\"0xc2c0a75d97e3a20fd6964b09381736de03f56e58c27a874a0c96a21e02d0e577\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6ef8d476174aca6c35f7fb24ff8be619191bfd22038d3729ca4803252d3dae6a\",\"dweb:/ipfs/QmdWtAwf2A4P88of9gUyWY6hodT9fqpxJK4NBVQt9ys2Jd\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBTokenUriResolver.sol\":{\"keccak256\":\"0xfa5cb00dcd6085d1ef912d071fe73c63f9478a2cd0f9d8bddaf659b6af2d0967\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://282e4e7c342d65f77cde0e9a08fcaf20ef5cf379c7a48b639842c0ffd0b2afb8\",\"dweb:/ipfs/QmbnN3PEQeZaXdPLT75V1J79kMg7KqSMru37RHrL3z8Yf2\"]},\"node_modules/@bananapus/core-v5/src/interfaces/IJBTokens.sol\":{\"keccak256\":\"0xe3f0cca072afcac9ee3c875b7439a6edb4a9276e9dba01184d11e8270a25f258\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bc3e437b8588965b911a750dc632ac1aca4f9348a137877047a62df598a17bc7\",\"dweb:/ipfs/QmdXjVMdCFcw8HFbhxZZbj9KzxNx2ThjVfcDhFBt1khfvL\"]},\"node_modules/@bananapus/core-v5/src/libraries/JBConstants.sol\":{\"keccak256\":\"0x4dd0f809f1f10cf961e85632e5f3ea5e49716b104a0e8bc4d8ccc2081e9d007a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://09432ec01de81f7c295579fa3176610776cb186fba4c50d799108a18f14e5cc6\",\"dweb:/ipfs/QmS52c525xJui5u1xoY76PTq2n1pvnUzThBK38A1fsWdLp\"]},\"node_modules/@bananapus/core-v5/src/libraries/JBMetadataResolver.sol\":{\"keccak256\":\"0x52402cc945b1a23d0560a2a9c93a11271ce0ab18e592a4d78fc449a8b417526d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://912b5056f5768b14f26e4e2a754b90ce631a1f4898af6883f6d1e4a1f4ce87c8\",\"dweb:/ipfs/QmdnGcjTQtxscD1QDTERN2xqVA6iJnLCkfq1vWSUmDYYtX\"]},\"node_modules/@bananapus/core-v5/src/libraries/JBRulesetMetadataResolver.sol\":{\"keccak256\":\"0x3ed84aa51ce7ee94c65c507bb6f209fef4ae89c7446a2ed841602a235afcf43d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cbeb6faae79112f85366ee53ad5c65f41a68f799912a5f09b0d6a49f8d9df647\",\"dweb:/ipfs/QmdEyZ6QF5q9UHMwbxWA9RrFwtL5iYHRydCAnHdKqqukDB\"]},\"node_modules/@bananapus/core-v5/src/structs/JBAccountingContext.sol\":{\"keccak256\":\"0x9c47e048a719f784f601df69a583505432217b9868a0244876d277f84dd1ebdf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8565f194b87914da9a02af2e760ae2ed2a9d185c6f11229f7035140776d2fec9\",\"dweb:/ipfs/QmPs2fic8W3F5e5zNRwmGmJFjb3JWGPWJ3YUe5o82nQgEn\"]},\"node_modules/@bananapus/core-v5/src/structs/JBAfterCashOutRecordedContext.sol\":{\"keccak256\":\"0xa1acdb1a5670f66f730e71f8eff120766b6f5c934e6cd699c7f1a7cc93adf658\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9c7655c9c42b30132688b395251748c809c334370ee584cb9bac46e1fb8f162\",\"dweb:/ipfs/QmbMV1wg1Fm236HaA6nnMSvRkzeYCKPRhMYDbqkAxieY7x\"]},\"node_modules/@bananapus/core-v5/src/structs/JBAfterPayRecordedContext.sol\":{\"keccak256\":\"0x3bfc01ae9944a0ff5c41125e18ebb8efca58d7aa4e471d2ffa6d8588afb689ab\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://beb21399142d9b89539cfc8aa94119bc106bd1ea847b922d4c78f3f8804a5cba\",\"dweb:/ipfs/QmXDwJXrzCb6zh1KYwVdN2PEY86uK62MTfYF1M2MBtbEP7\"]},\"node_modules/@bananapus/core-v5/src/structs/JBBeforeCashOutRecordedContext.sol\":{\"keccak256\":\"0x7b2119f3e0725becc552ed5dcfa51683960a8772550c95ac5e2f75240ced367c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://03369dd07a9126ce453d83ac409919326f0aaa48ff9eac5c703092b3824d79c9\",\"dweb:/ipfs/Qmc1QKw6FfmeBD372RnDyeW27QyzEUjMX5up5rk8SHRYGa\"]},\"node_modules/@bananapus/core-v5/src/structs/JBBeforePayRecordedContext.sol\":{\"keccak256\":\"0xbc98b968d84be2f0ddbb24240723c7179ec9c5e02e5fbd5843dd0e76623a3ea5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1310e522696a9fc6f7f96b04c293fab3b4cf1e722bdbb7aa1eec7b3ecc25402f\",\"dweb:/ipfs/QmTYiijDJRuQcMhLrmpbHzHAQFPq6jurPP5HjyYtnzbpnK\"]},\"node_modules/@bananapus/core-v5/src/structs/JBCashOutHookSpecification.sol\":{\"keccak256\":\"0x67a6e781019979e626eaa81d84a800b2656603c23ae455e15d0fa1a6f03c1736\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43ce54447dda62d449a1e3575a9e4cb9c5a2adb41b45423dcefeb7d9afe8336\",\"dweb:/ipfs/QmW77REnQcvsfv4gwTLj2CyynmaGC3a6om7zCFWmERhrPY\"]},\"node_modules/@bananapus/core-v5/src/structs/JBCurrencyAmount.sol\":{\"keccak256\":\"0x7f321bbcbd13abfbc8f0d08a5adaaf8ef312db5bb899012fcffb6170fbb962a9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf9301ef1dbb3abda7b492585377617508ba048c6170f21a5e7d2b3c034eb384\",\"dweb:/ipfs/QmcetEFxSYLLNSZzPBpNn3Fc8sFcrFE8A8h12ZSj2tLgxD\"]},\"node_modules/@bananapus/core-v5/src/structs/JBFundAccessLimitGroup.sol\":{\"keccak256\":\"0x9fdaa8d017b72da25f583700a444a86849df053f7fb8eac874ec5139bcf651e5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c8e44c49ee444a98424a0dbeb6897a76a0bf00d88a613f62ac2012afdac754ee\",\"dweb:/ipfs/QmdYkAiRi5bXM1YYNkc7BiqimHSFodMGn1cjHR5hcpm4xH\"]},\"node_modules/@bananapus/core-v5/src/structs/JBPayHookSpecification.sol\":{\"keccak256\":\"0x955f0bfca97300b9e5927dc181753830ee362f83fa9ca32a90daade32aa0cfd5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f517af1597c7c40f8d3da53f7a6684a3e162950a16559d6bf6ea3b727bb11546\",\"dweb:/ipfs/QmRWo2ZTYXmVZTzNJDYhsJNsEaHphjpUfx9eNz2cciyz86\"]},\"node_modules/@bananapus/core-v5/src/structs/JBPermissionsData.sol\":{\"keccak256\":\"0x65e26b78a1f00d81a21abd255c9670b600efca60cf36a993b8f48ecb268464a4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d108c721c4281b13de34641befd2a1e9fac73a70195ef5ca957abda6fca9acca\",\"dweb:/ipfs/QmWoJo7wzSKY3z4YCpFvR8DoCUTKviiuFEj2tBkcgKUqW1\"]},\"node_modules/@bananapus/core-v5/src/structs/JBRuleset.sol\":{\"keccak256\":\"0x2d1f0a8457e94addae51a8222b1837e372847624fde96bb3178e7aee52ab2b24\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bbb1478e8f5d1c20f981e5a0d5e526d002add1e05ddced87ccd45543ed00c9e4\",\"dweb:/ipfs/QmZkgaYdwkbnvW2MGwVe9FeHjac8XyZTP1YZcWUApiGZgE\"]},\"node_modules/@bananapus/core-v5/src/structs/JBRulesetConfig.sol\":{\"keccak256\":\"0xeba54f25ad84b9c6009f62ded187b58f97e0822e9b19ab0986aee6603ca5400a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a51743febf78f2ede92d32a2b18c3c5f06f02c413c2d01f28dc296840b068ef\",\"dweb:/ipfs/QmVSRDtB7xUgaLGW5tSJr7PhW5XPxkWg226Sk2g75qWpxh\"]},\"node_modules/@bananapus/core-v5/src/structs/JBRulesetMetadata.sol\":{\"keccak256\":\"0x318f0b75275c3822df53a02e98782c9e98e7961116f2ad66a528c6adcd14c946\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d60f62390e43d182bfe875d1ac57e9de10426d81038ba7d8c3727b22392299e2\",\"dweb:/ipfs/QmUtE6fcP25wEhVJNEbrPHyFPkg5hp2PFf5xcwBeHPmNAf\"]},\"node_modules/@bananapus/core-v5/src/structs/JBRulesetWithMetadata.sol\":{\"keccak256\":\"0x1bcfadf20488f6df65227f8d4d0fbf9b7539456a2389567f7fe3900d23289bc3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a15c399a71e5373f8c0484c6d6b83521eda31e063a2c53e4c5cec4e74550343\",\"dweb:/ipfs/QmQwi8zkjoTVXbK89NeETYimWCacTrNsesJdpLSvGdqMPX\"]},\"node_modules/@bananapus/core-v5/src/structs/JBSplit.sol\":{\"keccak256\":\"0xfcedbb8b6937ee00578a4c3ec70e2555a2c0a5c18f1eba3b96701b07c1dd94a4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7014a7b6f30f35941898eea1d9d32a2d75c807f59e2f0fcb430efc8c25edc1da\",\"dweb:/ipfs/QmWitPTxQCDUfoWrRRrYvE9YhuTcwCAXxVvkVLNk9Jsem1\"]},\"node_modules/@bananapus/core-v5/src/structs/JBSplitGroup.sol\":{\"keccak256\":\"0x8dc98fa9e730bee8bcc0a8acf1bc4db1c9b0edf307d969c9c9caa4d6b8d856d9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66f4306e0e69c82033927952564fd617e7c4b29aa8b165d5b53a0ebe3109ea12\",\"dweb:/ipfs/QmQqN1u7FHAdEtEZNRcKvZwYtXEQVQnLd6FMzHESP7wDtx\"]},\"node_modules/@bananapus/core-v5/src/structs/JBSplitHookContext.sol\":{\"keccak256\":\"0x1cef82bf434f91d518092ea7e57db4a72ce7654f48a7db9bf44882900b6b6623\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cc5012008ab7e74cf766fe1c202a23e3a73365356bcf1e0b04ec01baf21b204b\",\"dweb:/ipfs/QmSwJvd6Yrg9XZMhjquBcak5sfUswbR5nPEuJBfpjM54VT\"]},\"node_modules/@bananapus/core-v5/src/structs/JBTerminalConfig.sol\":{\"keccak256\":\"0x9e31505080d3754b6d7db96095b0545930ef6dbc035b91fcc32fdc76a0e7c2a5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f7702ab33a1b713c37e5397a55d8ef089289f4da8034cfe9622cbc69a98c47de\",\"dweb:/ipfs/QmXyiXps4aJyiM7vtDC373QUoqwB4DMETaZzC5cZPJKaAK\"]},\"node_modules/@bananapus/core-v5/src/structs/JBTokenAmount.sol\":{\"keccak256\":\"0xc61593d33d5ec30e695d382948a1b944d01e29a8f2bfd29f75ecebcdbc7816de\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8992c1e5fca0c2342ecc0e734dfba6a2a752e4c29184784931d0971e44305051\",\"dweb:/ipfs/QmYNcaW3qeCkgAExUaFTq238fgfJuoYCTwjCn7jm94U4dJ\"]},\"node_modules/@bananapus/ownable-v5/src/JBOwnable.sol\":{\"keccak256\":\"0xad1f9fcc7cfa404a6c20b0eafbc71a2c90a4a3f9aebeaa4b2cab63355892ed30\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd0ef227f070c6c68c998c711e70e61850eabe789a026e34f11e8e0d506739a6\",\"dweb:/ipfs/QmPeZXX7Lq8Q3jHSMvQR5W6UprCy5z5BPY8tz6KXEt4a5S\"]},\"node_modules/@bananapus/ownable-v5/src/JBOwnableOverrides.sol\":{\"keccak256\":\"0x3ccb51dfe5ea52398b63013dba97552f5b1a443bc6df8713458ee5ce75230bd0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd2985c7e5783482a64b774d3be8bcf6736c5e754ffd4c0baa3647fb0ff53b69\",\"dweb:/ipfs/QmfEYE8EXGPbvNcWZj4H4DX2HLxscYcFSckpAGwttt4SRS\"]},\"node_modules/@bananapus/ownable-v5/src/interfaces/IJBOwnable.sol\":{\"keccak256\":\"0xa94807eab5362c523d403a10902db431753b9b1e4b73259d4d7e217fc6cdf766\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d5cd284927df617997d055dfaa5f17b9c22c5ce678b9c87b627d14aaa87fa8d2\",\"dweb:/ipfs/Qma1M9MV1FFsaPF5oAMDL7KdidFzCjZ6EZ8mdLo9MXkgxa\"]},\"node_modules/@bananapus/ownable-v5/src/structs/JBOwner.sol\":{\"keccak256\":\"0x535d669344addf9ce4a62320960699ae8c47b4a615327a1cb32590b4e046c069\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://64e228cc198dafde001eb65092eebf6e99f91420b993deb9c5dc8204cf2469ce\",\"dweb:/ipfs/QmWpKRsMt3SwToaVyNjF6ZJZaL3Kz2QDfee8BBN2FExV3i\"]},\"node_modules/@bananapus/permission-ids-v5/src/JBPermissionIds.sol\":{\"keccak256\":\"0x03d598c570091f294bebe9c7b59bfc2d907d5b70a3193c3bdb9ddec67edae1e0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://afb1aefda01e53fa79441bab1fa9cb46154e0db9d16bec8f9b7fa80d200916db\",\"dweb:/ipfs/Qmbkt9HgWmz5rgehRttkzFqW9SkwRYvXYqtHmuxHVxz8ZD\"]},\"node_modules/@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"node_modules/@openzeppelin/contracts/interfaces/IERC2981.sol\":{\"keccak256\":\"0xafab0e6c71905303c47dd254168cb31efc91f0ae284cde609b0202f97f85469e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://824d05aec56eb82a2a3c28eece530dc0792d3a008b09d01444e57cf4aceb0445\",\"dweb:/ipfs/QmVvqmJ5UobuRU9Q4JMyXxBfzKs2cpjbWXMNpxX4binTX8\"]},\"node_modules/@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]},\"node_modules/@openzeppelin/contracts/metatx/ERC2771Context.sol\":{\"keccak256\":\"0x345acfb731203002ef98916d5a222339709db0ad44dc4a389e7f1ce4088ce59b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e1dcd7e6c8ca2b402e232d2e44666c282a894c475bca15532464a47513222e5d\",\"dweb:/ipfs/QmbfGjwHHCUxHtkCECoisxr7JDiZXSFtrHNizwwKzNNSHJ\"]},\"node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"node_modules/@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"node_modules/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"node_modules/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"node_modules/@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x6d0ae6e206645341fd122d278c2cb643dea260c190531f2f3f6a0426e77b00c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://032d1201d839435be2c85b72e33206b3ea980c569d6ebf7fa57d811ab580a82f\",\"dweb:/ipfs/QmeqQjAtMvdZT2tG7zm39itcRJkuwu8AEReK6WRnLJ18DD\"]},\"node_modules/@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"node_modules/@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"node_modules/@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"node_modules/@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0xad148d59f05165f9217d0a9e1ac8f772abb02ea6aaad8a756315c532bf79f9f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15e3599867c2182f5831e9268b274b2ef2047825837df6b4d81c9e89254b093e\",\"dweb:/ipfs/QmZbL7XAYr5RmaNaooPgZRmcDXaudfsYQfYD9y5iAECvpS\"]},\"node_modules/@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"node_modules/@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"node_modules/@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"node_modules/@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"node_modules/@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"node_modules/@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0xe32a5a466492f6a3b871d705d045fc2f8d6e6c8bf69288011531ff875003993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://61c69a907ca80a9cff4bdf30f64d5ee458a6c54f0a87ed7e4c2a1b9275256851\",\"dweb:/ipfs/QmVmhbvE7w5Hs9tj9NBPLk6yAirrEhaRYgTRT9USat4H9a\"]},\"node_modules/@prb/math/src/Common.sol\":{\"keccak256\":\"0x8225a3898d2f11f585da1fb82234800e9717fa080dbe53d450fd429a3a632e99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2dcbf39ca575f68f32f0d1c66391de94082424956e7585e849813966f8c0fc05\",\"dweb:/ipfs/QmYvk8vXFDUJHrmqbtutYXfoLomLBosYLyBzuPoYBxsQ42\"]}},\"version\":1}",
1539
+ "gitCommit": "3a67a4be13dc6b55c180f742360322bf61e62087",
1540
+ "history": []
1541
+ }
1542
+ ]
1543
+ }