@lodestar/types 1.43.0-dev.2870b59b6a → 1.43.0-dev.35940ffd61

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.
@@ -1,4 +1,4 @@
1
- import { BitVectorType, ContainerType, ListBasicType, ListCompositeType, VectorCompositeType } from "@chainsafe/ssz";
1
+ import { BitVectorType, ByteListType, ContainerType, ListBasicType, ListCompositeType, VectorBasicType, VectorCompositeType } from "@chainsafe/ssz";
2
2
  export declare const Builder: ContainerType<{
3
3
  pubkey: import("@chainsafe/ssz").ByteVectorType;
4
4
  version: import("@chainsafe/ssz").UintNumberType;
@@ -20,6 +20,8 @@ export declare const BuilderPendingPayment: ContainerType<{
20
20
  builderIndex: import("@chainsafe/ssz").UintNumberType;
21
21
  }>;
22
22
  }>;
23
+ export declare const PayloadTimelinessCommittee: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
24
+ export declare const PtcWindow: VectorCompositeType<VectorBasicType<import("@chainsafe/ssz").UintNumberType>>;
23
25
  export declare const PayloadAttestationData: ContainerType<{
24
26
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
25
27
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -57,6 +59,7 @@ export declare const IndexedPayloadAttestation: ContainerType<{
57
59
  signature: import("@chainsafe/ssz").ByteVectorType;
58
60
  }>;
59
61
  export declare const ProposerPreferences: ContainerType<{
62
+ dependentRoot: import("@chainsafe/ssz").ByteVectorType;
60
63
  proposalSlot: import("@chainsafe/ssz").UintNumberType;
61
64
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
62
65
  feeRecipient: import("../index.ts").ExecutionAddressType;
@@ -64,6 +67,7 @@ export declare const ProposerPreferences: ContainerType<{
64
67
  }>;
65
68
  export declare const SignedProposerPreferences: ContainerType<{
66
69
  message: ContainerType<{
70
+ dependentRoot: import("@chainsafe/ssz").ByteVectorType;
67
71
  proposalSlot: import("@chainsafe/ssz").UintNumberType;
68
72
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
69
73
  feeRecipient: import("../index.ts").ExecutionAddressType;
@@ -83,6 +87,7 @@ export declare const ExecutionPayloadBid: ContainerType<{
83
87
  value: import("@chainsafe/ssz").UintNumberType;
84
88
  executionPayment: import("@chainsafe/ssz").UintNumberType;
85
89
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
90
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
86
91
  }>;
87
92
  export declare const SignedExecutionPayloadBid: ContainerType<{
88
93
  message: ContainerType<{
@@ -97,9 +102,37 @@ export declare const SignedExecutionPayloadBid: ContainerType<{
97
102
  value: import("@chainsafe/ssz").UintNumberType;
98
103
  executionPayment: import("@chainsafe/ssz").UintNumberType;
99
104
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
105
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
100
106
  }>;
101
107
  signature: import("@chainsafe/ssz").ByteVectorType;
102
108
  }>;
109
+ export declare const BlockAccessList: ByteListType;
110
+ export declare const ExecutionPayload: ContainerType<{
111
+ parentHash: import("@chainsafe/ssz").ByteVectorType;
112
+ feeRecipient: import("../index.ts").ExecutionAddressType;
113
+ stateRoot: import("@chainsafe/ssz").ByteVectorType;
114
+ receiptsRoot: import("@chainsafe/ssz").ByteVectorType;
115
+ logsBloom: import("@chainsafe/ssz").ByteVectorType;
116
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
117
+ blockNumber: import("@chainsafe/ssz").UintNumberType;
118
+ gasLimit: import("@chainsafe/ssz").UintNumberType;
119
+ gasUsed: import("@chainsafe/ssz").UintNumberType;
120
+ timestamp: import("@chainsafe/ssz").UintNumberType;
121
+ extraData: ByteListType;
122
+ baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
123
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
124
+ transactions: ListCompositeType<ByteListType>;
125
+ withdrawals: ListCompositeType<ContainerType<{
126
+ index: import("@chainsafe/ssz").UintNumberType;
127
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
128
+ address: import("../index.ts").ExecutionAddressType;
129
+ amount: import("@chainsafe/ssz").UintBigintType;
130
+ }>>;
131
+ blobGasUsed: import("@chainsafe/ssz").UintBigintType;
132
+ excessBlobGas: import("@chainsafe/ssz").UintBigintType;
133
+ blockAccessList: ByteListType;
134
+ slotNumber: import("@chainsafe/ssz").UintNumberType;
135
+ }>;
103
136
  export declare const ExecutionPayloadEnvelope: ContainerType<{
104
137
  payload: ContainerType<{
105
138
  parentHash: import("@chainsafe/ssz").ByteVectorType;
@@ -112,10 +145,10 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
112
145
  gasLimit: import("@chainsafe/ssz").UintNumberType;
113
146
  gasUsed: import("@chainsafe/ssz").UintNumberType;
114
147
  timestamp: import("@chainsafe/ssz").UintNumberType;
115
- extraData: import("@chainsafe/ssz").ByteListType;
148
+ extraData: ByteListType;
116
149
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
117
150
  blockHash: import("@chainsafe/ssz").ByteVectorType;
118
- transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
151
+ transactions: ListCompositeType<ByteListType>;
119
152
  withdrawals: ListCompositeType<ContainerType<{
120
153
  index: import("@chainsafe/ssz").UintNumberType;
121
154
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -124,6 +157,8 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
124
157
  }>>;
125
158
  blobGasUsed: import("@chainsafe/ssz").UintBigintType;
126
159
  excessBlobGas: import("@chainsafe/ssz").UintBigintType;
160
+ blockAccessList: ByteListType;
161
+ slotNumber: import("@chainsafe/ssz").UintNumberType;
127
162
  }>;
128
163
  executionRequests: ContainerType<{
129
164
  deposits: ListCompositeType<ContainerType<{
@@ -146,8 +181,7 @@ export declare const ExecutionPayloadEnvelope: ContainerType<{
146
181
  }>;
147
182
  builderIndex: import("@chainsafe/ssz").UintNumberType;
148
183
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
149
- slot: import("@chainsafe/ssz").UintNumberType;
150
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
184
+ parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
151
185
  }>;
152
186
  export declare const SignedExecutionPayloadEnvelope: ContainerType<{
153
187
  message: ContainerType<{
@@ -162,10 +196,10 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
162
196
  gasLimit: import("@chainsafe/ssz").UintNumberType;
163
197
  gasUsed: import("@chainsafe/ssz").UintNumberType;
164
198
  timestamp: import("@chainsafe/ssz").UintNumberType;
165
- extraData: import("@chainsafe/ssz").ByteListType;
199
+ extraData: ByteListType;
166
200
  baseFeePerGas: import("@chainsafe/ssz").UintBigintType;
167
201
  blockHash: import("@chainsafe/ssz").ByteVectorType;
168
- transactions: ListCompositeType<import("@chainsafe/ssz").ByteListType>;
202
+ transactions: ListCompositeType<ByteListType>;
169
203
  withdrawals: ListCompositeType<ContainerType<{
170
204
  index: import("@chainsafe/ssz").UintNumberType;
171
205
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
@@ -174,6 +208,8 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
174
208
  }>>;
175
209
  blobGasUsed: import("@chainsafe/ssz").UintBigintType;
176
210
  excessBlobGas: import("@chainsafe/ssz").UintBigintType;
211
+ blockAccessList: ByteListType;
212
+ slotNumber: import("@chainsafe/ssz").UintNumberType;
177
213
  }>;
178
214
  executionRequests: ContainerType<{
179
215
  deposits: ListCompositeType<ContainerType<{
@@ -196,8 +232,7 @@ export declare const SignedExecutionPayloadEnvelope: ContainerType<{
196
232
  }>;
197
233
  builderIndex: import("@chainsafe/ssz").UintNumberType;
198
234
  beaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
199
- slot: import("@chainsafe/ssz").UintNumberType;
200
- stateRoot: import("@chainsafe/ssz").ByteVectorType;
235
+ parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
201
236
  }>;
202
237
  signature: import("@chainsafe/ssz").ByteVectorType;
203
238
  }>;
@@ -326,6 +361,7 @@ export declare const BeaconBlockBody: ContainerType<{
326
361
  value: import("@chainsafe/ssz").UintNumberType;
327
362
  executionPayment: import("@chainsafe/ssz").UintNumberType;
328
363
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
364
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
329
365
  }>;
330
366
  signature: import("@chainsafe/ssz").ByteVectorType;
331
367
  }>;
@@ -339,6 +375,25 @@ export declare const BeaconBlockBody: ContainerType<{
339
375
  }>;
340
376
  signature: import("@chainsafe/ssz").ByteVectorType;
341
377
  }>>;
378
+ parentExecutionRequests: ContainerType<{
379
+ deposits: ListCompositeType<ContainerType<{
380
+ pubkey: import("@chainsafe/ssz").ByteVectorType;
381
+ withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
382
+ amount: import("@chainsafe/ssz").UintNumberType;
383
+ signature: import("@chainsafe/ssz").ByteVectorType;
384
+ index: import("@chainsafe/ssz").UintBigintType;
385
+ }>>;
386
+ withdrawals: ListCompositeType<ContainerType<{
387
+ sourceAddress: import("../index.ts").ExecutionAddressType;
388
+ validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
389
+ amount: import("@chainsafe/ssz").UintBigintType;
390
+ }>>;
391
+ consolidations: ListCompositeType<ContainerType<{
392
+ sourceAddress: import("../index.ts").ExecutionAddressType;
393
+ sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
394
+ targetPubkey: import("@chainsafe/ssz").ByteVectorType;
395
+ }>>;
396
+ }>;
342
397
  }>;
343
398
  export declare const BeaconBlock: ContainerType<{
344
399
  slot: import("@chainsafe/ssz").UintNumberType;
@@ -470,6 +525,7 @@ export declare const BeaconBlock: ContainerType<{
470
525
  value: import("@chainsafe/ssz").UintNumberType;
471
526
  executionPayment: import("@chainsafe/ssz").UintNumberType;
472
527
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
528
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
473
529
  }>;
474
530
  signature: import("@chainsafe/ssz").ByteVectorType;
475
531
  }>;
@@ -483,6 +539,25 @@ export declare const BeaconBlock: ContainerType<{
483
539
  }>;
484
540
  signature: import("@chainsafe/ssz").ByteVectorType;
485
541
  }>>;
542
+ parentExecutionRequests: ContainerType<{
543
+ deposits: ListCompositeType<ContainerType<{
544
+ pubkey: import("@chainsafe/ssz").ByteVectorType;
545
+ withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
546
+ amount: import("@chainsafe/ssz").UintNumberType;
547
+ signature: import("@chainsafe/ssz").ByteVectorType;
548
+ index: import("@chainsafe/ssz").UintBigintType;
549
+ }>>;
550
+ withdrawals: ListCompositeType<ContainerType<{
551
+ sourceAddress: import("../index.ts").ExecutionAddressType;
552
+ validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
553
+ amount: import("@chainsafe/ssz").UintBigintType;
554
+ }>>;
555
+ consolidations: ListCompositeType<ContainerType<{
556
+ sourceAddress: import("../index.ts").ExecutionAddressType;
557
+ sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
558
+ targetPubkey: import("@chainsafe/ssz").ByteVectorType;
559
+ }>>;
560
+ }>;
486
561
  }>;
487
562
  }>;
488
563
  export declare const SignedBeaconBlock: ContainerType<{
@@ -616,6 +691,7 @@ export declare const SignedBeaconBlock: ContainerType<{
616
691
  value: import("@chainsafe/ssz").UintNumberType;
617
692
  executionPayment: import("@chainsafe/ssz").UintNumberType;
618
693
  blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
694
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
619
695
  }>;
620
696
  signature: import("@chainsafe/ssz").ByteVectorType;
621
697
  }>;
@@ -629,6 +705,25 @@ export declare const SignedBeaconBlock: ContainerType<{
629
705
  }>;
630
706
  signature: import("@chainsafe/ssz").ByteVectorType;
631
707
  }>>;
708
+ parentExecutionRequests: ContainerType<{
709
+ deposits: ListCompositeType<ContainerType<{
710
+ pubkey: import("@chainsafe/ssz").ByteVectorType;
711
+ withdrawalCredentials: import("@chainsafe/ssz").ByteVectorType;
712
+ amount: import("@chainsafe/ssz").UintNumberType;
713
+ signature: import("@chainsafe/ssz").ByteVectorType;
714
+ index: import("@chainsafe/ssz").UintBigintType;
715
+ }>>;
716
+ withdrawals: ListCompositeType<ContainerType<{
717
+ sourceAddress: import("../index.ts").ExecutionAddressType;
718
+ validatorPubkey: import("@chainsafe/ssz").ByteVectorType;
719
+ amount: import("@chainsafe/ssz").UintBigintType;
720
+ }>>;
721
+ consolidations: ListCompositeType<ContainerType<{
722
+ sourceAddress: import("../index.ts").ExecutionAddressType;
723
+ sourcePubkey: import("@chainsafe/ssz").ByteVectorType;
724
+ targetPubkey: import("@chainsafe/ssz").ByteVectorType;
725
+ }>>;
726
+ }>;
632
727
  }>;
633
728
  }>;
634
729
  signature: import("@chainsafe/ssz").ByteVectorType;
@@ -666,7 +761,7 @@ export declare const BeaconState: ContainerType<{
666
761
  validators: ListCompositeType<import("../phase0/validator.ts").ValidatorNodeStructType>;
667
762
  balances: import("@chainsafe/ssz").ListUintNum64Type;
668
763
  randaoMixes: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
669
- slashings: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
764
+ slashings: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
670
765
  previousEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
671
766
  currentEpochParticipation: ListBasicType<import("@chainsafe/ssz").UintNumberType>;
672
767
  justificationBits: BitVectorType;
@@ -691,19 +786,7 @@ export declare const BeaconState: ContainerType<{
691
786
  pubkeys: VectorCompositeType<import("@chainsafe/ssz").ByteVectorType>;
692
787
  aggregatePubkey: import("@chainsafe/ssz").ByteVectorType;
693
788
  }>;
694
- latestExecutionPayloadBid: ContainerType<{
695
- parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
696
- parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
697
- blockHash: import("@chainsafe/ssz").ByteVectorType;
698
- prevRandao: import("@chainsafe/ssz").ByteVectorType;
699
- feeRecipient: import("../index.ts").ExecutionAddressType;
700
- gasLimit: import("@chainsafe/ssz").UintBigintType;
701
- builderIndex: import("@chainsafe/ssz").UintNumberType;
702
- slot: import("@chainsafe/ssz").UintNumberType;
703
- value: import("@chainsafe/ssz").UintNumberType;
704
- executionPayment: import("@chainsafe/ssz").UintNumberType;
705
- blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
706
- }>;
789
+ latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
707
790
  nextWithdrawalIndex: import("@chainsafe/ssz").UintNumberType;
708
791
  nextWithdrawalValidatorIndex: import("@chainsafe/ssz").UintNumberType;
709
792
  historicalSummaries: ListCompositeType<ContainerType<{
@@ -732,7 +815,7 @@ export declare const BeaconState: ContainerType<{
732
815
  sourceIndex: import("@chainsafe/ssz").UintNumberType;
733
816
  targetIndex: import("@chainsafe/ssz").UintNumberType;
734
817
  }>>;
735
- proposerLookahead: import("@chainsafe/ssz").VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
818
+ proposerLookahead: VectorBasicType<import("@chainsafe/ssz").UintNumberType>;
736
819
  builders: ListCompositeType<ContainerType<{
737
820
  pubkey: import("@chainsafe/ssz").ByteVectorType;
738
821
  version: import("@chainsafe/ssz").UintNumberType;
@@ -756,13 +839,27 @@ export declare const BeaconState: ContainerType<{
756
839
  amount: import("@chainsafe/ssz").UintNumberType;
757
840
  builderIndex: import("@chainsafe/ssz").UintNumberType;
758
841
  }>>;
759
- latestBlockHash: import("@chainsafe/ssz").ByteVectorType;
842
+ latestExecutionPayloadBid: ContainerType<{
843
+ parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
844
+ parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
845
+ blockHash: import("@chainsafe/ssz").ByteVectorType;
846
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
847
+ feeRecipient: import("../index.ts").ExecutionAddressType;
848
+ gasLimit: import("@chainsafe/ssz").UintBigintType;
849
+ builderIndex: import("@chainsafe/ssz").UintNumberType;
850
+ slot: import("@chainsafe/ssz").UintNumberType;
851
+ value: import("@chainsafe/ssz").UintNumberType;
852
+ executionPayment: import("@chainsafe/ssz").UintNumberType;
853
+ blobKzgCommitments: ListCompositeType<import("@chainsafe/ssz").ByteVectorType>;
854
+ executionRequestsRoot: import("@chainsafe/ssz").ByteVectorType;
855
+ }>;
760
856
  payloadExpectedWithdrawals: ListCompositeType<ContainerType<{
761
857
  index: import("@chainsafe/ssz").UintNumberType;
762
858
  validatorIndex: import("@chainsafe/ssz").UintNumberType;
763
859
  address: import("../index.ts").ExecutionAddressType;
764
860
  amount: import("@chainsafe/ssz").UintBigintType;
765
861
  }>>;
862
+ ptcWindow: VectorCompositeType<VectorBasicType<import("@chainsafe/ssz").UintNumberType>>;
766
863
  }>;
767
864
  export declare const DataColumnSidecar: ContainerType<{
768
865
  index: import("@chainsafe/ssz").UintNumberType;
@@ -782,4 +879,37 @@ export declare const ExecutionPayloadEnvelopesByRangeRequest: ContainerType<{
782
879
  startSlot: import("@chainsafe/ssz").UintNumberType;
783
880
  count: import("@chainsafe/ssz").UintNumberType;
784
881
  }>;
882
+ export declare const PayloadAttributes: ContainerType<{
883
+ timestamp: import("@chainsafe/ssz").UintNumberType;
884
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
885
+ suggestedFeeRecipient: import("../index.ts").StringType<string>;
886
+ withdrawals: ListCompositeType<ContainerType<{
887
+ index: import("@chainsafe/ssz").UintNumberType;
888
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
889
+ address: import("../index.ts").ExecutionAddressType;
890
+ amount: import("@chainsafe/ssz").UintBigintType;
891
+ }>>;
892
+ parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
893
+ slotNumber: import("@chainsafe/ssz").UintNumberType;
894
+ }>;
895
+ export declare const SSEPayloadAttributes: ContainerType<{
896
+ proposerIndex: import("@chainsafe/ssz").UintNumberType;
897
+ proposalSlot: import("@chainsafe/ssz").UintNumberType;
898
+ parentBlockNumber: import("@chainsafe/ssz").UintNumberType;
899
+ parentBlockRoot: import("@chainsafe/ssz").ByteVectorType;
900
+ parentBlockHash: import("@chainsafe/ssz").ByteVectorType;
901
+ payloadAttributes: ContainerType<{
902
+ timestamp: import("@chainsafe/ssz").UintNumberType;
903
+ prevRandao: import("@chainsafe/ssz").ByteVectorType;
904
+ suggestedFeeRecipient: import("../index.ts").StringType<string>;
905
+ withdrawals: ListCompositeType<ContainerType<{
906
+ index: import("@chainsafe/ssz").UintNumberType;
907
+ validatorIndex: import("@chainsafe/ssz").UintNumberType;
908
+ address: import("../index.ts").ExecutionAddressType;
909
+ amount: import("@chainsafe/ssz").UintBigintType;
910
+ }>>;
911
+ parentBeaconBlockRoot: import("@chainsafe/ssz").ByteVectorType;
912
+ slotNumber: import("@chainsafe/ssz").UintNumberType;
913
+ }>;
914
+ }>;
785
915
  //# sourceMappingURL=sszTypes.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAE,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,mBAAmB,EAAC,MAAM,gBAAgB,CAAC;AAuCnH,eAAO,MAAM,OAAO;;;;;;;EAUnB,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;EAOpC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;EAMjC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;EAQlC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;EAO9B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;EAQ/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAe/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM1C,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB3B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8DvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;EAY7B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;GAA8D,CAAC;AAE9F,eAAO,MAAM,uCAAuC;;;EAGnD,CAAC"}
1
+ {"version":3,"file":"sszTypes.d.ts","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,YAAY,EACZ,aAAa,EACb,aAAa,EACb,iBAAiB,EACjB,eAAe,EACf,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AA0CxB,eAAO,MAAM,OAAO;;;;;;;EAUnB,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;EAOpC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;EAMjC,CAAC;AAEF,eAAO,MAAM,0BAA0B,0DAAgD,CAAC;AACxF,eAAO,MAAM,SAAS,+EAGrB,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;EAQlC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;EAO9B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAOrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;EAS/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;EAgB/B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;EAMrC,CAAC;AAEF,eAAO,MAAM,eAAe,cAA8C,CAAC;AAE3E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;EAO5B,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASpC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM1C,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoB3B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+DvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;EAY7B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;GAA8D,CAAC;AAE9F,eAAO,MAAM,uCAAuC;;;EAGnD,CAAC;AAGF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAM7B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;EAMhC,CAAC"}
@@ -1,6 +1,7 @@
1
- import { BitVectorType, ContainerType, ListBasicType, ListCompositeType, VectorCompositeType } from "@chainsafe/ssz";
2
- import { BUILDER_PENDING_WITHDRAWALS_LIMIT, BUILDER_REGISTRY_LIMIT, HISTORICAL_ROOTS_LIMIT, MAX_PAYLOAD_ATTESTATIONS, NUMBER_OF_COLUMNS, PTC_SIZE, SLOTS_PER_EPOCH, SLOTS_PER_HISTORICAL_ROOT, } from "@lodestar/params";
1
+ import { BitVectorType, ByteListType, ContainerType, ListBasicType, ListCompositeType, VectorBasicType, VectorCompositeType, } from "@chainsafe/ssz";
2
+ import { BUILDER_PENDING_WITHDRAWALS_LIMIT, BUILDER_REGISTRY_LIMIT, HISTORICAL_ROOTS_LIMIT, MAX_BYTES_PER_TRANSACTION, MAX_PAYLOAD_ATTESTATIONS, MIN_SEED_LOOKAHEAD, NUMBER_OF_COLUMNS, PTC_SIZE, SLOTS_PER_EPOCH, SLOTS_PER_HISTORICAL_ROOT, } from "@lodestar/params";
3
3
  import { ssz as altairSsz } from "../altair/index.js";
4
+ import { ssz as bellatrixSsz } from "../bellatrix/index.js";
4
5
  import { ssz as capellaSsz } from "../capella/index.js";
5
6
  import { ssz as denebSsz } from "../deneb/index.js";
6
7
  import { ssz as electraSsz } from "../electra/index.js";
@@ -27,6 +28,8 @@ export const BuilderPendingPayment = new ContainerType({
27
28
  weight: UintNum64,
28
29
  withdrawal: BuilderPendingWithdrawal,
29
30
  }, { typeName: "BuilderPendingPayment", jsonCase: "eth2" });
31
+ export const PayloadTimelinessCommittee = new VectorBasicType(ValidatorIndex, PTC_SIZE);
32
+ export const PtcWindow = new VectorCompositeType(PayloadTimelinessCommittee, (2 + MIN_SEED_LOOKAHEAD) * SLOTS_PER_EPOCH);
30
33
  export const PayloadAttestationData = new ContainerType({
31
34
  beaconBlockRoot: Root,
32
35
  slot: Slot,
@@ -49,6 +52,7 @@ export const IndexedPayloadAttestation = new ContainerType({
49
52
  signature: BLSSignature,
50
53
  }, { typeName: "IndexedPayloadAttestation", jsonCase: "eth2" });
51
54
  export const ProposerPreferences = new ContainerType({
55
+ dependentRoot: Root,
52
56
  proposalSlot: Slot,
53
57
  validatorIndex: ValidatorIndex,
54
58
  feeRecipient: ExecutionAddress,
@@ -70,18 +74,24 @@ export const ExecutionPayloadBid = new ContainerType({
70
74
  value: UintNum64,
71
75
  executionPayment: UintNum64,
72
76
  blobKzgCommitments: denebSsz.BlobKzgCommitments,
77
+ executionRequestsRoot: Root,
73
78
  }, { typeName: "ExecutionPayloadBid", jsonCase: "eth2" });
74
79
  export const SignedExecutionPayloadBid = new ContainerType({
75
80
  message: ExecutionPayloadBid,
76
81
  signature: BLSSignature,
77
82
  }, { typeName: "SignedExecutionPayloadBid", jsonCase: "eth2" });
83
+ export const BlockAccessList = new ByteListType(MAX_BYTES_PER_TRANSACTION);
84
+ export const ExecutionPayload = new ContainerType({
85
+ ...electraSsz.ExecutionPayload.fields,
86
+ blockAccessList: BlockAccessList, // New in GLOAS:EIP-7928
87
+ slotNumber: Slot, // New in GLOAS:EIP-7843
88
+ }, { typeName: "ExecutionPayload", jsonCase: "eth2" });
78
89
  export const ExecutionPayloadEnvelope = new ContainerType({
79
- payload: electraSsz.ExecutionPayload,
90
+ payload: ExecutionPayload,
80
91
  executionRequests: electraSsz.ExecutionRequests,
81
92
  builderIndex: BuilderIndex,
82
93
  beaconBlockRoot: Root,
83
- slot: Slot,
84
- stateRoot: Root,
94
+ parentBeaconBlockRoot: Root,
85
95
  }, { typeName: "ExecutionPayloadEnvelope", jsonCase: "eth2" });
86
96
  export const SignedExecutionPayloadEnvelope = new ContainerType({
87
97
  message: ExecutionPayloadEnvelope,
@@ -103,6 +113,7 @@ export const BeaconBlockBody = new ContainerType({
103
113
  // executionRequests: ExecutionRequests, // Removed in GLOAS:EIP7732
104
114
  signedExecutionPayloadBid: SignedExecutionPayloadBid, // New in GLOAS:EIP7732
105
115
  payloadAttestations: new ListCompositeType(PayloadAttestation, MAX_PAYLOAD_ATTESTATIONS), // New in GLOAS:EIP7732
116
+ parentExecutionRequests: electraSsz.ExecutionRequests, // New in GLOAS:EIP7732
106
117
  }, { typeName: "BeaconBlockBody", jsonCase: "eth2", cachePermanentRootStruct: true });
107
118
  export const BeaconBlock = new ContainerType({
108
119
  ...fuluSsz.BeaconBlock.fields,
@@ -148,7 +159,7 @@ export const BeaconState = new ContainerType({
148
159
  nextSyncCommittee: altairSsz.SyncCommittee,
149
160
  // Execution
150
161
  // latestExecutionPayloadHeader: ExecutionPayloadHeader, // Removed in GLOAS:EIP7732
151
- latestExecutionPayloadBid: ExecutionPayloadBid, // New in GLOAS:EIP7732
162
+ latestBlockHash: Bytes32, // New in GLOAS:EIP7732
152
163
  // Withdrawals
153
164
  nextWithdrawalIndex: capellaSsz.BeaconState.fields.nextWithdrawalIndex,
154
165
  nextWithdrawalValidatorIndex: capellaSsz.BeaconState.fields.nextWithdrawalValidatorIndex,
@@ -169,8 +180,9 @@ export const BeaconState = new ContainerType({
169
180
  executionPayloadAvailability: new BitVectorType(SLOTS_PER_HISTORICAL_ROOT), // New in GLOAS:EIP7732
170
181
  builderPendingPayments: new VectorCompositeType(BuilderPendingPayment, 2 * SLOTS_PER_EPOCH), // New in GLOAS:EIP7732
171
182
  builderPendingWithdrawals: new ListCompositeType(BuilderPendingWithdrawal, BUILDER_PENDING_WITHDRAWALS_LIMIT), // New in GLOAS:EIP7732
172
- latestBlockHash: Bytes32, // New in GLOAS:EIP7732
183
+ latestExecutionPayloadBid: ExecutionPayloadBid, // New in GLOAS:EIP7732
173
184
  payloadExpectedWithdrawals: capellaSsz.Withdrawals, // New in GLOAS:EIP7732
185
+ ptcWindow: PtcWindow, // New in GLOAS:EIP7732
174
186
  }, { typeName: "BeaconState", jsonCase: "eth2" });
175
187
  export const DataColumnSidecar = new ContainerType({
176
188
  index: fuluSsz.DataColumnSidecar.fields.index,
@@ -184,4 +196,13 @@ export const DataColumnSidecar = new ContainerType({
184
196
  }, { typeName: "DataColumnSidecar", jsonCase: "eth2" });
185
197
  export const DataColumnSidecars = new ListCompositeType(DataColumnSidecar, NUMBER_OF_COLUMNS);
186
198
  export const ExecutionPayloadEnvelopesByRangeRequest = new ContainerType({ startSlot: Slot, count: UintNum64 }, { typeName: "ExecutionPayloadEnvelopesByRangeRequest", jsonCase: "eth2" });
199
+ // PayloadAttributes primarily for SSE event
200
+ export const PayloadAttributes = new ContainerType({
201
+ ...denebSsz.PayloadAttributes.fields,
202
+ slotNumber: Slot,
203
+ }, { typeName: "PayloadAttributes", jsonCase: "eth2" });
204
+ export const SSEPayloadAttributes = new ContainerType({
205
+ ...bellatrixSsz.SSEPayloadAttributesCommon.fields,
206
+ payloadAttributes: PayloadAttributes,
207
+ }, { typeName: "SSEPayloadAttributes", jsonCase: "eth2" });
187
208
  //# sourceMappingURL=sszTypes.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"sszTypes.js","sourceRoot":"","sources":["../../src/gloas/sszTypes.ts"],"names":[],"mappings":"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"}
@@ -3,14 +3,18 @@ import * as ssz from "./sszTypes.js";
3
3
  export type Builder = ValueOf<typeof ssz.Builder>;
4
4
  export type BuilderPendingWithdrawal = ValueOf<typeof ssz.BuilderPendingWithdrawal>;
5
5
  export type BuilderPendingPayment = ValueOf<typeof ssz.BuilderPendingPayment>;
6
+ export type PayloadTimelinessCommittee = ValueOf<typeof ssz.PayloadTimelinessCommittee>;
7
+ export type PtcWindow = ValueOf<typeof ssz.PtcWindow>;
6
8
  export type PayloadAttestationData = ValueOf<typeof ssz.PayloadAttestationData>;
7
9
  export type PayloadAttestation = ValueOf<typeof ssz.PayloadAttestation>;
8
10
  export type PayloadAttestationMessage = ValueOf<typeof ssz.PayloadAttestationMessage>;
9
11
  export type IndexedPayloadAttestation = ValueOf<typeof ssz.IndexedPayloadAttestation>;
10
12
  export type ProposerPreferences = ValueOf<typeof ssz.ProposerPreferences>;
11
13
  export type SignedProposerPreferences = ValueOf<typeof ssz.SignedProposerPreferences>;
14
+ export type ExecutionPayload = ValueOf<typeof ssz.ExecutionPayload>;
12
15
  export type ExecutionPayloadBid = ValueOf<typeof ssz.ExecutionPayloadBid>;
13
16
  export type SignedExecutionPayloadBid = ValueOf<typeof ssz.SignedExecutionPayloadBid>;
17
+ export type BlockAccessList = ValueOf<typeof ssz.BlockAccessList>;
14
18
  export type ExecutionPayloadEnvelope = ValueOf<typeof ssz.ExecutionPayloadEnvelope>;
15
19
  export type SignedExecutionPayloadEnvelope = ValueOf<typeof ssz.SignedExecutionPayloadEnvelope>;
16
20
  export type BeaconBlockBody = ValueOf<typeof ssz.BeaconBlockBody>;
@@ -20,4 +24,6 @@ export type BeaconState = ValueOf<typeof ssz.BeaconState>;
20
24
  export type DataColumnSidecar = ValueOf<typeof ssz.DataColumnSidecar>;
21
25
  export type DataColumnSidecars = ValueOf<typeof ssz.DataColumnSidecars>;
22
26
  export type ExecutionPayloadEnvelopesByRangeRequest = ValueOf<typeof ssz.ExecutionPayloadEnvelopesByRangeRequest>;
27
+ export type PayloadAttributes = ValueOf<typeof ssz.PayloadAttributes>;
28
+ export type SSEPayloadAttributes = ValueOf<typeof ssz.SSEPayloadAttributes>;
23
29
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/gloas/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;AACvC,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AAErC,MAAM,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC;AAClD,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,qBAAqB,CAAC,CAAC;AAC9E,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,sBAAsB,CAAC,CAAC;AAChF,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AACxE,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,mBAAmB,CAAC,CAAC;AAC1E,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,mBAAmB,CAAC,CAAC;AAC1E,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,8BAA8B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,8BAA8B,CAAC,CAAC;AAChG,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,eAAe,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAE1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AAExE,MAAM,MAAM,uCAAuC,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,uCAAuC,CAAC,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/gloas/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;AACvC,OAAO,KAAK,GAAG,MAAM,eAAe,CAAC;AAErC,MAAM,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC;AAClD,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,qBAAqB,CAAC,CAAC;AAC9E,MAAM,MAAM,0BAA0B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,0BAA0B,CAAC,CAAC;AACxF,MAAM,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,SAAS,CAAC,CAAC;AACtD,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,sBAAsB,CAAC,CAAC;AAChF,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AACxE,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,mBAAmB,CAAC,CAAC;AAC1E,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,gBAAgB,CAAC,CAAC;AACpE,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,mBAAmB,CAAC,CAAC;AAC1E,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,eAAe,CAAC,CAAC;AAClE,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,8BAA8B,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,8BAA8B,CAAC,CAAC;AAChG,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,eAAe,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAC1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAE1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,kBAAkB,CAAC,CAAC;AAExE,MAAM,MAAM,uCAAuC,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,uCAAuC,CAAC,CAAC;AAClH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;AACtE,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC"}