blob: 882043ebcdaf766e545c6dbe8881558a20d3c948 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
|
# Generated by oe-go-mod-fetcher.py v3.0.0
# Git repositories for Go module dependencies
SRC_URI += "git://github.com/uber/mock;protocol=https;nobranch=1;tag=v0.5.2;shallow=1;rev=0b8095f698fe3b6414a8d1321e990100ba8ce5bc;name=git_d59a22ac_0;destsuffix=vcs_cache/92d065240c92b2ba820a0d6c3bb4b5174d1752db7a0990a7eb1fe9ce425eca6a"
SRC_URI += "git://github.com/uber/mock;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=a9c44d91ce00ef09603d3822452a4f9c8fefd278;name=git_d59a22ac_1;destsuffix=vcs_cache/84690e1069b4ad70e2d5fec3d8f934623d7d299829df8ba8c5fcaeec38806c67"
SRC_URI += "git://github.com/uber-go/goleak;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=31095c657c34bba405a8d480db27989aa5f60b9c;name=git_aa00c2c2_0;destsuffix=vcs_cache/358840d6c8d4d8a268b95a505fd6f93da14af34041c0824fe51920b4cd523ae2"
SRC_URI += "git://github.com/uber-go/goleak;protocol=https;nobranch=1;tag=v1.7.0;shallow=1;rev=691160354723362697a4dc8aa10cd4c4c072ee45;name=git_aa00c2c2_1;destsuffix=vcs_cache/fe6d70c375590f267740e529a471d0c44a66b4697de95300fbf44daf739acd0c"
SRC_URI += "git://github.com/uber-go/fx;protocol=https;nobranch=1;tag=v1.23.0;shallow=1;rev=699948c47a7363a93381319c66b17159642febb9;name=git_c9b49f3f_0;destsuffix=vcs_cache/ef0fde5a2b45ed0be8a78a5b2d8b63187d716902f6a9ed8240ae253beee26dbb"
SRC_URI += "git://github.com/uber-go/multierr;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=3114a8b704d2d28dbacda34a872690aaef66aeed;name=git_56156e5c_0;destsuffix=vcs_cache/3988fa913cd9646c9a757efdf0f9b5c0f868f8c4a53c80d1dcb502808d7047a8"
SRC_URI += "git://github.com/uber-go/multierr;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=b587143a48b62b01d337824eab43700af6ffe222;name=git_56156e5c_1;destsuffix=vcs_cache/ce504ce602d2dc16619febc8d9ffb59497ac85ae8fa531307a9b0f9166eb0478"
SRC_URI += "git://github.com/uber-go/multierr;protocol=https;nobranch=1;tag=v1.11.0;shallow=1;rev=de75ae527b39a27afcb50a84427ec7b84021d5f4;name=git_56156e5c_2;destsuffix=vcs_cache/9e9b72c633d0ee4d572aa2aef1a020bd0d0430b461457342ecf9ba78885e216c"
SRC_URI += "git://github.com/uber-go/zap;protocol=https;nobranch=1;tag=v1.16.0;shallow=1;rev=404189cf44aea95b0cd9bddcb0242dd4cf88c510;name=git_d94f6782_0;destsuffix=vcs_cache/89a5e5b833c0075e9137bd659f8375489f6b737e2aa8cbc40f4fe8c5cb5ed7cd"
SRC_URI += "git://github.com/uber-go/zap;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=eaeb0fc72fd23af7969c9a9f39e51b66827507ca;name=git_d94f6782_1;destsuffix=vcs_cache/0b61906bcd8f2fec2f9b0d26dfd7ebfdb634d29d6b80b97086ba3b6d5df55937"
SRC_URI += "git://github.com/uber-go/zap;protocol=https;nobranch=1;tag=v1.27.0;shallow=1;rev=fcf8ee58669e358bbd6460bef5c2ee7a53c0803a;name=git_d94f6782_2;destsuffix=vcs_cache/7ea0c9e80e2a0bb1bd91b81faf8ace4dfef165de4ce47d177768475c6d02c2f1"
SRC_URI += "git://github.com/uber-go/automaxprocs;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=1ea14c35ce47a73089b824e504d1c92eeb61a5a6;name=git_58e615b6_0;destsuffix=vcs_cache/8ab31d7b6c65257de48f8b07a1403dfaa497f722b374c5c6ddcb0804a3c02e9a"
SRC_URI += "git://github.com/uber-go/dig;protocol=https;nobranch=1;tag=v1.18.0;shallow=1;rev=9b9307c6dfdb50bca7bda38c95b1f2a5d7c27a3a;name=git_5f477712_0;destsuffix=vcs_cache/746f0f8743d2016d2b471b8cbe7b42c902668d196e9c6de3053737b788b2469d"
SRC_URI += "git://github.com/uber-go/atomic;protocol=https;nobranch=1;tag=v1.7.0;shallow=1;rev=12f27ba2637fa0e13772a4f05fa46a5d18d53182;name=git_dc3074ea_0;destsuffix=vcs_cache/21dd04ccff52b3d6833b4e36048c2c63c546ac8c32751df41eb2e23036e7bc02"
SRC_URI += "git://github.com/uber-go/atomic;protocol=https;nobranch=1;tag=v1.11.0;shallow=1;rev=76f817c8b7e771cdffc2b9f11a7ebb80333ca92b;name=git_dc3074ea_1;destsuffix=vcs_cache/d00c989f8bb8a9438dd86b0aa36df5fb6d45f6e7fc0c9a3e46fb1aa00c952c73"
SRC_URI += "git://github.com/uber-go/atomic;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=845920076a298bdb984fb0f1b86052e4ca0a281c;name=git_dc3074ea_2;destsuffix=vcs_cache/14e703084bbccc2661a8860968bdbcea2188d8e8d9422b3e91802491591fd129"
SRC_URI += "git://github.com/etcd-io/gofail;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=ed9ca8045cc22a3045168306f2039e9f0a5b397e;name=git_1b9be237_0;destsuffix=vcs_cache/94af41cb3791d3446ad2efcce59de525d2df0ae4cf689775b2914bcf4100d3a8"
SRC_URI += "git://github.com/etcd-io/etcd;protocol=https;nobranch=1;tag=server/v3.6.4;shallow=1;rev=5400cdc39b829ee5dadacb77002256cf86357da1;name=git_8d0c8c2e_0;destsuffix=vcs_cache/74448a9c4e05046728e12a5e2ab7fd8711064d226a47614dfeed8aa6f48de4da"
SRC_URI += "git://github.com/etcd-io/etcd;protocol=https;nobranch=1;tag=tests/v3.5.21;shallow=1;rev=a17edfd59754d1aed29c2db33520ab9d401326a5;name=git_8d0c8c2e_1;destsuffix=vcs_cache/6c9c82f459c65b99d218880bcfe4f9ec1b15b0babc8a456ae341bf3a307a1871"
SRC_URI += "git://github.com/etcd-io/bbolt;protocol=https;nobranch=1;tag=v1.4.0;shallow=1;rev=0d516858c4bad9ad7c7ccb637adc32bcd78ca8cb;name=git_bd7d6031_0;destsuffix=vcs_cache/3e77d827d0ebfa5b01caf8ec24b42f458d14b98d9b60a7dd612b0403dc237e90"
SRC_URI += "git://github.com/etcd-io/bbolt;protocol=https;nobranch=1;tag=v1.4.2;shallow=1;rev=dca4b1df8e6a770203c4c44117635c0c84140e24;name=git_bd7d6031_1;destsuffix=vcs_cache/ee3b60e787e266e53a0300c5c56ed0bd76b76f12442ebf2b1c3d8cae3540d3e9"
SRC_URI += "git://github.com/etcd-io/raft;protocol=https;nobranch=1;tag=v3.6.0;shallow=1;rev=f35a02212416d045c574e30aa59d4b07c4b8d732;name=git_7745a5ad_0;destsuffix=vcs_cache/021b1761a70a4212e4f2b025e054475e53e23fb505ca7d877de026578df975ca"
SRC_URI += "git://github.com/gonum/gonum;protocol=https;nobranch=1;tag=v0.11.0;shallow=1;rev=1180659542815ddb51545f83860386272ebf0d9b;name=git_63b91e23_0;destsuffix=vcs_cache/895dacda62b82f81079b5c09f7f6a79215a3bd4e4a07947f202613996a4d0608"
SRC_URI += "git://github.com/gonum/gonum;protocol=https;nobranch=1;tag=v0.8.2;shallow=1;rev=5ca75a94b69bf6d4b345c50975da77d99423e91d;name=git_63b91e23_1;destsuffix=vcs_cache/72faab144b655f1f209bb6025af179c6c43ad78d11444b0881a86f09a5e234e2"
SRC_URI += "git://github.com/gonum/gonum;protocol=https;nobranch=1;tag=v0.9.3;shallow=1;rev=6b90107d4a29dcf67ae7c214a14935d0bcfbf129;name=git_63b91e23_2;destsuffix=vcs_cache/02fa64dac3c6ca24c2aadc0adf158cc58c0dee657f4f1ec0624597246dddd66d"
SRC_URI += "git://github.com/gonum/gonum;protocol=https;nobranch=1;tag=v0.1.9;shallow=1;rev=929014505bf4717eb082c9bbe164eb280cf47895;name=git_63b91e23_3;destsuffix=vcs_cache/c48d6fb580206f3603b9ceff466ba84ac4366dc2d2d1a5241b9aefbb37eb7fa5"
SRC_URI += "git://github.com/gonum/gonum;protocol=https;nobranch=1;tag=v0.15.1;shallow=1;rev=bdcda9a453049449163d160b98285b64ec8093a1;name=git_63b91e23_4;destsuffix=vcs_cache/5d8af3bea3daf7e64da40a324747478d3fb8d80db6e58854766de028e820a0d8"
SRC_URI += "git://github.com/gonum/plot;protocol=https;nobranch=1;tag=v0.10.1;shallow=1;rev=7d63f4e919ca1f26d67255c38ccd979adf2ab0b6;name=git_784a7e1e_0;destsuffix=vcs_cache/055b67ae95c9ae01b9a575294231d7020628d7ca26cd24abbded5b288b88e304"
SRC_URI += "git://github.com/gonum/plot;protocol=https;nobranch=1;tag=v0.14.0;shallow=1;rev=8aad608f521d024f7c15ebadfdf6a78031905bd0;name=git_784a7e1e_1;destsuffix=vcs_cache/8f8696ba9fb54f559adaf9f5f9cdd67dada40d9c7b50a8a2257e330a0df0178c"
SRC_URI += "git://github.com/gonum/plot;protocol=https;nobranch=1;tag=v0.9.0;shallow=1;rev=caab7788e04dfd7a74cec4ee80f55b7d1f9a2bfa;name=git_784a7e1e_2;destsuffix=vcs_cache/f513803ede9782b45980fef882f474df1f99eba82f07ce0896cb41efd39392d8"
SRC_URI += "git://github.com/gonum/plot;protocol=https;nobranch=1;tag=v0.9.3;shallow=1;rev=e2840ee46a6b612972d746f9fea9920d329a0605;name=git_784a7e1e_3;destsuffix=vcs_cache/732c732962fffad2a899f86c7c783b55dc43f357131adfcde3f392c47a1bc6bd"
SRC_URI += "git://github.com/google/cel-spec;protocol=https;nobranch=1;tag=v0.24.0;shallow=1;rev=9f069b3ee58b02d6f6736c5ebd6587075c1a1b22;name=git_9b911644_0;destsuffix=vcs_cache/22be8bab702f88ee991b30c18c7bac8535814d8de3215c69ac9ee1e73da82c45"
SRC_URI += "git://github.com/google/cel-spec;protocol=https;nobranch=1;tag=v0.15.0;shallow=1;rev=ae15d293dc49482180e967942612fb85e33bcde9;name=git_9b911644_1;destsuffix=vcs_cache/5116033168f56f4b23a436481f9f15e7e0b4d98bc29ebfe5841551fdfd60daa7"
SRC_URI += "git://github.com/google/cel-spec;protocol=https;nobranch=1;tag=v0.19.0;shallow=1;rev=afa18f9bd5a83f5960ca06c1f9faea406ab34ccc;name=git_9b911644_2;destsuffix=vcs_cache/cbea25bc9fe77d358c0c7105ec4d3387a645e2879918aef6945299fd172a69c8"
SRC_URI += "git://github.com/google/cel-spec;protocol=https;nobranch=1;tag=v0.20.0;shallow=1;rev=bfe4f8b06c29cc71b783819ef415e2e766606023;name=git_9b911644_3;destsuffix=vcs_cache/e2b4c78a33832732c0a406be7ded6c20bb7230678f9c38b821241e73ff858838"
SRC_URI += "git://github.com/google/cel-spec;protocol=https;nobranch=1;tag=v0.16.0;shallow=1;rev=c6ece48af94ef81e15a2c14fda8ddc5423c5dd29;name=git_9b911644_4;destsuffix=vcs_cache/d35a94d23177d5f4e2b972f2b037a438d3adf639bb1153ef655c13a8d6dd7cfd"
SRC_URI += "git://github.com/go-check/check;protocol=https;branch=v1;rev=10cb98267c6cb43ea9cd6793f29ff4089c306974;name=git_fc1e328f_0;destsuffix=vcs_cache/b8ed7c01feb15e76511fd0dcf4b7d5e0ab535f96b5fe0e22cd9854a758a6c38d"
SRC_URI += "git://github.com/go-check/check;protocol=https;branch=v1;rev=20d25e2804050c1cd24a7eea1e7a6447dd0e74ec;name=git_fc1e328f_1;destsuffix=vcs_cache/f6f7125ac7ef086ca6395a14a9a28c8c11cd6f8790a8be7cfd6475d1acd0f40b"
SRC_URI += "git://github.com/go-check/check;protocol=https;branch=v1;rev=41f04d3bba152ddec2103e299fed053415705330;name=git_fc1e328f_2;destsuffix=vcs_cache/b7951985cdbd8450a02d07fa23ccc53e6697516195b166ef9831e19a0c06da7d"
SRC_URI += "git://github.com/go-check/check;protocol=https;branch=v1;rev=788fd78401277ebd861206a03c884797c6ec5541;name=git_fc1e328f_3;destsuffix=vcs_cache/4c3ba71ea98d2c5297a7f0582e773355df148f78f4553723e35403a852adb666"
SRC_URI += "git://gopkg.in/natefinch/lumberjack.v2;protocol=https;nobranch=1;tag=v2.2.1;shallow=1;rev=4cb27fcfbb0f35cb48c542c5ea80b7c1d18933d0;name=git_0445b355_0;destsuffix=vcs_cache/77a6dec8af06a8bf3eb517dd856ae09528093b19ff97b50a057dcd174887232f"
SRC_URI += "git://github.com/go-tomb/tomb;protocol=https;branch=v1;rev=dd632973f1e7218eb1089048e0798ec9ae7dceb8;name=git_40f32ad0_0;destsuffix=vcs_cache/3eb09c53457860b46e591b55bd3d381c6c4ceb426eeef3c43e3b3eac38964c0d"
SRC_URI += "git://github.com/fsnotify/fsnotify;protocol=https;nobranch=1;tag=v1.9.0;shallow=1;rev=ae0e7923765f64fb8061396db7edebb558cf6093;name=git_3fa8b61c_0;destsuffix=vcs_cache/e7e3eb9997b88b1856ec41676de694527bda7173c94d395822f6eec3ec2067e2"
SRC_URI += "git://github.com/fsnotify/fsnotify;protocol=https;nobranch=1;tag=v1.4.7;shallow=1;rev=c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9;name=git_3fa8b61c_1;destsuffix=vcs_cache/cc44f7bf337eee80812ff411465b4e87c78887003ae940c1b27adb151bbed7d2"
SRC_URI += "git://github.com/fsnotify/fsnotify;protocol=https;nobranch=1;tag=v1.7.0;shallow=1;rev=cfc9c4f277ea6ec18de92444b31983b183deb4fb;name=git_3fa8b61c_2;destsuffix=vcs_cache/611e6edb829e44642e664d56f4e7b3828ea1a4ca48f28bb89ca53c1c9010ecbb"
SRC_URI += "git://gopkg.in/go-jose/go-jose.v2;protocol=https;nobranch=1;tag=v2.6.3;shallow=1;rev=0dd4dd541c665fb292d664f77604ba694726f298;name=git_52143750_0;destsuffix=vcs_cache/3379754b4af15203abde6f71eb3b73900bd1c55436e703511081f9685fa1984f"
SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;tag=v2.1.0;shallow=1;rev=3e6d767784b037b90a14701b6c9f0643f05db963;name=git_b0089ab1_0;destsuffix=vcs_cache/1b6463a06e9196c0b5a6d4b485d1b3c19e75457da99b51d586621a0bdc672835"
SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;branch=v3;rev=496545a6307b2a7d7a710fd516e5e16e8ab62dbc;name=git_b0089ab1_1;destsuffix=vcs_cache/e97305305378d3abaabce6b36aced1d40b09ad77e2c49963854d4364b16d1d1c"
SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;tag=v2.2.2;shallow=1;rev=51d6538a90f86fe93ac480b35f37b2be17fef232;name=git_b0089ab1_2;destsuffix=vcs_cache/8a100ce674e65e72daf096e45d53f5beec9f9123c742acb89993de84b6414834"
SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;tag=v2.2.8;shallow=1;rev=53403b58ad1b561927d19068c655246f2db79d48;name=git_b0089ab1_3;destsuffix=vcs_cache/400816c86851106c70bff651cdce4df77403b9659ec70d1d1bbe2d3211dfa942"
SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;tag=v2.2.1;shallow=1;rev=5420a8b6744d3b0345ab293f6fcba19c978f1183;name=git_b0089ab1_4;destsuffix=vcs_cache/0fa3b98a4c1a3d9bd017c1d1c94874fecbc693d1400e5f002f53d4444a42664c"
SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;tag=v2.4.0;shallow=1;rev=7649d4548cb53a614db133b2a8ac1f31859dda8c;name=git_b0089ab1_5;destsuffix=vcs_cache/84e688efadb8602ec1990d3cd251d5818e95c14682a169266ac9a1edadfe5424"
SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;branch=v3;rev=9f266ea9e77c4c7aab4cf02650570e7c7b3031a5;name=git_b0089ab1_6;destsuffix=vcs_cache/ae6e6119974a43d5668501b6efe7e743408319dee4094d1929d3e75a4f5dac98"
SRC_URI += "git://github.com/go-yaml/yaml;protocol=https;nobranch=1;tag=v3.0.1;shallow=1;rev=f6f7691b1fdeb513f56608cd2c32c51f8194bf51;name=git_b0089ab1_7;destsuffix=vcs_cache/8d340fff421a1861f196061b40e49b2f9e802647204935d08e1062b8ecd90b0d"
SRC_URI += "git://github.com/go-errgo/errgo;protocol=https;nobranch=1;tag=v2.1.0;shallow=1;rev=f768c5ab0476c50e978b039312180859c10fe8c0;name=git_c4c51b5f_0;destsuffix=vcs_cache/1d12f78e32dbca2d0444388465b0d12d20195abba51688fed428a647df9041e1"
SRC_URI += "git://gopkg.in/ini.v1;protocol=https;nobranch=1;tag=v1.67.0;shallow=1;rev=b2f570e5b5b844226bbefe6fb521d891f529a951;name=git_b7879a4b_0;destsuffix=vcs_cache/35aca96c4c1dbe28b4a68dd8f9ad52ed4d311b137ae51f57e5f73034281e5da5"
SRC_URI += "git://github.com/go-inf/inf;protocol=https;nobranch=1;tag=v0.9.1;shallow=1;rev=d2d2541c53f18d2a059457998ce2876cc8e67cbf;name=git_989ffae9_0;destsuffix=vcs_cache/61185ca91404d2e09a193aede807b4a9ededd43199f58cd49ec4cef480d7bc7f"
SRC_URI += "git://gopkg.in/evanphx/json-patch.v4;protocol=https;nobranch=1;tag=v4.13.0;shallow=1;rev=84a4bb100ade42a86fce2647c95a7dbcbf569cb2;name=git_6e26e914_0;destsuffix=vcs_cache/664c761587abdd7a37f78115c7dbea5a3bcbea104244f81430c0e47dc5396047"
SRC_URI += "git://github.com/gotestyourself/gotest.tools;protocol=https;nobranch=1;tag=v3.5.0;shallow=1;rev=a80f057529047c44e1a85d0d017b200787e537e0;name=git_6a558ec9_0;destsuffix=vcs_cache/4d98752b7c5d5b79f47b900532006856110408567e0d4a9c2bef112fd08232ef"
SRC_URI += "git://github.com/gotestyourself/gotest.tools;protocol=https;nobranch=1;tag=v3.4.0;shallow=1;rev=f086d2783c5b3a2a21b482ec19c1c310e68f4d18;name=git_6a558ec9_1;destsuffix=vcs_cache/62ea99291f9aef30c2347a769e0f44f9e0b4e5a7cfe1652e9571c2f15fb2ecd4"
SRC_URI += "git://github.com/lukechampine/blake3;protocol=https;nobranch=1;tag=v1.4.0;shallow=1;rev=02493b41ff331bc2aca183bae5d7e8cdeef8125e;name=git_c77d7135_0;destsuffix=vcs_cache/f4e898c99f36a3048ab052b85759125266683b83042bfab1bb4e365e91d55917"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=19429a94021accaa4bb60cbed61190248f4ef066;name=git_461a63b9_0;destsuffix=vcs_cache/2f5bb31a0a8f937de324b23ab84e814e504046e93133c7326bf700b0882dc384"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=1aefcd67740a7fb1eeced8718e0061b21e305b23;name=git_461a63b9_1;destsuffix=vcs_cache/78ab891afcc1672ed9e4e186c1209d7713d061290e95f4ae6b2d62c560b65575"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=28d5490b6b19cce1ebbc6ab55ca8637bd35b3486;name=git_461a63b9_2;destsuffix=vcs_cache/0e35a28c4e33036962bce91bafbe9644dff2efedc8d74c6625a224a2f445b021"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=3fc162c6f38a60f7e8b0e4f9085976f96bdbcf15;name=git_461a63b9_3;destsuffix=vcs_cache/98ad6fbb42913e285edba3dffb08e24a4552b82899deb671eb70fb27318c471a"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=56aae31c358ad2a4d56ca408ae9ac5c2f3d30648;name=git_461a63b9_4;destsuffix=vcs_cache/42377f5bed6dd130535d28053dfe53195acf88d9d4b8dc443cb65c6375e10574"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=5a70512c5d8b725a75638bfd349d5ddaf4a4002d;name=git_461a63b9_5;destsuffix=vcs_cache/f213c6c928eec4655be0b0feab958080a7f1d7036e193ccc06dbddcbbdb96655"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=796eee8c2d537a6e5c8de22908f4facea945ebde;name=git_461a63b9_6;destsuffix=vcs_cache/e3d69a9ee8ef52931417c6e9a640d6d4fbabb74b87d50ce3dc084e7b2e055f2f"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=8af14fe29dc178f8f16f3720e1da949120cecbeb;name=git_461a63b9_7;destsuffix=vcs_cache/f1bd1ca66295cb17fed8a5976cf59ac29773bf9d6730122ced5e117de0d3e357"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=8d1bb00bc6a7c8f61db72b2f4f2c500533ceb2cc;name=git_461a63b9_8;destsuffix=vcs_cache/fb9f2bc9aeaff6d696072f1eb000255867be4ee5cab317db72f23d8ec88f9a82"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=94a12d6c2237ea892a6074a6bf154d37b04fd28b;name=git_461a63b9_9;destsuffix=vcs_cache/7be2b57206b770a67f0233eaf298d8ee2253c5c1fb18b16490fcfe150808ab17"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=a0af3efb3deb0aa5253d43c55b96e303c64cc06b;name=git_461a63b9_10;destsuffix=vcs_cache/7e476d98613961f08f863a29fcd6ca794faa994c0585dd3b426b0e044eea1f16"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=b1a4ccb954bffa15cc305c5111ed01885cd839fd;name=git_461a63b9_11;destsuffix=vcs_cache/f76b725573d8fb7bc3ba3245a9f4b522563f8754b46c30e74c972436f7b1a418"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=b45e905df463ff5f9668293553ec0e2bda3b4ce4;name=git_461a63b9_12;destsuffix=vcs_cache/bb5c2d0541586f7d5aa127865d4447c3db9ec4af31be4a5b6672d043262f99e2"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=b8732ec3820db4bd1e4eda89392b7728e81bd825;name=git_461a63b9_13;destsuffix=vcs_cache/f7d20fde87efd6ba8466ca5345fcf51b151495ed9c9e16545fd32da881dd0041"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=dd9d682886f99d242574cd3eaea438ce7ea66399;name=git_461a63b9_14;destsuffix=vcs_cache/f05a28713ab30e4c74b8f2f7427773426c53102662b4a571e691122bfe61b785"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=ddb44dafa1424b98b42fcdc07df901bb7546608b;name=git_461a63b9_15;destsuffix=vcs_cache/7b0a08c7cc0c53bcf5881d844216c47496f8d89d20b5d7e822edded170955443"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=e639e219e6972b418a0e399cbfebfaa8650fad76;name=git_461a63b9_16;destsuffix=vcs_cache/622aa4b2e270374e6578de6d772d7651d46c72c325e2a310768fbc935e90ebb2"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=e85fd2cbaebc35e54b279b5e9b1057db87dacd57;name=git_461a63b9_17;destsuffix=vcs_cache/cd6b29f01a6d39c3603ebc6432008fbdcbaa798fdd217870e96e1691cd65bd45"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=ef028d996bc1e7e0d82a6f72fba4a35dea082183;name=git_461a63b9_18;destsuffix=vcs_cache/9e8a2b2fd63abcac4119eaa7a0d07392b3fee9071df3a5625a63c15f90f4aa52"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=f6391c0de4c7faa7ff952a3e47cf1dd2cdb18aaf;name=git_461a63b9_19;destsuffix=vcs_cache/21b127d794551fb8b68ee8353e95694c558cc521fbcaebf9911ca27598e19983"
SRC_URI += "git://github.com/googleapis/go-genproto;protocol=https;branch=main;rev=f966b187b2e5cc15e67ca68e47d6aa17b0cacf55;name=git_461a63b9_20;destsuffix=vcs_cache/9e94f890c97e6f0612c75732c81ca5e5c7f80a201da5df556807ed9893c25701"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;branch=master;rev=3775f633ce208a524fd882c9b4678b95b8a5a4d4;name=git_6bc32f05_0;destsuffix=vcs_cache/a2d24e539edf68ad5ba748345573eca51b9fd8341e4308b7bf9b8e0c25a69d08"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;tag=v1.69.4;shallow=1;rev=4103cfc52a951673d441f8b2c02eee96e31f1897;name=git_6bc32f05_1;destsuffix=vcs_cache/051c9b53bb6bcf4c5b7c1ab3c7efa7e830eaf91c3d727b3c80f22907a4a799c8"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;tag=v1.72.1;shallow=1;rev=4cf3cf7f386a1defff130a0b2a45d246c2fb19a6;name=git_6bc32f05_2;destsuffix=vcs_cache/33d87f75545c9bca9daa89273b1d0b1df75936951b9e027f923f9a77d99b9621"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;tag=v1.67.0;shallow=1;rev=6f50403edb0c2db1bb557168cf4e6f87ea2efdb5;name=git_6bc32f05_3;destsuffix=vcs_cache/cd5715c60f3d3c321c2f1230fdd08c5af12c68b69a250220d122cb104148ffd7"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;tag=cmd/protoc-gen-go-grpc/v1.1.0;shallow=1;rev=938f6e2f7550e542bd78f3b9e8812665db109e02;name=git_6bc32f05_4;destsuffix=vcs_cache/113fc503ab9b0f0885dbd999df98825584f23669cc9cda2ed230b52b85b92cee"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;tag=v1.72.0;shallow=1;rev=a43eba6fed49b81b84cfdba85c356aca22086d7e;name=git_6bc32f05_5;destsuffix=vcs_cache/98be1fc40399dd0d63ac4a0edfa2f9504b3219d4b6aaa1b7ea421b56af1f8570"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;tag=v1.75.0;shallow=1;rev=b9788ef265596eda98a4391079c70c3992ed47cb;name=git_6bc32f05_6;destsuffix=vcs_cache/9229d717259c6d4bce0a42eb7b7c4fe0695a33370ed995a86d1b6efb32d0f55d"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;tag=v1.73.0;shallow=1;rev=c52d02553f2649c28d0279bca17909a3a08de022;name=git_6bc32f05_7;destsuffix=vcs_cache/71ca0270e87698e679a332c50187781705d81eb20fb0c6cc5eb02b10f71f97ef"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;tag=v1.71.1;shallow=1;rev=cdbdb759dd67c89544f9081f854c284493b5461c;name=git_6bc32f05_8;destsuffix=vcs_cache/bc8f3fd45d0d471d9ddb353cea26b2c9d5275f94ca8a5f6d55f8a7300602e835"
SRC_URI += "git://github.com/grpc/grpc-go;protocol=https;nobranch=1;tag=cmd/protoc-gen-go-grpc/v1.5.1;shallow=1;rev=ec9dff77b186d5308955fe0fc50e3e4cbe187e2c;name=git_6bc32f05_9;destsuffix=vcs_cache/ce5a862c22ded840bff7b7ec1016804cb0af284075ea09fb5fe73b9866532a3a"
SRC_URI += "git://github.com/golang/appengine;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=4a4468ece617fc8205e99368fa2200e9d1fad421;name=git_aeb473be_0;destsuffix=vcs_cache/f21252fefb689e3b8d99b2b896a9d9f292a3eafc8d39f729c8403a89af18c1f0"
SRC_URI += "git://github.com/golang/appengine;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=54a98f90d1c46b7731eb8fb305d2a321c30ef610;name=git_aeb473be_1;destsuffix=vcs_cache/51f0674a310dd593213d36e872dee0ca0815e2a9ae81dcbe90432d1ad38330b2"
SRC_URI += "git://github.com/golang/appengine;protocol=https;nobranch=1;tag=v1.6.6;shallow=1;rev=553959209a20f3be281c16dd5be5c740a893978f;name=git_aeb473be_2;destsuffix=vcs_cache/a674d0c9404a47bf59cec9b7cb73ddb30e1943b49fbeca25158b12d9c82a809c"
SRC_URI += "git://github.com/golang/appengine;protocol=https;nobranch=1;tag=v1.6.7;shallow=1;rev=5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a;name=git_aeb473be_3;destsuffix=vcs_cache/6bdf990cc785ba8bbfcab2c1c60ac596e4bf69f43271a52a2739d56c5b1131ad"
SRC_URI += "git://github.com/golang/appengine;protocol=https;nobranch=1;tag=v1.6.5;shallow=1;rev=971852bfffca25b069c31162ae8f247a3dba083b;name=git_aeb473be_4;destsuffix=vcs_cache/1159422b97094fe82db8178caf011b661d8bf60c0193e5c8121fe79a2eea1829"
SRC_URI += "git://github.com/golang/appengine;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=ae0ab99deb4dc413a2b4bd6c8bdd0eb67f1e4d06;name=git_aeb473be_5;destsuffix=vcs_cache/79c0e2a1da93fdb0d933d94e90157fac1f5b9d1821c62aec9956c76be3ca6a57"
SRC_URI += "git://github.com/golang/appengine;protocol=https;nobranch=1;tag=v1.6.1;shallow=1;rev=b2f4a3cf3c67576a2ee09e1fe62656a5086ce880;name=git_aeb473be_6;destsuffix=vcs_cache/18c02d6f824283e4b90c4ca8b1b49c5a290085d9a4d9c19eb071924eee3223a3"
SRC_URI += "git://github.com/golang/appengine;protocol=https;nobranch=1;tag=v1.4.0;shallow=1;rev=e9657d882bb81064595ca3b56cbe2546bbabf7b1;name=git_aeb473be_7;destsuffix=vcs_cache/6985551872e9385a78906b511015e4428f8582eda7da3fa8b99f12fc9e94e0e3"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=02490b97dff7cfde1995bd77de808fd27053bc87;name=git_14bb952c_0;destsuffix=vcs_cache/aee168ddcfc4953d898f044e848275d235131068ee358fdbfa225b1445d818f1"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.28.0;shallow=1;rev=0324d5e90dc7753607860272666845fad9ceb97e;name=git_14bb952c_1;destsuffix=vcs_cache/49033fc86c907eec7703c9889427222e6749c980ce4775375829fbcd70e62659"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=067bed655e9cbc26f4dbac8f8897b30756d90990;name=git_14bb952c_2;destsuffix=vcs_cache/80181b41254dc7a8bd15b0bb830b29ab086896c5171b4b1bb95a3495cc79934f"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.102.0;shallow=1;rev=0d7f97a9b3585adda441cdfeded9b8be63747e24;name=git_14bb952c_3;destsuffix=vcs_cache/08fdddaae5db736ed379136272037185d4ab853a832f1653c2f822e879a71c3f"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.85.0;shallow=1;rev=11792bebde6e9cecf4506492e73cf8dfbd24fd92;name=git_14bb952c_4;destsuffix=vcs_cache/ae4bb175ca5e142dd76c50ba37d98f1fb64b94ff593973d562a6ce57fcce0c93"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.84.0;shallow=1;rev=18468acf7d119278efb116123252e439e2d3d6eb;name=git_14bb952c_5;destsuffix=vcs_cache/61903893b8af13cb3edd2d71e311b4e13f71ee952083bb5a08231187d6832ee6"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=19e022d8cf43ce81f046bae8cc18c5397cc7732f;name=git_14bb952c_6;destsuffix=vcs_cache/b64224330b0ca87becd851a9a620893cc055dc465211cb096e607415bad2113d"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;branch=main;rev=1d582fd0359e;name=git_14bb952c_7;destsuffix=vcs_cache/c00320645987201aaf8617eb3128c9bb7d3d7a860a929990dbdccc21c44592c3"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.61.0;shallow=1;rev=2311ef1bb8fb243771800754ba6c54e9d0bf3a67;name=git_14bb952c_8;destsuffix=vcs_cache/6c9d71a92656c7c025f6c2a54fc10769101063033dda6f34fdf475288685e50e"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.63.0;shallow=1;rev=27de32e7fe788edcd34d38cff8a7c0fe35ee4bfe;name=git_14bb952c_9;destsuffix=vcs_cache/475a29ebfe0a2bdeafaffdb72036000ca50bf8c9e6b435a00fa78a3d66e88d59"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.50.0;shallow=1;rev=32bf29c2e17105d5f285adac4531846c57847f11;name=git_14bb952c_10;destsuffix=vcs_cache/dd94f1077150431193b5beea2e9200eadd854cf5f8cc1943a64b6cdfab6edb73"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.43.0;shallow=1;rev=39fb9f0d81a68916f0849eb9410d8a4b7291b011;name=git_14bb952c_11;destsuffix=vcs_cache/b21d0306f078808a40c50693bb994f98d82aaef3862b71a8a93f1cb19f813dfe"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.108.0;shallow=1;rev=47f66d6aef279a056cad8d78681ba64f448c2c15;name=git_14bb952c_12;destsuffix=vcs_cache/de9b469d3a3f8400aa03da6da2163e42cf85eba7793d0681e608b74e0430f582"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.24.0;shallow=1;rev=4bb729045d611fa77bdbeb971f6a1204ba23161d;name=git_14bb952c_13;destsuffix=vcs_cache/12733c74266e790304493625a12bfaa45e5f030a99cccaac4015a7785e8f24ec"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.13.0;shallow=1;rev=4f42dad4690a01d7f6fa461106c63889ff1be027;name=git_14bb952c_14;destsuffix=vcs_cache/8de1e7954d8c65675145bfd8ebb8541edb70904906ed04fffeb0292b9e0f1406"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.93.0;shallow=1;rev=55f563db78ddd7a3506709e6ebb6b22ac02592b1;name=git_14bb952c_15;destsuffix=vcs_cache/0ab25feac90af2fa562bcb41329da0c00b76965033834a6cb63c02c1dc974fb8"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.103.0;shallow=1;rev=561b601736da57b2791ca9eeef72d9521009e563;name=git_14bb952c_16;destsuffix=vcs_cache/52fa443220f2b2f11f02053d4e5d6d8f5f053c1ac70bc093d7587603a8efffad"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.57.0;shallow=1;rev=5dffc2b13eedc703d5e81c47bc3d2029a48203cb;name=git_14bb952c_17;destsuffix=vcs_cache/3ce3b2ea78bec0b40dd7ac0e51d063036f80711ec5fa9974dd29f51247021349"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.67.0;shallow=1;rev=6db1fa95e5fb3e7b6bf456103b14570adade994a;name=git_14bb952c_18;destsuffix=vcs_cache/685c25c6df3a4b603c89ca6fef7475af30640ca908127eb41d3cf27d648f71cd"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.17.0;shallow=1;rev=6f5c88b9e8c709c0f1fff128c30b041c71d14da4;name=git_14bb952c_19;destsuffix=vcs_cache/8f93d42fb1d12795914e916cc1b915c46dbabe25edf4407a980c0abb3eb2296f"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.75.0;shallow=1;rev=702783924de298b278434494e613adb302b45fe1;name=git_14bb952c_20;destsuffix=vcs_cache/01ac8f28e7bc00d9d68dd984b82b393710a2f0a7308e41762cfe16a08b80d8db"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.41.0;shallow=1;rev=7570391cc25b18bef231a82fadc38f78fa76265c;name=git_14bb952c_21;destsuffix=vcs_cache/a2a24f2ac16563e37cd078940129a435eb60c6d7f36f2328fa3171f775258f85"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;branch=main;rev=7ca32eb868bf;name=git_14bb952c_22;destsuffix=vcs_cache/17b86b1250a4c17a2b6ae9cf13958013c8c6192a8a87e703a363bb57563c2c78"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.40.0;shallow=1;rev=7fd7a5fcdd3f78a6c49556a5358164cb1405bd51;name=git_14bb952c_23;destsuffix=vcs_cache/9f6b28d2bed04a7758913f4c4682b3f7783d6d556b391bb18bad189aa83af21e"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.18.0;shallow=1;rev=83789d6f76032d4cf96b41feedb3a77e7a1e8f1c;name=git_14bb952c_24;destsuffix=vcs_cache/c56bc734a94da4ee969db66434723db16fc71419a98e36113f925bdad3b7e053"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.35.0;shallow=1;rev=84df58a8914832693858b396c6099dee1756bf13;name=git_14bb952c_25;destsuffix=vcs_cache/ebd9bf9a722b43e71183c3050d89bf6ad9828d8e2906d5602b0ee9b9285d8b79"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.110.0;shallow=1;rev=892811cebf230c854bc0de88d8b69ff919cd270e;name=git_14bb952c_26;destsuffix=vcs_cache/f15fc66b7ffff407c397275f5747a9c3acf91240d2daf0aead21b6186b67baf0"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.51.0;shallow=1;rev=896f71cdd1e1bb6aca6dcba186a0b401ad44bbee;name=git_14bb952c_27;destsuffix=vcs_cache/7976fda09b3b704937ff096b751dd7a6dfbd93a1df6ceb71cff607665060b014"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.14.0;shallow=1;rev=8a410c21381766a810817fd6200fce8838ecb277;name=git_14bb952c_28;destsuffix=vcs_cache/a3c3d9d92d521b98db8b70e365e91b3db223f268a7e27dbe5788c9bfcaf9c55a"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.19.0;shallow=1;rev=96719b1b1f69ca4d05cf4091cfd67b9e44a412c4;name=git_14bb952c_29;destsuffix=vcs_cache/2346cfeecbf9a25b01bcd00bd66d67085b82e45f4115a5a89f581d929511dfdc"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.99.0;shallow=1;rev=977e871dbc6d880fa2392250a3d177598976b3d0;name=git_14bb952c_30;destsuffix=vcs_cache/a5c41118233024c0464ea7f41560a2cbf41638460bc4ac28ec50a0e309b2678b"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.47.0;shallow=1;rev=9814c054275da8707b6568da26cd8ff4a2ab9224;name=git_14bb952c_31;destsuffix=vcs_cache/66d1de6059eedffb58ffbbecc7e81b38122d33a658954100fae360cb3292e0d4"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.74.0;shallow=1;rev=9d43e7dc08e2598d4dcb661324c4877dfd63c4f9;name=git_14bb952c_32;destsuffix=vcs_cache/50d3d405a295773a6b07547dda37bca9b19f76ea040fa57253264a9cab92c64d"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.96.0;shallow=1;rev=a0399667a686370f56968529deacf0210cff02ef;name=git_14bb952c_33;destsuffix=vcs_cache/cbf28de57360be4df71c4784b4bad512f6e205fdc01ea4efe37a7dd5afaf7340"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.70.0;shallow=1;rev=aa4b66154abdb65fbe98769e4fb51558603c3bd9;name=git_14bb952c_34;destsuffix=vcs_cache/862919c9a83484220919f57da35a6bff3625eb4067565879b33db88ef8b7ff98"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.15.0;shallow=1;rev=aa5d4e47691e7ae1aebb5221ff8e4beea23fad72;name=git_14bb952c_35;destsuffix=vcs_cache/33ca300d48a3d01994bc33e565dff05122b46b20e9a3045025c97da167e2ad1e"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.55.0;shallow=1;rev=aa8b0a15ac02178cf982e8408bc8916450a205dc;name=git_14bb952c_36;destsuffix=vcs_cache/59df96a5466677a65a22e97e123f710b712e4fcf1c6d19eeff37ebdcb0a86526"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.106.0;shallow=1;rev=ac7eb8f2e54c91697b33971d184eb155867cf1a2;name=git_14bb952c_37;destsuffix=vcs_cache/f5dcaae5a98835ab56b377a5876f18ecc384cd97a5db002f74fe832cc0f81e1f"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.77.0;shallow=1;rev=aff4922203bb81ad0e6e6f8c4bbd2f30f26aab27;name=git_14bb952c_38;destsuffix=vcs_cache/880c3361e785252e4d9f57c8c3f17b2274fb9c51066cbb330b3cc4154b16d02f"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.20.0;shallow=1;rev=c24765c18bb761c90df819dcdfdd62f9a7f6fa22;name=git_14bb952c_39;destsuffix=vcs_cache/23eb4a26dc9b47453374f9dddbe95b6b9a0854dfeda0613040b861060ef6be1e"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.54.0;shallow=1;rev=c64fa6012bad2381cab8a3c764c4eb4b8b14258d;name=git_14bb952c_40;destsuffix=vcs_cache/8b3b955eb52f31e4c95e081aa7ac1f1f998c563d10fb31127b86aba47f59ad88"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.29.0;shallow=1;rev=cb1f45ca288bfafb52ab824361c939d908e525ad;name=git_14bb952c_41;destsuffix=vcs_cache/6e4d31f70d461be2c439583bf327fc4c547e8b4fc2d4195b358baa66344135b5"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.48.0;shallow=1;rev=d1f34a8c3031deea655257990c945f5344ea00b6;name=git_14bb952c_42;destsuffix=vcs_cache/f9686ee7a87eec7c04edb73a0b426ef15410ad38064ea1b706f4c2031cbee1bb"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.100.0;shallow=1;rev=d530a938a76a37ae219aeeba548c197dc171f83b;name=git_14bb952c_43;destsuffix=vcs_cache/c5a47d80229d7d750e14c99eaafeb99678b1e5de3c83128b52dcc8bce0ff8e63"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.122.0;shallow=1;rev=d5e0fb25dede40d00b73d5414b2a14f00c9bcc55;name=git_14bb952c_44;destsuffix=vcs_cache/61639457aecdcc06b129ab636e71b83971f8ebde9f3631c97c5aad5af58b8ccf"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.30.0;shallow=1;rev=dcbe36d62163edc6a7dca06c1d9f34881a2283b7;name=git_14bb952c_45;destsuffix=vcs_cache/29c1bbf10afb63358cfa30a9f53d44df868c21a0799554fe7d303bc45f9f140d"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.8.0;shallow=1;rev=dec2ee309f5b09fc59bc40676447c15736284d78;name=git_14bb952c_46;destsuffix=vcs_cache/20791057c93ae70c656a8118745e267b31231c8300e5f7c7ae21f2333fa06419"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.22.0;shallow=1;rev=e50386d957b9722c99d7de922c42d9226a39e82e;name=git_14bb952c_47;destsuffix=vcs_cache/51f976a807b7c2058d6edfb8c77975e40b017a777ddeb30c523d10e73cf56efb"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.80.0;shallow=1;rev=e8e8d593dce441f2b98d547c6c227d5480858fac;name=git_14bb952c_48;destsuffix=vcs_cache/86aa4eb8d630fed04289532b66769d3446b74ea683252c7a66d1c0d805c299d3"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.111.0;shallow=1;rev=e99d0d5c5113e322b208887d938b66ea3d026078;name=git_14bb952c_49;destsuffix=vcs_cache/bdf99a56b6f205f7af13b9a8f10d5bc37b3128594f515a49cddd624c5eb7adeb"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.128.0;shallow=1;rev=f06cac5563b71f297a8ee726382fadc106995924;name=git_14bb952c_50;destsuffix=vcs_cache/e90d7f7156d1f61d6b95895f31f7fa88b01f82c3cdd6f1ba4c768a788275b3bf"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.114.0;shallow=1;rev=f79df4875aea4520e4aff5c5ebceb9e01b7b60a2;name=git_14bb952c_51;destsuffix=vcs_cache/b91e9477739dc7139d4ad535354a67d2713d6f21e23e99bf5fb613e360311583"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.36.0;shallow=1;rev=f7ce5abca6e37cc937e5fe7992ba06892fb0d7fe;name=git_14bb952c_52;destsuffix=vcs_cache/68b17b88fafe84d46235c1198b6a1107b19382274315798ee00fe0ac95accf85"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.97.0;shallow=1;rev=faa845adbe40f4980caabbeda7935e190099f6a2;name=git_14bb952c_53;destsuffix=vcs_cache/e75b1fbd97c416c193ed231dec3432747a99b66650f372f90d04573cb159d479"
SRC_URI += "git://github.com/googleapis/google-api-go-client;protocol=https;nobranch=1;tag=v0.9.0;shallow=1;rev=feb0267beb8644f5088a03be4d5ec3f8c7020152;name=git_14bb952c_54;destsuffix=vcs_cache/6b01f073069e36d3c19b2a04625a54b633c9230c66ffbee31c81f8638377c690"
SRC_URI += "git://github.com/protocolbuffers/protobuf-go;protocol=https;nobranch=1;tag=v1.28.0;shallow=1;rev=32051b4f86e54c2142c7c05362c6e96ae3454a1c;name=git_5d5fe344_0;destsuffix=vcs_cache/e3d069a641ceab794ab9e1d2243c93dbc82ba4bb2ac9bf20657b5b0e47023f39"
SRC_URI += "git://github.com/protocolbuffers/protobuf-go;protocol=https;nobranch=1;tag=v1.25.0;shallow=1;rev=3f7a61f89bb6813f89d981d1870ed68da0b3c3f1;name=git_5d5fe344_1;destsuffix=vcs_cache/3d6aee3027d2f1fb2a147e8904f03ce6eb1828daf030dc46aaf1528caa0d21f7"
SRC_URI += "git://github.com/protocolbuffers/protobuf-go;protocol=https;nobranch=1;tag=v1.28.1;shallow=1;rev=6875c3d7242d1a3db910ce8a504f124cb840c23a;name=git_5d5fe344_2;destsuffix=vcs_cache/d5fa91d990cc4728182eeae9fe0d98e9b1ccb7b9e8a553c7d19cec22e2cf2d46"
SRC_URI += "git://github.com/protocolbuffers/protobuf-go;protocol=https;nobranch=1;tag=v1.27.1;shallow=1;rev=b92717ecb630d4a4824b372bf98c729d87311a4d;name=git_5d5fe344_3;destsuffix=vcs_cache/3d8bf27609bc75da68dd8664a5bf51cb5bfb4994d2c7dc5c774e75719e50cfbf"
SRC_URI += "git://github.com/protocolbuffers/protobuf-go;protocol=https;nobranch=1;tag=v1.23.0;shallow=1;rev=d165be301fb1e13390ad453281ded24385fd8ebc;name=git_5d5fe344_4;destsuffix=vcs_cache/fe9b8770004b8051ad2328d8bc677057a91d457f03b0a432dda814855d97d008"
SRC_URI += "git://github.com/protocolbuffers/protobuf-go;protocol=https;nobranch=1;tag=v1.26.0;shallow=1;rev=f2d1f6cbe10b90d22296ea09a7217081c2798009;name=git_5d5fe344_5;destsuffix=vcs_cache/370ff55436487ce8327607354d76a2fe5c1bea3a9995f9dae41280231ebd4e59"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.36.8;shallow=1;rev=0833cf304e6344e895e819f769afa28107fe8892;name=git_a6c5d6b8_0;destsuffix=vcs_cache/da991c95fec3b53ee8ddaab1d419b9756936e9dd59532fea1f38d6d67ef43db9"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.29.1;shallow=1;rev=095a62b71f4b42d145df9699b90429dd082b43ed;name=git_a6c5d6b8_1;destsuffix=vcs_cache/a312248f346320a1ba74d3bbb98a0f8d3e7717873018d75af7975ad8f487b1ee"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.36.4;shallow=1;rev=259e665f26b1019a88c9ed6c7f16f01242838720;name=git_a6c5d6b8_2;destsuffix=vcs_cache/034b4a578d2aff6fd5d4fed9f4708bcedc2f3344332b2aba159fde5758b93361"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.32.0;shallow=1;rev=3068604084670a0d5cc410b3489db359c30afd33;name=git_a6c5d6b8_3;destsuffix=vcs_cache/b22d0efd6756094dcd14604ce193c76b4928ad6de5466b9d0bf040b6476e6331"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.36.6;shallow=1;rev=3f79c52e7fe26f88843469913dcc34d0396be330;name=git_a6c5d6b8_4;destsuffix=vcs_cache/3c8745b1e1bcd136c1d376e4203a578aa3349100d6bc64bd9da6cc2b9fbfab9f"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.36.3;shallow=1;rev=54ef969ef0604da9ed7e70e909a8b27f0fb8aa0d;name=git_a6c5d6b8_5;destsuffix=vcs_cache/fa2ad7c51853cbdbf962e5cd1221f5a3ad33c75f67b5a344abcc90ba573afa8b"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.31.0;shallow=1;rev=68463f0e96c93bc19ef36ccd3adfe690bfdb568c;name=git_a6c5d6b8_6;destsuffix=vcs_cache/a4d2974b1f89a00f845374732673a84302fdd1acc1cbbc7001c67979d45fa8b6"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.36.1;shallow=1;rev=7fc5ff4e14aedbbbaab88f3a282551071c10e856;name=git_a6c5d6b8_7;destsuffix=vcs_cache/ff88d473798ceffc8e585ca58e7a46e09d2568eefb05983f028187f8a71b23f9"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.34.2;shallow=1;rev=c33baa8f3a0d35fd5a39e43c22a50a050f707d34;name=git_a6c5d6b8_8;destsuffix=vcs_cache/e7d3ef82ba270dd10c446201e07763e32da1576081630eb3ea46b5c7327be8ac"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.35.2;shallow=1;rev=c72053a9062dd4bc86a75c21f5d8134136ccbf2e;name=git_a6c5d6b8_9;destsuffix=vcs_cache/0c67444ea9910e060a9eecff1756801f86c29e8b3b530800a00304736b7b2996"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.33.0;shallow=1;rev=ec47fd138f9221b19a2afd6570b3c39ede9df3dc;name=git_a6c5d6b8_10;destsuffix=vcs_cache/dcc4da028231d46d51a0a65ad219b43de4d614eeb33328a10e7c8dd47679e348"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.36.5;shallow=1;rev=f09e239720f1bcd654d565107b1d4feea184d552;name=git_a6c5d6b8_11;destsuffix=vcs_cache/bb51a2b86fda968e37d775eaa5bc31bf06a0d06b73ee9f4351d49197c82cf64f"
SRC_URI += "git://go.googlesource.com/protobuf;protocol=https;nobranch=1;tag=v1.30.0;shallow=1;rev=f221882bfb484564f1714ae05f197dea2c76898d;name=git_a6c5d6b8_12;destsuffix=vcs_cache/b9deebfd9979277a79b13801ac2e728a08c587179b0e7499f6451f8afbfa738e"
SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;tag=v0.22.5;shallow=1;rev=3fb168f674736c026e623310bfccb0691e6dec8a;name=git_aae3ac7b_0;destsuffix=vcs_cache/8a7aae40966b2c25f188d8402e8780f5b6752dc4074d70cf769b8587db93b86e"
SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;tag=v0.23.0;shallow=1;rev=49838f207d61097fc0ebb8aeef306913388376ca;name=git_aae3ac7b_1;destsuffix=vcs_cache/d410e1dd0d94491f021d4910237b8b4c2590c8e960b0e34b9bd72de650d36912"
SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;tag=v0.22.4;shallow=1;rev=5fa069b99bc903d713add0295c7e0a55d34ae573;name=git_aae3ac7b_2;destsuffix=vcs_cache/abc55fbdb4d7ecc00052e93e738819ed19e8678a0e81e6ba272cc0f6029e3ab8"
SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;tag=v0.22.0;shallow=1;rev=9c377598961b706d1542bd2d84d538b5094d596e;name=git_aae3ac7b_3;destsuffix=vcs_cache/63212ea529bb5d738d44ce98ce03a4809bf9767b4096d648ef784291d63b7cb3"
SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;tag=v0.22.2;shallow=1;rev=aad2c527c5defcf89b5afab7f37274304195a6b2;name=git_aae3ac7b_4;destsuffix=vcs_cache/fa37ec6b514bbcb118fa58724f380b6cb139f97c6f223b0a4b44ac390ab94e00"
SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;tag=v0.24.0;shallow=1;rev=b1a01ee95db0e690d91d7193d037447816fae4c5;name=git_aae3ac7b_5;destsuffix=vcs_cache/8607148e6fbec2ab3d0020ea3ffb8bdce7bc15dae97ebec60385afa6ddb97c29"
SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;tag=v0.18.0;shallow=1;rev=b7bf3cdb64150a8c8c53b769fdeb2ba581bd4d4b;name=git_aae3ac7b_6;destsuffix=vcs_cache/1b011ee7ebb631e966493c0d19433b5804acba42c5072ef8869f3a3fc905fad7"
SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;tag=v0.22.3;shallow=1;rev=d835ff86be02193d324330acdb7d65546b05f814;name=git_aae3ac7b_7;destsuffix=vcs_cache/6c9a6d2f21df96164e7a7fa2ec9d155bed332879071261291a3b7f6fb5095638"
SRC_URI += "git://github.com/census-instrumentation/opencensus-go;protocol=https;nobranch=1;tag=v0.21.0;shallow=1;rev=df6e2001952312404b06f5f6f03fcb4aec1648e5;name=git_aae3ac7b_8;destsuffix=vcs_cache/7efa0f7919e85f5daf2689cc548f0965041f514ae0deb8609e733b85d21729a8"
SRC_URI += "git://github.com/WireGuard/wgctrl-go;protocol=https;branch=master;rev=a9ab2273dd1075ea74b88c76f8757f8b4003fcbf;name=git_defa6c45_0;destsuffix=vcs_cache/3303b8532c5eda2a6a0b07aff895c8ace79d08b37be9a57e2134ccde31c6fe3c"
SRC_URI += "git://git.zx2c4.com/wireguard-go;protocol=https;branch=master;rev=12269c2761734b15625017d8565745096325392f;name=git_71194ef8_0;destsuffix=vcs_cache/f27d42cad7e531e67b9eb454350e09b0fb8aa120131d49898b20c16531c40497"
SRC_URI += "git://git.zx2c4.com/wintun-go;protocol=https;branch=master;rev=0fa3db229ce2036ae779de8ba03d336b7aa826bd;name=git_ef120289_0;destsuffix=vcs_cache/8708f19e807bdf4dc48c8a3783169a0aa59ae11fec12b2c9a9e04b573d1b6920"
SRC_URI += "git://github.com/yaml/go-yaml;protocol=https;nobranch=1;tag=v2.4.2;shallow=1;rev=246a95c22c57f15ef6d3305a1f1b8a0b05e4d560;name=git_780106c7_0;destsuffix=vcs_cache/8e5c657c86d0e182b5f4d6ed3715a0ec93dfb998d8ef94555af035578a3aba8d"
SRC_URI += "git://github.com/yaml/go-yaml;protocol=https;nobranch=1;tag=v3.0.4;shallow=1;rev=c3552c15f996075a7634df5159d9161c67bf3d76;name=git_780106c7_1;destsuffix=vcs_cache/28af0e86ac86bfc3e00873c91eee3b58eb4f82e4f4c0f7963ccfc8872fd4a4a5"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-proto-go;protocol=https;nobranch=1;tag=v0.15.0;shallow=1;rev=2659449c2dc97fef28e27631232bcb8f3bcf1f47;name=git_430aa893_0;destsuffix=vcs_cache/f085631f70a329e4a9ef1aced2ceb9120088d7e7e5295d12895941d8c8c01f1b"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-proto-go;protocol=https;nobranch=1;tag=otlp/v1.7.0;shallow=1;rev=8e4e66c4c1fa47ca51f444db26dd23f5eafd3d45;name=git_430aa893_1;destsuffix=vcs_cache/3044452349d050f7201d6290f2b0fc0bffc98e2463968cb32684782af91feb1a"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-proto-go;protocol=https;nobranch=1;tag=otlp/v1.0.0;shallow=1;rev=97744b2e4a0fa6787b96b9c3c740daefca754333;name=git_430aa893_2;destsuffix=vcs_cache/bdd125ee04992b48002f914f38692ddfc6839598c5d25d8a54e90d1ace6dc9f5"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-proto-go;protocol=https;nobranch=1;tag=otlp/v1.5.0;shallow=1;rev=ec37164291d0b5f316b241895d14d36aea7bf873;name=git_430aa893_3;destsuffix=vcs_cache/bb2df70072e7b2abbf91b8af5835a5535fafdffbd50581924af5c001b24385f3"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;nobranch=1;tag=v1.27.0;shallow=1;rev=5661ff0ded32cf1b83f1147dae96ca403c198504;name=git_120ed83a_0;destsuffix=vcs_cache/64b3ddcba5dcae1058f524ef477a77506770fb67e3fa49ca7a583d037cb37289"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;branch=main;shallow=1;rev=5ba5e7a449f36c1c02710bbaa517263797046db0;name=git_120ed83a_1;destsuffix=vcs_cache/b9cfff93834a1198be78227766ecca2711856b6b1b0c7afbad371f153e4a7552"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;nobranch=1;tag=v1.37.0;shallow=1;rev=69e81088ad40f45a0764597326722dea8f3f00a8;name=git_120ed83a_2;destsuffix=vcs_cache/781ff191099a4dbb688b1ab043b1c6ab5c6d691f0f32fade9b2451f7eb5f55dc"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;nobranch=1;tag=v1.32.0;shallow=1;rev=7cfbd86a605c85e598eca9a899f6176b17076f4f;name=git_120ed83a_3;destsuffix=vcs_cache/a88bcf462be50b5ec9893d845737cdb0869a6945d49c699596a1c973d2ca76d0"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;nobranch=1;tag=exporters/zipkin/v1.31.0;shallow=1;rev=bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0;name=git_120ed83a_4;destsuffix=vcs_cache/32a87864cfa3320f417f47862642c312d2c19908839bd781f0f1073a0a9b899e"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;nobranch=1;tag=exporters/otlp/otlptrace/otlptracehttp/v1.24.0;shallow=1;rev=e6e186bfa485f679e35bb775cba63ca24029590d;name=git_120ed83a_5;destsuffix=vcs_cache/b1b319cca9ee8cc859071d82cc0f6e13aedc92fac1ce6a55102c2d5669745a56"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go;protocol=https;nobranch=1;tag=v1.34.0;shallow=1;rev=edc378fa8d0ce3f00fa8f3939b423436b3f230cf;name=git_120ed83a_6;destsuffix=vcs_cache/b3db51e5327b5a2694ee02cefa53a9678f2b3e00617b8462e1ea597e27997f25"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;protocol=https;nobranch=1;tag=instrumentation/net/http/otelhttp/v0.52.0;shallow=1;rev=007ae66d4a15c43bea20b382c0fd900c66133328;name=git_9cecf883_0;destsuffix=vcs_cache/f71518c5ea0c79540f0f07892e3c5ea5837930a60d0839f291f7e8c3d36b6bf5"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;protocol=https;nobranch=1;tag=instrumentation/net/http/otelhttp/v0.56.0;shallow=1;rev=9cf5701e6b6611b2c406639039a1bccd883db080;name=git_9cecf883_1;destsuffix=vcs_cache/48c3168b81321d95e77298c427895735ed62dcca9c4c8b4f797f78d60f2ee89c"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;protocol=https;nobranch=1;tag=instrumentation/net/http/otelhttp/v0.53.0;shallow=1;rev=af75717ac4fb3ba13eaea83b88301723122060cf;name=git_9cecf883_2;destsuffix=vcs_cache/df6b1cf4f44c1c96687389f1f68f6c5b860a47db8720fe38eb28f2429459ca8f"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;protocol=https;nobranch=1;tag=instrumentation/net/http/otelhttp/v0.60.0;shallow=1;rev=bc53d2b4eb4de79471bc54f64a5c3dcefa8720d7;name=git_9cecf883_3;destsuffix=vcs_cache/e68cfa240102a0ba411506ff8b1aa264dbdc8d1fde95e16ea08f3695aad05b0b"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;protocol=https;nobranch=1;tag=instrumentation/google.golang.org/grpc/otelgrpc/v0.59.0;shallow=1;rev=e6e7902d104cb633154df760add009a5a0c2d5a3;name=git_9cecf883_4;destsuffix=vcs_cache/dbfe72d27de1e23d10d744bf87e29fd48bda6f510c9fb5bf985eb3dd37e62476"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;protocol=https;nobranch=1;tag=instrumentation/net/http/otelhttp/v0.58.0;shallow=1;rev=f6667f6f9eab2370f46d0903cf323cda3b7ca2bd;name=git_9cecf883_5;destsuffix=vcs_cache/a9c4a9b02eb2c6f492e0e6c3458d6906943eb07d3f7270472988e0c7198d6399"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-contrib;protocol=https;nobranch=1;tag=instrumentation/github.com/emicklei/go-restful/otelrestful/v0.44.0;shallow=1;rev=fdfa6e3abf03caa6a1d3267913e01526d97eab8a;name=git_9cecf883_6;destsuffix=vcs_cache/0343665c2cbdd84e9074c44a022689e135907211e6bffff17bf631dfef6a2417"
SRC_URI += "git://github.com/open-telemetry/opentelemetry-go-instrumentation;protocol=https;nobranch=1;tag=sdk/v1.1.0;shallow=1;rev=b93ae2eed39af4db57ef0da19b3942b17d961ba1;name=git_0cf36a85_0;destsuffix=vcs_cache/7d299be0b1f84cdc22954c7fe0a7398309e62b99c0488a544fd0be16b0db85f4"
SRC_URI += "git://git.sr.ht/~sbinet/gg;protocol=https;nobranch=1;tag=v0.3.1;shallow=1;rev=0aec66a71f6b9e1073d2df5b84c4a3523cb0f29d;name=git_7786c911_0;destsuffix=vcs_cache/b0b7c32c517341f1ab275e93f37f0bf93a8bec77322e2c0c651229e3e4fcbb3b"
SRC_URI += "git://git.sr.ht/~sbinet/gg;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=d15090c6ba8121f94d1c998a228c099f192d5a1c;name=git_7786c911_1;destsuffix=vcs_cache/802f333bb90d1bafe13e0bdd35cad5e77d453ca60c79b907d2a34a16cbff8413"
SRC_URI += "git://github.com/google/gvisor;protocol=https;branch=master;rev=7594667507d7114e142d8c19810cbfe53088be46;name=git_17197a93_0;destsuffix=vcs_cache/12f47a5ee7cbad248c7615a62fee820a9df218ea4343550d804674dd7205d41b"
SRC_URI += "git://github.com/lithammer/dedent;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=8478954c3bc893cf36c5ee7c822266b993a3b3ee;name=git_3cad4305_0;destsuffix=vcs_cache/d53248f36af525e84f4f7c5a91ae7d7d486541f8dd66f43aa6de8ea8f34aae23"
SRC_URI += "git://github.com/samber/lo;protocol=https;nobranch=1;tag=v1.47.0;shallow=1;rev=bbd44ff2a9c7f4bd4a28ecd9cfdfc41e3339453b;name=git_e2b620fe_0;destsuffix=vcs_cache/3f33461b742b4fc0fcbf6de70ccd1ac12d7f3184b7cb646b2572e13b3c0caf0f"
SRC_URI += "git://github.com/apache/thrift;protocol=https;nobranch=1;tag=v0.16.0;shallow=1;rev=2a93df80f27739ccabb5b885cb12a8dc7595ecdf;name=git_354ad823_0;destsuffix=vcs_cache/e3a0f9ad78c3b60bd030f145bb7641d229da7b58694651a9b20b0068eae47729"
SRC_URI += "git://github.com/apache/arrow;protocol=https;nobranch=1;tag=go/v11.0.0;shallow=1;rev=f10f5cfd1376fb0e602334588b3f3624d41dee7d;name=git_8c8c14f7_0;destsuffix=vcs_cache/a77f4e48e75b4e5bdd75a92fcd6394b6be77f28b9f8dbdb31f2e909698e54c4d"
SRC_URI += "git://github.com/chai2010/gettext-go;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=274d1753d015d0362761b6a1cc2a572e6a035913;name=git_0181700b_0;destsuffix=vcs_cache/cba9b4e61c984a3976533386ddf554039d37c1b026fc80032c10b80d834a8bf2"
SRC_URI += "git://github.com/gobwas/glob;protocol=https;nobranch=1;tag=v0.2.3;shallow=1;rev=5ccd90ef52e1e632236f7326478d4faa74f99438;name=git_84be3b9c_0;destsuffix=vcs_cache/9ea137b0f545be63130971285b3e0b109491f0a0c45197efd72385336ab0ed05"
SRC_URI += "git://github.com/imdario/mergo;protocol=https;nobranch=1;tag=v0.3.16;shallow=1;rev=14fe2b165b83359196f820886a2b24f2771729e9;name=git_c84ab7ed_0;destsuffix=vcs_cache/290fb19f9a5f9073db90468b4dc0e8fe8311dc6cedba860d5135f4d0e7fd7ecc"
SRC_URI += "git://github.com/imdario/mergo;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=59ea6a9cd9f9c60cb6b1c58476f76cd3172ccebf;name=git_c84ab7ed_1;destsuffix=vcs_cache/ec93951cf02739e6e999cf0902a7970a4983432145559425fd7600b4d7fd553b"
SRC_URI += "git://github.com/pquerna/cachecontrol;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=fb00f8a766ae43bf209f50299ce7d69669416dfb;name=git_0e035927_0;destsuffix=vcs_cache/55ff67f1ea0d8e70a60dfc1e76d10663447207af4f4f70ff5260aee35790d0b7"
SRC_URI += "git://github.com/subosito/gotenv;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=14a05352a5cf0f66fd7cbce114374f56065891f0;name=git_5b5e0365_0;destsuffix=vcs_cache/969b108156150f99db1b4fd02a8e4c75fe9263a14398b659bd61cae4c3e63199"
SRC_URI += "git://github.com/subosito/gotenv;protocol=https;nobranch=1;tag=v1.4.2;shallow=1;rev=d2e64e6317e94db9c598bb9934e75fb80c804bca;name=git_5b5e0365_1;destsuffix=vcs_cache/aeac8220bb7bbb026571421c2fa54a6dcf67461f52be920d4a100e2e8d187440"
SRC_URI += "git://github.com/ipfs/go-ipfs-ds-help;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=280a3672448d57698e2cc194554a1352e892e7b7;name=git_efd04fb0_0;destsuffix=vcs_cache/6ba25efee6af4970cde743d8e7bcd39628b79b4c3bd495ed64450eea9b3d245c"
SRC_URI += "git://github.com/ipfs/go-ipld-format;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=608bf9dd5361098bf4f2ac4655efc9eba7b17488;name=git_93a7ca2e_0;destsuffix=vcs_cache/2c8abcdc7505ba5ad9d751602c5057897b469a3de8eb323f0042eff113792129"
SRC_URI += "git://github.com/ipfs/go-ipld-legacy;protocol=https;nobranch=1;tag=v0.2.1;shallow=1;rev=f5846723bf335db820f20f1c9fbf7fc1a79a8940;name=git_b35c95e5_0;destsuffix=vcs_cache/1dee012c6d69e765a24ba0342ef798dbebe3ea8617aec1e378bbf04178dd96c7"
SRC_URI += "git://github.com/ipfs/go-datastore;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=7548998537794105418980aeb5dac19802712392;name=git_66200565_0;destsuffix=vcs_cache/b3cb6a7561cac9e589f4c8266ea2b5b4e77171a8317faf9c69dc2568212ad429"
SRC_URI += "git://github.com/ipfs/go-datastore;protocol=https;nobranch=1;tag=v0.8.2;shallow=1;rev=d16c26966647697a53ec76d918ec9bb41e32a754;name=git_66200565_1;destsuffix=vcs_cache/92705f0ee4b6e2cd834bb90b4513c2bd9c9a8451c107e78071593fed4a92e96a"
SRC_URI += "git://github.com/ipfs/go-test;protocol=https;nobranch=1;tag=v0.2.1;shallow=1;rev=f3ae76318f77ca73afecab447ac9ca25404299ae;name=git_5d782f78_0;destsuffix=vcs_cache/bceb6b587f00ccea350078d22efbe1bd7545b4c1532a826fdf4cb367e199ce7e"
SRC_URI += "git://github.com/ipfs/go-bitfield;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=345bb295b923068375b7b171ffc4b0923abd1c11;name=git_c82cbae8_0;destsuffix=vcs_cache/376f02b97dcb2f8a8be0306192e9e62255f78cb5af9b48d670e561ab889a8cab"
SRC_URI += "git://github.com/ipfs/go-detect-race;protocol=https;nobranch=1;tag=v0.0.1;shallow=1;rev=52daa73989bc95b2fa97d6c610adf62d04eb7822;name=git_1d6a6999_0;destsuffix=vcs_cache/d422579bf9d29199fa61fa3a9d6dda933e08476f6794974e89c2b8d7e74b8ecc"
SRC_URI += "git://github.com/ipfs/go-ds-badger;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=f461792fa44987cac9b4c683e31af53868e887e2;name=git_6c310dcb_0;destsuffix=vcs_cache/6f79c621ab08266e6149be10383abb8c827191168d255ab2a832df94050b94ea"
SRC_URI += "git://github.com/ipfs/go-unixfsnode;protocol=https;nobranch=1;tag=v1.10.0;shallow=1;rev=965a4aafac14a4bbe7b953faa0533d3d5db20680;name=git_d20770fa_0;destsuffix=vcs_cache/3854aa73103efff253b820c998d65b128a32cf35789d23e09f22f34fb90a2b29"
SRC_URI += "git://github.com/ipfs/go-ipfs-delay;protocol=https;nobranch=1;tag=v0.0.1;shallow=1;rev=6482ad624d0b4f4053563439f8ca0bd619fbc737;name=git_058a6d10_0;destsuffix=vcs_cache/2ced3804ecf261bdadd8b09ef35b7f54afb27f27bd9994bded6cc96388306052"
SRC_URI += "git://github.com/ipfs/go-ipfs-delay;protocol=https;branch=master;rev=70721b86a9a82e1fb77dbdfe9db3f10407fe2e87;name=git_058a6d10_1;destsuffix=vcs_cache/ab94caa5e416745c3fbbe4868a9b5e36ed3b125b1a1f7682170f34abbd593eac"
SRC_URI += "git://github.com/ipfs/go-metrics-interface;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=c39372ec01d1820f629d64aeda6ae14be6b128f6;name=git_0e20a141_0;destsuffix=vcs_cache/bf95c79de3e8d7bb90d653071611e24b72ab888b5e3e7cfe3945ee4a48da0a88"
SRC_URI += "git://github.com/ipfs/bbloom;protocol=https;nobranch=1;tag=v0.0.4;shallow=1;rev=627bb99eb0f4c49ab3e3276f5574b9b80f8aa3bc;name=git_ee7dfa23_0;destsuffix=vcs_cache/883bfe2c0bb81f720ff004517378cb4f1692475d48c701ce2b5fcca95cb1cda8"
SRC_URI += "git://github.com/ipfs/go-log;protocol=https;nobranch=1;tag=v2.5.1;shallow=1;rev=8625e3ec81bdeb96627de192e6fe21eab5896603;name=git_66085d92_0;destsuffix=vcs_cache/6132090d51b984068211ce1e3b6e31ae83773207cec061edd37e70352b888775"
SRC_URI += "git://github.com/ipfs/go-log;protocol=https;nobranch=1;tag=v1.0.5;shallow=1;rev=c39ee80c0915c5cca41dc1311e848c2fd7fa4101;name=git_66085d92_1;destsuffix=vcs_cache/bc9ee2138a065b3312fa69d9a7697bab05247b0b45a74a95517a9b6ea98664c9"
SRC_URI += "git://github.com/ipfs/go-log;protocol=https;nobranch=1;tag=v2.1.3;shallow=1;rev=fc55b72ab4f26040dd007172ce859cdd944efbef;name=git_66085d92_2;destsuffix=vcs_cache/f0c0123b3fc95652442909cabfb06200269dda34056e1d024fe2caea34a21147"
SRC_URI += "git://github.com/ipfs/go-block-format;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=f2d9400e8a49f4ae64a2e4e66834dbc7453be478;name=git_3026f425_0;destsuffix=vcs_cache/23eba249ccd722126d191eb41c03c13d1b847782101f8c75ae88c76595591d69"
SRC_URI += "git://github.com/ipfs/go-ds-leveldb;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=6f6dc580f7325ad411fc5967ccee67e40545e208;name=git_87f1f072_0;destsuffix=vcs_cache/d0edff3f8018e43ea279d3a469c021de0eb2e793e1a9e10fe146ef3519ae9f9c"
SRC_URI += "git://github.com/ipfs/go-peertaskqueue;protocol=https;nobranch=1;tag=v0.8.2;shallow=1;rev=10a364a3e238a12df26dc230596a747e4b243982;name=git_72f4de03_0;destsuffix=vcs_cache/218357a48c3e4748c51dc38cfb5d6e2746e7f7f9fa2f27595e08db8aef31505f"
SRC_URI += "git://github.com/ipfs/go-merkledag;protocol=https;nobranch=1;tag=v0.11.0;shallow=1;rev=890b4a2fb82790a5cc0b23d796f505405024d002;name=git_1de54a51_0;destsuffix=vcs_cache/2b30ec15a11e12b888e824ccec20f63aa3a60230f11b0e721ff79999438f7495"
SRC_URI += "git://github.com/ipfs/go-ipfs-util;protocol=https;nobranch=1;tag=v0.0.3;shallow=1;rev=f92bd273d9d66cc552c795bc5a4c002ca19fd0cd;name=git_d5e8ebc0_0;destsuffix=vcs_cache/ff9ab42531db569020f257cc310e025a1fcd6310ebc3388003527b258955f5a9"
SRC_URI += "git://github.com/ipfs/go-cid;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=5cddba5d532ac5adeec87f5542c057e1dbfbce9b;name=git_63849489_0;destsuffix=vcs_cache/f9d98dac659a9ed4485c28357c206284fce4a2443cdbe1fd53692667347fef19"
SRC_URI += "git://github.com/ipfs/go-ipfs-pq;protocol=https;nobranch=1;tag=v0.0.3;shallow=1;rev=a7d14eb95188c7e0d8bad387df29e4026f787289;name=git_7d2a202f_0;destsuffix=vcs_cache/003f429d117659d17e098921ba943c1b0748d7df069e8b95ec7bd7fab8c06f46"
SRC_URI += "git://github.com/ipfs/boxo;protocol=https;nobranch=1;tag=v0.29.1;shallow=1;rev=d11922eef338d1d71f5c9793e33fe99a95b0a5c5;name=git_f601d939_0;destsuffix=vcs_cache/45b3774229a51910b22ab7d6d0788cfc9ab31cf1c09dd956257126f2dbf551da"
SRC_URI += "git://github.com/ipfs/go-ipfs-redirects-file;protocol=https;nobranch=1;tag=v0.1.2;shallow=1;rev=87c08ba2b86d88fd6b429ec800b09c6d9bb2afcc;name=git_cd98f962_0;destsuffix=vcs_cache/9fec20c8452d3f9fd9b9100121915f3718a1623b85ea76f9f01bd637322fa91e"
SRC_URI += "git://github.com/ipfs/go-cidutil;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=74d8269aa0ceec7b293ff6b3bd13f54d5847880f;name=git_1ac75d35_0;destsuffix=vcs_cache/8bc879705bea58606148b10a748d4ba981fb9af115ac45f1c8dc242f66487c7d"
SRC_URI += "git://github.com/ipfs/go-blockservice;protocol=https;nobranch=1;tag=v0.5.2;shallow=1;rev=a62365556057f8142454aac740d9b361db645fd3;name=git_ce0d644b_0;destsuffix=vcs_cache/e8a1152231ada000dc0561c0ba7eeec4cdba1efa9f174d6aa8dc26a9c3ac42dd"
SRC_URI += "git://github.com/ipfs/go-ipfs-blockstore;protocol=https;nobranch=1;tag=v1.3.1;shallow=1;rev=400c9e3f6bfa3eba6cb386b62fb7418d7f22b6f1;name=git_bf3d5668_0;destsuffix=vcs_cache/59f4f9aaa477a592926b77ed5d9f21bdb0abcc721d442e413584b954b73dbd83"
SRC_URI += "git://github.com/ipfs/go-ipfs-exchange-interface;protocol=https;nobranch=1;tag=v0.2.1;shallow=1;rev=f4159b4d9e61676b37c6bfed12d0762da67c4d03;name=git_aaff82fc_0;destsuffix=vcs_cache/a6bae53f1e0e7c0e55659fa8b1634b4b0c552bd3337c8e080a7f3a62e2c20d8d"
SRC_URI += "git://github.com/ipfs/go-ipld-cbor;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=2d0b3fb46a5ac56987bf454d7dadba9c20b798ac;name=git_b3e7fe87_0;destsuffix=vcs_cache/bdd692f72f9b70e5dac5eb849222064bd9852cd8b802565a214c8cf600894d25"
SRC_URI += "git://github.com/ipfs/go-verifcid;protocol=https;nobranch=1;tag=v0.0.3;shallow=1;rev=bfc616de4f038daa113a2c7e7fd0be0ec084edcb;name=git_4c1814cd_0;destsuffix=vcs_cache/5d93dabb1c364ab6aa6e3aa997db33656bd143246f7509747ef3c5a77b236ca8"
SRC_URI += "git://github.com/expr-lang/expr;protocol=https;nobranch=1;tag=v1.17.5;shallow=1;rev=eeb1b8b6259d9a34ad5fb06bdd8cde80841396ac;name=git_a35880a0_0;destsuffix=vcs_cache/578a1c0fcd3665d41c4eeda2bd83962edd1230eece05e099cded19fcb09943e3"
SRC_URI += "git://github.com/frankban/quicktest;protocol=https;nobranch=1;tag=v1.14.6;shallow=1;rev=7c937a98c92dfcaffbb7feee5f64965f6aece031;name=git_7bad3199_0;destsuffix=vcs_cache/f65e832d9f3df35d267946cd94fd2fce2bf2e04cc1fca291a728a1eef3accab5"
SRC_URI += "git://github.com/frankban/quicktest;protocol=https;nobranch=1;tag=v1.14.5;shallow=1;rev=abb14deb7c540e6343a0d78225e218b1cfb7a778;name=git_7bad3199_1;destsuffix=vcs_cache/f1be398e5db82886cce20d812d059b09b6612142d67000a71a5e99199c6542df"
SRC_URI += "git://github.com/andybalholm/brotli;protocol=https;nobranch=1;tag=v1.0.4;shallow=1;rev=1d750214c25205863625bb3eb8190a51b2cef26d;name=git_ea22ee5a_0;destsuffix=vcs_cache/2e0b83183a9179f7090fbc742d4418d31433b282c16c41a58ed824a71a3ff16f"
SRC_URI += "git://github.com/blang/semver;protocol=https;nobranch=1;tag=v3.5.1;shallow=1;rev=2ee87856327ba09384cabd113bc6b5d174e9ec0f;name=git_b6bc1865_0;destsuffix=vcs_cache/fb904b093dc37ee6efcaa2a562389f10a2411237cdeef7cddf15818be70366d1"
SRC_URI += "git://github.com/blang/semver;protocol=https;nobranch=1;tag=v4.0.0;shallow=1;rev=af3461a9cbcf1f3f5889d21b83f5ef63880c33a8;name=git_b6bc1865_1;destsuffix=vcs_cache/592c6d9a3fd1b340b1d148a1229b29c0f07951f6a2324b4abdbe310d546bda36"
SRC_URI += "git://github.com/inconshreveable/mousetrap;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=4e8053ee7ef85a6bd26368364a6d27f1641c1d21;name=git_b31cc6ad_0;destsuffix=vcs_cache/a9f0ac4cf05240ceb9790811cbd8ab3cbdcd404501a9ca5a402a28033e7235d8"
SRC_URI += "git://github.com/ishidawataru/sctp;protocol=https;branch=master;rev=ae8eb7fa7995ab811916786344b685c97e6a3756;name=git_7edbddc2_0;destsuffix=vcs_cache/ddb2358d95db6d07eccd870d7632bbeacbf54c252b00efb2a04b4adef8568910"
SRC_URI += "git://github.com/mdlayher/vsock;protocol=https;nobranch=1;tag=v1.2.1;shallow=1;rev=8569e301791e164b669ff36b51035bb1d7c9b3a3;name=git_9e9130ba_0;destsuffix=vcs_cache/a7b2ec13026e78d41b91e1e452aab0a78ae155b70966624ec8e5e52ba56a0b08"
SRC_URI += "git://github.com/mdlayher/netlink;protocol=https;nobranch=1;tag=v1.7.2;shallow=1;rev=657f7da1d9bd78d246ae610e0b5efc63a6a5f9e4;name=git_df057909_0;destsuffix=vcs_cache/03cbfeb29fc859f82bf909bcd8a811d16afe562b84a25deb837af35d2fe7be73"
SRC_URI += "git://github.com/mdlayher/genetlink;protocol=https;nobranch=1;tag=v1.3.2;shallow=1;rev=7531bffe0f5e10d1ce558d35e6feb5d1d1600851;name=git_0929e6d7_0;destsuffix=vcs_cache/e745ecde2527974b72d2960c46350ffce499aa8cbc51db7d6fe763619caea7d0"
SRC_URI += "git://github.com/mdlayher/packet;protocol=https;nobranch=1;tag=v1.1.2;shallow=1;rev=f9999b41d9cfb0586e75467db1c81cfde4f965ba;name=git_41032c2a_0;destsuffix=vcs_cache/adfceb158478f4557c264b26d617dda54188585f88295f7c3b79be433b8bde59"
SRC_URI += "git://github.com/mdlayher/socket;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=9c51a391be6c6bc5b7ce52f328497931c5e97733;name=git_4845c6c9_0;destsuffix=vcs_cache/ade2a4b5630096b489828944f4f75b866125a6d37fc95c3524f0cc002cbe8cf9"
SRC_URI += "git://github.com/gammazero/chanqueue;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=030542e8e28df9e6a9c23bb97758b0de85078739;name=git_eabf34b8_0;destsuffix=vcs_cache/0ca3c1a9ba5ad3627cd83062956e6ecc231e85d4891639f3413059722dc24c0e"
SRC_URI += "git://github.com/gammazero/deque;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=610179f8334623677273c5dc8c63ec699e263c0e;name=git_121f8ac4_0;destsuffix=vcs_cache/54cc9845d08ed88533809b0be20355294d5d6067263b938e03a5939eaad641fc"
SRC_URI += "git://github.com/googleapis/go-type-adapters;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=cdaad719a6599c9ef7f83139dbdef1163f397b74;name=git_6ae5463a_0;destsuffix=vcs_cache/ed89159ac1045bcd69c3340c49d424965963062f621d11e6e06537f7bb52d39e"
SRC_URI += "git://github.com/googleapis/google-cloud-go-testing;protocol=https;branch=master;rev=bcd43fbb19e8d79524fce1b71f4a2145afbd6039;name=git_921f970f_0;destsuffix=vcs_cache/4b47d6f17cf42260649d9591c00a65fd696bf3bb2302af8b95b9fc71ae0fa919"
SRC_URI += "git://github.com/googleapis/gax-go;protocol=https;nobranch=1;tag=v2.0.0;shallow=1;rev=317e0006254c44a0ac427cc52a0e083ff0b9622f;name=git_d73d62d0_0;destsuffix=vcs_cache/32b8f654a4a737e466b9547467a8d512c1664f9781cc2f39357ae21d1fab4d1b"
SRC_URI += "git://github.com/googleapis/gax-go;protocol=https;nobranch=1;tag=v2.12.0;shallow=1;rev=db3387b70e605dfc1f09513359d396496a91c66b;name=git_d73d62d0_1;destsuffix=vcs_cache/1567feed32884d75433a980fb326e0a4e99be37921135de274e95b719eb8d704"
SRC_URI += "git://github.com/googleapis/enterprise-certificate-proxy;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=44c5943ab9cb72207a0c0eaa3bff8af794c518f5;name=git_74b84612_0;destsuffix=vcs_cache/20c59093fedda9fff9682aa722d1f4655528544e611a24c31efe56a6ff09293b"
SRC_URI += "git://github.com/googleapis/enterprise-certificate-proxy;protocol=https;nobranch=1;tag=v0.2.1;shallow=1;rev=80592736477602cc7992372d4280f819dc7e4cbf;name=git_74b84612_1;destsuffix=vcs_cache/eca6c825ee3e2dffca1603f1520cd6a9e579a0f089680724a34671bb1c0086f7"
SRC_URI += "git://github.com/googleapis/enterprise-certificate-proxy;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=c5f65f94cd903cc16bba58964863229eb35ec41c;name=git_74b84612_2;destsuffix=vcs_cache/6af9c51cb3fdf8229a20c65e082033818395c9986171421d1a8d6dd5beb2a7c3"
SRC_URI += "git://github.com/googleapis/enterprise-certificate-proxy;protocol=https;nobranch=1;tag=v0.2.3;shallow=1;rev=d0957a96ce28f68cd21ce2742c06237f3fa93fbe;name=git_74b84612_3;destsuffix=vcs_cache/48ce0ccffc84a0e7199263f10299afb506d5a93c9e4bbbabb269baa389fddfc0"
SRC_URI += "git://github.com/googleapis/enterprise-certificate-proxy;protocol=https;nobranch=1;tag=v0.2.4;shallow=1;rev=d6d5a59fc2126315cc027eb4417d930e50f9251f;name=git_74b84612_4;destsuffix=vcs_cache/2ac939426211092a4f09b0aa9285e17316f019b8f8ace59e4294be824bf3704c"
SRC_URI += "git://github.com/googleapis/enterprise-certificate-proxy;protocol=https;branch=main;rev=fd19c99a87aaa23c18aac95b491590df05b7d72e;name=git_74b84612_5;destsuffix=vcs_cache/b52e24e1c49f0b88a7e80ebde3a275812d7ac7c04a4367428852cd9ca02cf87d"
SRC_URI += "git://github.com/go-fonts/liberation;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=0c2fdab5e932afd0923f4f71ae23691a66305ef6;name=git_432b5eb1_0;destsuffix=vcs_cache/04ce7cf16b9997e52037c2beea3bea27dfbba1a0f23f670588c8fdb47213f181"
SRC_URI += "git://github.com/go-fonts/liberation;protocol=https;nobranch=1;tag=v0.1.1;shallow=1;rev=6c37e0b71113a94d020aa1de89f902892972b407;name=git_432b5eb1_1;destsuffix=vcs_cache/0d9223f19f7e86420210f6348f801cee83ca56d0772478c0bd9345efb9766b3b"
SRC_URI += "git://github.com/go-fonts/liberation;protocol=https;nobranch=1;tag=v0.3.2;shallow=1;rev=cd4f31071d90e9748c4075c4ee14ae100ed174a9;name=git_432b5eb1_2;destsuffix=vcs_cache/2d395cc92d5224237d548fd9bcd6fa211075dd4bb869b89eb21089babd58b693"
SRC_URI += "git://github.com/go-fonts/stix;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=b56f8deef1f104331a0f4714f16bc63a9589a13e;name=git_dea314dc_0;destsuffix=vcs_cache/469dfeff561b62ef91b7e8355eaf0c3894bbb4c6c155632f2c805a5a85422392"
SRC_URI += "git://github.com/go-fonts/dejavu;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=2ff2a946b2ac300367ae8ed46d4e9c7149bf8fe8;name=git_7f8626fd_0;destsuffix=vcs_cache/c52f7f296cc4b47c541a8a8cc56b21cd40190a05e1e3dc65f1ce14f642f86529"
SRC_URI += "git://github.com/go-fonts/latin-modern;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=6a97d92f4ec723c9f04a0ab5b5d3ee51cd2787ea;name=git_f219072f_0;destsuffix=vcs_cache/161accc08ff364be5ea40d6a9512175f0fd1469bdb82f01c5737970bc2f0077d"
SRC_URI += "git://github.com/syndtr/gocapability;protocol=https;branch=master;rev=42c35b4376354fd554efc7ad35e0b7f94e3a0ffb;name=git_bddf7e02_0;destsuffix=vcs_cache/4480911d3d4457413aedb0be556a8ab2b064c475167177096e4dec65342505e9"
SRC_URI += "git://github.com/syndtr/goleveldb;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=9d007e481048296f09f59bd19bb7ae584563cd95;name=git_a05e1273_0;destsuffix=vcs_cache/daf11d5cd6cea0a9e60de8226178ce2ababe41af5e83a99dd00b42e2e27febf4"
SRC_URI += "git://github.com/nats-io/jsm.go;protocol=https;nobranch=1;tag=v0.2.4;shallow=1;rev=805384d41dc2abb325fab8f4412ca3bbcf8c80fd;name=git_1da5384d_0;destsuffix=vcs_cache/c67e08c727feb49a06fe181c6c40fc3c9104a70e94850486572d6a214bd8d035"
SRC_URI += "git://github.com/nats-io/nats.go;protocol=https;nobranch=1;tag=v1.44.0;shallow=1;rev=7a260b8b93562630ec8c6f8f31ae3704c4f61ad1;name=git_94605ca7_0;destsuffix=vcs_cache/7d316307068d6471c75da6e12b989ed3a252ab9f3e396bdbaea0a47579cbc090"
SRC_URI += "git://github.com/nats-io/nkeys;protocol=https;nobranch=1;tag=v0.4.11;shallow=1;rev=cf5e93d3187a266d33f60aa95de13bb216db0469;name=git_a4c86a3e_0;destsuffix=vcs_cache/d20c93d6f5ac1f5f8e5eb950657e053af32be938d95b6a29677ec3245e47144f"
SRC_URI += "git://github.com/nats-io/nats-server;protocol=https;nobranch=1;tag=v2.11.6;shallow=1;rev=bc813ee3cb111d81bd1ad2190e88ec0e9637c57b;name=git_44958445_0;destsuffix=vcs_cache/0cf9b401abe53142f699d98c8f6a1de81deb9198430557f5af434a806e155ca6"
SRC_URI += "git://github.com/nats-io/jwt;protocol=https;nobranch=1;tag=v2.7.4;shallow=1;rev=28e31bd445aeebe6a0bb93902baf91e43036c22c;name=git_de924b4a_0;destsuffix=vcs_cache/daa982b2e29c4240c0482a8c039338864552217536523b7942fcb57a386e8b63"
SRC_URI += "git://github.com/nats-io/nuid;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94;name=git_5918b8bf_0;destsuffix=vcs_cache/70e5b7a162103d757c2a0da23b52b243928fba49770aaef433c861e7af100c8e"
SRC_URI += "git://github.com/slok/go-http-metrics;protocol=https;nobranch=1;tag=v0.12.0;shallow=1;rev=3bddbe25bb479ff3ffba2a4dc4bc4aedaf6ac94e;name=git_c93f7c1c_0;destsuffix=vcs_cache/aa31e40f08cb56b16342974864f72b17488d64c931af04cc35a809a680b0e9f2"
SRC_URI += "git://github.com/goccy/go-json;protocol=https;nobranch=1;tag=v0.9.11;shallow=1;rev=30713917a8e5740aa161ddd53f1be7fb74764533;name=git_58b9fee8_0;destsuffix=vcs_cache/952764996a51fed7c881078845e4e5c719e2b3550d1d59ccb5583c789a8a0c7d"
SRC_URI += "git://github.com/goccy/go-json;protocol=https;nobranch=1;tag=v0.10.5;shallow=1;rev=9872089c316cfe2d0f29b331b75d45bf6d522d96;name=git_58b9fee8_1;destsuffix=vcs_cache/9135ffafe2f170bce8f90413934c0b25aa6d201122cc437153cf64a206c46389"
SRC_URI += "git://github.com/gogo/protobuf;protocol=https;nobranch=1;tag=v1.3.1;shallow=1;rev=5628607bb4c51c3157aacc3a50f0ab707582b805;name=git_99185c7b_0;destsuffix=vcs_cache/487846ea4fbb1d95dc2e657d4e80ef368991c8969416806cb750f49d60d76f50"
SRC_URI += "git://github.com/gogo/protobuf;protocol=https;nobranch=1;tag=v1.3.2;shallow=1;rev=b03c65ea87cdc3521ede29f62fe3ce239267c1bc;name=git_99185c7b_1;destsuffix=vcs_cache/e07d7c0e03a0e2831dd973581be0944984030693bc73f0b67a64e53b4c690635"
SRC_URI += "git://github.com/lestrrat-go/blackmagic;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=420d1921e4b3264eeaa17a7946b486a1e6e41796;name=git_a785ed5c_0;destsuffix=vcs_cache/27d85daf215783d115f87d7b6624f7770dd9d8cbe340e8b4bef8784123d8c5f9"
SRC_URI += "git://github.com/lestrrat-go/iter;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=a02dbb5faff273dfa44a04e34b645ee9338cc74a;name=git_149fc576_0;destsuffix=vcs_cache/8798d95cb251c99e3a5db9f362a5935bbe2e986c343f71908f1aecf634de6fbf"
SRC_URI += "git://github.com/lestrrat-go/jwx;protocol=https;nobranch=1;tag=v1.2.29;shallow=1;rev=1025f8eec3bd80c8d8f1be8f9cad989a5b78fd4b;name=git_daf2c4dd_0;destsuffix=vcs_cache/0222375b3ed66cac8023dafca7428deb89df4aeb20d854951140e101b0c5f28b"
SRC_URI += "git://github.com/lestrrat-go/option;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=ced73324dba7d8be3a1587a7d6a5fa081d9e2dc2;name=git_7fba3ab3_0;destsuffix=vcs_cache/1f8dcec97d12a81cde1ec2ba90e51e5a7642e0b6ac69fa6d060c924499d9e826"
SRC_URI += "git://github.com/lestrrat-go/httpcc;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=962f66809593fba7c5cdc78a0bdcf98827250e3c;name=git_743770ce_0;destsuffix=vcs_cache/466b0cb68191ccc31d667d0e1cf8f0eec07556bbc61fdad149b67379fba0f789"
SRC_URI += "git://github.com/lestrrat-go/backoff;protocol=https;nobranch=1;tag=v2.0.8;shallow=1;rev=c3af762cb9d2bc8339e1d5099a4550366a675f60;name=git_295c824f_0;destsuffix=vcs_cache/cac61700ad617eae68ad7b4b604e2484e0a4f702cfdf125e784add42fc9af8c1"
SRC_URI += "git://github.com/kylelemons/godebug;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=9ff306d4fbead574800b66369df5b6144732d58e;name=git_463ad04b_0;destsuffix=vcs_cache/070cd2056d33748c34b60876b93e86d0f8bcfa86a4dee28d6da2a6f3aaea66ac"
SRC_URI += "git://github.com/inetaf/tcpproxy;protocol=https;branch=master;rev=3ce58045626c8bc343a593c90354975e61b1817a;name=git_06c27a40_0;destsuffix=vcs_cache/6f8092fc239a6808ac9273b08c8c8cd7e2406aa9c22e81976077935dbbc50e52"
SRC_URI += "git://github.com/gregjones/httpcache;protocol=https;branch=master;rev=901d90724c7919163f472a9812253fb26761123d;name=git_9c1961af_0;destsuffix=vcs_cache/0af7be998159ab0dc0165b502262d5536011cd1634a80210d2c71cac89e1481e"
SRC_URI += "git://github.com/gregjones/httpcache;protocol=https;branch=master;rev=9cad4c3443a7200dd6400aef47183728de563a38;name=git_9c1961af_1;destsuffix=vcs_cache/1a426dcf2bd73bb01f3e2a33b6dda0049c74e6ae66ae07236e3326ff6ce2b6fc"
SRC_URI += "git://github.com/rogpeppe/fastuuid;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=10c3923834d38e951ae8f627bfec2dc632c5b6cb;name=git_8a779c11_0;destsuffix=vcs_cache/20ca2e2cf2990cc136cad7958992d06abd356dc16a58362afd2bd51be48ae0ac"
SRC_URI += "git://github.com/rogpeppe/go-internal;protocol=https;nobranch=1;tag=v1.12.0;shallow=1;rev=2c88e7f58ae1ca6f811b818d0d985b4622556532;name=git_2748cdc3_0;destsuffix=vcs_cache/854fa605c8c2f83276293dc0208b83f9cab4c76d2d02dfd3210bef082dc98568"
SRC_URI += "git://github.com/rogpeppe/go-internal;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=438578804ca6f31be148c27683afc419ce47c06e;name=git_2748cdc3_1;destsuffix=vcs_cache/60f86e5b4a52222c559501c80d3f185830c7ea76a16e57cc035a8db43a4b0596"
SRC_URI += "git://github.com/rogpeppe/go-internal;protocol=https;nobranch=1;tag=v1.10.0;shallow=1;rev=66d1a7a6f940a81ade651cd6cf17877912dbff3d;name=git_2748cdc3_2;destsuffix=vcs_cache/ec2f9172e408da725008495c4f5b090e3c5345bf6bac1d7aa9aa59db29466061"
SRC_URI += "git://github.com/rogpeppe/go-internal;protocol=https;nobranch=1;tag=v1.6.1;shallow=1;rev=76dc4b3fc37c97df8520f01985a79bbac5d1585d;name=git_2748cdc3_3;destsuffix=vcs_cache/8b16c925b7b44bc1769facde784afd44ec49089cacb9ca08cd3e9335e4fd077f"
SRC_URI += "git://github.com/rogpeppe/go-internal;protocol=https;nobranch=1;tag=v1.9.0;shallow=1;rev=7a6a5f804c24039a8741921b97ffa0c3b8998be3;name=git_2748cdc3_4;destsuffix=vcs_cache/dbc2fd9c4bbfd2fd8126efa54f3249bfaad1e514d80687e8b19b85b388d0ba5f"
SRC_URI += "git://github.com/rogpeppe/go-internal;protocol=https;nobranch=1;tag=v1.13.1;shallow=1;rev=e67a4aa07a58fd7f4cc884153739cb77b34f0edb;name=git_2748cdc3_5;destsuffix=vcs_cache/6a8cf885e1574a3d34afe5d7b0a7b4272403e5d756cae287c06d90a7e9eb2d09"
SRC_URI += "git://github.com/rogpeppe/go-internal;protocol=https;nobranch=1;tag=v1.11.0;shallow=1;rev=ec119421bb970ac974ea4ac16d8b58ffd0d727fc;name=git_2748cdc3_6;destsuffix=vcs_cache/8521c4daf279dbb841109a6f0572450b9dbe1f33136567e800f487bd2dd296ef"
SRC_URI += "git://github.com/jpillora/backoff;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=d80867952dff4e2fbfb4280ded4ff94d67790457;name=git_59c0b9df_0;destsuffix=vcs_cache/f3877637b1b0b11053bd3f6485df13672bc371749f756a13048e72298849b276"
SRC_URI += "git://github.com/magiconair/properties;protocol=https;nobranch=1;tag=v1.8.7;shallow=1;rev=c9a06e8f8f0164e4e16c0d5c4793cbed4ac90264;name=git_fa8300c1_0;destsuffix=vcs_cache/b7ddc5a84485cad9de28d1ea4c8294d0497dcdbc97785fdcd203542d07be353f"
SRC_URI += "git://github.com/networkplumbing/go-nft;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=166e1322cbd5197ec002571746b6c5761fcea239;name=git_701e4690_0;destsuffix=vcs_cache/8a53bd8d8c005b78a57d3844fd2a9d1665a596923d3d30d90ea05e34315dc028"
SRC_URI += "git://github.com/libp2p/go-buffer-pool;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=c5070857211a0615ebd7b56588154941af580a4d;name=git_073a1a6b_0;destsuffix=vcs_cache/bd74d92636babf3afd87a4097b1a7641e762bc5b880ab58e12cc93f362b7a626"
SRC_URI += "git://github.com/libp2p/go-libp2p;protocol=https;nobranch=1;tag=v0.41.1;shallow=1;rev=8ce45df1bd142373cdf0a6f8355a757273258f49;name=git_1131ff7b_0;destsuffix=vcs_cache/24e3eed66f0e5f2a9270b6b44db15ed386e3c0f3380f81fb87abc5dcdec18326"
SRC_URI += "git://github.com/libp2p/go-libp2p-testing;protocol=https;nobranch=1;tag=v0.12.0;shallow=1;rev=aac9ce834b218b0d51ab729256812a1b4ea9164b;name=git_7ae5f70d_0;destsuffix=vcs_cache/1510f000c7274171a697a58004ecb86dc8ea5529bf9aead0198726ab7fda4dbb"
SRC_URI += "git://github.com/libp2p/go-libp2p-asn-util;protocol=https;nobranch=1;tag=v0.4.1;shallow=1;rev=3ec6bf02c86c57c28d29b2963a9d7b9d6d74bfb2;name=git_6983fdc8_0;destsuffix=vcs_cache/b3e487f4f1a804ba5fd00c2e44608c05f5254bceab8696f98aa6261bfa28e657"
SRC_URI += "git://github.com/libp2p/go-reuseport;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=ac34b4fb35437abcc176b5bb97cc431d62d983e0;name=git_64c35749_0;destsuffix=vcs_cache/ae79637b0367740e834bb6b76854af56df39a0f01145519b2fc895feacc9d94f"
SRC_URI += "git://github.com/libp2p/go-msgio;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=12f8f7a72c7dbbb246151e4c98b5a6d59e27e0c6;name=git_e3824482_0;destsuffix=vcs_cache/efca377e4f53a9aaffa5b415abb4e1d901847a5c95e37eab97af71b05da2a54c"
SRC_URI += "git://github.com/libp2p/go-libp2p-kad-dht;protocol=https;nobranch=1;tag=v0.31.0;shallow=1;rev=0af416971f51f07a60afb16851f030deea29ce2b;name=git_25b5a527_0;destsuffix=vcs_cache/6efa937b641652efe63b63f5dbae119be75184cb9d72aa5956dd3df88b7379e7"
SRC_URI += "git://github.com/libp2p/go-netroute;protocol=https;nobranch=1;tag=v0.2.2;shallow=1;rev=598d3840947c4d855652ef346bbda169ce71d0e5;name=git_c28fad8e_0;destsuffix=vcs_cache/e95c4bdb136950e9e9cb7476c72f4527f09b19a18b9069d9e324d6665aba573a"
SRC_URI += "git://github.com/libp2p/go-libp2p-xor;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=5c005aca55db27a0dc6d6defaa16c52125f02206;name=git_9c0e598a_0;destsuffix=vcs_cache/1c085e1b675ca95803261c61ce296a7fcb22a31cf13bf4883183cce1460f97f1"
SRC_URI += "git://github.com/libp2p/go-cidranger;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=1dec7f87b45b32e24d3f59548ad61647de34586d;name=git_9f3f1c23_0;destsuffix=vcs_cache/9efbeef894af3e174595eeb060ed932cb5e80dc8a739b38280fec931faeb467b"
SRC_URI += "git://github.com/libp2p/go-libp2p-record;protocol=https;nobranch=1;tag=v0.3.1;shallow=1;rev=865384fbdd41d98d724ae888c69f94bfb448dab1;name=git_65e9a471_0;destsuffix=vcs_cache/4df716baf2f89259444a0dc52dfcc913ce9ef54f49a31373275375841370ddbb"
SRC_URI += "git://github.com/libp2p/go-doh-resolver;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=b8b3f3c2a6dc74a403137667e9316e7a74477a8c;name=git_270745b2_0;destsuffix=vcs_cache/f2c877ff09875bd25b8c67d7e758e528ed1f5b4bca2df174a4923f3d12cff76d"
SRC_URI += "git://github.com/libp2p/zeroconf;protocol=https;nobranch=1;tag=v2.2.0;shallow=1;rev=586e7c571d106f842c8567012dacd28d73fcf966;name=git_648aa7b0_0;destsuffix=vcs_cache/9c3da338075964017428f40d360e774cc82ca63dc528858b16336d08f3e49a82"
SRC_URI += "git://github.com/libp2p/go-yamux;protocol=https;nobranch=1;tag=v5.0.0;shallow=1;rev=ea96c0b850325d55dca998ffc511211d14116d04;name=git_c90ebe9b_0;destsuffix=vcs_cache/3207b25ebd397803e697e49e0c7736e20af7703b7ce41233009ba4ce893a4ada"
SRC_URI += "git://github.com/libp2p/go-libp2p-routing-helpers;protocol=https;nobranch=1;tag=v0.7.5;shallow=1;rev=ad93cfa49d5eceda7ee273c220ac61baa70eb925;name=git_aad60384_0;destsuffix=vcs_cache/bf006d5158367e5f967be11fef840440179f53724f0908e8c18f48f81c844d81"
SRC_URI += "git://github.com/libp2p/go-flow-metrics;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=0aae1a1aba2c8823c356a1b6cbfb62f39fb173e2;name=git_1da9366a_0;destsuffix=vcs_cache/616dadd94867ae4caa1ea52a653797ea94402ea19bfa8802b7e0c49da7e260d8"
SRC_URI += "git://github.com/libp2p/go-libp2p-kbucket;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=d581bff96da20b4f6c0cdddefddf78cb7c196211;name=git_38f8b860_0;destsuffix=vcs_cache/64f3f5ea521f1bef2f56384dccba820d3b95ce188cef6d08c692fe78b25b7527"
SRC_URI += "git://github.com/containers/storage;protocol=https;nobranch=1;tag=v1.54.0;shallow=1;rev=65908627e6e9baa6bb8819f3c6ff6bd8c51a123a;name=git_c3f7820b_0;destsuffix=vcs_cache/5771b6614008ee25f678b5ec6a9454bae2908ee1b2f17c1616a0472c2464f272"
SRC_URI += "git://github.com/containers/ocicrypt;protocol=https;nobranch=1;tag=v1.2.1;shallow=1;rev=1db71af9f28553231f0b59880d3fe5b162fa8c61;name=git_1f55eed4_0;destsuffix=vcs_cache/bec170205b8cb4f7646d21f6d05f4e78b62b540ff061d55788f38ccecc6313b7"
SRC_URI += "git://github.com/go-test/deep;protocol=https;nobranch=1;tag=v1.0.7;shallow=1;rev=c733f5ed5136b7437e29ac91bb97c653af3694b5;name=git_59b468af_0;destsuffix=vcs_cache/94d4a11baea8e58d71ed93c3668271812a845501c70e0c970c96b786efcf33ee"
SRC_URI += "git://github.com/hpcloud/tail;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=a30252cb686a21eb2d0b98132633053ec2f7f1e5;name=git_eb7f53a1_0;destsuffix=vcs_cache/9dfd08c5a4f07a465c8fe6fd4e5e96ac82ccaeba87143831c1a6290e944a3c84"
SRC_URI += "git://github.com/munnerz/goautoneg;protocol=https;branch=master;rev=a7dc8b61c822528f973a5e4e7b272055c6fdb43e;name=git_09d50017_0;destsuffix=vcs_cache/0f68eeb31e17a8fc96eede1943fe26be5835b08f5cc4a9eee4ed1b8eee4887ee"
SRC_URI += "git://github.com/go-ini/ini;protocol=https;nobranch=1;tag=v1.67.0;shallow=1;rev=b2f570e5b5b844226bbefe6fb521d891f529a951;name=git_833ca107_0;destsuffix=vcs_cache/cad9f449f807ba878152dab9e71ba0f300b51a0a69390f502d55fb24a11f73a2"
SRC_URI += "git://github.com/veraison/go-cose;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=354ac997519fe3d62314afe2906b106ef43bca5d;name=git_11746de1_0;destsuffix=vcs_cache/50c5af8aef66bbc4e1a8a9f6b19b68ca530de0496e90d9cd401290662aa52946"
SRC_URI += "git://github.com/armon/go-socks5;protocol=https;branch=master;rev=e75332964ef517daa070d7c38a9466a0d687e0a5;name=git_2b8f1887_0;destsuffix=vcs_cache/e611fb2e9fe86f2cb19c89c1dc37c0ad6b5656135015f1466fb20c934e3dc531"
SRC_URI += "git://github.com/armon/go-proxyproto;protocol=https;branch=master;rev=7e956b284f0a872909d3e91c8bf292a1b7f1252d;name=git_e007e91e_0;destsuffix=vcs_cache/a991590e09adeec66f1f1ad2e7f523bfcbfb979b8e244c65a33a560adf6f4bba"
SRC_URI += "git://github.com/armon/circbuf;protocol=https;branch=master;rev=5111143e8da2e98b4ea6a8f32b9065ea1821c191;name=git_95ffcffa_0;destsuffix=vcs_cache/f44b726eafbedd3c7d5723dfd9850375946a0b78000629a3558aacfbb013cecb"
SRC_URI += "git://github.com/fogleman/gg;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=0403632d5b905943a1c2a5b2763aaecd568467ec;name=git_68f39ed4_0;destsuffix=vcs_cache/bf5446a50b64b0fd09ff100133aa0560b38557ad8e9c591cbcb189b2701117a5"
SRC_URI += "git://github.com/MakeNowJust/heredoc;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=bbd9af33722b79a933ef99c7c94833065e2d6c20;name=git_c0f465ee_0;destsuffix=vcs_cache/992eff60258071cdc2412f5253f0ba9650dc9e968dd601a2f2df5de245be5e3e"
SRC_URI += "git://github.com/euank/go-kmsg-parser;protocol=https;nobranch=1;tag=v2.0.0;shallow=1;rev=5ba4d492e455a77d25dcf0d2c4acc9f2afebef4e;name=git_0a078211_0;destsuffix=vcs_cache/43ad90c2713d8cb4b8bcc2a7a43c407d64acce9a98f6f1bcb3ef01c9cb9bfcab"
SRC_URI += "git://github.com/pion/turn;protocol=https;nobranch=1;tag=v4.0.0;shallow=1;rev=f5deeb891cae25aa0935bc36e7c5d8e5eec3f6a9;name=git_12506a4d_0;destsuffix=vcs_cache/a3bb6f0bc5a6957988ca35e03ff9eb6a99ddc2d94400819eac192928891ddd40"
SRC_URI += "git://github.com/pion/sctp;protocol=https;nobranch=1;tag=v1.8.37;shallow=1;rev=bf53986cb1bbb4f7a71552bdd47f3e5a9802526a;name=git_4f39e5c6_0;destsuffix=vcs_cache/80218102507bd1aac5bc8dd65086d5c0f0522be3c00cde979179245d90d521ca"
SRC_URI += "git://github.com/pion/srtp;protocol=https;nobranch=1;tag=v3.0.4;shallow=1;rev=099a0b0c209aa5907faea57ff7b1db2409555541;name=git_ab4e9bcb_0;destsuffix=vcs_cache/fb53aa18d1bdb73c07c5bef46e09880135f2e3bda92b2543fa023658250fabcf"
SRC_URI += "git://github.com/pion/transport;protocol=https;nobranch=1;tag=v2.2.1;shallow=1;rev=0646cde6b7f51b53059c64404e2076358f1af0c9;name=git_f72222df_0;destsuffix=vcs_cache/33c1129fb68bf629874f94a05d4be8b9572343a080a4455e916208a833d0330e"
SRC_URI += "git://github.com/pion/transport;protocol=https;nobranch=1;tag=v2.2.10;shallow=1;rev=3f96630bb3c0d950695c97b4ba91cf5f8bfee87f;name=git_f72222df_1;destsuffix=vcs_cache/d72c38fb4df48f4c3463671256a7457b5382e8d917551726a404fe752bc96ab4"
SRC_URI += "git://github.com/pion/transport;protocol=https;nobranch=1;tag=v2.2.4;shallow=1;rev=536a6d13627fe050e477cb12ac82287da7259d1b;name=git_f72222df_2;destsuffix=vcs_cache/f0c5c82ca0673ba913c1259349a00ec6cc1a5d422c84c31afbfc0d55ec9d5e3f"
SRC_URI += "git://github.com/pion/transport;protocol=https;nobranch=1;tag=v3.0.7;shallow=1;rev=5d0649ff1ab47d750626ed3c240a2e65b5aa9376;name=git_f72222df_3;destsuffix=vcs_cache/cc0d137f95b00065198a0a459106b9cd055a2c0805fd8400c3a38e0c71f7a3b1"
SRC_URI += "git://github.com/pion/logging;protocol=https;nobranch=1;tag=v0.2.2;shallow=1;rev=0387f8acdeb20faf48e539e74906dd633851f3a8;name=git_005a0e49_0;destsuffix=vcs_cache/fd208e5a5ed033d70cb062b4facbd9a2214cb7f7b3db8edb84bf6099ec19d649"
SRC_URI += "git://github.com/pion/logging;protocol=https;nobranch=1;tag=v0.2.3;shallow=1;rev=770cd0b2bbb63d76bc06c128f626cd78099eb76a;name=git_005a0e49_1;destsuffix=vcs_cache/cb3ec019159fe6ab8d3d76ebfb75c40bcee4852025a1a81b59119bf4ea37063b"
SRC_URI += "git://github.com/pion/dtls;protocol=https;nobranch=1;tag=v2.2.12;shallow=1;rev=48e76cc261c359aa3f14e32471d43993202faf29;name=git_c2506550_0;destsuffix=vcs_cache/bcbffe6ea8683ca03a08f8b44b8f378f2cf166700f970fb2f80d897c902ee9e1"
SRC_URI += "git://github.com/pion/dtls;protocol=https;nobranch=1;tag=v2.2.7;shallow=1;rev=5c0a7c1a8542d21287049de6814da614fd6badcf;name=git_c2506550_1;destsuffix=vcs_cache/dbdb2922642557a7544d1311add3c99f6e63adabf66e83836e33c55601a47722"
SRC_URI += "git://github.com/pion/dtls;protocol=https;nobranch=1;tag=v3.0.4;shallow=1;rev=b3e02c4ba7e207c6dfce4e490f30fe09c8c926be;name=git_c2506550_2;destsuffix=vcs_cache/f2c8343c186194a610bc8be42f593b37148edbf75f3e3260e8b6bbb33c14c14c"
SRC_URI += "git://github.com/pion/rtcp;protocol=https;nobranch=1;tag=v1.2.15;shallow=1;rev=b5ab305d1920e7ea5bd98ee68a3242d42424a445;name=git_ba7bd7f4_0;destsuffix=vcs_cache/bb97adf139c89793c54fcd2ae979fc00da0df172dc269f5c666e1231660fb1a9"
SRC_URI += "git://github.com/pion/webrtc;protocol=https;nobranch=1;tag=v4.0.10;shallow=1;rev=70f0211065c83e75b9ce69dba554aa61b13988ec;name=git_030058d7_0;destsuffix=vcs_cache/f204803a17d415dcd32328ae04370622c4186f711b293668c7661842a194af0a"
SRC_URI += "git://github.com/pion/mdns;protocol=https;nobranch=1;tag=v2.0.7;shallow=1;rev=689cdb9fc66c6202b75bd96f17caf12078aa8c95;name=git_46823b18_0;destsuffix=vcs_cache/7c4020bd5b18afd44f4d641174750b0ea79c558ddd6092825c881220dd845300"
SRC_URI += "git://github.com/pion/sdp;protocol=https;nobranch=1;tag=v3.0.10;shallow=1;rev=edabe23cdd7c2b7f27826e15b23be6be84df5659;name=git_76cca18c_0;destsuffix=vcs_cache/1d7f9f84a33ef3e0a2eb18308d8163497b4344a2b2bdfb17094275f057dba697"
SRC_URI += "git://github.com/pion/datachannel;protocol=https;nobranch=1;tag=v1.5.10;shallow=1;rev=687754f965a2cda0420848905505ec11bedc25b6;name=git_c0f3ce5c_0;destsuffix=vcs_cache/3166a86378cd092e0a93e3c91e92f0d7eefcd6085614b29de554ec52ef22ed79"
SRC_URI += "git://github.com/pion/ice;protocol=https;nobranch=1;tag=v4.0.8;shallow=1;rev=37fb5d2fc34dd7df9d09fe4d9fc2541e80a1b675;name=git_e433e8d7_0;destsuffix=vcs_cache/1e8f3ce18f126bb6fea61ada7cfcc87e6739cf5c4f0ddabef734061e939cb82b"
SRC_URI += "git://github.com/pion/randutil;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=3e7aefb6fd280d89fca72f1596348f1939525187;name=git_a49fda05_0;destsuffix=vcs_cache/3ad94561134b2bd3cb7aa750e8ac307b2fe005ac3889ffca89116ffaa056fc63"
SRC_URI += "git://github.com/pion/interceptor;protocol=https;nobranch=1;tag=v0.1.37;shallow=1;rev=0eab1887cec79081e21457c0f9f89be2537c5df5;name=git_b2f394a6_0;destsuffix=vcs_cache/1bdaeb578967931a492fc8ead3bd5ceed65cb79b737294935a1e5d018ec2dee7"
SRC_URI += "git://github.com/pion/rtp;protocol=https;nobranch=1;tag=v1.8.11;shallow=1;rev=3e1f46acd19383dabe489c90182fe860cdc1808f;name=git_a33107d3_0;destsuffix=vcs_cache/4e13b630d49ca3bcb63e3f14e4f37cf11fb2fec8e32640c3d290006783f9fc7f"
SRC_URI += "git://github.com/pion/stun;protocol=https;nobranch=1;tag=v0.6.1;shallow=1;rev=e56f1f82cd67337fd13713c396d4e942d10c5c36;name=git_b22038a9_0;destsuffix=vcs_cache/45c8cb65e8b0dba1e5a5ca654f68c7379d26dc16aa5d24529d3d96d3e1ad7fb3"
SRC_URI += "git://github.com/pion/stun;protocol=https;nobranch=1;tag=v3.0.0;shallow=1;rev=fd9b93c8104f1bdaae3d8e45de6962aaf45c3f5e;name=git_b22038a9_1;destsuffix=vcs_cache/b98877e484b6abb98d4e398df85a794918a75ed50573868ee1cb6f5965e56b50"
SRC_URI += "git://github.com/julienschmidt/httprouter;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=4eec211fa4e8df74ed978dc5681612131854144f;name=git_50116b68_0;destsuffix=vcs_cache/14612f57dd95aeae83955a7b4f9b44d716f96bdef922732f059430cdff278e10"
SRC_URI += "git://github.com/zeebo/xxh3;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=e6b0fd3c7bb50f49d637174ab61e39c0aa684c8c;name=git_3d6bfa05_0;destsuffix=vcs_cache/6ff380c78f9192039ae2ec13f599419e0022c714692f97d61077009291b0925f"
SRC_URI += "git://github.com/zeebo/errs;protocol=https;nobranch=1;tag=v1.4.0;shallow=1;rev=13450ab50383c5857164d564544fa0bef3ff689d;name=git_1cced855_0;destsuffix=vcs_cache/c48b3247a05cb20bf2a81d75ef369d317463f64a4267ed1c3e73da685dd8fa09"
SRC_URI += "git://github.com/zeebo/assert;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=263ed52a87854146eb1cb7bbee9cc7fef2c48e29;name=git_13b69019_0;destsuffix=vcs_cache/8559cbe776730b58e86880b74817b38b0b85b10df76aae9ce920a9abe4b52560"
SRC_URI += "git://github.com/shurcooL/gopherjslib;protocol=https;branch=main;rev=feb6d3990c2c26126a3678fd5c7110a548c513a5;name=git_f4e7d9b0_0;destsuffix=vcs_cache/aa7d8148ac1e281800478af62c580cebcfca0644a8bbaf2d38d35fdb7016aad0"
SRC_URI += "git://github.com/shurcooL/httpfs;protocol=https;branch=main;rev=809beceb23714880abc4a382a00c05f89d13b1cc;name=git_a1ca46a9_0;destsuffix=vcs_cache/fdde3dc7d836d495a313372918cc7f64856404bc1909fff5c1818921c1f5ae0a"
SRC_URI += "git://github.com/shurcooL/htmlg;protocol=https;branch=main;rev=d01228ac9e50f5ab7eee96dcf692117607ef516e;name=git_3dbbbcd1_0;destsuffix=vcs_cache/4c2677bc24b170ed7f954e5c11a5fbd6ef3330c1b3337e7691cc88a1eb26c2ce"
SRC_URI += "git://github.com/shurcooL/component;protocol=https;branch=main;rev=f88ec8f54cc4038bdd2c3b1aecf4b96c132d7beb;name=git_9bff404a_0;destsuffix=vcs_cache/ff99013df7d7f1f1747fc5483d0c31d8c8935bbde23733c7c7f8960b8fab1776"
SRC_URI += "git://github.com/shurcooL/issues;protocol=https;branch=main;rev=6292fdc1e191266a0c6dae65364c411fe0e6ff33;name=git_d21d443c_0;destsuffix=vcs_cache/175e95b8b7e835ca72560ba934474167e7685ca283009e68d2d44f998550f20f"
SRC_URI += "git://github.com/shurcooL/httperror;protocol=https;branch=main;rev=86b7830d14cca73aeceaaf08bd620c49a148dd7b;name=git_cba9b936_0;destsuffix=vcs_cache/7fb86efdcb155b77c70c124970d3baa5d071a260fbaa71ccb21bf6a832cabf94"
SRC_URI += "git://github.com/shurcooL/users;protocol=https;branch=main;rev=49c67e49c5377c48c01f82d3e1b6844a901a0b33;name=git_56eeb344_0;destsuffix=vcs_cache/482ef9d81f0316783e6f1d40b8e29d7f5ead7dc20f5db9440c529e641df93ef4"
SRC_URI += "git://github.com/shurcooL/home;protocol=https;branch=main;rev=80b7ffcb30f96505d4bc10546d8cd3008bba0fd4;name=git_d58b3381_0;destsuffix=vcs_cache/3436e22a848f9df61a85a8c129e3c1e73bff81274cc403590d5451ee07dd057e"
SRC_URI += "git://github.com/shurcooL/reactions;protocol=https;branch=main;rev=f2e0b4ca5b8268a0c20f3ec187f0c739266547d8;name=git_2fb14f39_0;destsuffix=vcs_cache/e0c0f24f37f7f5d50f9d42ea154b1963b3a6bfd617d953de84fdc4c0e342e593"
SRC_URI += "git://github.com/shurcooL/notifications;protocol=https;branch=main;rev=627ab5aea122bf029d0f8f6c3d44e614b4a33361;name=git_7821a883_0;destsuffix=vcs_cache/a55f5066e33e10eb8e0bdc357eab5827564b06a69ce1974065cbfcd4c00fd0c4"
SRC_URI += "git://github.com/shurcooL/octicon;protocol=https;branch=main;rev=fa4f57f9efb2a4c329dfe0f6d85e33b6c489ad70;name=git_ad08dd83_0;destsuffix=vcs_cache/fe11ae157518b23e08af8a70bcb48dc65413206eaccf70f4d5db3520154a1b06"
SRC_URI += "git://github.com/shurcooL/highlight_go;protocol=https;branch=main;rev=98c3abbbae20a9fb3e3b218784855756b611656f;name=git_3a46012a_0;destsuffix=vcs_cache/a3fc9ff1b9074a6cb5abd9d765b335950a78100ac5f05b9b746d3aec8010ee26"
SRC_URI += "git://github.com/shurcooL/go-goon;protocol=https;branch=main;rev=37c2f522c041b74919a9e5e3a6c5c47eb34730a5;name=git_b687779a_0;destsuffix=vcs_cache/f57c8ff2cbf50a2a567f9cf15ef309f32762442e3dd5af13a9734f1411f21281"
SRC_URI += "git://github.com/shurcooL/sanitized_anchor_name;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615;name=git_ec1f1814_0;destsuffix=vcs_cache/26b4576f96297643b9efc73febfc8ec054630fc8d7a4de462e1c95b52f64aa01"
SRC_URI += "git://github.com/shurcooL/sanitized_anchor_name;protocol=https;branch=main;rev=86672fcb3f950f35f2e675df2240550f2a50762f;name=git_ec1f1814_1;destsuffix=vcs_cache/3ff54fa1e7ca8ba5262e96de6a3e2d41f9a92abf537b938ea9a571ba251e7501"
SRC_URI += "git://github.com/shurcooL/go;protocol=https;branch=main;rev=9e1955d9fb6e1ee2345ba1f5e71669263e719e27;name=git_535b1a59_0;destsuffix=vcs_cache/d3132db806112f4124d9f02b819694196e3d0bca407a31b48a1b0ef8b5d1e2c7"
SRC_URI += "git://github.com/shurcooL/httpgzip;protocol=https;branch=main;rev=b1c53ac65af9fd3d354d6f9ad30a0cca35e173ed;name=git_e793c148_0;destsuffix=vcs_cache/6f308b4707f23a61685e9f52c5fc6d7784973584100ec63e15d6f2531db940bb"
SRC_URI += "git://github.com/shurcooL/webdavfs;protocol=https;branch=main;rev=18c3829fa13384cc05cf82a03324c4ea61562b30;name=git_b93cbc20_0;destsuffix=vcs_cache/f15b1e7f9f5d889f733470dfa01eb4c5d8fb05f33dc77959e8a7417169ca0623"
SRC_URI += "git://github.com/shurcooL/events;protocol=https;branch=main;rev=410e4ca65f48ffdd749002a20a0b182c174e7020;name=git_6e01c3db_0;destsuffix=vcs_cache/91f6469664c65f293d5d1f767c92f9305de9f8074135e92d3f5096a64cd7c73b"
SRC_URI += "git://github.com/shurcooL/github_flavored_markdown;protocol=https;branch=main;rev=2122de53247006a637e59cf1c99d0770312d4be3;name=git_97666770_0;destsuffix=vcs_cache/4d55faf0c58a68c7e409d890a69324717cedc26940c0035b10835d3c69a5ed81"
SRC_URI += "git://github.com/shurcooL/gofontwoff;protocol=https;branch=main;rev=29b52fc0a18d8e3a04d56ae2401154eeed67b029;name=git_53761360_0;destsuffix=vcs_cache/50013c4526eb82538928ec631bdedf7b14ee69da92ad473a24db420e835ca074"
SRC_URI += "git://github.com/shurcooL/highlight_diff;protocol=https;branch=main;rev=09bb4053de1b1d872a9f25dc21378fa71dca4e4e;name=git_3084a6c0_0;destsuffix=vcs_cache/8b3d219ee033ebc274b1dc576def3008a46234e7eca64238efdeeb07f641e54d"
SRC_URI += "git://github.com/shurcooL/issuesapp;protocol=https;branch=main;rev=048589ce2241c1c07ffb4c5434a21169a100380e;name=git_47a3d441_0;destsuffix=vcs_cache/027d24054dd058366a3a025d885d3ecf5b9aab9bb7716142060e6cf9af50578b"
SRC_URI += "git://github.com/pkg/diff;protocol=https;branch=main;rev=20ebb0f2a09e612109b224b32f79370409108bcc;name=git_192939f3_0;destsuffix=vcs_cache/affde47da8cb6bb94705195a6eadcd70ea6d521f8128e1030b06d97add1a0da2"
SRC_URI += "git://github.com/pkg/sftp;protocol=https;nobranch=1;tag=v1.10.1;shallow=1;rev=3edd153f213d8d4191a0ee4577c61cca19436632;name=git_74e1affc_0;destsuffix=vcs_cache/6849ecbcede57bcaaab8fab92de8438f58bf7233857344385822616b9ab0f4a0"
SRC_URI += "git://github.com/pkg/sftp;protocol=https;nobranch=1;tag=v1.13.1;shallow=1;rev=5b98d05076b8ac5e6e762559e7c2d69efe1676ee;name=git_74e1affc_1;destsuffix=vcs_cache/29fe5dad408ceb81fd3ce51b9cf4ced1d698e46c3c498fdd065936b4f6df4c0a"
SRC_URI += "git://github.com/pkg/errors;protocol=https;nobranch=1;tag=v0.9.1;shallow=1;rev=614d223910a179a466c1767a985424175c39b465;name=git_6d82bc63_0;destsuffix=vcs_cache/58e525151c02acebc6662bf19060e7ee1112335787f1ffb059ea8d46a3164e5e"
SRC_URI += "git://github.com/pkg/errors;protocol=https;nobranch=1;tag=v0.8.1;shallow=1;rev=ba968bfe8b2f7e042a574c888954fccecfa385b4;name=git_6d82bc63_1;destsuffix=vcs_cache/05a9ae48ad2a27ee2ace909fb6dfe443196ef4ba6b92bd0e3d2f6a9460fc8fea"
SRC_URI += "git://github.com/BurntSushi/xgb;protocol=https;branch=master;rev=27f122750802c950b2c869a5b63dafcf590ced95;name=git_ee7d19c2_0;destsuffix=vcs_cache/8265837fe815c004de0b7b0184ac3b48ffe1e0d82c4261d024f03ec8eccc0fb3"
SRC_URI += "git://github.com/BurntSushi/toml;protocol=https;nobranch=1;tag=v0.3.1;shallow=1;rev=3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005;name=git_ec7059c7_0;destsuffix=vcs_cache/c7591feaba0db5f458f0e6745283c8246ea0f50af4eb4714a53ff88805ecd88a"
SRC_URI += "git://github.com/BurntSushi/toml;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=d97def528e83313822a9f98946334ffccd542bdf;name=git_ec7059c7_1;destsuffix=vcs_cache/7eaf0473d885d9366544dd1ef1773de590a2093dc497585662fd63f2c1713eda"
SRC_URI += "git://github.com/AdaLogics/go-fuzz-headers;protocol=https;branch=main;rev=e8a1dd7889d65b8a6f02175e0d79d7c0557db7f9;name=git_77272b21_0;destsuffix=vcs_cache/618ef3cd1ed01872674845eae25e7d6a50a3d70b49881ccd500327b0778fedb9"
SRC_URI += "git://github.com/danieljoos/wincred;protocol=https;nobranch=1;tag=v1.1.2;shallow=1;rev=258b3ae58806e4aa09a7ca7ee9c951f89522bde1;name=git_340c15e0_0;destsuffix=vcs_cache/373aec14578cb803c7c083424ed35df0eb831de51e2825d364f19de1912902b7"
SRC_URI += "git://github.com/choria-io/fisk;protocol=https;nobranch=1;tag=v0.7.1;shallow=1;rev=0dec0052e8eb1cec3b43bd785c709d5b3de012b6;name=git_fd693a7a_0;destsuffix=vcs_cache/df2f698ca9100ea51cfa914d0147efd70373847951d1251c0433cf9c7419a480"
SRC_URI += "git://github.com/sourcegraph/conc;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=7b8c8f2875cb861bb61844c9bcaa1aed070adbd4;name=git_40e2eeda_0;destsuffix=vcs_cache/6e751d6a2735237f28f48148717beb90e01a4e012126ddcd5ccfc6020a769a31"
SRC_URI += "git://github.com/sourcegraph/syntaxhighlight;protocol=https;branch=master;rev=bd320f5d308e1a3c4314c678d8227a0d72574ae7;name=git_4b063f78_0;destsuffix=vcs_cache/b7f4caab679f38b1142b2d0f9c6c411626b607965090830027e0a6776106a01b"
SRC_URI += "git://github.com/sourcegraph/annotate;protocol=https;branch=master;rev=f4cad6c6324d3f584e1743d8b3e0e017a5f3a636;name=git_2c768bf5_0;destsuffix=vcs_cache/d3a5f37cf3ca517f64bd115401936281575f089dbd3577db6d1b5913768947b7"
SRC_URI += "git://github.com/sourcegraph/go-diff;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=96789e3401eadc2247f02d416dc90be9ccd98962;name=git_e5832dbd_0;destsuffix=vcs_cache/f607517425140d606ca96ff8ae819ff5f9f44855f85afc31d9a93609df09671d"
SRC_URI += "git://github.com/beorn7/perks;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=37c8de3658fcb183f997c4e13e8337516ab753e6;name=git_42750950_0;destsuffix=vcs_cache/c20c7a1c80a243f687008566bc9b8a9517bdf7e3a4f9db15e17160ad20568e9d"
SRC_URI += "git://github.com/beorn7/perks;protocol=https;branch=master;rev=3a771d992973f24aa725d07868b467d1ddfceafb;name=git_42750950_1;destsuffix=vcs_cache/b05d3659d70127d95ec0b6f7d3aa9b87a50009706e0919be0913fc61dc69e093"
SRC_URI += "git://github.com/mailru/easyjson;protocol=https;branch=master;rev=1de009706dbeb9d05f18586f0735fcdb7c524481;name=git_4620abf9_0;destsuffix=vcs_cache/c8e037d59dc730dc3ffc46ed7a98a72c0ffc14dee7620040b6cc06fd16a22fe6"
SRC_URI += "git://github.com/mailru/easyjson;protocol=https;nobranch=1;tag=v0.9.0;shallow=1;rev=5e854fb809ec83ff18eb74554fd5c693e28eaadb;name=git_4620abf9_1;destsuffix=vcs_cache/77b9db486b47ac2ba95b3715c07fb44e6ebfa5d17ab6c7b1a0999f5ff40b0193"
SRC_URI += "git://github.com/mailru/easyjson;protocol=https;nobranch=1;tag=v0.7.7;shallow=1;rev=c120ca7ced6051261161ce15e8f1542a4b2567fc;name=git_4620abf9_2;destsuffix=vcs_cache/5b802334c301c91bd13cee6264caa8c327300bfc16173c6074fc315244620dd8"
SRC_URI += "git://github.com/xrash/smetrics;protocol=https;branch=master;rev=686a1a2994c11fac124829fadcb683a24ab8d25f;name=git_51ee97a4_0;destsuffix=vcs_cache/39f621debd197a5e0bcda4514cb54d787e4e443693f317363918ceb70d590944"
SRC_URI += "git://github.com/fxamacker/cbor;protocol=https;nobranch=1;tag=v2.7.0;shallow=1;rev=02b69dbb52f4ecf450b3aa5e9a04b7a0b4bf409a;name=git_3a88ac44_0;destsuffix=vcs_cache/4b59857912b9ea71beceb3684f965865607f578625ab12541c012ff811a120c9"
SRC_URI += "git://github.com/fxamacker/cbor;protocol=https;nobranch=1;tag=v2.9.0;shallow=1;rev=d29ad7351b55b1844387cf9306c4101658cc5256;name=git_3a88ac44_1;destsuffix=vcs_cache/a2e55d2b4fdba69f8a4cfc76758713247ee27c62d5ad4168e8c14369f3c94c36"
SRC_URI += "git://github.com/otiai10/curr;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=88e2f2cffa0b5f13e90ee963a321bd1b2f715561;name=git_98c4fbb2_0;destsuffix=vcs_cache/5eb6dd8287ffbf3e67aa5853b6440b1f370d72e34fd36d490e597e30add2cd78"
SRC_URI += "git://github.com/otiai10/curr;protocol=https;branch=main;rev=9b4961190c954a7dd7811374be900a20546c9424;name=git_98c4fbb2_1;destsuffix=vcs_cache/eff2ce573bec08183a45ad840977a7365447d3aee4db2d3b65ea49fe17b76a7e"
SRC_URI += "git://github.com/otiai10/copy;protocol=https;nobranch=1;tag=v1.7.0;shallow=1;rev=323db161ae97db91e6e13dbcda403fdb29c3fff8;name=git_e0ff6709_0;destsuffix=vcs_cache/ee6ebcb00d35d74291430705adb0ca5641987c48a3bf837d739e1564d1ea313c"
SRC_URI += "git://github.com/otiai10/mint;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=a80106dbfe216e22b6fdbd069dd84ab0bfed6665;name=git_7127f064_0;destsuffix=vcs_cache/bc41fe04cf4c5ff71fb69e50e92d579ab9da8278dbc603791dd9092ac0fc0608"
SRC_URI += "git://github.com/otiai10/mint;protocol=https;nobranch=1;tag=v1.3.3;shallow=1;rev=f8e74d5076fdd79c3db0aa8b1dda35e603c328e5;name=git_7127f064_1;destsuffix=vcs_cache/d0c82e45e04c05b740d4178d7bb3e9922d451889b6674fd748e350ee0efe5ddb"
SRC_URI += "git://github.com/matttproud/golang_protobuf_extensions;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=c12348ce28de40eed0136aa2b644d0ee0650e56c;name=git_2855aad4_0;destsuffix=vcs_cache/dd0fe058870feb088b8d2d88a7ff601f4c8c03aedeede7d837efcd311b5aea9b"
SRC_URI += "git://github.com/matttproud/golang_protobuf_extensions;protocol=https;nobranch=1;tag=v1.0.4;shallow=1;rev=c182affec369e30f25d3eb8cd8a478dee585ae7d;name=git_2855aad4_1;destsuffix=vcs_cache/dc91b7ef768d33ce05718aabced02bf61e12e8c43be5d718762c2abbeb1346af"
SRC_URI += "git://github.com/u-root/uio;protocol=https;branch=main;rev=d2acac8f37018c514adec45c51f58eace3795df4;name=git_f2a66663_0;destsuffix=vcs_cache/e1d54bb1ec40bb873ac1dcec0470975c01f76b08617640fb6c32dbcd9454ad25"
SRC_URI += "git://github.com/safchain/ethtool;protocol=https;nobranch=1;tag=v0.5.10;shallow=1;rev=8136d40f7436231a84e43166424897f72502b1af;name=git_2cf27740_0;destsuffix=vcs_cache/460657168ac3b62d1b991bd3aabff2736bd643d8fac6aef749703513c88f3f87"
SRC_URI += "git://github.com/pbnjay/memory;protocol=https;branch=master;rev=7b4eea64cf580186c0eceb10dc94ba3a098af46c;name=git_b4934740_0;destsuffix=vcs_cache/c896d22f0aacacf7ef3a27b3015fd189100b1f07cf3abcf397331f27eaacd3d2"
SRC_URI += "git://github.com/erikdubbelboer/gspt;protocol=https;branch=master;rev=e68493906b8382891943ddc9960cb9c6ecd1a1f0;name=git_5917482c_0;destsuffix=vcs_cache/76ba437ac8c655323e21cec60f6c7f5653582b6bece909619b94a91c906fa3a7"
SRC_URI += "git://github.com/tarm/serial;protocol=https;branch=master;rev=98f6abe2eb07edd42f6dfa2a934aea469acc29b7;name=git_a133531c_0;destsuffix=vcs_cache/1a9bb6795d7043c19f0c44f0d74c97669cc624e026ce6a22b0d4f3bf52265b44"
SRC_URI += "git://github.com/invopop/jsonschema;protocol=https;nobranch=1;tag=v0.13.0;shallow=1;rev=328cc73c3399c73df18b708fa00d29669cb0e4cc;name=git_15937e6d_0;destsuffix=vcs_cache/cbe0293bc0ebdf8cd16b7cdc781989d15a890f7e2e5e773e3aa40aae265f6322"
SRC_URI += "git://github.com/xlab/treeprint;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=044005a3b405f660f109e066d9f589755835c2ea;name=git_eebd9ad8_0;destsuffix=vcs_cache/ee4e106490f6c5b18fc6de44494c8ef4c0e0fd4a80e7af8fdfb9020f97453746"
SRC_URI += "git://github.com/go-gl/glfw;protocol=https;branch=master;rev=12ad95a8df72b2f4e72eab0d29daa5e27a5c84ac;name=git_9bab791a_0;destsuffix=vcs_cache/13c0a1fb6f141dfc5be8ba267f70735111ab33c01bbc87de1e3f7ad00f8aa555"
SRC_URI += "git://github.com/go-gl/glfw;protocol=https;branch=master;rev=6f7a984d4dc470c3f197229ad1991ae9e211bba2;name=git_9bab791a_1;destsuffix=vcs_cache/125215c19c4ce47eea8152d4760d88e290b8213b9d2c0407a22307f549e1566f"
SRC_URI += "git://github.com/go-gl/glfw;protocol=https;branch=master;rev=e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc;name=git_9bab791a_2;destsuffix=vcs_cache/585e1262de37f034792d4912d52a9702a0f95e59204c91d1924b2cf159c36e2f"
SRC_URI += "git://github.com/distribution/reference;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=ff14fafe2236e51c2894ac07d4bdfc778e96d682;name=git_b4d8130d_0;destsuffix=vcs_cache/ac2c94a9c45cfe172807163d3f9ae441bf0db0b30e528660d1b5db49678ed93a"
SRC_URI += "git://github.com/xeipuuv/gojsonpointer;protocol=https;branch=master;rev=02993c407bfbf5f6dae44c4f4b1cf6a39b5fc5bb;name=git_bd44e658_0;destsuffix=vcs_cache/4b0abfc7aeea962cf44836059fabc8aebf20db8d2e9ce317db13d42ade75c19f"
SRC_URI += "git://github.com/xeipuuv/gojsonpointer;protocol=https;branch=master;rev=4e3ac2762d5f479393488629ee9370b50873b3a6;name=git_bd44e658_1;destsuffix=vcs_cache/f35df1afe406fbe96a9200b2fa5c736db1be1c70f292d9e69247d35fa318ec32"
SRC_URI += "git://github.com/xeipuuv/gojsonreference;protocol=https;branch=master;rev=bd5ef7bd5415a7ac448318e64f11a24cd21e594b;name=git_ca2a9119_0;destsuffix=vcs_cache/6cce19ebe3be9e8f13d8b3c5090971f010f3f3cda349fa51197c974450d133ee"
SRC_URI += "git://github.com/xeipuuv/gojsonschema;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927;name=git_6efae2af_0;destsuffix=vcs_cache/21478840c17d30281eb0f8b90406d132c72274e71f74dcbe3dfb4fa4236df77c"
SRC_URI += "git://github.com/antihax/optional;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=c3f0ba9c1a592b971d66b2787679af55b5c58f21;name=git_aab58b7d_0;destsuffix=vcs_cache/535a79fbd6ec4a2d00a2eaeb938554011f822f57d36bc924215af19f4bab0697"
SRC_URI += "git://github.com/ruudk/golang-pdf417;protocol=https;branch=master;rev=1af4ab5afa58c956c53ed723dee66437498b9415;name=git_b9e72af0_0;destsuffix=vcs_cache/63346948c2e5f9a1d2158321ad92056ce33e12c2fdc52b8dcc6bc61338847d5c"
SRC_URI += "git://github.com/ruudk/golang-pdf417;protocol=https;branch=master;rev=a7e3863a1245aa774317bb96e6c19640b3a9c99e;name=git_b9e72af0_1;destsuffix=vcs_cache/93b7c770797398b0ef30c930347e43de7ebbf9440f939ec59f7139cc52d3414f"
SRC_URI += "git://github.com/miekg/dns;protocol=https;nobranch=1;tag=v1.1.63;shallow=1;rev=97c29ffb8fbdcc2ee5c9bd842f441a18eab0dc90;name=git_f7f6bc88_0;destsuffix=vcs_cache/3339903bfdc843908363af9155248eb4263401a1240c7f1fa08f500129440a65"
SRC_URI += "git://github.com/miekg/pkcs11;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=f3481918a208bd212aa995a41f92d786eb418a7d;name=git_cf5d6134_0;destsuffix=vcs_cache/cfc32d6973be9c203ec1d8480b59f61c59be67d146de9d920f82d4eb7c4d994a"
SRC_URI += "git://github.com/k3s-io/kube-router;protocol=https;nobranch=1;tag=v2.5.0;shallow=1;rev=70545914453cec949ba7e0ab1f84d07f2e080073;name=git_7e2d2a2b_0;destsuffix=vcs_cache/9d16c28f5c0286b0fe28a56f14466154c9fdefd8b18cccd94500c2ba53067cef"
SRC_URI += "git://github.com/k3s-io/stargz-snapshotter;protocol=https;nobranch=1;tag=v0.17.0-k3s1;shallow=1;rev=f908e753e01dd906fee13b005bad431f0b2448a7;name=git_fd53a37b_0;destsuffix=vcs_cache/e959f176352331501b7f5540a063c78cee667766282127d4ad26297d03841765"
SRC_URI += "git://github.com/k3s-io/etcd;protocol=https;nobranch=1;tag=server/v3.6.4-k3s3;shallow=1;rev=182208f36cfc0932344aa6e1aca96cfd9a317841;name=git_aef25e4e_0;destsuffix=vcs_cache/77876f9fbc55bf8dfc2a02c17af988342b12ab3a3f49591c3cff834d27a3565b"
SRC_URI += "git://github.com/k3s-io/cri-tools;protocol=https;nobranch=1;tag=v1.34.0-k3s2;shallow=1;rev=524e6a42ddbb56bd3cba6997202fca8a9b16f541;name=git_c502a59a_0;destsuffix=vcs_cache/af3fbccf26e370c1bf092eeb59f4f9b85e33672cd57e62de8d930838cd32ef6d"
SRC_URI += "git://github.com/k3s-io/kine;protocol=https;nobranch=1;tag=v0.14.0;shallow=1;rev=adbb708512a6be82e7f1beaabc618b95f490d820;name=git_5e4dd787_0;destsuffix=vcs_cache/7c0ccf4b3214ad42de16de61b8d611a125c2961b26676975375871182fc97575"
SRC_URI += "git://github.com/k3s-io/cadvisor;protocol=https;nobranch=1;tag=v0.52.1;shallow=1;rev=0b675defd46277198f7c15c1053301421a4b733e;name=git_4aaee879_0;destsuffix=vcs_cache/93030510f02aa70b8f50a52818a1de4dd9a6adff9444e1917a1c98d4080db9e8"
SRC_URI += "git://github.com/k3s-io/api;protocol=https;nobranch=1;tag=v0.1.3;shallow=1;rev=8adb951ef8746be48fb3a38fab98e65cc728374a;name=git_7ad9f6da_0;destsuffix=vcs_cache/2594970aca989e7b1b157600caac139bddb508d3a21116dd03d02c33b70bb122"
SRC_URI += "git://github.com/k3s-io/kubernetes;protocol=https;nobranch=1;tag=v1.34.1-k3s1;shallow=1;rev=60d88720366a4d886c37933d148e07697c40de75;name=git_a179a84e_0;destsuffix=vcs_cache/79755ecf75cd1d73a5512f7dce51f85b5904ac4b1e66d7ff50c8f44c85b23658"
SRC_URI += "git://github.com/k3s-io/klog;protocol=https;nobranch=1;tag=v2.120.1-k3s1;shallow=1;rev=8aec94690700c54117016f97845530e7c75b6aeb;name=git_8c58a3d2_0;destsuffix=vcs_cache/b4ecd10d658bd3e159ff70ac7f7ed0d80d4862ca5f6f1ecddbdacf900f0a6486"
SRC_URI += "git://github.com/k3s-io/helm-controller;protocol=https;nobranch=1;tag=v0.16.13;shallow=1;rev=dac1b5e95969ebc2ca26c202144493c1deedc2ab;name=git_f1f6d110_0;destsuffix=vcs_cache/aeec7c5da8437459b27d506a7dfc2a13590458bfd9c4759f0fc484bdf9aa72ae"
SRC_URI += "git://github.com/k3s-io/cri-dockerd;protocol=https;nobranch=1;tag=v0.3.19-k3s3;shallow=1;rev=dab06f1f70e915cbf03c8108cb5627bd46a9ef02;name=git_644f1624_0;destsuffix=vcs_cache/e0fc826ae76d9fc361a5896a547acafa3b8a0a905bb9e72a288c98ced9309460"
SRC_URI += "git://github.com/k3s-io/spegel;protocol=https;nobranch=1;tag=v0.2.0-k3s1;shallow=1;rev=17350c5f87a2968040cb71ff21028735be7b3007;name=git_1a0a85fa_0;destsuffix=vcs_cache/37ed036879002392385932523096cd7803dead8e8241d7e4b08868f7bdfe01e9"
SRC_URI += "git://github.com/k3s-io/containerd;protocol=https;nobranch=1;tag=v2.1.4-k3s2;shallow=1;rev=5eca7d3c1473fba001474f1cac8b4c1407950a6f;name=git_1d688be2_0;destsuffix=vcs_cache/4afdec7ff7853a7b0cb663d1d99abccd2d882a50e7fd386221d873614c60af31"
SRC_URI += "git://github.com/coreos/go-semver;protocol=https;nobranch=1;tag=v0.3.1;shallow=1;rev=c16f28124668daf02b2a32a431dec2f183977ffc;name=git_54f8ad6f_0;destsuffix=vcs_cache/bc5814f476c03ba95df77de9e368f42150b3368b0f4ab21268b7478a13c35e00"
SRC_URI += "git://github.com/coreos/pkg;protocol=https;branch=main;rev=bbd7aa9bf6fb51acc905bd45a5363ebecf065f30;name=git_28d14d3e_0;destsuffix=vcs_cache/f2533d33a12c08b79924ab6e48fb3bad7e539de78473f127459ffda70a888544"
SRC_URI += "git://github.com/coreos/go-oidc;protocol=https;nobranch=1;tag=v2.3.0;shallow=1;rev=b7e896c40598f5307b3b5a163b6ad02ae97ec1a5;name=git_565daa15_0;destsuffix=vcs_cache/8d5581ed493edc793ddc0830b4df04f67df8b2ccf0519e4c83b9ec0078185424"
SRC_URI += "git://github.com/coreos/go-systemd;protocol=https;nobranch=1;tag=v22.6.0;shallow=1;rev=8214e15a7a799dc18f0ef8dd788b830f815d7530;name=git_1f60ff15_0;destsuffix=vcs_cache/cb3155042a873c409f7dda7401561f3206a5dc4225d8ce9335fd9da1ee482c05"
SRC_URI += "git://github.com/coreos/go-systemd;protocol=https;nobranch=1;tag=v22.1.0;shallow=1;rev=b51e752dd1c9c618846f8bc5b95ab524bd7b11c2;name=git_1f60ff15_1;destsuffix=vcs_cache/b0af26b2c1617363ba4404db4d917fa1f0879fdd5ea9825fa8bea2c01cacb185"
SRC_URI += "git://github.com/coreos/go-systemd;protocol=https;branch=main;rev=c6f51f82210d9608a835763225a5e2a3c87583c6;name=git_1f60ff15_2;destsuffix=vcs_cache/9fe56ae7acf5c26da1f8e363ebc3efb9f7779daff9c3080b05e7838044978c12"
SRC_URI += "git://github.com/coreos/go-systemd;protocol=https;nobranch=1;tag=v22.5.0;shallow=1;rev=d5623bf85e8e73ae6352f78ee6b55a287619dd4e;name=git_1f60ff15_3;destsuffix=vcs_cache/1240ab68de5778e9c43b2943db956bd157fab582cec5363f953cb5c72f2e445b"
SRC_URI += "git://github.com/coreos/go-iptables;protocol=https;nobranch=1;tag=v0.8.0;shallow=1;rev=26e42518b22e6878bd6e479a574122c319fa923e;name=git_6a376bb3_0;destsuffix=vcs_cache/a9ebf5d9af87c16085497d4c2236656aea2599db678e589259e7c191f6c4b73a"
SRC_URI += "git://github.com/jonboulle/clockwork;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=6d8d032a18422c2e3ef651170a8a55012d1f704c;name=git_c61652e2_0;destsuffix=vcs_cache/8a9b3a40ae13b2679138bcbfbe409f1586f92c23e873f4e219066c6596debc26"
SRC_URI += "git://github.com/multiformats/go-multiaddr-fmt;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=113ed87ed03cfff94f29fd95236be3ccd933fd36;name=git_612261c9_0;destsuffix=vcs_cache/b9363f18a917e06fd15aaa89c4c5892b33c77381e91fb6113248cbd2ec6fe104"
SRC_URI += "git://github.com/multiformats/go-multicodec;protocol=https;nobranch=1;tag=v0.9.0;shallow=1;rev=b8b4bf5270f9f220f00bcdeddf1641b13e67cc0b;name=git_28271801_0;destsuffix=vcs_cache/e82a32ff5c3e0c5f061bad7083de6f9b06ec93bff5b076a0621c2b4a1a5b91dd"
SRC_URI += "git://github.com/multiformats/go-base32;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=a16b66327f327428b32b919939b8c93482507e1f;name=git_0d2d6dd6_0;destsuffix=vcs_cache/22f9647a611ada581aab67ff89be4a59f14ef1c6101708feb4c8248bd30beba8"
SRC_URI += "git://github.com/multiformats/go-multiaddr-dns;protocol=https;nobranch=1;tag=v0.4.1;shallow=1;rev=2c774f3c835321ab48ee63492dedd1aec8691a51;name=git_7a7ba1e4_0;destsuffix=vcs_cache/3a5d5a2a52015f0b62ebca80333a09e10edbf4e39cd0d488843980bcc22b7016"
SRC_URI += "git://github.com/multiformats/go-base36;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=da52c98bb97cfaa321be04030bc97dcee7de63ff;name=git_f2aafc4b_0;destsuffix=vcs_cache/b53b08586b57e1c9d5907ee7589ddc68381618b8b71a4a91cf585531a2925d85"
SRC_URI += "git://github.com/multiformats/go-multiaddr;protocol=https;nobranch=1;tag=v0.15.0;shallow=1;rev=30b45fbe13b3a116675a49a799d13d18a9306f60;name=git_573da6f3_0;destsuffix=vcs_cache/132595ba2696035ea593177db5d567c0981fb2575348a6dd5f205ba00adc171e"
SRC_URI += "git://github.com/multiformats/go-multiaddr;protocol=https;nobranch=1;tag=v0.1.1;shallow=1;rev=f96df18bf0c217c77f6cc0f9e810a178cea12f38;name=git_573da6f3_1;destsuffix=vcs_cache/757011a7dfa054e1bd8aa193c0b02452f7bd545a8d545b453c1c99932f128c47"
SRC_URI += "git://github.com/multiformats/go-multibase;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=58a41f7df1d82d16599e259325b3337d69f70e3b;name=git_e2525f66_0;destsuffix=vcs_cache/336ef425701a0f8e2a7fd9038f8015dc08a8c83b80d82305e7fdb531e67b848a"
SRC_URI += "git://github.com/multiformats/go-multistream;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=6275fc7b9cee338515acd5a48db506e4666bfc7a;name=git_3b3d5d66_0;destsuffix=vcs_cache/8bfeaf3cf7cdfb9da36d345b9e0f1c5edca47a7e849387b053fc7eb8bed09bb1"
SRC_URI += "git://github.com/multiformats/go-varint;protocol=https;nobranch=1;tag=v0.0.7;shallow=1;rev=8c8129accb08fc978bb276c81d568c41eafdd48f;name=git_82e9ac21_0;destsuffix=vcs_cache/ce0dad13d3a66794d01ddcba58a1d4edcebfcc735198acfda0cb2217b3b7da09"
SRC_URI += "git://github.com/multiformats/go-multihash;protocol=https;nobranch=1;tag=v0.0.8;shallow=1;rev=249ead2008065c476a2ee45e8e75e8b85d846a72;name=git_378abd8b_0;destsuffix=vcs_cache/156329e1d8fb42524cb5f10735c9ac97e24eccfbbdd0078544b96a543cfca3cd"
SRC_URI += "git://github.com/multiformats/go-multihash;protocol=https;nobranch=1;tag=v0.2.3;shallow=1;rev=ff9da31500dddfc675e996601a05cdfc3ce7c764;name=git_378abd8b_1;destsuffix=vcs_cache/5357d62ff01a1b90a3740db211ad8dce9191406dda2bded9fa50679d59183137"
SRC_URI += "git://github.com/eapache/channels;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=47238d5aae8c0fefd518ef2bee46290909cf8263;name=git_f2d1a81f_0;destsuffix=vcs_cache/eda59f1cad7c96c76bae1c5af9f36f10e0396a2ab9863a89ba65e537ecc4a2b4"
SRC_URI += "git://github.com/eapache/queue;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=44cc805cf13205b55f69e14bcb69867d1ae92f98;name=git_d80d5ca1_0;destsuffix=vcs_cache/ba2ad1068c3529ddb963e552541629857896d8c6ee8757652f5748840d598e0c"
SRC_URI += "git://github.com/ucarion/urlpath;protocol=https;branch=master;rev=7ccc79b76bbb8235c4fb3da11c4bc35af899456f;name=git_4a3b7037_0;destsuffix=vcs_cache/d8e173a71d3b09082cd60a40b418e742b39bff366afa2e306e5890eaab230e97"
SRC_URI += "git://github.com/go-errors/errors;protocol=https;nobranch=1;tag=v1.4.2;shallow=1;rev=33d496f939bc762321a636d4035e15c302eb0b00;name=git_35ff444b_0;destsuffix=vcs_cache/e89baf203a1d185b7272705d5ddb9ad62af4e74186fabb8fa5bfdc52c96e133e"
SRC_URI += "git://github.com/go-errors/errors;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=a6af135bd4e28680facf08a3d206b454abc877a4;name=git_35ff444b_1;destsuffix=vcs_cache/bd902bb55d3203ba820919cba2d9b8979bf9015dfc5503b247893b3356f59fe5"
SRC_URI += "git://github.com/sagikazarmark/slog-shim;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=eee7ea0c5b908723aed346b2391e3d09ff2f6818;name=git_0d9220c7_0;destsuffix=vcs_cache/f3be91604cf714dd2b480e712ec24de49956501e22e4940c29ea63e0193adcb8"
SRC_URI += "git://github.com/sagikazarmark/locafero;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=3add67b02885e6dfa54e592644f8aafcd7693f2e;name=git_43f789e0_0;destsuffix=vcs_cache/1e12c5b97703fde4658372f4b816314209ce38c28aca51d18ec787ea01752016"
SRC_URI += "git://github.com/cespare/xxhash;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=569f7c8abf1f58d9043ab804d364483cb1c853b6;name=git_9d94b3ef_0;destsuffix=vcs_cache/f1efb2c29b6433b427aff2bdf512fd9ff9b4ab5751f1fc3a6c99a8a37c4ca2c0"
SRC_URI += "git://github.com/cespare/xxhash;protocol=https;nobranch=1;tag=v2.3.0;shallow=1;rev=998dce232f17418a7a5721ecf87ca714025a3243;name=git_9d94b3ef_1;destsuffix=vcs_cache/4cf9134295bfe252b2146507759140e7050e00021c322cfd0d38a231ef3c0b20"
SRC_URI += "git://github.com/cespare/xxhash;protocol=https;nobranch=1;tag=v2.2.0;shallow=1;rev=a76eb16a93c1e30527c073ca831d9048b4b935f6;name=git_9d94b3ef_2;destsuffix=vcs_cache/7746ae0f30410353176582bb9e382aff24108dd618b7ef963012b677127ce920"
SRC_URI += "git://github.com/jstemmer/go-junit-report;protocol=https;branch=master;rev=af01ea7f8024089b458d804d5cdf190f962a9a0c;name=git_493c345a_0;destsuffix=vcs_cache/8124ba3f2d8728403f4dc90ebaa06daebaa11ec294e656a7cecf012286dad538"
SRC_URI += "git://github.com/jstemmer/go-junit-report;protocol=https;nobranch=1;tag=v0.9.1;shallow=1;rev=cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac;name=git_493c345a_1;destsuffix=vcs_cache/02567effcb53f4b0fa353f44e344720b283adffc4e4e56c8fc00cb1a6101acf7"
SRC_URI += "git://github.com/alexflint/go-scalar;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=489daf05a6ccfffdd72c1d5e972bb14163fa07b1;name=git_14774712_0;destsuffix=vcs_cache/bb5544d7107518483b3580a2708d7b533175bf6c2805018b1715f6339f095c5e"
SRC_URI += "git://github.com/alexflint/go-arg;protocol=https;nobranch=1;tag=v1.5.1;shallow=1;rev=bee5cf5d7cc07c41b2a528052bfba0566b5069c0;name=git_62e1d458_0;destsuffix=vcs_cache/c93291152d467fbb2a25bc23bc105940d7d2ab454b537b0bf82ec0000dd9ab3b"
SRC_URI += "git://github.com/alexflint/go-filemutex;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=d273d2a9c3e7a8d04fe55266079812748f045ffd;name=git_30bbe144_0;destsuffix=vcs_cache/4bc80c029b912b71081826e769697da46a3fb902cbda086feac07c555787e17f"
SRC_URI += "git://github.com/cockroachdb/datadriven;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=26b70ec25f5935afbf28f0fa1ffea6b385636e27;name=git_c15d85a4_0;destsuffix=vcs_cache/7f9aeac808866822052bb4ed51dc861e3a67c7e873ec73bc2eaed15490ebc819"
SRC_URI += "git://github.com/stoewer/go-strcase;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=6c4ce445f323378b0865757ffd2c50d8bb2737f8;name=git_59561842_0;destsuffix=vcs_cache/f75efc30617757a01c813975e22457d6a40cfb4429460fb4bb34cc10d9a863cc"
SRC_URI += "git://github.com/stoewer/go-strcase;protocol=https;nobranch=1;tag=v1.3.1;shallow=1;rev=992183722cdb474a541bf3bc9d205b302edd47c2;name=git_59561842_1;destsuffix=vcs_cache/17bf9603f55eb37b94902202ff383a663ee8daa03b6fc6688ed2b99cad65b3a1"
SRC_URI += "git://github.com/mitchellh/go-wordwrap;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=ecf0936a077a4bd73a1cc2ac5c370f2b55618d62;name=git_bad0582b_0;destsuffix=vcs_cache/c6c7d05ba9f6db2637751fa2ce7bbc8bb04f632abc0b05363566319c8fd9c9b0"
SRC_URI += "git://github.com/mitchellh/mapstructure;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=ab69d8d93410fce4361f4912bb1ff88110a81311;name=git_3ac6d6a4_0;destsuffix=vcs_cache/d9f5489d4515cf23689f7c9a7a71a85fdd52671cf92601ea8e8c59bf3644b6b5"
SRC_URI += "git://github.com/mitchellh/go-homedir;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=af06845cf3004701891bf4fdb884bfe4920b3727;name=git_b0f6ef1f_0;destsuffix=vcs_cache/0466071bcdbaca5ed0a5cdacf380534de6af614c1d6ebac6ec08513f20ffc5ad"
SRC_URI += "git://github.com/mitchellh/copystructure;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=d4ce1f938f7a7ea2a40bff4544b56be9c00b5e84;name=git_1a7f6829_0;destsuffix=vcs_cache/d3fc75b255c7157669cb2bfb806c854438546d13de557d12d405a6c09392b5f6"
SRC_URI += "git://github.com/mitchellh/reflectwalk;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=e0c24fdb021963cd2c4013097a0b993a7c4e344f;name=git_25507f2c_0;destsuffix=vcs_cache/cef150715ca3823275a9d97895b7fdc3d73afcb2a90e53183ddffeff1bf246a8"
SRC_URI += "git://github.com/ccoveille/go-safecast;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=18f613b6035966362d82fbf41896b1d089fcd589;name=git_3545f9ef_0;destsuffix=vcs_cache/5ebf8f5efec55695299f16dd2d1007fb750b1e0103803f4f6a53052cc0211db1"
SRC_URI += "git://github.com/urfave/cli;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=0bdeddeeb0f650497d603c4ad7b20cfe685682f6;name=git_cd035cbf_0;destsuffix=vcs_cache/16abec32eeeacf78ac938b59d96d2b50aba6e642cc5617322f40d2aa3b51daa0"
SRC_URI += "git://github.com/urfave/cli;protocol=https;nobranch=1;tag=v2.27.7;shallow=1;rev=19b951ab78929023a9a670722b26ffb1d67c733a;name=git_cd035cbf_1;destsuffix=vcs_cache/b063b9db6f64a681153d8de9f4474fe963c29b610e0cb156372dbc3dffad882a"
SRC_URI += "git://github.com/urfave/cli;protocol=https;nobranch=1;tag=v1.22.16;shallow=1;rev=77bdfaba349380095e742cb8aedbaf4e68d9f3b2;name=git_cd035cbf_2;destsuffix=vcs_cache/496cd8a1b24daac973dcb806ca432503824f1918d2978a8fc9dc8b241b3efe5f"
SRC_URI += "git://github.com/urfave/cli;protocol=https;nobranch=1;tag=v1.22.2;shallow=1;rev=850de854cda08e97afb500b72967f1a56f0330e5;name=git_cd035cbf_3;destsuffix=vcs_cache/8df09289d41a4d006191630ffbd05d94e437e3572a992335e9d3de83d39549a6"
SRC_URI += "git://github.com/urfave/cli;protocol=https;nobranch=1;tag=v1.22.10;shallow=1;rev=c24c9f398d5d925f8c3d990509e8c7b3ae942646;name=git_cd035cbf_4;destsuffix=vcs_cache/225872daef360d9b21e205c4d9b552c0b8cf9d6db7ef54d031f8d796b338825c"
SRC_URI += "git://github.com/decred/dcrd;protocol=https;nobranch=1;tag=crypto/blake256/v1.1.0;shallow=1;rev=0d2e94857b109d8bcf1056b3d5061ca90f0f8b94;name=git_9fd408f7_0;destsuffix=vcs_cache/6b53d2d53c1d8abc0b1e3afd84693f1e8e516f653a62396f262dd3998d23cdf9"
SRC_URI += "git://github.com/decred/dcrd;protocol=https;nobranch=1;tag=dcrec/secp256k1/v4.4.0;shallow=1;rev=f98d08ef138a99711dbbc86c569935ded8d6a986;name=git_9fd408f7_1;destsuffix=vcs_cache/dea203beeafba9300d7341afcdd38985621ebd2ec9d4c5a8a7d262cbb2c2bc41"
SRC_URI += "git://github.com/bronze1man/goStrongswanVici;protocol=https;branch=master;rev=211cef3b0b20c5c00c0ad49f7b4ccb78c06eee58;name=git_35e9e2e0_0;destsuffix=vcs_cache/d421cb26539bd984124aa1407f9183358053224a7aeab84c95a169a35343a0f7"
SRC_URI += "git://github.com/soheilhy/cmux;protocol=https;nobranch=1;tag=v0.1.5;shallow=1;rev=5ec6847320e53b5fee0ab9a4757b56625a946c85;name=git_4d205919_0;destsuffix=vcs_cache/0eb8d423f961736e5cfd383d1dd7bf2ed7cb3502aa09c4ea7d57615fe3ff21e9"
SRC_URI += "git://github.com/antlr4-go/antlr;protocol=https;nobranch=1;tag=v4.13.1;shallow=1;rev=4d7e18847d8881a176db3d7cca909e3f3942a05f;name=git_fe30925c_0;destsuffix=vcs_cache/096a48a66e783be10de52ef93ca366d977430e8b49a79bedea51ff8e16480448"
SRC_URI += "git://github.com/antlr4-go/antlr;protocol=https;nobranch=1;tag=v4.13.0;shallow=1;rev=9549173c7ad83c2bf580a654ce0fe666fd7d2557;name=git_fe30925c_1;destsuffix=vcs_cache/60621af84507c8d126bbdd70d9f0e8feba7b29011ba5e1a667fdf9c123d5eb38"
SRC_URI += "git://github.com/flannel-io/flannel;protocol=https;nobranch=1;tag=v0.27.0;shallow=1;rev=cf342d377f5920c74c2cc880d0d9ea05e0a93886;name=git_5354256f_0;destsuffix=vcs_cache/1bdcecde54190e1db70bfa8bdda0eb7bebac560cf2ba3fd5242cbda22a7e654d"
SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;tag=v1.1.27;shallow=1;rev=12fc98ebcd751822bbd43314119e483472e6f55f;name=git_40d8a3db_0;destsuffix=vcs_cache/fb45f805a799ac2f897942f334c68fc215fa5bfc06f4b0277d583fe78f6c36ca"
SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;tag=v1.1.32;shallow=1;rev=33089e232f3ae65a718a0fc3b205ac5d89995885;name=git_40d8a3db_1;destsuffix=vcs_cache/4d8e65dde523b2ecd19bb3bacf6dce7eb6b72fd4b382ecd732a1f5c8fb8859d4"
SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;tag=v1.4.1;shallow=1;rev=829d874034a5048e1a5c6354dcd8b40e1e41c3a2;name=git_40d8a3db_2;destsuffix=vcs_cache/99d522df278615d654c06174161495a295b56f37f18c70b93be7ae19a5f89849"
SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;tag=v1.2.1;shallow=1;rev=91e5269fb0f873f91c9a01e98f32de15ca49440f;name=git_40d8a3db_3;destsuffix=vcs_cache/4c58efe0c28d74a0131cf65fc06af9bf723f3852cb20f81dce6ce9ae50793119"
SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;tag=v1.3.5;shallow=1;rev=9f5125e104c38283b8ca0a581793abe4260dd786;name=git_40d8a3db_4;destsuffix=vcs_cache/b23efb0c9bc0dc0b0b4a019953944537802c3df6caefc56d2d8462d9bbe7dd79"
SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;tag=v1.4.13;shallow=1;rev=c0856327b39b00b39b5d7e1f5ed0eed8bb1b6a23;name=git_40d8a3db_5;destsuffix=vcs_cache/fbec1a06cf7d810b36a87559756866f825159c4db030b543bd6359717d401035"
SRC_URI += "git://github.com/yuin/goldmark;protocol=https;nobranch=1;tag=v1.1.25;shallow=1;rev=fea52e86ab0a270b4c912a5681fae878a8f6e053;name=git_40d8a3db_6;destsuffix=vcs_cache/aa711c15dff4a421f2da78a8246856c752bc94aee78fac21afc76f9e987aa343"
SRC_URI += "git://github.com/natefinch/lumberjack;protocol=https;nobranch=1;tag=v2.0.0;shallow=1;rev=7d6a1875575e09256dc552b4c0e450dcd02bd10e;name=git_18aad6ee_0;destsuffix=vcs_cache/576193a875ad316d0d18cd60a70efab6ecfe55f31ab59dffa431b4632e771db4"
SRC_URI += "git://github.com/hanwen/go-fuse;protocol=https;nobranch=1;tag=v2.8.0;shallow=1;rev=ee34567408d6ab557a0169089879ec111bd74408;name=git_4e8568a3_0;destsuffix=vcs_cache/9549fd67be856dc5565aa6f4996edb86a648510a1efb4dec609c4133bdba118c"
SRC_URI += "git://github.com/campoy/embedmd;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=54781ea47c31d8d2e4e351c1e05ce3ebf95f1446;name=git_5532df9d_0;destsuffix=vcs_cache/d43d85aa2bde039589938e3fbe00e30e4a4c6c138461d89429caf1f7957e0937"
SRC_URI += "git://github.com/marten-seemann/tcp;protocol=https;branch=master;rev=dfbc87cc63fd003b9a070c76d605769fa3e2e3b2;name=git_956a28b8_0;destsuffix=vcs_cache/33a0eb67e183fd6a89d060780dc85cc189b9dc45c859bdd37071c3600c208181"
SRC_URI += "git://github.com/koron/go-ssdp;protocol=https;nobranch=1;tag=v0.0.5;shallow=1;rev=156d60dcc8ad19f8079697dd8c7faffdc257f13d;name=git_18fc3f69_0;destsuffix=vcs_cache/b3f2fe616a78079307d5651878a0a66e3c3aa032a54ebe2eea8de07ca286248c"
SRC_URI += "git://github.com/NYTimes/gziphandler;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=dd0439581c7657cb652dfe5c71d7d48baf39541d;name=git_749e556e_0;destsuffix=vcs_cache/4432cf17688d98dd536a5b6fffc152e59d0c129e894bd16e3de993748e44bed5"
SRC_URI += "git://github.com/yashtewari/glob-intersection;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=9f24ebf25f62b3565b778d6ec98775caf0e37720;name=git_2842a744_0;destsuffix=vcs_cache/f808bebdb4b58643c351139a2ad430afee40f2154d96cfe1086091dbffa08d35"
SRC_URI += "git://github.com/jackpal/go-nat-pmp;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=059203efa1edd7130293a583541b8308e7c640c4;name=git_1ca5cc9c_0;destsuffix=vcs_cache/a9c9e696f5c2025a684a3d9fe55c0014cae2c3985dca22c996c9dd828504babe"
SRC_URI += "git://github.com/karrick/godirwalk;protocol=https;nobranch=1;tag=v1.17.0;shallow=1;rev=9a7752c108e7ea76255201b9f47bd4d4d2df868e;name=git_8aec9722_0;destsuffix=vcs_cache/00df926e167fc3ac0bffbc2589333a82b9a2d1d11a2f8699eccdccd2123f3b01"
SRC_URI += "git://github.com/phpdave11/gofpdi;protocol=https;nobranch=1;tag=v1.0.12;shallow=1;rev=938432d87db898577a88d7ca69778a5f62f5438c;name=git_e5246477_0;destsuffix=vcs_cache/6a626a54c90f4d9de05c792d1a59d5a84e149ff9e3b616bcf63ee14954ba3b6c"
SRC_URI += "git://github.com/phpdave11/gofpdi;protocol=https;nobranch=1;tag=v1.0.13;shallow=1;rev=cf771f66a372da8380cb6c9fe5d9d40133dcc563;name=git_e5246477_1;destsuffix=vcs_cache/879b0b1c952355c7c7b15b6000329a3fa78045d0285f33d1d40466bfd4295fcc"
SRC_URI += "git://github.com/phpdave11/gofpdf;protocol=https;nobranch=1;tag=v1.4.2;shallow=1;rev=6c2904300397bab594ce233e3d50ef2caca8da0e;name=git_5e7c9dc3_0;destsuffix=vcs_cache/d948d07226ac81ca9dfa21b460dc9d5a8b9fe8d2f91e68b9a470b579d27acf4a"
SRC_URI += "git://github.com/huin/goupnp;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=00783e79ec6092ce7c16ab10ef62e92e75e89939;name=git_925a882d_0;destsuffix=vcs_cache/b2416529b374ba266852415e21422dca93151105a7f8be85237fcea7f3e3de89"
SRC_URI += "git://github.com/libopenstorage/openstorage;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=093a0c3888753c2056e7373183693d670c6bba01;name=git_baa2cfc9_0;destsuffix=vcs_cache/bde8b7c7cda7932b0f7b8b0399287997a1362e2043ea9a41dfa4e5aa52775339"
SRC_URI += "git://github.com/openzipkin/zipkin-go;protocol=https;nobranch=1;tag=v0.1.1;shallow=1;rev=d455a5674050831c1e187644faa4046d653433c2;name=git_ee38636b_0;destsuffix=vcs_cache/1d655b27e8a62450ffe4a1211121c495b65a261b580d5c8d6e9a51c7e5c924f1"
SRC_URI += "git://github.com/openzipkin/zipkin-go;protocol=https;nobranch=1;tag=v0.4.3;shallow=1;rev=e609ce4fbeb610ff0c19b342956a040b0e2f8c67;name=git_ee38636b_1;destsuffix=vcs_cache/ba7772ca7ade52834cfaaaa92e14c1330219b9261aef903e2d24a500def3e37d"
SRC_URI += "git://github.com/stefanberger/go-pkcs11uri;protocol=https;branch=master;rev=78284954bff6dcce7888166bb79bbba93bea0879;name=git_1abe3c80_0;destsuffix=vcs_cache/38fa201d7d655497d33723d139ffc3ec2ee78d3caab251015a1c3a5190f5e073"
SRC_URI += "git://github.com/bradfitz/go-smtpd;protocol=https;branch=master;rev=deb6d623762522f8ad4a55b952001e4215a76cf4;name=git_3dafbe03_0;destsuffix=vcs_cache/1b424f68d4f8e67b68a250259077b2b1bb6b78cc0ffbd18d035ecc83c61ce63d"
SRC_URI += "git://github.com/container-storage-interface/spec;protocol=https;nobranch=1;tag=v1.9.0;shallow=1;rev=80d53107c70981b9da8aaf9cd1c90249562b22f0;name=git_ec343ccc_0;destsuffix=vcs_cache/50a317890fc319f14986be324b319ba7b273e81a1018320dacafd7b7205305e9"
SRC_URI += "git://github.com/josharian/intern;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=8e6ff32b3e7c0b018c43953085fe2ac330fe9acd;name=git_eb6bc1bf_0;destsuffix=vcs_cache/273d42676826fc8f106c11c2800d01690a09463878fa115700b2e26df24a2440"
SRC_URI += "git://github.com/josharian/native;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=c1e37c09b531b14ae12a501eb6fd529b31cecdaa;name=git_c34f7170_0;destsuffix=vcs_cache/1c1112f47669d0f21f7bd8836fe3b760e3cc2998ae4dc5e47e222ab0955d8e1e"
SRC_URI += "git://github.com/jedib0t/go-pretty;protocol=https;nobranch=1;tag=v6.6.7;shallow=1;rev=b14745cbcf545d2704cdd6f97163344b0fe683a3;name=git_2afde39a_0;destsuffix=vcs_cache/8dd325fc1142fd358eca5fbf7c852b91aaba202d2bda5a092496c442bc1b870d"
SRC_URI += "git://github.com/json-iterator/go;protocol=https;nobranch=1;tag=v1.1.12;shallow=1;rev=024077e996b048517130b21ea6bf12aa23055d3d;name=git_61c80dd4_0;destsuffix=vcs_cache/bdb67d21e426f2274ff76d4829ac60348539016b1aa54fa98cfccc554be12f3b"
SRC_URI += "git://github.com/json-iterator/go;protocol=https;nobranch=1;tag=v1.1.6;shallow=1;rev=0ff49de124c6f76f8494e194af75bde0f1a49a29;name=git_61c80dd4_1;destsuffix=vcs_cache/49dd68855c9609b742b2b0b4f38fc7310fe801de54098c1919a0a64c7a0df65f"
SRC_URI += "git://github.com/gorilla/websocket;protocol=https;nobranch=1;tag=v1.4.2;shallow=1;rev=b65e62901fc1c0d968042419e74789f6af455eb9;name=git_05a135b6_0;destsuffix=vcs_cache/675625eeeefad9c3f4459df3247d933fb6e7d14c2bf0197d7b150977db401831"
SRC_URI += "git://github.com/gorilla/websocket;protocol=https;nobranch=1;tag=v1.5.3;shallow=1;rev=ce903f6d1d961af3a8602f2842c8b1c3fca58c4d;name=git_05a135b6_1;destsuffix=vcs_cache/488d8cd8a88abb482d8f1492062df580a20ee01cc094793ff84f205a4fe52d4f"
SRC_URI += "git://github.com/gorilla/websocket;protocol=https;branch=main;rev=e064f32e3674d9d79a8fd417b5bc06fa5c6cad8f;name=git_05a135b6_2;destsuffix=vcs_cache/722c87c831f4b73fd3a40f24d8693191974f7a5a180d73f29a05c9bb3f84589f"
SRC_URI += "git://github.com/gorilla/mux;protocol=https;nobranch=1;tag=v1.8.1;shallow=1;rev=b4617d0b9670ad14039b2739167fd35a60f557c5;name=git_ebce69d6_0;destsuffix=vcs_cache/489d4511710bd1a1fc80974aa65ee7c2b851f7c6354c34549b8cd131f4435f0f"
SRC_URI += "git://github.com/cyphar/filepath-securejoin;protocol=https;nobranch=1;tag=v0.4.1;shallow=1;rev=7abd870410ccf784788af4f55c6413c9ef47222d;name=git_8d04195c_0;destsuffix=vcs_cache/e6efc2f143e5d54f9ed7fb3e3e739703147c08b8dbae0e4bbc72141935a26a33"
SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;tag=v0.5.2;shallow=1;rev=307d0db21292676ac9d469826525c3630f47f63a;name=git_7987da5d_0;destsuffix=vcs_cache/fe4a57d26379977ebf461da8c71a20095b9f973a91d55076b67fa0de48206a1e"
SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=50a2c064be99303c5dddf725da60e30fbc4f6ede;name=git_7987da5d_1;destsuffix=vcs_cache/956998068f3cc530e52afae6bcb80d92158cdaee2b707bdfdaf132ff05de3b4f"
SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=5dbb4e6c708f7eb56fc184f7c5dd5e482b555f69;name=git_7987da5d_2;destsuffix=vcs_cache/4ca532f3c50e5c7c19e3dc9316d05026ba007fe253a359de8b2a8492d16f1faa"
SRC_URI += "git://github.com/stretchr/objx;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=facf9a85c22f48d2f52f2380e4efce1768749a89;name=git_7987da5d_3;destsuffix=vcs_cache/39828321881a0709a36a2d1edde8fc9928ddd471ebd0bbdf7012076e7214bb02"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.7.1;shallow=1;rev=083ff1c0449867d0d8d456483ee5fab8e0c0e1e6;name=git_aa93f7ee_0;destsuffix=vcs_cache/719be8c83742fcd5ea6c60cce03388f5367bceeb8522379d83d0110c884426a5"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.8.0;shallow=1;rev=181cea6eab8b2de7071383eca4be32a424db38dd;name=git_aa93f7ee_1;destsuffix=vcs_cache/39798af0c50431f2d4ce305d1aea9c6d13ad19d1ab6af227d59ebb3580e7a7f0"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.4.0;shallow=1;rev=221dbe5ed46703ee255b1da0dec05086f5035f62;name=git_aa93f7ee_2;destsuffix=vcs_cache/9e52b2f6204cf4daab20f41d30029448e95ae1a472c112e86dbdd68a16e14a2e"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.11.1;shallow=1;rev=2a57335dc9cd6833daa820bc94d9b40c26a7917d;name=git_aa93f7ee_3;destsuffix=vcs_cache/ba91b84762300277627df761c9f004ffcc560434a1a1c2e613269b0c2e378278"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.8.3;shallow=1;rev=4c93d8f201cb46ed50de949ee65804f944b570f8;name=git_aa93f7ee_4;destsuffix=vcs_cache/8a197762b99efcc9569be6574437bbc8ba68bb08552483d98ac7cebad4717beb"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.10.0;shallow=1;rev=89cbdd9e7b39eb58896d316a7495597d3aba4371;name=git_aa93f7ee_5;destsuffix=vcs_cache/9f66a27582a9e6eca9bf419e24508c10315317c311c9f2dd15c7944badd99385"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.7.0;shallow=1;rev=acba37e5db06f0093b465a7d47822bf13644b66c;name=git_aa93f7ee_6;destsuffix=vcs_cache/f87883f9ef1ad6bd6ecb844fe9108ae126c4dfab49080e5fb37bd27ca64417be"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.8.1;shallow=1;rev=b747d7c5f853d017ddbc5e623d026d7fc2770a58;name=git_aa93f7ee_7;destsuffix=vcs_cache/d45ab2961914a9a432c9fbbee6a5e2e51a7c04a9c7b64b567c83074a7152bb5f"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.9.0;shallow=1;rev=bb548d0473d4e1c9b7bbfd6602c7bf12f7a84dd2;name=git_aa93f7ee_8;destsuffix=vcs_cache/003499734bee17b8844982adea572bd169732e82c6d280c8ebabd92ad4fc5e97"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.2.2;shallow=1;rev=f35b8ab0b5a2cef36673838d662e249dd9c94686;name=git_aa93f7ee_9;destsuffix=vcs_cache/2bb8c4aae39dd3460bd5d8094b70444e65cec7f2390b1c2a41ffb7d431d41317"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.8.2;shallow=1;rev=f36bfe3c337aa95c86f04c721acdbafb5ffb1611;name=git_aa93f7ee_10;destsuffix=vcs_cache/5eed4f7019d77fd1a97b264bb91f3668f2495d84acd03b9b60d32e894e4518a5"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.6.1;shallow=1;rev=f654a9112bbeac49ca2cd45bfbe11533c4666cf8;name=git_aa93f7ee_11;destsuffix=vcs_cache/782e156612c5b8f52bb9daab64be055460c9e50ce18305034fc5c8954a4e6b4a"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.8.4;shallow=1;rev=f97607b89807936ac4ff96748d766cf4b9711f78;name=git_aa93f7ee_12;destsuffix=vcs_cache/cec0eadb3ceb93408aae446eb0c115ea4a39cd4ba2048947ee55e1f8969c3872"
SRC_URI += "git://github.com/stretchr/testify;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=ffdc059bfe9ce6a4e144ba849dbedead332c6053;name=git_aa93f7ee_13;destsuffix=vcs_cache/15f4be955793ecb9ef81031cf64191211271265868a72e4bf25c409e978a8ce8"
SRC_URI += "git://github.com/klauspost/pgzip;protocol=https;nobranch=1;tag=v1.2.6;shallow=1;rev=17e8dac29df8ce00febbd08ee5d8ee922024a003;name=git_b3093e6b_0;destsuffix=vcs_cache/02e19538a5e11918b1a8e352986c626de6e0a94b861bc4f4f84538ad857e14ec"
SRC_URI += "git://github.com/klauspost/asmfmt;protocol=https;nobranch=1;tag=v1.3.2;shallow=1;rev=ef134b9cec704e2b7b336fb02153b7d1a58247da;name=git_98f31443_0;destsuffix=vcs_cache/29514b7fd73cff50fdd2adf52bd4ce9142682040105ed04639e17843e1648b64"
SRC_URI += "git://github.com/klauspost/cpuid;protocol=https;nobranch=1;tag=v2.2.10;shallow=1;rev=22ab8b9e7d0bace6b004331e4541a0779db894df;name=git_7d314923_0;destsuffix=vcs_cache/c8fcc2c953978946a38caae7607885d3100436a541243af65dfed333e4170ee6"
SRC_URI += "git://github.com/klauspost/cpuid;protocol=https;nobranch=1;tag=v2.0.1;shallow=1;rev=23e01ae8a150f66375d25ea1f1d52031fc3da4b9;name=git_7d314923_1;destsuffix=vcs_cache/b530fbd86ce728818022953d75d42fbb7cfbe90c31861cb1755e916e1f52cc51"
SRC_URI += "git://github.com/klauspost/cpuid;protocol=https;nobranch=1;tag=v2.0.9;shallow=1;rev=6903d4066801a7d800d4537ee9eebe81ea97000e;name=git_7d314923_2;destsuffix=vcs_cache/d56dba3a021e74a769375213fac876928aab9dc10df2f3734d8394c3cd25f2e2"
SRC_URI += "git://github.com/klauspost/compress;protocol=https;nobranch=1;tag=v1.15.9;shallow=1;rev=4b4f3c94fdf8c3a6c725e2ff110d9b44f88823ed;name=git_98939663_0;destsuffix=vcs_cache/8e33d748be1c348a240688ef34cf04f9ac5dc829148e9d5df8da48a701ad6316"
SRC_URI += "git://github.com/klauspost/compress;protocol=https;nobranch=1;tag=v1.17.9;shallow=1;rev=7ae2138b16cc43afcea3ce7d3d2f2625fb389d51;name=git_98939663_1;destsuffix=vcs_cache/4f845ee699a0d248d06fc5a5f47db618be866b82e1477ccd82985e3a1d448585"
SRC_URI += "git://github.com/klauspost/compress;protocol=https;nobranch=1;tag=v1.18.0;shallow=1;rev=8e79dc4b98d4c5a09c62a2546b79c14edf7c3e38;name=git_98939663_2;destsuffix=vcs_cache/acdd26bc7e11320191664fe567e96e13863435ec47b9be014f26e8ca6283ca80"
SRC_URI += "git://github.com/songgao/water;protocol=https;branch=master;rev=2b4b6d7c09d80835e5f13f6b040d69f00a158b24;name=git_4875b2dc_0;destsuffix=vcs_cache/714722326fa1f5699d0d8e07217e7c9b00cb895c858ddcb3a5706322c0647741"
SRC_URI += "git://github.com/fatih/color;protocol=https;nobranch=1;tag=v1.16.0;shallow=1;rev=0f9779ed479afd460f0c2cc5a3d3eb69b9ba188b;name=git_be555826_0;destsuffix=vcs_cache/c9c4254c80a65cc2fd4e139ee8cca1b50f6168b9a40d3bbf4a174548c4e38898"
SRC_URI += "git://github.com/fatih/camelcase;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=44e46d280b43ec1531bb25252440e34f1b800b65;name=git_1ec3dcd6_0;destsuffix=vcs_cache/6a70c3e9444a569228a1f78a8f5675b37449de9d847ac7156e8fc8d028bdd829"
SRC_URI += "git://github.com/open-policy-agent/opa;protocol=https;nobranch=1;tag=v0.59.0;shallow=1;rev=c8e7863c83e1767cf019b0e8429decc9c4bdb9cd;name=git_345563a6_0;destsuffix=vcs_cache/1a713831847a09d011646d4dab059845b70fe1e96581d9d37090175437db2f57"
SRC_URI += "git://github.com/coredns/corefile-migration;protocol=https;nobranch=1;tag=v1.0.26;shallow=1;rev=68bbb0f25f1077dccf9c98119791d31153d450c9;name=git_8caa3b20_0;destsuffix=vcs_cache/3ce3612385588152b6667ee7cec3ed16d1a698e7c98a37b359a6e7c1f2a83d17"
SRC_URI += "git://github.com/coredns/caddy;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=8adcfe62194e7ae9f1a7cf952a02dff49e9dc6bd;name=git_57578e27_0;destsuffix=vcs_cache/4e88cc3742999dca3436d8c134b46450c57d9f20540672f550fd112beed2336f"
SRC_URI += "git://github.com/jbenet/go-temp-err-catcher;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=fa11adda5e7cccb838a208007c9ea79dda63c0c0;name=git_e3c6e2b0_0;destsuffix=vcs_cache/bd6a030fa865e999b81ab776c7320137641ad1a185710ae9a120ce776a4eed25"
SRC_URI += "git://github.com/jbenet/go-cienv;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=856fd20ff669251745b22ee64eaa32e5763f0c3c;name=git_0de95c08_0;destsuffix=vcs_cache/9ad2f40c59d81ffa7692eb72325dd0dbb910bc39fe67aab8ce253524ba18fe25"
SRC_URI += "git://github.com/jbenet/goprocess;protocol=https;nobranch=1;tag=v0.1.4;shallow=1;rev=23d20c20149e1f362afda26f4500cb9d6393f0ad;name=git_7e7546ff_0;destsuffix=vcs_cache/eb92a7f06003a8421d094e3086f104ce86f1dec2aed483ccf5d66084b052c56e"
SRC_URI += "git://github.com/census-instrumentation/opencensus-proto;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=4aa53e15cbf1a47bc9087e6cfdca214c1eea4e89;name=git_67c76c7d_0;destsuffix=vcs_cache/eec16351afa5aee2969e2bd029fd99a58f4b318b96e652094b0db27b17a0b178"
SRC_URI += "git://github.com/census-instrumentation/opencensus-proto;protocol=https;nobranch=1;tag=v0.4.1;shallow=1;rev=e53624a87b9b9b919147a9b4626c669a869ebb34;name=git_67c76c7d_1;destsuffix=vcs_cache/50810a84fdec2d9c8210c7c5c4280d5911adb9a7bfd62c792a0353ebe06863ab"
SRC_URI += "git://github.com/onsi/gomega;protocol=https;nobranch=1;tag=v1.4.3;shallow=1;rev=65fb64232476ad9046e57c26cd0bff3d3a8dc6cd;name=git_4f2954a0_0;destsuffix=vcs_cache/3e693db8d747171810730ce9cdd20edcd184964ce5eebd2f68358f2feaaa0e56"
SRC_URI += "git://github.com/onsi/gomega;protocol=https;nobranch=1;tag=v1.35.1;shallow=1;rev=9f5a208e8adf32c11daf594b3c98a513f13388dd;name=git_4f2954a0_1;destsuffix=vcs_cache/55528403183c5ca0f949540f07a593519920aec994598bfcdfd458e000bd03cf"
SRC_URI += "git://github.com/onsi/gomega;protocol=https;nobranch=1;tag=v1.36.2;shallow=1;rev=bb0e5501c05cf1b46bea2e97b28a521a0c274e2b;name=git_4f2954a0_2;destsuffix=vcs_cache/fadfbc0b7f9eeef9444a17dcaca214bcb4dc6224346dc4ddfbd25854ee024948"
SRC_URI += "git://github.com/onsi/gomega;protocol=https;nobranch=1;tag=v1.38.0;shallow=1;rev=c1237df9d4dbb138d19c835940657cc5c7fbd506;name=git_4f2954a0_3;destsuffix=vcs_cache/59674a262b3775795463502ae953fc9220d3230821e27dde27b6fc041eb58778"
SRC_URI += "git://github.com/onsi/ginkgo;protocol=https;nobranch=1;tag=v1.7.0;shallow=1;rev=2e1be8f7d90e9d3e3e58b0ce470f2f14d075406f;name=git_209602b3_0;destsuffix=vcs_cache/b6304e9db1ac57c8ceb3161772d93cf44ea2cf34c82ca270777495335a4d3948"
SRC_URI += "git://github.com/onsi/ginkgo;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=3774a09d95489ccaa16032e0770d08ea77ba6184;name=git_209602b3_1;destsuffix=vcs_cache/084961c940c1064ad8f72342797a7f84ceb5184e0f4f98076f0ac0a75a0a376f"
SRC_URI += "git://github.com/onsi/ginkgo;protocol=https;nobranch=1;tag=v2.21.0;shallow=1;rev=ac8918e9fd5e8174adc91e13b9b905b554d14e38;name=git_209602b3_2;destsuffix=vcs_cache/d6335eeb4c3e27d39b38a6f963dd64f8219219f2fc86e3667e80f4a8fe4bbd9d"
SRC_URI += "git://github.com/onsi/ginkgo;protocol=https;nobranch=1;tag=v1.16.5;shallow=1;rev=d38b9d946d52cd175495d30143fbecc5aff98f13;name=git_209602b3_3;destsuffix=vcs_cache/5d5337553584cfbd61a079f00c73fab896dfe1413aba0d8fc16c28a2fc5c2f3d"
SRC_URI += "git://github.com/onsi/ginkgo;protocol=https;nobranch=1;tag=v2.22.2;shallow=1;rev=f65e80b6237f8705373028b37294c6dde8bdd872;name=git_209602b3_4;destsuffix=vcs_cache/a7ab519f40eca9576664ca40f2c4e29fdbcb7219e8a454f6b503d9c24305cc25"
SRC_URI += "git://github.com/onsi/ginkgo;protocol=https;nobranch=1;tag=v2.25.0;shallow=1;rev=fcc0e74deeb1be682ffa7b56e6567183643798dd;name=git_209602b3_5;destsuffix=vcs_cache/8929a71cf946974f42a622f7cecca8acf10fbc65944ef20909866959ce5d95eb"
SRC_URI += "git://github.com/russross/blackfriday;protocol=https;nobranch=1;tag=v1.5.2;shallow=1;rev=05f3235734ad95d0016f6a23902f06461fcf567a;name=git_fb978822_0;destsuffix=vcs_cache/88a644b02cec99e16a7a4b418e482def4525d65927e45fe0aa15d6774bf71e36"
SRC_URI += "git://github.com/russross/blackfriday;protocol=https;nobranch=1;tag=v2.1.0;shallow=1;rev=4c9bf9512682b995722660a4196c0013228e2049;name=git_fb978822_1;destsuffix=vcs_cache/6dd1604eceba1790dbf7f827f1e22a5866a5348a2ab616daed7363a6e16e081d"
SRC_URI += "git://github.com/russross/blackfriday;protocol=https;nobranch=1;tag=v2.0.1;shallow=1;rev=d3b5b032dc8e8927d31a5071b56e14c89f045135;name=git_fb978822_2;destsuffix=vcs_cache/3c6cd20af2fcb06acb997b2e5ad1ec087f26361c5d5ac5975478e298942c7130"
SRC_URI += "git://github.com/russross/blackfriday;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=e96880f42b9343aea6cbfd99693adae0e5fe2b2a;name=git_fb978822_3;destsuffix=vcs_cache/45882c51d4da17f32775abbdabd353753e5115f6ec6282c3bf028fe3471fc743"
SRC_URI += "git://github.com/iancoleman/strcase;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=531aaa44de12ec166ceb71d9bdad7c8295e4235f;name=git_cb362a65_0;destsuffix=vcs_cache/e6b03d190b19f538af3e5683072f36c8e86b6a4478ff41704344b8df9f72b035"
SRC_URI += "git://github.com/iancoleman/strcase;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=a61ebb85b34d7b831590cd8fa7faafadc161a652;name=git_cb362a65_1;destsuffix=vcs_cache/bada0a35478d8281532b5a73a507a7c63a65439b876aa50eb6ec464091a62898"
SRC_URI += "git://github.com/tchap/go-patricia;protocol=https;nobranch=1;tag=v2.3.2;shallow=1;rev=583dbe1884ffba565db4259568911f9277c2f12c;name=git_faedb7d0_0;destsuffix=vcs_cache/6c727785fed6a5390bc8febf030038ea36e899b69a48aaf91b3bd52fd48f31fa"
SRC_URI += "git://github.com/sclevine/agouti;protocol=https;nobranch=1;tag=v3.0.0;shallow=1;rev=e3f6c97a4077ad821daab49db8172cf9f6690faf;name=git_e5142247_0;destsuffix=vcs_cache/a39a71edfc48836f24c1454d1e17ada69371aeb1f7acacdd95a088dba92ca928"
SRC_URI += "git://github.com/prashantv/gostub;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=9fc4f583f114a72d2d711ec21d8963c7dfda9a8c;name=git_0da5172b_0;destsuffix=vcs_cache/b588818790d599de07cc3df44ef055145602e6f52d1bc089a62335c8c8ca0abd"
SRC_URI += "git://github.com/Masterminds/semver;protocol=https;nobranch=1;tag=v3.3.1;shallow=1;rev=1558ca3488226e3490894a145e831ad58a5ff958;name=git_ff930dd9_0;destsuffix=vcs_cache/e32f36071c804546813c0e841f9aa5e8e1f8cf2054fb3cb89d9a4ce396cdad75"
SRC_URI += "git://github.com/Masterminds/goutils;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=f1923532a168b8203bfe956d8cd3b17ebece5982;name=git_b267b5ec_0;destsuffix=vcs_cache/8eb3fffa1f3cd577c7f4c46828a53f22817e3d27d7475a2838b67a520ce7a742"
SRC_URI += "git://github.com/Masterminds/sprig;protocol=https;nobranch=1;tag=v3.3.0;shallow=1;rev=e708470d529a10ac1a3f02ab6fdd339b65958372;name=git_19d83dbb_0;destsuffix=vcs_cache/6b4207b8c7d013c483646f5f7386acb35e85752ca0216b1a97a63a4f513a6734"
SRC_URI += "git://github.com/josephspurrier/goversioninfo;protocol=https;nobranch=1;tag=v1.4.0;shallow=1;rev=233067e5ebdfc62d994b1446a607b40ced91907b;name=git_38ae8b7f_0;destsuffix=vcs_cache/31bc53a2c13e3ce6a43bac2550dd75c60ec7ad9dd3850b761c28332b606b6ef0"
SRC_URI += "git://github.com/go-latex/latex;protocol=https;branch=main;rev=5c1ce85aa4ea1636d7a06434177ed7ef995a1064;name=git_3dd6c072_0;destsuffix=vcs_cache/2a3145f0b17378f5fb16ed06015f287f825e50a00afdd9984610394d1dda23a3"
SRC_URI += "git://github.com/go-latex/latex;protocol=https;branch=main;rev=b3d85cf34e0756d932ffcc339b952a0959ebc2f7;name=git_3dd6c072_1;destsuffix=vcs_cache/9917e76614de610432fc4c3f4a597da35ecac379b0d9ccf0ef05c0ce1184f86b"
SRC_URI += "git://github.com/go-latex/latex;protocol=https;branch=main;rev=c0d11ff05a81a63afdffbba6e577b2a3a6e69c85;name=git_3dd6c072_2;destsuffix=vcs_cache/580bdda7056a94d8f54a3b3257ba9d91897b0f5154f73878fb2e0990b0e4fc49"
SRC_URI += "git://github.com/mrunalp/fileutils;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=7363e975f9cfb558be601bece0df81714c3c9084;name=git_98373e58_0;destsuffix=vcs_cache/ed861d7592fdcfee340262e40fbb722c2e90df75cf148417c121234067effa98"
SRC_URI += "git://github.com/mrunalp/fileutils;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=d7fdd64cc1cabe10bc154ee7d2318b07b7f296ef;name=git_98373e58_1;destsuffix=vcs_cache/80bd1af07a30fc2d094f02ec5b9871e476767c6ceb240dbc6ccf1015f5974a69"
SRC_URI += "git://github.com/docker/go-metrics;protocol=https;nobranch=1;tag=v0.0.1;shallow=1;rev=b619b3592b65de4f087d9f16863a7e6ff905973c;name=git_08ad7bc8_0;destsuffix=vcs_cache/96ae8893e24907a70aef922af47d48651611460f2b982f7e1e27dacd5ad82b9f"
SRC_URI += "git://github.com/docker/distribution;protocol=https;nobranch=1;tag=v2.8.3;shallow=1;rev=4772604ae973031ab32dd9805a4bccf61d94909f;name=git_3954c8b6_0;destsuffix=vcs_cache/179a4ea80ae56a5b38e4349dac5aa88a7180045bd04943c05933125b8abc5d93"
SRC_URI += "git://github.com/docker/cli;protocol=https;nobranch=1;tag=v28.3.2;shallow=1;rev=578ccf607d24abc5270e9a4cbd5ba9b5355b042f;name=git_cad1045a_0;destsuffix=vcs_cache/bae322747f14ccd4203ce946c663f624395056707fdd3f52cd3848911717dac3"
SRC_URI += "git://github.com/docker/docker;protocol=https;nobranch=1;tag=v27.5.1;shallow=1;rev=4c9b3b011ae4c30145a7b344c870bdda01b454e2;name=git_248eb0d1_0;destsuffix=vcs_cache/741f3e770f1be5b9eeb6b08ba1dec29abf4466cd217f173c27fc597f15587769"
SRC_URI += "git://github.com/docker/docker;protocol=https;nobranch=1;tag=v25.0.8;shallow=1;rev=71907ca48ef98bc6640795e50dcf257d683af53b;name=git_248eb0d1_1;destsuffix=vcs_cache/08e113490f2b19ad6431c6c3d13b9f77f68765dbc562a25879f108b2ec9cf6c9"
SRC_URI += "git://github.com/docker/docker;protocol=https;nobranch=1;tag=v28.3.3;shallow=1;rev=bea959c7b793b32a893820b97c4eadc7c87fabb0;name=git_248eb0d1_2;destsuffix=vcs_cache/1cdb153e706f2111024c0e86d68d25c76bb9c61d1bce1aa409cfd244cc38d1bf"
SRC_URI += "git://github.com/docker/docker;protocol=https;nobranch=1;tag=v26.1.4;shallow=1;rev=de5c9cf0b96e4e172b96db54abababa4a328462f;name=git_248eb0d1_3;destsuffix=vcs_cache/2b7f16246d905e4d3daad9399b8acc10b019cd04b7c0799f38b1fd80911941d5"
SRC_URI += "git://github.com/docker/go-events;protocol=https;branch=main;rev=e31b211e4f1cd09aa76fe4ac244571fab96ae47f;name=git_2703dc86_0;destsuffix=vcs_cache/3e0bfea9682128db4b902dfb300a63020f2a4e0fd9e50a9a43529185ded21203"
SRC_URI += "git://github.com/docker/docker-credential-helpers;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=ac5992b5f4756fc0398a7d0c93c609e624368bde;name=git_46e68097_0;destsuffix=vcs_cache/dec3c7feaf80b600beff65a7a5011fa4215905f39ed602aa878644f3dfdb1de3"
SRC_URI += "git://github.com/docker/go-units;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=519db1ee28dcc9fd2474ae59fca29a810482bfb1;name=git_35e0b052_0;destsuffix=vcs_cache/3d29fc2a6f83a128ac23e54c757ee42eb18408242a5463f6e00ed534947c04b4"
SRC_URI += "git://github.com/docker/go-units;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=e682442797b36348f8e1f98defdbf32bac0b6c6f;name=git_35e0b052_1;destsuffix=vcs_cache/2f970538f28b36d4a39663fa90033ec5c742ddd7774a86d94cc6c179e63a1c49"
SRC_URI += "git://github.com/docker/go-connections;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=42faf792bde28c414a060127d6351769408a675f;name=git_d4d85c75_0;destsuffix=vcs_cache/cd70a0eee460c110e4a842a78601dec1916771fc94b97da790e5cdff44cf6b59"
SRC_URI += "git://github.com/docker/go-connections;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=fa09c952e3eadbffaf8afc5b8a1667158ba38ace;name=git_d4d85c75_1;destsuffix=vcs_cache/537a652ffe4ade5b6ad2a464d46ac04ecd52e765db706829f721e228252e1310"
SRC_URI += "git://github.com/flynn/go-shlex;protocol=https;branch=master;rev=3f9db97f856818214da2e1057f8ad84803971cff;name=git_d39529aa_0;destsuffix=vcs_cache/3f01c4c07ac9db8363b61a215f4733412171c0f2e9c35c15977caebd30d95a40"
SRC_URI += "git://github.com/flynn/noise;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=4d9f71cd4ba1fe81415efac312664ccc4bc79b46;name=git_5699bf4e_0;destsuffix=vcs_cache/9df1d9a6f035fb81d08721cb7b9cbe62cf40e8d08f8af85e189a590fe7560ea5"
SRC_URI += "git://github.com/planetscale/vtprotobuf;protocol=https;branch=main;rev=0393e58bdf106fe0347e554d272a8f2c84d12461;name=git_d20372f0_0;destsuffix=vcs_cache/2a8f7a744764b6b7d0f6b17003fd8217cc861be946aee65fccc7d1491634942f"
SRC_URI += "git://github.com/mwitkow/go-http-dialer;protocol=https;branch=master;rev=378f744fb2b81a6b96e3f40cde4f3bcab5a9cff0;name=git_f8e1cb85_0;destsuffix=vcs_cache/b49226158203716f61a63aabfe5b5505264ac6a52d468bf41edf85479a6c7b8d"
SRC_URI += "git://github.com/mwitkow/go-conntrack;protocol=https;branch=master;rev=2f068394615f73e460c2f3d2c158b0ad9321cadb;name=git_ff07aa22_0;destsuffix=vcs_cache/0c95da896ecaf67638f45eea2282c2c840e57fd5bef90b1316645fe86914c177"
SRC_URI += "git://github.com/insomniacslk/dhcp;protocol=https;branch=master;rev=a3a4c1f04475c0dbe037fd87d5363c2ea13005b8;name=git_8f965cad_0;destsuffix=vcs_cache/c49f83160d9bdc4e0f9a11abb12ce5da4f77b01be643ea257e8df7c287deff88"
SRC_URI += "git://github.com/go-jose/go-jose;protocol=https;nobranch=1;tag=v4.0.4;shallow=1;rev=15bc4c2ac4575ad865f078390db61d44530f985d;name=git_3c60bf8b_0;destsuffix=vcs_cache/19011aacdb618bd78f198fe7f98f5dd0d87658ba153cfe43f6dac19de23aace4"
SRC_URI += "git://github.com/go-jose/go-jose;protocol=https;nobranch=1;tag=v4.0.5;shallow=1;rev=99b346cec4e86d102284642c5dcbe9bb0cacfc22;name=git_3c60bf8b_1;destsuffix=vcs_cache/4120375bb60edff2cdbd2c111f0a2a830983601f7ac090275871972cba41f818"
SRC_URI += "git://github.com/pierrec/lz4;protocol=https;nobranch=1;tag=v2.6.0;shallow=1;rev=0e583d326e0ec6b9c1ad223188dc709af385408e;name=git_03659512_0;destsuffix=vcs_cache/a98076bac271901b0e4d2dc92ded1422c460b7f75731123de136051d1ea69965"
SRC_URI += "git://github.com/pierrec/lz4;protocol=https;nobranch=1;tag=v4.1.21;shallow=1;rev=294e7659e17723306ebf3a44cd7ad2c11f456c37;name=git_03659512_1;destsuffix=vcs_cache/9cd0f5a014da5bd9abe80b05ec4b2e8749e8c126923b6f77e0bd0f24384c4b61"
SRC_URI += "git://github.com/pierrec/lz4;protocol=https;nobranch=1;tag=v4.1.15;shallow=1;rev=c3eaa1e8841ece1461ec5e0f1fbbd5f1c52d2f85;name=git_03659512_2;destsuffix=vcs_cache/bf4bcc2b9e27f77f1783338a0d327e8bf5ce14f1b7ac4432bb31a00d0d143d48"
SRC_URI += "git://github.com/AndreasBriese/bbloom;protocol=https;branch=master;rev=46b345b51c9667fcbaad862a370d73bd7aa802b6;name=git_41201062_0;destsuffix=vcs_cache/573c33e18f0054d4ecbf36ec3ed6ad245188af625675866eb09c46b5850b2139"
SRC_URI += "git://github.com/intel/goresctrl;protocol=https;nobranch=1;tag=v0.8.0;shallow=1;rev=f7cfa04536314eacecaa523f3b87d3978fbe28e3;name=git_dd750dae_0;destsuffix=vcs_cache/5d20d90ec5de5ded41d2af02d43b1894cd4847e927f36f70d656aaed8856fdf5"
SRC_URI += "git://github.com/anmitsu/go-shlex;protocol=https;branch=master;rev=648efa622239a2f6ff949fed78ee37b48d499ba4;name=git_62ad5a45_0;destsuffix=vcs_cache/2afb75e28c0f6da79ec78dd54570dc28d1b877745be962a42763a788f0754d58"
SRC_URI += "git://github.com/felixge/httpsnoop;protocol=https;nobranch=1;tag=v1.0.4;shallow=1;rev=c5817c27ec125409c069052fdd171023c353501c;name=git_b48d732c_0;destsuffix=vcs_cache/4faaa0a5649a2ae9245609ad7ed739dbc2e39cfd27a3018400f3dad114269d26"
SRC_URI += "git://github.com/dustin/go-humanize;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=9ec74ab2f7a7161664182fd4e5e292fccffbc75f;name=git_17fdefb1_0;destsuffix=vcs_cache/c6234fca390287f69b38a8f6d0ab98d492cb6f0df51d81ae32097b058cde1f72"
SRC_URI += "git://github.com/dustin/go-humanize;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=9f541cc9db5d55bce703bd99987c9d5cb8eea45e;name=git_17fdefb1_1;destsuffix=vcs_cache/175b4352ad26cc827755eddbeed444f8209c255c4e7c110d30416e6ef58ced8a"
SRC_URI += "git://github.com/opentracing/opentracing-go;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=d34af3eaa63c4d08ab54863a4bdd0daa45212e12;name=git_198e2417_0;destsuffix=vcs_cache/74f64728aa8efcb14baafd00e9e6005750d9b20c98b28ecc6407a440d0b25498"
SRC_URI += "git://github.com/mistifyio/go-zfs;protocol=https;nobranch=1;tag=v2.1.1;shallow=1;rev=cdc0f941c4d0e0e94d85348285568d921891e138;name=git_9ca91730_0;destsuffix=vcs_cache/08c1715702a3dc031d9ba986ee984563b57ebb0e338526ea942c5af9526f752e"
SRC_URI += "git://github.com/mistifyio/go-zfs;protocol=https;nobranch=1;tag=v3.0.1;shallow=1;rev=f6d5c373cf63ae2477370aa9bda9fa49804c2d72;name=git_9ca91730_1;destsuffix=vcs_cache/14a067948c9001a8443e88278679f597430282136bcd53894095ccfed51182ca"
SRC_URI += "git://github.com/mistifyio/go-zfs;protocol=https;branch=master;rev=f784269be439d704d3dfa1906f45dd848fed2beb;name=git_9ca91730_2;destsuffix=vcs_cache/9dc8214350758a72ca00412fbd7206979e339443cf6a5eaeb608d9e849ffb843"
SRC_URI += "git://github.com/jackc/pgpassfile;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=99d8e8e28945ffceaf75b0299fcb2bb656b8a683;name=git_3d88473b_0;destsuffix=vcs_cache/bcb7f6d6bafda56d4f5f42db214defa53f1769aa323ba6f941283d833ed326d1"
SRC_URI += "git://github.com/jackc/pgerrcode;protocol=https;branch=master;rev=6e2875d9b438d43808cc033afe2d978db3b9c9e7;name=git_0f497702_0;destsuffix=vcs_cache/373427e37d2aef89a64da82effb02d3a41ed94875e017a3516cba42fb01aa896"
SRC_URI += "git://github.com/jackc/puddle;protocol=https;nobranch=1;tag=v2.2.2;shallow=1;rev=bd09d14bd4018b6d65a9d7770e2f3ddf8b00af1c;name=git_c64e1e43_0;destsuffix=vcs_cache/f3334a91ad7dbb92655b9f37614612cc5df45c529576e03e8308dfed92ae9050"
SRC_URI += "git://github.com/jackc/pgservicefile;protocol=https;branch=master;rev=5a60cdf6a76120dc3d5152b95f3b5fd8aa7cc9eb;name=git_71385c65_0;destsuffix=vcs_cache/ddeb106f0a503bc56c2377cf8c3863fd5b039a12e3472f1f499e89f689d70793"
SRC_URI += "git://github.com/jackc/pgx;protocol=https;nobranch=1;tag=v5.7.5;shallow=1;rev=15bca4a4e14e0049777c1245dba4c16300fe4fd0;name=git_4fb6b0aa_0;destsuffix=vcs_cache/7d428807020135278d6c041ab060af6cb7629a2458e8beedf6520c22a981521c"
SRC_URI += "git://github.com/smartystreets/goconvey;protocol=https;nobranch=1;tag=v1.7.2;shallow=1;rev=611926313bc5c80aeccd38083b08653beb007cac;name=git_c0891693_0;destsuffix=vcs_cache/86b60135ab3a95316ff39e6ba689a4d066801d206b7cd10937ec3302b18ccec4"
SRC_URI += "git://github.com/smartystreets/assertions;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=a2ad282d643d747de44bfe6deaca88113a257e04;name=git_4e704c3e_0;destsuffix=vcs_cache/cc0efd8f340f37c912292832b2d49577de2465533410021569800162eec7d326"
SRC_URI += "git://github.com/monochromegane/go-gitignore;protocol=https;branch=master;rev=205db1a8cc001de79230472da52edde4974df734;name=git_5fc09b1c_0;destsuffix=vcs_cache/eecd6bfcd78190812fe00fdab06d7cc4e8b1df9276e4965ae923996e9bba09cd"
SRC_URI += "git://github.com/vishvananda/netlink;protocol=https;branch=main;rev=0e7078ed04c84cea47daea45be061544e565ec49;name=git_2270cfb3_0;destsuffix=vcs_cache/ee1f1c5bcf192f2a15f81de96d6b7394f3a18f159a729169e712e601f100595f"
SRC_URI += "git://github.com/vishvananda/netlink;protocol=https;nobranch=1;tag=v1.3.1;shallow=1;rev=17daef607c6442d47b0565343cf8a69f985a4cb7;name=git_2270cfb3_1;destsuffix=vcs_cache/add152ec680cd6ba7b1daeb50425ed8986ca51024d78c50810923119dbf60a49"
SRC_URI += "git://github.com/vishvananda/netlink;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=6f5713947556a0288c5cb71f036f9e91924ebcaa;name=git_2270cfb3_2;destsuffix=vcs_cache/8f3f8bf16d8e1a4469338406628276a5ba5eef185cc1b0b87cdb85fcc7ec40e3"
SRC_URI += "git://github.com/vishvananda/netns;protocol=https;nobranch=1;tag=v0.0.5;shallow=1;rev=4c46424d73b556b3ea4bc5a7cec9e7376dcb2a73;name=git_e786acee_0;destsuffix=vcs_cache/9f1ef5c3417729b4f24554f4b88d06d9e7cdeb771a5d62000cc1344bb1c985d8"
SRC_URI += "git://github.com/linuxkit/virtsock;protocol=https;branch=master;rev=f8cee7dfc7a3a337738ff3c1852fafe193a4f5d3;name=git_8f3e9c04_0;destsuffix=vcs_cache/706021837a1fd29aa5615d81a9fc5095a64d5a29eb28550399942b9a15e7881f"
SRC_URI += "git://github.com/wk8/go-ordered-map;protocol=https;nobranch=1;tag=v2.1.8;shallow=1;rev=85ca4a2b29d3241fa4513f82be3d38fe2392a791;name=git_5634d8d4_0;destsuffix=vcs_cache/70866e43bf55d824436c0593881ac6b844dc779bcb805887d174d38ee21c1966"
SRC_URI += "git://github.com/exponent-io/jsonpath;protocol=https;branch=master;rev=1de76d718b3f2694498041a6e578675bf52cee06;name=git_99958ecb_0;destsuffix=vcs_cache/05cf7009676b4edc801baa60baa5fe8dc8498a15cce8f94d9ebb0560b2f71540"
SRC_URI += "git://github.com/AdamKorcz/go-118-fuzz-build;protocol=https;branch=main;rev=2b5cbb29f3e2e08ef2032ac4dc88a40a3a1e9e5f;name=git_c772bd47_0;destsuffix=vcs_cache/7b745e973a8111f30e1e95d1a88ce98b403177bbe2a1b34d1eb16d90d5352448"
SRC_URI += "git://github.com/whyrusleeping/go-keyspace;protocol=https;branch=master;rev=5b898ac5add1da7178a4a98e69cb7b9205c085ee;name=git_9846fe63_0;destsuffix=vcs_cache/1d322f1edfb9261e8cf6150fdeffa9bdd8efbc1a89acd9fd867ab9a1aeaac611"
SRC_URI += "git://github.com/whyrusleeping/base32;protocol=https;branch=master;rev=c30ac30633ccdabefe87eb12465113f06f1bab75;name=git_f54dfd1c_0;destsuffix=vcs_cache/9bc5bcf596cf0883e714d5647e8e9e5056102e96b8e7bac5037634c50aa7abc5"
SRC_URI += "git://github.com/whyrusleeping/cbor;protocol=https;branch=master;rev=63513f603b11583741970c5045ea567130ddb492;name=git_a1dbb6c6_0;destsuffix=vcs_cache/43b6845fbf164f79cf2d744e7ab529b41e005195028025f059322dafaa5bf57e"
SRC_URI += "git://github.com/whyrusleeping/cbor-gen;protocol=https;nobranch=1;tag=v0.1.2;shallow=1;rev=705424352f6b52705e9739886f80979474b12892;name=git_88576334_0;destsuffix=vcs_cache/969b6287b872660d39b9d4f9436c69ebbb3a80aac2aa2a1e5367c843921eefee"
SRC_URI += "git://github.com/whyrusleeping/chunker;protocol=https;branch=master;rev=fe64bd25879f446bb7e8a4adf5d4a68552211bd3;name=git_8636a469_0;destsuffix=vcs_cache/43750163bf022fa1498bf227f84da1d59f5c88a85b71abd8b484a6bca6afcf7e"
SRC_URI += "git://github.com/chzyer/logex;protocol=https;nobranch=1;tag=v1.1.10;shallow=1;rev=cd112f618178aaaf4ea8592c8839f5276145d9cf;name=git_18c99d76_0;destsuffix=vcs_cache/92a6f8ff364d5c78129d723e93bc80561a4d6f62e89131c1c9f55157435fe20e"
SRC_URI += "git://github.com/chzyer/readline;protocol=https;branch=main;rev=2972be24d48e78746da79ba8e24e8b488c9880de;name=git_2b1d73c0_0;destsuffix=vcs_cache/8a803f89048e07c05fc7887b4f50d22643ddbc3edcd738b8d052084561a8bfa2"
SRC_URI += "git://github.com/chzyer/readline;protocol=https;nobranch=1;tag=v1.5.1;shallow=1;rev=7f93d88cd5ffa0e805d58d2f9fc3191be15ec668;name=git_2b1d73c0_1;destsuffix=vcs_cache/52071e641b114be49adcba007fd97faf1f4baeb21b57b3920f7baba279eb71fa"
SRC_URI += "git://github.com/chzyer/test;protocol=https;branch=master;rev=a1ea475d72b168a29f44221e0ad031a842642302;name=git_ad9a8e97_0;destsuffix=vcs_cache/e15872792aa8b087f6d3216a8e07cf2ca9bfde139ee58c466bbbb633416d2856"
SRC_URI += "git://github.com/smallstep/pkcs7;protocol=https;nobranch=1;tag=v0.1.1;shallow=1;rev=21b5bd412d3d388540388c0165151f7e3df92213;name=git_dd95d004_0;destsuffix=vcs_cache/2f19e869b678f6b075729ec3df26ac81f8f576057860ead9a9c70212023b6927"
SRC_URI += "git://github.com/k-sone/critbitgo;protocol=https;nobranch=1;tag=v1.4.0;shallow=1;rev=4536a49cdb164af1fc76e276ebeaf004338d2044;name=git_9413eb56_0;destsuffix=vcs_cache/a3697235ba00d6a9d66568f48215082dd6e3304dbf16742a140087ed6bfaadf1"
SRC_URI += "git://github.com/francoispqt/gojay;protocol=https;nobranch=1;tag=v1.2.13;shallow=1;rev=1398296d938f9fae26750ddc2fe356b6d897f799;name=git_d62afddb_0;destsuffix=vcs_cache/3cd097f43291e91b6f3543dadab7a3eccaa625e9a3443de7a9d7aa799f6807f5"
SRC_URI += "git://github.com/davecgh/go-spew;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=346938d642f2ec3594ed81d874461961cd0faa76;name=git_d9a489aa_0;destsuffix=vcs_cache/5ce38ad71c2d3bc390b87154a89c53fd5ead19aed2bf005419db5c0b28ea9dfd"
SRC_URI += "git://github.com/davecgh/go-spew;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=8991bc29aa16c548c550c7ff78260e27b9ab7c73;name=git_d9a489aa_1;destsuffix=vcs_cache/4c7d69cfe586f86079773ff48d94f76d327c2914d8dfeffca9e34fd1146e5d5e"
SRC_URI += "git://github.com/davecgh/go-spew;protocol=https;branch=master;rev=d8f796af33cc11cb798c1aaeb27a4ebc5099927d;name=git_d9a489aa_2;destsuffix=vcs_cache/0bbb25cc88e50a90d274f6ee02d66c1a618efd4ad460b7046fdd7f680cb60ffc"
SRC_URI += "git://github.com/huandu/xstrings;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=1040c040a86302c5a4de066f5653bccdff2ecd2f;name=git_86fff295_0;destsuffix=vcs_cache/b79834bb0fe1feb0d1aa69de77cd803b494ff880f1c14cb5faf0dddd4536f6b5"
SRC_URI += "git://github.com/petar/GoLLRB;protocol=https;branch=master;rev=ae3b015fd3e9d3cdb1e0b0e3da2caf14dd3f908f;name=git_f7d53f04_0;destsuffix=vcs_cache/c861e78d6c138ec77ffb47326b07fae61930eaaa77fde5a5862241d5cdf53eca"
SRC_URI += "git://github.com/olekukonko/tablewriter;protocol=https;nobranch=1;tag=v0.0.5;shallow=1;rev=c7d2a8a09b076b70918308a3cd95464b2ae3b5d8;name=git_b777bc51_0;destsuffix=vcs_cache/acfa379cdbc96fc3b709c526bb5d64f394c1896fbc82f1c81bd73071446e5a15"
SRC_URI += "git://github.com/tidwall/btree;protocol=https;nobranch=1;tag=v1.8.1;shallow=1;rev=490165c8137d1cb1f669d07554305665b4c2067a;name=git_c7d06e32_0;destsuffix=vcs_cache/b6030c500d1c4cd1b5b59d994c6fec9b763c326710ac0a29574525b249c4c6e6"
SRC_URI += "git://github.com/lunixbochs/vtclean;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=88cfb0c2efe8ed7b0ccf0af83db39359829027bb;name=git_714fafb1_0;destsuffix=vcs_cache/a64635e7069ce30842828241b69c56949c4fef627243d112779ccba4e6bac350"
SRC_URI += "git://github.com/opencontainers/image-spec;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=147f9c13cedb47a0c4d9a11a222961073d585877;name=git_a9e099ef_0;destsuffix=vcs_cache/5bb7cbac46d5df774d087c364c00445553d3db253ca80dc7050c4e57832c118d"
SRC_URI += "git://github.com/opencontainers/image-spec;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=e7f7c0ca69b21688c3cea7c87a04e4503e6099e2;name=git_a9e099ef_1;destsuffix=vcs_cache/774d705414556b063b95580b3cb76727e07351144ef8d343349a4242ec20d46c"
SRC_URI += "git://github.com/opencontainers/go-digest;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=ea51bea511f75cfa3ef6098cc253c5c3609b037a;name=git_552be1ee_0;destsuffix=vcs_cache/1a4d20c74c510ca00ecb86a3379c151579ed626508723e74a394480a71a0af24"
SRC_URI += "git://github.com/opencontainers/cgroups;protocol=https;nobranch=1;tag=v0.0.4;shallow=1;rev=a3e2ecd1f756a19cee15f85b96337a59c3b5337b;name=git_fb51202b_0;destsuffix=vcs_cache/9f7b24c55e2b265aed9fb854f6f3f2f61b81c4c938a341590ff1fdb834ed97d4"
SRC_URI += "git://github.com/opencontainers/cgroups;protocol=https;nobranch=1;tag=v0.0.1;shallow=1;rev=afa9f8f3e67258a4777ec48e7949f961dfb791da;name=git_fb51202b_1;destsuffix=vcs_cache/9314cf83403c484df35d153b34032fcb3da035907b4e701b47342dc60123fe46"
SRC_URI += "git://github.com/opencontainers/runtime-tools;protocol=https;branch=master;rev=2e043c6bd62639199bdd0d5f0c5082797de4de2a;name=git_b055e1ee_0;destsuffix=vcs_cache/8b8cdfeb7bd96052c4ebea0b549284e395ebb9bac1a75605850eea9bc5202abf"
SRC_URI += "git://github.com/opencontainers/runc;protocol=https;nobranch=1;tag=v1.2.5;shallow=1;rev=59923ef18c98053ddb1acf23ecba10344056c28e;name=git_8f91da41_0;destsuffix=vcs_cache/de04c3666c6e2cb551aa22c73723ec9519b2a04c5bba5ac31478dfdbafeabbee"
SRC_URI += "git://github.com/opencontainers/runc;protocol=https;nobranch=1;tag=v1.3.1;shallow=1;rev=e6457afc48eff1ce22dece664932395026a7105e;name=git_8f91da41_1;destsuffix=vcs_cache/2aacd7601f51918bf6cd881d50d81ffaafb4cdae975d2b40710e6b1e6a612e27"
SRC_URI += "git://github.com/opencontainers/selinux;protocol=https;nobranch=1;tag=v1.11.1;shallow=1;rev=44b3337c67171896cf6f299ece82ec31abfe8c0d;name=git_49bf5caa_0;destsuffix=vcs_cache/7a79fab55a520abe1fd1c87ab4a52fb9e469ee25eb924c5bc3c3f151e045078d"
SRC_URI += "git://github.com/opencontainers/selinux;protocol=https;nobranch=1;tag=v1.12.0;shallow=1;rev=996c4cffd3c5fb210e4ff01b4998ac73ff0031fa;name=git_49bf5caa_1;destsuffix=vcs_cache/4335d93e7b91bac4d4e22725cfaafc1cae44ef37a037022ea852d084e488e42a"
SRC_URI += "git://github.com/opencontainers/runtime-spec;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=36852b0d072a4b5da675300a9e73bc4b0853f5c6;name=git_502d0543_0;destsuffix=vcs_cache/5dd5e40a73eece5da452e07f7921fde1940d6b484a76b9c3203be7a9a0807cb0"
SRC_URI += "git://github.com/opencontainers/runtime-spec;protocol=https;nobranch=1;tag=v1.2.1;shallow=1;rev=524fc0e1b8ab0180e2fc9abd31837a0f4ed1fd6b;name=git_502d0543_1;destsuffix=vcs_cache/527ad6550cd654c758c3a90c33fba5de9598578a66be5e157153797cc1e49aa3"
SRC_URI += "git://github.com/opencontainers/runtime-spec;protocol=https;branch=main;rev=86290f6a00fbdc6d561e14b2e6a11788a1a5f29c;name=git_502d0543_2;destsuffix=vcs_cache/b7f00a50da96a09af8326765b452206a7485b8f9119fb6238b2613430b2aedf8"
SRC_URI += "git://github.com/opencontainers/runtime-spec;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=c4ee7d12c742ffe806cd9350b6af3b4b19faed6f;name=git_502d0543_3;destsuffix=vcs_cache/0384b4972667ad3789b612c63c4560926b7d40d0a680338575ded5ca52eabd7f"
SRC_URI += "git://github.com/elastic/gosigar;protocol=https;nobranch=1;tag=v0.12.0;shallow=1;rev=226a3899de055358d2b823c9861975d230225201;name=git_0a2941fd_0;destsuffix=vcs_cache/2e39448ff8a9e932492f1010eee3851639038eb2755641f2bfb5f1ff28bf633c"
SRC_URI += "git://github.com/elastic/gosigar;protocol=https;nobranch=1;tag=v0.14.3;shallow=1;rev=a1c62e5557684c3b690284ec229176b842c0bf6b;name=git_0a2941fd_1;destsuffix=vcs_cache/502b85e96d6b8490429794f4ce87a3841cfdc14dcf15cda8a66439fde597b2d7"
SRC_URI += "git://github.com/gofrs/flock;protocol=https;nobranch=1;tag=v0.8.1;shallow=1;rev=6f010d1acea74a32f2f2066bfe324c08bbee30e3;name=git_2d2b3139_0;destsuffix=vcs_cache/ed9a6d8d10fb2cabfe673afa8edb232235b5100352a2d24f82643ae6881cc5c4"
SRC_URI += "git://github.com/jung-kurt/gofpdf;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=14c1db30737a138f8d9797cffea58783892b2fae;name=git_f39a7771_0;destsuffix=vcs_cache/94ccb71a620d44eb00175df7e31d4a18e0a06e890997834b8c10da3c9f9c6424"
SRC_URI += "git://github.com/jung-kurt/gofpdf;protocol=https;branch=master;rev=24315acbbda57c4f6b80c8441fd108087dd7e305;name=git_f39a7771_1;destsuffix=vcs_cache/35fa9cdfc6e7291edf290acbd304516a5983d9786ae9c7781e046b9689526085"
SRC_URI += "git://github.com/mohae/deepcopy;protocol=https;branch=master;rev=c48cc78d482608239f6c4c92a4abd87eb8761c90;name=git_05ffc213_0;destsuffix=vcs_cache/f46591c97eaa5894e7974f259d9dbffc1c1ec8c97eff69355560914307521d7b"
SRC_URI += "git://github.com/creack/pty;protocol=https;nobranch=1;tag=v1.1.9;shallow=1;rev=3a6a957789163cacdfe0e291617a1c8e80612c11;name=git_86cb0bb0_0;destsuffix=vcs_cache/90ab694bdf1c87cb7742c9e23a91280fd693f673a912c6ed840ff28d25b2d46e"
SRC_URI += "git://github.com/creack/pty;protocol=https;nobranch=1;tag=v1.1.18;shallow=1;rev=d301b27172d49dd53f82d18d37105669ba84fbe1;name=git_86cb0bb0_1;destsuffix=vcs_cache/541d6636fdab893abb2fc286a49654d76beb482cf851428ad687526708ebcced"
SRC_URI += "git://github.com/emicklei/go-restful;protocol=https;nobranch=1;tag=v3.11.0;shallow=1;rev=30bec7807481e62e1e1e59ad57e7f22054806966;name=git_98baf7ea_0;destsuffix=vcs_cache/eeb71d093818e9ca5330b299be473b34d4e409659702a5b3608fe23fb85b1798"
SRC_URI += "git://github.com/emicklei/go-restful;protocol=https;nobranch=1;tag=v3.12.1;shallow=1;rev=4e4aaa187c47266dbccca626b15dfea72eefced3;name=git_98baf7ea_1;destsuffix=vcs_cache/855bd1cfbd8f9e8043055fb7d961f2efb9c95af238fd627729caba407f7b80f2"
SRC_URI += "git://github.com/emicklei/go-restful;protocol=https;nobranch=1;tag=v2.16.0;shallow=1;rev=ac666c045e035603f2704c98c59e979fccbfa94f;name=git_98baf7ea_2;destsuffix=vcs_cache/719803ef3511709bf13425167025eba753c6d09f87a9058b39e607ca2253be4f"
SRC_URI += "git://github.com/emicklei/go-restful;protocol=https;nobranch=1;tag=v3.12.2;shallow=1;rev=d59fac5bd1b1c244342c44e3e41699b8c03a14c1;name=git_98baf7ea_3;destsuffix=vcs_cache/975e2e4e6d6a8d82e84fe9b3a6faa2338034c488f355e6b2aca1d3a9b38ec78d"
SRC_URI += "git://github.com/go-task/slim-sprig;protocol=https;branch=master;rev=52ccab3ef572c7e1a2c258be183f9a9296d60152;name=git_0442e1d1_0;destsuffix=vcs_cache/44d3eae252a05df6c236ecc6cb76ddbdcc073ee851716f0fffb2d3c7ac0fe232"
SRC_URI += "git://github.com/go-task/slim-sprig;protocol=https;nobranch=1;tag=v3.0.0;shallow=1;rev=b05cce61fffa5c6dea6ac8b9a1f12b6e3fb7c894;name=git_0442e1d1_1;destsuffix=vcs_cache/8dd5020cf322cc4f91014ac7828ac4826cba4ce7da08320ac497d655159088a5"
SRC_URI += "git://github.com/golang-jwt/jwt;protocol=https;nobranch=1;tag=v5.2.2;shallow=1;rev=0951d184286dece21f73c85673fd308786ffe9c3;name=git_6a52582e_0;destsuffix=vcs_cache/8c8157dd77cc8a916815a655cc63e5c3c0421c3ce9743c80afa3e0ef75c0e3c7"
SRC_URI += "git://github.com/golang-jwt/jwt;protocol=https;nobranch=1;tag=v4.5.2;shallow=1;rev=2f0e9add62078527821828c76865661aa7718a84;name=git_6a52582e_1;destsuffix=vcs_cache/ed377d1ab5a786e12e5ac9212b3b771832aca833f1458aae5077fd332a594123"
SRC_URI += "git://github.com/rcrowley/go-metrics;protocol=https;branch=master;rev=10cdbea86bc0b922507ce91d43f4f78a5bea2e8f;name=git_54613f95_0;destsuffix=vcs_cache/72f5f2e29a16b9692a19a2b94e23cbbb89dbabf006c0af691e69618cebfb7b5b"
SRC_URI += "git://github.com/golang/glog;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=115d1f9172402af5d19c22bb21c1d90686fa8b20;name=git_d14ca79d_0;destsuffix=vcs_cache/f70ccfda0291a017b9b36146c93562d36b4461a3b0858c4620678b4d6edf1392"
SRC_URI += "git://github.com/golang/glog;protocol=https;branch=master;rev=23def4e6c14b4da8ac2ed8007337bc5eb5007998;name=git_d14ca79d_1;destsuffix=vcs_cache/f5cbb2974dc34ce4944f2c4c42cdc6c20abcd2a192abab4ba1b6e9c67ef409d5"
SRC_URI += "git://github.com/golang/glog;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=9ef845f417d839250ceabbc25c1b26101e772dd7;name=git_d14ca79d_2;destsuffix=vcs_cache/3c0266592d39bfde6b036fa0b5312f08c7583d63b6b36ad4adcf630a8c016bbc"
SRC_URI += "git://github.com/golang/glog;protocol=https;nobranch=1;tag=v1.2.4;shallow=1;rev=a0e3c40a0ed0cecc58c84e7684d9ce55a54044ee;name=git_d14ca79d_3;destsuffix=vcs_cache/5921c2810da51c8e73458acf75a5bd28fdf355de1d5e25c438b92808e83b80f6"
SRC_URI += "git://github.com/golang/freetype;protocol=https;branch=master;rev=e2365dfdc4a05e4b8299a783240d4a7d5a65d4e4;name=git_811ce0b1_0;destsuffix=vcs_cache/a0c1e83a3b328844fe973bc60212ab582d5600b27e195b4b525252e0c3a036f4"
SRC_URI += "git://github.com/golang/mock;protocol=https;nobranch=1;tag=v1.4.3;shallow=1;rev=3a35fb6e3e18b9dbfee291262260dee7372d2a92;name=git_e0a6dff9_0;destsuffix=vcs_cache/a4dd2d471becb215e7f4d0390280773f99c1a018adca86e2e666f0231d12d2f2"
SRC_URI += "git://github.com/golang/mock;protocol=https;nobranch=1;tag=v1.4.0;shallow=1;rev=3dcdcb6994c4de42a73bd2e4790178be3ed4554b;name=git_e0a6dff9_1;destsuffix=vcs_cache/59e9c16dc2927b2fab4546d5f267a26588255d521455d4b12fee0d7a2606a362"
SRC_URI += "git://github.com/golang/mock;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=51421b967af1f557f93a59e0057aaf15ca02e29c;name=git_e0a6dff9_2;destsuffix=vcs_cache/bc50a84aad470cdbf86d2b258c9129d4ff5d08a2c2d363dc1489f29914afda26"
SRC_URI += "git://github.com/golang/mock;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=a23c5e7c8f7bb73c8ae5d8711815bbd30f3cfac8;name=git_e0a6dff9_3;destsuffix=vcs_cache/6e3e8c2d74f4289acb1fae38fc6b1cc574a9414f33821b3767878b7a5b1e96e5"
SRC_URI += "git://github.com/golang/mock;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=aba2ff9a6844d5e3289e8472d3217d5b3090f083;name=git_e0a6dff9_4;destsuffix=vcs_cache/a19a13f847d42ff656cb22e9dbdc97d4948d9b4de5fed51ede193023dbe5b720"
SRC_URI += "git://github.com/golang/mock;protocol=https;nobranch=1;tag=v1.4.1;shallow=1;rev=b48cb6623c04dae64c28537143aca42d16561daf;name=git_e0a6dff9_5;destsuffix=vcs_cache/3fa72b1dafb48225d7a3691574a11c3ebe8b2365d895fdb751729dae65411e18"
SRC_URI += "git://github.com/golang/mock;protocol=https;nobranch=1;tag=v1.3.1;shallow=1;rev=d74b93584564161b2de771089ee697f07d8bd5b5;name=git_e0a6dff9_6;destsuffix=vcs_cache/aaa9e794d1e31e2c1b9998398bfbdfd85ec274fe11ebef4f7d614e3e07390e51"
SRC_URI += "git://github.com/golang/mock;protocol=https;nobranch=1;tag=v1.4.4;shallow=1;rev=f7b1909c82a8958747e5c87c6a5c3b2eaed8a33d;name=git_e0a6dff9_7;destsuffix=vcs_cache/105e085221d32b054ae134a94f6baceb00c325cf2cd65d2a3ab254f7ccd15472"
SRC_URI += "git://github.com/golang/groupcache;protocol=https;branch=master;rev=215e87163ea771ffa998a96c611387313bb5a403;name=git_24e750eb_0;destsuffix=vcs_cache/056f6bf402d16ffd87c1a0a833ec3e7618e9587119ea1db39fca685fcfd07efe"
SRC_URI += "git://github.com/golang/groupcache;protocol=https;branch=master;rev=2c02b8208cf8c02a3e358cb1d9b60950647543fc;name=git_24e750eb_1;destsuffix=vcs_cache/42d84b5a864149912b1976573aa12f43cdea041dfbb41206b5548b1134452af5"
SRC_URI += "git://github.com/golang/groupcache;protocol=https;branch=master;rev=41bb18bfe9da5321badc438f91158cd790a33aa3;name=git_24e750eb_2;destsuffix=vcs_cache/9cb4fa70f6f35f54f74cdd67019238c735edf9b37265c9047d5be47d613fac53"
SRC_URI += "git://github.com/golang/groupcache;protocol=https;branch=master;rev=869f871628b6baa9cfbc11732cdf6546b17c1298;name=git_24e750eb_3;destsuffix=vcs_cache/111b690b761949f0f3836c8be2071d353d62f4abe7d759c12ee10f875fbaf66e"
SRC_URI += "git://github.com/golang/groupcache;protocol=https;branch=master;rev=8c9f03a8e57eb486e42badaed3fb287da51807ba;name=git_24e750eb_4;destsuffix=vcs_cache/650bdea426b0ab9b6b2f1702e9e9d6abe4d771a6acdd8f04a1b6bc48e374550f"
SRC_URI += "git://github.com/golang/protobuf;protocol=https;nobranch=1;tag=v1.5.4;shallow=1;rev=75de7c059e36b64f01d0dd234ff2fff404ec3374;name=git_6e18cbff_0;destsuffix=vcs_cache/ff75ecee442381e7c87bac5ec092ebaf50137bc693ba5c5c1edce6eb4bd3ce94"
SRC_URI += "git://github.com/golang/snappy;protocol=https;branch=master;rev=2e65f85255dbc3072edf28d6b5b8efc472979f5a;name=git_bd5478a7_0;destsuffix=vcs_cache/f2fd322c658010d5e842c20d325fff29a7f9502c3d801553c7cf78231dcd6f9e"
SRC_URI += "git://github.com/golang/snappy;protocol=https;nobranch=1;tag=v0.0.4;shallow=1;rev=544b4180ac705b7605231d4a4550a1acb22a19fe;name=git_bd5478a7_1;destsuffix=vcs_cache/0e8300bf89da9cc73c5b1fb83a5b5f3a9473d85cec3174c9484fb3b87ff8031d"
SRC_URI += "git://github.com/golang/snappy;protocol=https;nobranch=1;tag=v0.0.3;shallow=1;rev=674baa8c7fc30da5df3074a459494a7e6b427dff;name=git_bd5478a7_2;destsuffix=vcs_cache/788a49f389fdae6bbc841b458d39e10f697365f22876a5ce156cca7a57e8ef73"
SRC_URI += "git://github.com/robfig/cron;protocol=https;nobranch=1;tag=v3.0.1;shallow=1;rev=ccba498c397bb90a9c84945bbb0f7af2d72b6309;name=git_f3a95453_0;destsuffix=vcs_cache/00d176702936bee725781f4dd7cd294bd05d1bb8010926c16acf4353c0320d82"
SRC_URI += "git://github.com/shopspring/decimal;protocol=https;nobranch=1;tag=v1.4.0;shallow=1;rev=a2e78c6cff3451d68a784428ce443e5a9021a89f;name=git_d89c63cf_0;destsuffix=vcs_cache/81d14461a67982eaec5bffc77f8be489a3c6f734185bbe7b48d2143a04bcf53f"
SRC_URI += "git://github.com/tmc/grpc-websocket-proxy;protocol=https;branch=master;rev=673ab2c3ae75cc01952b84b88590e30e75dcf395;name=git_d76e2b7f_0;destsuffix=vcs_cache/0649f951fd33c15edac652de5124561a8e85424635180a5dba6a7093d33fc71c"
SRC_URI += "git://github.com/tmc/grpc-websocket-proxy;protocol=https;branch=master;rev=e5319fda780223b9d4d06dba2059a26ebff67b8a;name=git_d76e2b7f_1;destsuffix=vcs_cache/4f14c6e1687e68eae26059c95a830f4c62887772549f07e6f9641ecf240667fb"
SRC_URI += "git://github.com/Rican7/retry;protocol=https;nobranch=1;tag=v0.3.1;shallow=1;rev=e6cc9ad35993d0a7edf857b494c854e0804440cd;name=git_d51c2195_0;destsuffix=vcs_cache/b6aa146f9f73585a5b28f15fef6a1b500c54f448b3f550777e4cedf7c8f9de82"
SRC_URI += "git://github.com/gabriel-vasile/mimetype;protocol=https;nobranch=1;tag=v1.4.6;shallow=1;rev=2998a94e1b488475165fb2c4f00d1a6d497289f7;name=git_6ec51d16_0;destsuffix=vcs_cache/d6d447b539ccafa09e6c72434229e52b1481a25c442cca7774c7bd619f403345"
SRC_URI += "git://github.com/rivo/uniseg;protocol=https;nobranch=1;tag=v0.4.7;shallow=1;rev=03509a98a092b522b2ff0de13e53513d18b3b837;name=git_b3b758f5_0;destsuffix=vcs_cache/1e062c5a8f3a8c313cef582853dc2ed0687bb0632f4cf127d7aaad85b7ce642f"
SRC_URI += "git://github.com/akavel/rsrc;protocol=https;nobranch=1;tag=v0.10.2;shallow=1;rev=936343600d578fb5da472acf6987ed76935a389b;name=git_a0872af8_0;destsuffix=vcs_cache/98e001b3b120966f753da164ca31ce83a6735298cb3b3365762a81db7f41969f"
SRC_URI += "git://github.com/cncf/udpa;protocol=https;branch=main;rev=c52dc94e7fbe6449d8465faaeda22c76ca62d4ff;name=git_6dce3e52_0;destsuffix=vcs_cache/ec72f975b484846f872dbb5213c46451b8ac8aa0cfe61bbfc6ff15519fd2ab31"
SRC_URI += "git://github.com/cncf/xds;protocol=https;branch=main;rev=024c85f92f20cab567a83acc50934c7f9711d124;name=git_02e4abb9_0;destsuffix=vcs_cache/646321f6493048ddfe6f0c30e7ee065cc19da6b6a5d32b4a9e56fa665434d831"
SRC_URI += "git://github.com/cncf/xds;protocol=https;branch=main;rev=06c439db220b89134a8a49bad41994560d6537c6;name=git_02e4abb9_1;destsuffix=vcs_cache/4c6a74ed467015c869d7a8549a9005c06fec9d43acbd666e538bf32da14091dd"
SRC_URI += "git://github.com/cncf/xds;protocol=https;branch=main;rev=25de7278fc844d392d607214f36dbedf50f167ee;name=git_02e4abb9_2;destsuffix=vcs_cache/5969b989550779a1287d933d61dfb4f877e191670d78b548a673d3fcc4568b9b"
SRC_URI += "git://github.com/cncf/xds;protocol=https;branch=main;rev=2f005788dc42b92dee41c8ad934450dc4746f027;name=git_02e4abb9_3;destsuffix=vcs_cache/5cee355852124c6f8af7d24d6e2eafab2bd02c4cbd2bce07fdbde9fc7f1098f8"
SRC_URI += "git://github.com/cncf/xds;protocol=https;branch=main;rev=7f1daf1720fc185f3b63f70d25aefaeef83d88d7;name=git_02e4abb9_4;destsuffix=vcs_cache/c217e72fcfe3020d4747971f8b4ebfdcb05c4bf0c174b5df8026ddb291fafae0"
SRC_URI += "git://github.com/cncf/xds;protocol=https;branch=main;rev=b4127c9b8d78b77423fd25169f05b7476b6ea932;name=git_02e4abb9_5;destsuffix=vcs_cache/59411b899b4de9b9df58397f83b829e20e5646fece957765821dd0b69c8f9611"
SRC_URI += "git://github.com/benbjohnson/clock;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=307483a2173c76d3ded778bd68214865fcf05ec8;name=git_71dfd08e_0;destsuffix=vcs_cache/aef93d48ecdccde80a656e5bbb0b93ff7053f06e66e5f839515948e752f964c0"
SRC_URI += "git://github.com/benbjohnson/clock;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=68df829297d4f02d5997a02f8c0e8d4b12f0b2a3;name=git_71dfd08e_1;destsuffix=vcs_cache/4d2e8de5fcd7cc9a9f3d325c0b29ae964c400dc961cbdce431497d7dfd8b9608"
SRC_URI += "git://github.com/benbjohnson/clock;protocol=https;nobranch=1;tag=v1.3.5;shallow=1;rev=96c602caabb567343046c08a8fca8560b4f00bb4;name=git_71dfd08e_2;destsuffix=vcs_cache/13c6bd884580072d009b6d7940bb2f58b613f9c8c4495f9a0781ec3105ee2993"
SRC_URI += "git://github.com/gopherjs/gopherjs;protocol=https;branch=master;rev=0766667cb4d1cfb8d5fde1fe210ae41ead3cf589;name=git_586d5e7b_0;destsuffix=vcs_cache/01a1edbf006e84ee72823df53fd6bfec0668d43ccc43130966699159da6af4f1"
SRC_URI += "git://github.com/gopherjs/gopherjs;protocol=https;branch=master;rev=3e4dfb77656c424b6d1196a4d5fed0fcf63677cc;name=git_586d5e7b_1;destsuffix=vcs_cache/96f41cb09211316a8ed120c255c87c97920f88a25ac5b2148ca596faf99716f7"
SRC_URI += "git://github.com/godbus/dbus;protocol=https;nobranch=1;tag=v5.0.3;shallow=1;rev=37bf87eef99d69c4f1d3528bd66e3a87dc201472;name=git_d9e1e146_0;destsuffix=vcs_cache/ac5ad82d53a8cb25949ed80271a38a1a6de8902979cdf8bf9dbf4922bd67231f"
SRC_URI += "git://github.com/godbus/dbus;protocol=https;nobranch=1;tag=v5.1.0;shallow=1;rev=e523abc905595cf17fb0001a7d77eaaddfaa216d;name=git_d9e1e146_1;destsuffix=vcs_cache/64a1380eac8fb56f64570a9ee44f46ff49a8cfc74d31623d696b49699728d072"
SRC_URI += "git://github.com/remyoudompheng/bigfft;protocol=https;branch=master;rev=eec4a21b6bb01e5c1260ca5e04d0c58e11e20f30;name=git_b54a2ca5_0;destsuffix=vcs_cache/c63c22b1b8a281a6242d4a3b1cfdea569efeda6e1bc3f0518a2b33ed4db354f4"
SRC_URI += "git://github.com/antithesishq/antithesis-sdk-go;protocol=https;nobranch=1;tag=v0.4.3-default-no-op;shallow=1;rev=d4f8d02f7899b36d7af1a858622d51f89dcd6cba;name=git_4ca5d5f6_0;destsuffix=vcs_cache/9348188c1abdd414a3385a581d8b775ee6059db841fe04b9ecb580b99a26d685"
SRC_URI += "git://github.com/liggitt/tabwriter;protocol=https;branch=master;rev=89fcab3d43de07060e4fd4c1547430ed57e87f24;name=git_86fec9fe_0;destsuffix=vcs_cache/693f14cdaaa2e1cecdd9585bef0d8adb4f255658a22c358bff628d1e569cc4f9"
SRC_URI += "git://github.com/jmespath/go-jmespath;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=3d4fd11601ddca248480565884e34e393313cd62;name=git_d4b17222_0;destsuffix=vcs_cache/c3c97b2a21733410cf7bdf451fa4187fbd4cd760335a06d42b48140ef8934d6b"
SRC_URI += "git://github.com/yl2chen/cidranger;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=7ff5a0e84593dad6fbd50551343618d7956b3c71;name=git_ba6f7a54_0;destsuffix=vcs_cache/4628bff85b11a73edcf5be87f1c279452c9152b3f1a12bff225f01d74804b948"
SRC_URI += "git://github.com/spf13/pflag;protocol=https;nobranch=1;tag=v1.0.6;shallow=1;rev=5ca813443bd2a4d9f46a253ea0407d23b3790713;name=git_66b7b8c8_0;destsuffix=vcs_cache/b7f51c906eabb517613129455992f23a2f48e1c6186855b1b66ba9e619db1aa4"
SRC_URI += "git://github.com/spf13/pflag;protocol=https;nobranch=1;tag=v1.0.7;shallow=1;rev=f9cbdd9ca94287ab4ef0848e67ecd77cf1361d48;name=git_66b7b8c8_1;destsuffix=vcs_cache/9325cb311901fc4d638afc02c2b6486fbe7957c09113848aa160e435f89a12ab"
SRC_URI += "git://github.com/spf13/afero;protocol=https;nobranch=1;tag=v1.3.3;shallow=1;rev=238028b461aa4b67a4f04c765fa37354b75b749c;name=git_799c94ee_0;destsuffix=vcs_cache/605793e1ac3c11bc9d6e01a2809fed02ac84c0b7581c2411b390bf7ebcc9dcfd"
SRC_URI += "git://github.com/spf13/afero;protocol=https;nobranch=1;tag=v1.9.2;shallow=1;rev=2a70f2bb2db1524bf2aa3ca0cfebefa8d6367b7b;name=git_799c94ee_1;destsuffix=vcs_cache/e18a0e861d722a712f5c7c3b6b816c4bfcee4d60386ff56ccad4c1b464b5e392"
SRC_URI += "git://github.com/spf13/afero;protocol=https;nobranch=1;tag=v1.11.0;shallow=1;rev=5c4385aa20510dba5ca4db12c02b0c9211d82892;name=git_799c94ee_2;destsuffix=vcs_cache/60efb83b6288e983050bf2fecb13d4327c1e2cf5b2aed8cdf1f3f30a87374663"
SRC_URI += "git://github.com/spf13/afero;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=bc94f58beda5dbff6f74599fcb1f1717c5b1c111;name=git_799c94ee_3;destsuffix=vcs_cache/eec62a9237b2ed5a555bea3fc6454feb2cfb8edef4925f762bd7f483e3f7111d"
SRC_URI += "git://github.com/spf13/afero;protocol=https;nobranch=1;tag=v1.14.0;shallow=1;rev=ea38482beffb2485aed022e0c1ed3b4b561f67b6;name=git_799c94ee_4;destsuffix=vcs_cache/10eb29b31a6d121ad5e6736bcb97bea1f12989832dd250b2978cb4ca9f063786"
SRC_URI += "git://github.com/spf13/afero;protocol=https;nobranch=1;tag=v1.10.0;shallow=1;rev=ee6eef77ef4a6c73b07a4bc070a9a2f076fd121e;name=git_799c94ee_5;destsuffix=vcs_cache/557c850ba5601aa018dcb6e0056cd98e07051c557806cab1023900faec1d979d"
SRC_URI += "git://github.com/spf13/cobra;protocol=https;nobranch=1;tag=v1.9.1;shallow=1;rev=40b5bc1437a564fc795d388b23835e84f54cd1d1;name=git_41456771_0;destsuffix=vcs_cache/b9eaed78e0a5f6d8926cb7b295c1304ebd0c79848e4fc0ad5e0ab83089f9081b"
SRC_URI += "git://github.com/spf13/cobra;protocol=https;nobranch=1;tag=v1.8.1;shallow=1;rev=e94f6d0dd9a5e5738dca6bce03c4b1207ffbc0ec;name=git_41456771_1;destsuffix=vcs_cache/2d91d6bc5de03fdd7c7a38386c83b43ea19399859bc492d6f78c8a36a38a0a6f"
SRC_URI += "git://github.com/spf13/viper;protocol=https;nobranch=1;tag=v1.16.0;shallow=1;rev=21a7fd828ed231bbe62068d6aafa5aa9f85dc79e;name=git_133525c9_0;destsuffix=vcs_cache/3eba7acad766c32d29d8a40e8275f02ca63e7a9d26586fe25a7b926c7c615ebc"
SRC_URI += "git://github.com/spf13/viper;protocol=https;nobranch=1;tag=v1.19.0;shallow=1;rev=b9733f03ad014259d08f405c13e3d7f469fa1a8e;name=git_133525c9_1;destsuffix=vcs_cache/49e4392ef048dee8e4864464b674a8468cb61b218447507a5d093ba680c065c0"
SRC_URI += "git://github.com/spf13/cast;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=48ddde5701366ade1d3aba346e09bb58430d37c6;name=git_60c66923_0;destsuffix=vcs_cache/9ec75fbe9e00cca157fc565d008521e46a9656e192f37d754d596e3214cd525e"
SRC_URI += "git://github.com/spf13/cast;protocol=https;nobranch=1;tag=v1.7.0;shallow=1;rev=6e0c3abdfe6a2d4df3c91ebf847f984c78eeba25;name=git_60c66923_1;destsuffix=vcs_cache/3449a70be0cba2b36e892d66ed5416394c998d95bf2678fdca96ac5b79ab2d1a"
SRC_URI += "git://github.com/spf13/jwalterweatherman;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=94f6ae3ed3bceceafa716478c5fbf8d29ca601a1;name=git_dbf881a0_0;destsuffix=vcs_cache/1b388a1684e1a9c684765489ae3b6773c18ed7e7fd1b43f66505af2786ebedea"
SRC_URI += "git://github.com/alecthomas/kingpin;protocol=https;nobranch=1;tag=v2.4.0;shallow=1;rev=64d23c54e3e2a385ce12757939bed9c632d1693c;name=git_f0f35838_0;destsuffix=vcs_cache/ae34e4803d18ba03ac4e70e84f5e737ec48634b725413ad5282fb01d6fc47dda"
SRC_URI += "git://github.com/alecthomas/units;protocol=https;branch=master;rev=0f3dac36c52b29c22285af9a6e6593035dadd74c;name=git_12276b46_0;destsuffix=vcs_cache/a29df7d1a787519b6e2ce58aba8e52ffc0aa566a3c6cfdb79fee16be24a0616b"
SRC_URI += "git://github.com/alecthomas/units;protocol=https;branch=master;rev=b94a6e3cc13755c0a75fffecbb089eb346fc4289;name=git_12276b46_1;destsuffix=vcs_cache/fd740bbc9bdec5b8bf13526eff2ee852c365b4c2a8feb66c89e2aa4b36a0d677"
SRC_URI += "git://github.com/kr/pretty;protocol=https;nobranch=1;tag=v0.3.1;shallow=1;rev=3cd153a126da607b78d1762779b1e1054f9889fc;name=git_cd673b00_0;destsuffix=vcs_cache/487dccea2d19da29e6f873ffd57f7f4d33720781a3f60bb9f852176acb476435"
SRC_URI += "git://github.com/kr/pretty;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=4e0886370c3a67530192c6a238cff68f56c141b0;name=git_cd673b00_1;destsuffix=vcs_cache/5c58189dae24ac93d8a9267591721fb4c8ea70c19f2611a47f36c6900fd24653"
SRC_URI += "git://github.com/kr/pretty;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=73f6ac0b30a98e433b289500d779f50c1a6f0712;name=git_cd673b00_2;destsuffix=vcs_cache/0f21d99b403d8e61d556bfa775400b5cd3eeb5d2fb19e978a43ff5e77dae75ee"
SRC_URI += "git://github.com/kr/pretty;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=a883a8422cd235c67c6c4fdcb7bbb022143e10b1;name=git_cd673b00_3;destsuffix=vcs_cache/613c09580fcd6809c6beaa1a76f6bb11a74725e615cc9f4558bae8c68a92cbb3"
SRC_URI += "git://github.com/kr/pretty;protocol=https;nobranch=1;tag=v0.2.1;shallow=1;rev=ead452280cd055b2ae8a7f0db5eb37a878d902f7;name=git_cd673b00_4;destsuffix=vcs_cache/910eaae1a45b64a385e9b5cf589986cb7c9441f3e51dafccad658a47f2b9d937"
SRC_URI += "git://github.com/kr/fs;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=1455def202f6e05b95cc7bfc7e8ae67ae5141eba;name=git_f39c34d4_0;destsuffix=vcs_cache/788a8b841315d1131eeb62169145328d6f904d6a78a63b897ad827bf68d746b6"
SRC_URI += "git://github.com/kr/pty;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=282ce0e5322c82529687d609ee670fac7c7d917c;name=git_00cb36cf_0;destsuffix=vcs_cache/1bac58bd1947d8ae4f18469faf2550b830a1ff3614f2644b00e44b1dc16e13ec"
SRC_URI += "git://github.com/kr/pty;protocol=https;nobranch=1;tag=v1.1.3;shallow=1;rev=db8e3cd836b82e82e0a9c8edc6896967dd31374f;name=git_00cb36cf_1;destsuffix=vcs_cache/554ee6f5ec5e9892b7daef8bc08e3d3269857d7d4df9d8ba08f636e64a11a252"
SRC_URI += "git://github.com/kr/text;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=702c74938df48b97370179f33ce2107bd7ff3b3e;name=git_2770e00e_0;destsuffix=vcs_cache/62674ecb33f72b9ab66dd856fe2e651dbf7344dea40ba5132203c7b4b32cfd61"
SRC_URI += "git://github.com/kr/text;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=e2ffdb16a802fe2bb95e2e35ff34f0e53aeef34f;name=git_2770e00e_1;destsuffix=vcs_cache/d47a4a089998b1398264c79fffcb25588459baa28396ff9e275fff9f4995519a"
SRC_URI += "git://github.com/hashicorp/go-multierror;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=9974e9ec57696378079ecc3accd3d6f29401b3a0;name=git_151ee577_0;destsuffix=vcs_cache/cec0f337a88725c16a86058204a5dd4ae667b8a92bbed995ab204ebcb62177a5"
SRC_URI += "git://github.com/hashicorp/hcl;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=8cb6e5b959231cc1119e43259c4a608f9c51a241;name=git_e2b5d849_0;destsuffix=vcs_cache/4001ff21b09bcafa71da9dbb8546e662be54956882fc49db209d139c60a059a5"
SRC_URI += "git://github.com/hashicorp/golang-lru;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=20f1fb78b0740ba8c3cb143a61e86ba5c8669768;name=git_aa2934d2_0;destsuffix=vcs_cache/011e067d188efe7429b197f7d8192b24ad223dac023428634f938f922098aa79"
SRC_URI += "git://github.com/hashicorp/golang-lru;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c;name=git_aa2934d2_1;destsuffix=vcs_cache/cfc230cd80a88bd2cd24c2fddbbc333c736d5191372a39b531d22888301fbd16"
SRC_URI += "git://github.com/hashicorp/golang-lru;protocol=https;nobranch=1;tag=arc/v2.0.7;shallow=1;rev=97f49b45d00745bd1bbc7a64d9363e5edf216713;name=git_aa2934d2_2;destsuffix=vcs_cache/c9db15d955aa462c711a58edd3e65d05914a638094a1240b0345fea64df2762b"
SRC_URI += "git://github.com/hashicorp/golang-lru;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=a032ef5a154020ffc7a74ba73702f9c5d3ea11f2;name=git_aa2934d2_3;destsuffix=vcs_cache/343208606456fb4f9643d8e8742dd757b64a6b252025dc7a30adb732272fce26"
SRC_URI += "git://github.com/hashicorp/golang-lru;protocol=https;nobranch=1;tag=v2.0.7;shallow=1;rev=d8515860cebc7b25ff2d29fada3f10a43611c28b;name=git_aa2934d2_4;destsuffix=vcs_cache/0a17d620bc2f7dd8c00efd79d0b78bb5f5c0bfaa2ec311417e9256a33b35db77"
SRC_URI += "git://github.com/hashicorp/go-retryablehttp;protocol=https;nobranch=1;tag=v0.7.8;shallow=1;rev=e1f5485fe84728709b857cb89e17088894c301d6;name=git_69ebb5f3_0;destsuffix=vcs_cache/420ce476cca0369183e19289674513fb1d412be25fb7aa1ce6f21f22444e1b02"
SRC_URI += "git://github.com/hashicorp/go-hclog;protocol=https;nobranch=1;tag=v1.6.3;shallow=1;rev=d12136aa2e51933c460084f5083b6d5bb9d41960;name=git_4a8ed8e0_0;destsuffix=vcs_cache/0b4bc1f484bcdfdcb3ceaacd23eff50d33afa85db395a0f6a5f55b1bd0e8c0c5"
SRC_URI += "git://github.com/hashicorp/errwrap;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=7b00e5db719c64d14dd0caaacbd13e76254d02c0;name=git_28334120_0;destsuffix=vcs_cache/a0949020a0c14672f86d32cbf0d984b8d048a27e6f75aeac79f8ca3f7cc4ecae"
SRC_URI += "git://github.com/hashicorp/errwrap;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=8a6fb523712970c966eefc6b39ed2c5e74880354;name=git_28334120_1;destsuffix=vcs_cache/65db17b2a8abd8c2bde5a919d17f7abc0e891ae4037aa21f7aa2482f560cf21f"
SRC_URI += "git://github.com/hashicorp/go-cleanhttp;protocol=https;nobranch=1;tag=v0.5.2;shallow=1;rev=6d9e2ac5d828e5f8594b97f88c4bde14a67bb6d2;name=git_34cadc19_0;destsuffix=vcs_cache/da345fc970b7e579c1da9ec42edfbe1bf896f5e3274ce418f134b15952eb2494"
SRC_URI += "git://github.com/hashicorp/go-version;protocol=https;nobranch=1;tag=v1.7.0;shallow=1;rev=fcaa53267960208632e9308c93aa89535526a018;name=git_55a07af7_0;destsuffix=vcs_cache/fd3860df5d492a5119c8c51b16a6aab4a06c5aa25b862415b5447aa36f240677"
SRC_URI += "git://github.com/agnivade/levenshtein;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=51ec67d01101f5fe22e83980dc53e1d5fc96603c;name=git_65ddb0f9_0;destsuffix=vcs_cache/9f46ea48a4d0a06e6ee96f4400a716cced2e66bfe9a3dc216c6e7a354ed6d266"
SRC_URI += "git://github.com/vbatts/tar-split;protocol=https;nobranch=1;tag=v0.12.1;shallow=1;rev=ced2b07a57dc67e1f3d620ec6a0daad5109aba63;name=git_b8e88960_0;destsuffix=vcs_cache/d468886e06770735fad26b87b41fabfcf704280b035ef7cf89f6545e589c95cc"
SRC_URI += "git://github.com/peterbourgon/diskv;protocol=https;nobranch=1;tag=v2.0.1;shallow=1;rev=5f041e8faa004a95c88a202771f4cc3e991971e6;name=git_de2c9c21_0;destsuffix=vcs_cache/8625edde317f1f22cc2818a98d9abcbe70bd7594027c378d1af3b3b0354ac6fe"
SRC_URI += "git://github.com/cskr/pubsub;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=65166f5ae403cbf6dcdced31e1f8f8ad95485cb3;name=git_32d16d76_0;destsuffix=vcs_cache/7f74633a37e29fd4d96df0f6d3328d282aa5724c1c3dcfb7d87e45a5ebc8bb6d"
SRC_URI += "git://github.com/gliderlabs/ssh;protocol=https;nobranch=1;tag=v0.1.1;shallow=1;rev=d3a6756290240931faaf90ec97ddd5d9290623d8;name=git_39665195_0;destsuffix=vcs_cache/c6e39df71984481a76325df4d86e19fff932ac8541a9e1e4021be3ce2860b614"
SRC_URI += "git://github.com/xhit/go-str2duration;protocol=https;nobranch=1;tag=v2.1.0;shallow=1;rev=017325bfda0895fe02177e4ebb07962e58735bbf;name=git_c7386ea5_0;destsuffix=vcs_cache/395a3ddd7e351b7b882dc20af4936a00bd11a84147f83ac7a7c25f8093a51cb3"
SRC_URI += "git://github.com/x448/float16;protocol=https;nobranch=1;tag=v0.8.4;shallow=1;rev=cb9afec31f2649663ebb64da5c6c32c3d365c3ca;name=git_b79b770f_0;destsuffix=vcs_cache/e395eca01f11e874b5b2b165e3dc2620faa30374fb308657449d3a3023ce5cbb"
SRC_URI += "git://github.com/Azure/go-ansiterm;protocol=https;branch=master;rev=faa5f7b0171c46bb398a91b4a0c906324d3664cf;name=git_e113ad22_0;destsuffix=vcs_cache/d9abe4d330489bbcc2f3473a042a0886c4f556d7a3b9128c484c2fef3396e790"
SRC_URI += "git://github.com/ajstarks/deck;protocol=https;branch=master;rev=30c9fc6549a9c9cf8a6d87f7fb2e66b6469e4287;name=git_f1bf0fda_0;destsuffix=vcs_cache/5bf32b1fd49b6193d170889b0e4629046cf8c1f8a06717ac987e3c7b179a10d5"
SRC_URI += "git://github.com/ajstarks/deck;protocol=https;branch=master;rev=c3f852c02e19235a0b00a692c533fc1c4a4852ca;name=git_f1bf0fda_1;destsuffix=vcs_cache/af1cc3fbe7d85bbc2ce83c047a49e63039f66a6aed11752895e4baa48443208c"
SRC_URI += "git://github.com/ajstarks/svgo;protocol=https;branch=master;rev=1546f124cd8b0cba8d505fa2ddb110c211670c59;name=git_90a535fe_0;destsuffix=vcs_cache/8606dbb2be1a41feb383f4a165e17fd83d666c2cd82413329c9166c5e32ac5dd"
SRC_URI += "git://github.com/ajstarks/svgo;protocol=https;branch=master;rev=644b8db467afccf19a0692a3e31a1868e4287ab8;name=git_90a535fe_1;destsuffix=vcs_cache/d883a0b49135b7c797fb8245e4caccaa899926e6662a89007c114c2e4ff64b27"
SRC_URI += "git://github.com/warpfork/go-wish;protocol=https;branch=master;rev=39a1cc7a02d01d037bc6bc075e6550279026e645;name=git_2ee5ca4e_0;destsuffix=vcs_cache/d54a5a826f35a7d8f810dbcc25416fe92de38e073136e37513ded87e2b85baa9"
SRC_URI += "git://github.com/warpfork/go-testmark;protocol=https;nobranch=1;tag=v0.12.1;shallow=1;rev=99d84c893cb54747ebb67b19336ab0370d01a092;name=git_ee4adbb2_0;destsuffix=vcs_cache/8e75753c9cfcd34a776df08190dff784f325672504720330a0127568766e940b"
SRC_URI += "git://github.com/dgraph-io/ristretto;protocol=https;nobranch=1;tag=v0.0.2;shallow=1;rev=dbc185e050f48c5190a78b4a07829d9c10afca21;name=git_7accc6f9_0;destsuffix=vcs_cache/8caaf63bbae80090a9005069218581eb3efa3399b0f80f881e69a987d1dafd8c"
SRC_URI += "git://github.com/dgraph-io/badger;protocol=https;nobranch=1;tag=v1.6.2;shallow=1;rev=c5d36c806aa80954a24606a982a475a717d44de2;name=git_ad2441c6_0;destsuffix=vcs_cache/49ed18fb6cfeacdf1ac19d3bf9acbce535c8c8002b2eac36207a595c8ec70d62"
SRC_URI += "git://github.com/jtolds/gls;protocol=https;nobranch=1;tag=v4.20.0;shallow=1;rev=b4936e06046bbecbb94cae9c18127ebe510a2cb9;name=git_d2f6e184_0;destsuffix=vcs_cache/dd5cfff6e6a0707c8f8a8272ef6b888ab15fa63a5c11a9ccdd30dd6e338e868e"
SRC_URI += "git://github.com/JeffAshton/win_pdh;protocol=https;branch=master;rev=76bb4ee9f0ab50f77826f2a2ee7fb9d3880d6ec2;name=git_2273ef35_0;destsuffix=vcs_cache/d04540925c4331f3e4a4f736d023490507faad3a0adb620190c5f3faef26d008"
SRC_URI += "git://github.com/spiffe/go-spiffe;protocol=https;nobranch=1;tag=v2.5.0;shallow=1;rev=dd15542826b6e12943e74670a8807a74b4da09d9;name=git_217f6de8_0;destsuffix=vcs_cache/1493a5bfbe7b3525b8e369dad6284bf19f8510cf53db0a7f023db2d97777cabd"
SRC_URI += "git://github.com/neelance/astrewrite;protocol=https;branch=master;rev=99348263ae862cc230986ce88deaddbf7edcc034;name=git_13d7b568_0;destsuffix=vcs_cache/14ca4fc9d94a0f307806c76b6d8274e7498d1f24099a7902e38966e660d4cd00"
SRC_URI += "git://github.com/neelance/sourcemap;protocol=https;branch=master;rev=8c68805598ab8d5637b1a72b5f7d381ea0f39c31;name=git_aa27249b_0;destsuffix=vcs_cache/a7af8ed9f5632745fae221a6741b93e6b969bec253f2376b92592478fbd9a2bc"
SRC_URI += "git://github.com/mndrix/tap-go;protocol=https;branch=master;rev=629fa407e90bbf3781e448e8e9b8931523ec823c;name=git_e9509ffb_0;destsuffix=vcs_cache/8bb1ed2d8275bc2dbf722411dd9448c055174d4deabf466b5d13bd0b0d5d3e80"
SRC_URI += "git://github.com/checkpoint-restore/go-criu;protocol=https;nobranch=1;tag=v7.2.0;shallow=1;rev=39135d0112fa0fb12e80ba04ef843eea097add46;name=git_400f7838_0;destsuffix=vcs_cache/cd3a96bfb455f01e0ad41b83fe0a2ba40c017e12b43cf536dd72401c0a9efa9b"
SRC_URI += "git://github.com/checkpoint-restore/checkpointctl;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=9a448d52c31a1d571b774d3cf812a5e93f2f747b;name=git_3c5c2d9d_0;destsuffix=vcs_cache/2c7723c5a9ee119e95480471084db495771076bc7a1f870bc1cba6832e279438"
SRC_URI += "git://github.com/go-pdf/fpdf;protocol=https;nobranch=1;tag=v0.9.0;shallow=1;rev=504c6dd8cc916cd7f2097877efd52cae5f1d8b18;name=git_fe793f4c_0;destsuffix=vcs_cache/723365688454e5f65e26dbdbe56debec9213552a9d8073bc118fc9a55e373b9c"
SRC_URI += "git://github.com/go-pdf/fpdf;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=def36bb599562ff8152cbf139055b51e6d1d2651;name=git_fe793f4c_1;destsuffix=vcs_cache/5d3317e54dc0894f0efba748fb7ef8e98f86625771f022c3f4c140cea3416869"
SRC_URI += "git://github.com/go-pdf/fpdf;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=e9b37cc8e2a5cdc43e3faeee3c7e5c52bd1bca25;name=git_fe793f4c_2;destsuffix=vcs_cache/c9fd7356ad2e27360396d3e7ff43b3eea7e6dc3a07f5a4455f85f5195e30c333"
SRC_URI += "git://github.com/Microsoft/go-winio;protocol=https;nobranch=1;tag=v0.6.2;shallow=1;rev=3c9576c9346a1892dee136329e7e15309e82fb4f;name=git_6d816430_0;destsuffix=vcs_cache/963154633520174004b7a508de4bfa23c0374f9312f6db845c29aa3cb751d708"
SRC_URI += "git://github.com/Microsoft/hcsshim;protocol=https;nobranch=1;tag=v0.12.9;shallow=1;rev=7392335b540ccd5edc26ca1e0dce0da393c17eff;name=git_d1a645ee_0;destsuffix=vcs_cache/05dc4d58e83373d88f474ae8e70744afab6cb5a48243bd4618d3a0e36276f49a"
SRC_URI += "git://github.com/Microsoft/didx509go;protocol=https;nobranch=1;tag=v0.0.3;shallow=1;rev=d6236d5cdf87770cf91ae58586fc35ac4ec209ea;name=git_653ab3b3_0;destsuffix=vcs_cache/9d732379493b8d4ba557d271dfac2f175c56544888b810e4884820c70ff7fb20"
SRC_URI += "git://github.com/Microsoft/cosesign1go;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=e86c6aa1092c0386c91f3b24c3111a03be0094b6;name=git_3a764ac5_0;destsuffix=vcs_cache/3055be8736bbe9c13656922d0bc61931b54c0f2a56cda5ce2bd392dcd5ebc324"
SRC_URI += "git://github.com/Microsoft/hnslib;protocol=https;nobranch=1;tag=v0.1.1;shallow=1;rev=e9f96c28f48e99445cc26600ec444979640d42fd;name=git_b4142b54_0;destsuffix=vcs_cache/0f7d0b71a42a39937d865059fcc362de1f2f524b8f18b51a71552dfc6b268135"
SRC_URI += "git://github.com/kisielk/errcheck;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=e14f8d59a22d460d56c5ee92507cd94c78fbf274;name=git_19b8b0b3_0;destsuffix=vcs_cache/839916615056d6af43f8d8aaa22ecee7de6a03166fb63a68dbdca21e038463cc"
SRC_URI += "git://github.com/kisielk/errcheck;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=ee08a456fc430219ad80ce5af98415bcc027a219;name=git_19b8b0b3_1;destsuffix=vcs_cache/2ae681313b6ac49c6c60836f406eed1f7f4db5b86a3027f0ec720f5984386390"
SRC_URI += "git://github.com/kisielk/gotool;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=80517062f582ea3340cd4baf70e86d539ae7d84d;name=git_e251e12c_0;destsuffix=vcs_cache/5f448e8a93894c89c55e73478ef6dc8a0a1a6a3fd3fe3a2b5cd5e03e65915fb1"
SRC_URI += "git://github.com/polydawn/refmt;protocol=https;nobranch=1;tag=v0.89.0;shallow=1;rev=ad1efcb83999082a4ec5ac34b9d5c08bc388faf3;name=git_9e4c55d7_0;destsuffix=vcs_cache/985d3accfe8c6a30d2848dca299fe2066f1e98f7f3d9ac232c8fbcbabd015242"
SRC_URI += "git://github.com/ianlancetaylor/demangle;protocol=https;branch=master;rev=28f6c0f3b63983aaa99575ca3b693afff7996387;name=git_92f2e92b_0;destsuffix=vcs_cache/6e36f8d337dfd06a7e6cccc8587108b9e30c4a654c06b3155241e230385a2eb6"
SRC_URI += "git://github.com/ianlancetaylor/demangle;protocol=https;branch=master;rev=5e5cf60278f657d30daa329dd0e7e893b6b8f027;name=git_92f2e92b_1;destsuffix=vcs_cache/6ab1003576a9482cccab98961139f8d3c213a5a05b67a4808f0f0c8361364669"
SRC_URI += "git://github.com/ianlancetaylor/demangle;protocol=https;branch=master;rev=bd984b5ce465cae93d894caa85838021209b9a57;name=git_92f2e92b_2;destsuffix=vcs_cache/190d0769fcb0583bb638d524115b887c6d000e04c6d64f1488a06b55bf5eac4c"
SRC_URI += "git://github.com/OneOfOne/xxhash;protocol=https;nobranch=1;tag=v1.2.8;shallow=1;rev=73388e8298b5e5a3611e6b62c2fc41b1b108491e;name=git_263f925e_0;destsuffix=vcs_cache/574662bdca3437a1a2b63a6fb52e05b654c57b8d21015a54e240b726cc649b5c"
SRC_URI += "git://github.com/dgryski/go-farm;protocol=https;branch=master;rev=a6ae2369ad13dc757768086f0cb902728c7e03e5;name=git_04a299a5_0;destsuffix=vcs_cache/3b337c74a1dc086ce360ec44513bbd981a4b87e42b336b8fb79649d61d18cda3"
SRC_URI += "git://github.com/google/renameio;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=f0e32980c006571efd537032e5f9cd8c1a92819e;name=git_ce1dfceb_0;destsuffix=vcs_cache/76f4072558e5deba8821b89cf58abb617b9d1d10b99be8f2d83f095779579603"
SRC_URI += "git://github.com/google/gopacket;protocol=https;nobranch=1;tag=v1.1.19;shallow=1;rev=a9779d139771f6a06fc983b18e0efd23ca30222f;name=git_140ad762_0;destsuffix=vcs_cache/028d3eaa48c22838281fed3a66d89c08174127a145bcc3d3fb80fb786564009f"
SRC_URI += "git://github.com/google/go-querystring;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=44c6ddd0a2342c386950e880b658017258da92fc;name=git_88468261_0;destsuffix=vcs_cache/08a0ab24e6c7c28483bf7fafcf8364fed600f35553cdb6685f859e03cba6d453"
SRC_URI += "git://github.com/google/s2a-go;protocol=https;nobranch=1;tag=v0.1.4;shallow=1;rev=bb60477ba7d14d1c916863c80ed8343447ec40c0;name=git_cb2b4d4a_0;destsuffix=vcs_cache/e153e0f7e1923456d5ff38676157d7c15d014535f4a261d9c2a2d899bb8b9de1"
SRC_URI += "git://github.com/google/s2a-go;protocol=https;nobranch=1;tag=v0.1.3;shallow=1;rev=c55b46fff1d4265431d79b2d1ce28d7c808fdcbe;name=git_cb2b4d4a_1;destsuffix=vcs_cache/5825061f32b431665ac43f91fab58c889afffb7a0870b868453d36dfdfbd6c3c"
SRC_URI += "git://github.com/google/go-github;protocol=https;nobranch=1;tag=v17.0.0;shallow=1;rev=747f93dd9b489bd56f7442b3c42bfea12800a75b;name=git_c3631c01_0;destsuffix=vcs_cache/78ebc68fbb9fd069ec840c081e9e4373bf433a73486f88b5f9806f80db950025"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=01bbb1931b22f146c60e458c0d3fb88e97fc581d;name=git_4d435d14_0;destsuffix=vcs_cache/4f47d9210cf66bab50760ee662dabb16a7a3fe8c2318317e99e8f565a566b73c"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=1a94d8640e99342fa76ae6296aaa921d08ac451f;name=git_4d435d14_1;destsuffix=vcs_cache/31f2a8537f441e892d141aab3000d57a9294410e58dd345137721b34a0951883"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=1bf35d6f28c2d0288b382023b376d4db634119e2;name=git_4d435d14_2;destsuffix=vcs_cache/d44ac676ff8477827cab56c253ae3763dbf72913bbb4610edb3a736c62c51ec6"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=1ebb73c60ed3b70bd749d4f798d7ae427263e2c5;name=git_4d435d14_3;destsuffix=vcs_cache/ff557c8ed5038276d9002de4c1a6afcd2d47a1f85dfc034a08911cf425cebdbe"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=27863c87afa6df68fb88a574f81b47d6fb7fbf29;name=git_4d435d14_4;destsuffix=vcs_cache/37982032545a9f78659ba1c62425d992be58995a45bdfeee0578df9c417a2591"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=3e6fc7fc9c4c9330ef785c791f2fc143499b5cc7;name=git_4d435d14_5;destsuffix=vcs_cache/caa83ba8d6b4a436b85fa97fa28ef855cc55cfb28ae8352dee17ea3ea201213f"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=3ea8567a2e5752420fc544d2e2ad249721768934;name=git_4d435d14_6;destsuffix=vcs_cache/8f5be92f8ffca2ad32e5c35a0be99dfc9c4da1b0793abd7b267f92cc007bc91c"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=4bb14d4b1be14417e47d0bbaf2bd4e188eda647f;name=git_4d435d14_7;destsuffix=vcs_cache/d7ba069139885203e79c6654a1c56b58ad95a84d38c27b49fcd1b22895f09977"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=54271f7e092ff31b10b7626fee166cbc6304e350;name=git_4d435d14_8;destsuffix=vcs_cache/dbbe87c6d3129524299bea08543469e71eead63a334d873ff29785e62dd91f90"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=a478d1d731e942fbe69291748caafefe749a19ea;name=git_4d435d14_9;destsuffix=vcs_cache/aba5934657cdc66abc897f9a8770562d890b555e80c09df73ba7843468e3cefe"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=b9804c9f04c2d0c7bbd1af5129f853563f990541;name=git_4d435d14_10;destsuffix=vcs_cache/ef956e6977489abfccc62649f52626c5ed32a942b904d5d39f022f07a1937ae9"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=cbba55b83ad56c9286566b96b0c82cead332b729;name=git_4d435d14_11;destsuffix=vcs_cache/4092dee517d79dbd953b0f8e1f0cd311a8990db197d0b18d0dcb6599d62a98fe"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=d0013a5989418def857cc76c50c08ea2ca37055e;name=git_4d435d14_12;destsuffix=vcs_cache/de48edfe45db65355f3ce0cf62305aa5383c9ac6ff05ec3a500128407f58f4fb"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=d1b30febd7dbc1a25a756add949019450c0eedf7;name=git_4d435d14_13;destsuffix=vcs_cache/01e2b07a20be192511d99959651413e14e03470a4094298865db4e45d059b53d"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=d4f498aebedc02388a1c34ebe8dcb2e7c9e99f29;name=git_4d435d14_14;destsuffix=vcs_cache/de36d138e98e00f435d8ea2a0165624ef24795222a94843a98eb6e5c87767005"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=d980be63207e5eee573e37d2a498655773cba403;name=git_4d435d14_15;destsuffix=vcs_cache/fdefd4153ee925d7300716d5ceed15e427a1ca1b0f830871f7444cf62a746613"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=f11f1df84d12adcffbe33959f0629087311bd28f;name=git_4d435d14_16;destsuffix=vcs_cache/d8a8bc063f43182a53887d028f2a8989d26b355ef8abbf508170190ae81c2b73"
SRC_URI += "git://github.com/google/pprof;protocol=https;branch=main;rev=fc25d7d30c6dd710a0e8c4ed0fb7410039c51135;name=git_4d435d14_17;destsuffix=vcs_cache/ab946ff6d98dc83a86a77b85983d69f27af1e843592f79d22ace49b20266a435"
SRC_URI += "git://github.com/google/go-tpm;protocol=https;nobranch=1;tag=v0.9.5;shallow=1;rev=d88acdb2077207b23d3b5dacc2873169283cf11c;name=git_8c4e446b_0;destsuffix=vcs_cache/3dda13b111be57c8028aea328f04ab5ce7d13756e61ef7918195db7b71084497"
SRC_URI += "git://github.com/google/gofuzz;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=379e164120fbc98885a8f494b5aa41ba94f64c56;name=git_32fcbcb4_0;destsuffix=vcs_cache/3937010173fd05b3f7349b62cbf84ac3b69011d5b5f248f16416a9e481943f54"
SRC_URI += "git://github.com/google/gofuzz;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=f140a6486e521aad38f5917de355cbf147cc0496;name=git_32fcbcb4_1;destsuffix=vcs_cache/3b10b16f3e547f9036aa468f5a846c1e873d084728258048c32c4afc2a1bb2cf"
SRC_URI += "git://github.com/google/flatbuffers;protocol=https;nobranch=1;tag=v2.0.8;shallow=1;rev=06c5c7ed0bd987a918cf88caafb094f22cdd1721;name=git_e3acc77f_0;destsuffix=vcs_cache/3ee6379a1463366e0e5e78827ade43add602ea4741ce02acae01bf01e84775ca"
SRC_URI += "git://github.com/google/btree;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=4030bb1f1f0c35b30ca7009e9ebd06849dd45306;name=git_5967e616_0;destsuffix=vcs_cache/85612efd55a9aab7a0918f1197aae84a1320d80139a9a4c9d83d7ad087c71300"
SRC_URI += "git://github.com/google/btree;protocol=https;nobranch=1;tag=v1.1.3;shallow=1;rev=aeba20f7a1e1315badec4eca4fdc9f754f5f880a;name=git_5967e616_1;destsuffix=vcs_cache/6ab438bcfaa9c1612b157b0bd34881cf1fb3c76d6152d52d03e8bfcb0763a691"
SRC_URI += "git://github.com/google/go-tpm-tools;protocol=https;branch=main;rev=4639ecce2abad383ae6c5cbbc0eba5ba37abb05a;name=git_a2ded532_0;destsuffix=vcs_cache/73d32a98c475a66274d59f051c52384d2f4304aa4a039387d817e9262dfb82ff"
SRC_URI += "git://github.com/google/martian;protocol=https;nobranch=1;tag=v2.1.0;shallow=1;rev=195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e;name=git_4a343155_0;destsuffix=vcs_cache/d73e4def39ac1a50bc14992c07a5ebf3b91b1754e1ebc00b945814c45625391f"
SRC_URI += "git://github.com/google/martian;protocol=https;nobranch=1;tag=v3.2.1;shallow=1;rev=7e75073889cd2324f33b959c4fb4545440da046c;name=git_4a343155_1;destsuffix=vcs_cache/a9b520ab0be644c48d9f8e22a34ce4be4bce6362c277f11ffe82d877e2ddca01"
SRC_URI += "git://github.com/google/martian;protocol=https;nobranch=1;tag=v3.3.2;shallow=1;rev=b41869697484173d2e936754152cd64e40a046d4;name=git_4a343155_2;destsuffix=vcs_cache/1c9c7f2e0387e0ac37f9c9a64ff9d408185df9a7242fe36230582351ab09b84d"
SRC_URI += "git://github.com/google/martian;protocol=https;nobranch=1;tag=v3.0.0;shallow=1;rev=b99070ab9f10410a3f8d25fae01dd611a6cc79ff;name=git_4a343155_3;destsuffix=vcs_cache/a09315e0183ebc605e8e556dbc5e51bcd84786f4af95a81bb8edd69589ac306f"
SRC_URI += "git://github.com/google/martian;protocol=https;nobranch=1;tag=v3.1.0;shallow=1;rev=dacbe1a1813d1e1b8f44f17b03ffe0cd9fb5ba54;name=git_4a343155_4;destsuffix=vcs_cache/3fab31e32a857abe13f8cc551dd75b033181876cfd43a246ac1f8b6e1626b526"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.7;shallow=1;rev=039e37cba1f3e52c48404633d6960421b369a19a;name=git_8726c33a_0;destsuffix=vcs_cache/82c4f88ad26eb27b5843cdacdecd2e9f2d7e2fb3529eae2e69835a4677dc4912"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.3;shallow=1;rev=0a3ecd384c2ae80de757e4b62138949ab721f02e;name=git_8726c33a_1;destsuffix=vcs_cache/f0648a9cebe17ac6cb2e543c1b3c24b2c85c8b2bc09d2e2ba22ce58b2b89cdb0"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.3.1;shallow=1;rev=2d0692c2e9617365a95b295612ac0d4415ba4627;name=git_8726c33a_2;destsuffix=vcs_cache/bbba6265e3e26d3a892583135ccfff338512124f01097cb15f8532f41f14d3f1"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=3af367b6b30c263d47e8895973edcca9a49cf029;name=git_8726c33a_3;destsuffix=vcs_cache/bb2851e042ef699bbc2df1ef8c7b0c754822560b89602db9ff6f6315b5afddf7"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=5a6f75716e1203a923a78c9efb94089d857df0f6;name=git_8726c33a_4;destsuffix=vcs_cache/04ff364bb494ac39b4a8c906ddd6c47ddef7d89071af49fc9d78eebd2ee4f937"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=6f77996f0c42f7b84e5a2b252227263f93432e9b;name=git_8726c33a_5;destsuffix=vcs_cache/ae58fd0d54f7194cd02ff68b9600f09892901604ebd985b881c9860505e91785"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=77ae86f624cb174e21763cffcbbf070eb06cb016;name=git_8726c33a_6;destsuffix=vcs_cache/06401ba5971b1b6dbf869860d7b89a3bf1fbcf3c04ffb585b80919dddb781ca6"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.4.1;shallow=1;rev=7e5cb83929c528b29e5a8ac1244eab0436f79bce;name=git_8726c33a_7;destsuffix=vcs_cache/62a8289459060624d6de0eef227bc5b985cdacccc616b88d5977d28d0ddafb02"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.5;shallow=1;rev=8fa37b4dd109f12e42b131e485268768f18bcbf8;name=git_8726c33a_8;destsuffix=vcs_cache/0cb91aa96094555f9ecdf5cd1f80913d4c0b415460a65e7aa698aaf406dae3ce"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=9680bfaf28748393e28e00238d94070fb9972fd8;name=git_8726c33a_9;destsuffix=vcs_cache/e18ba015e95b56df6f6927f92e11f2e6c61d012dbcd72b50b8e578d13bc2f752"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=9b12f366a942ebc7254abc7f32ca05068b455fb7;name=git_8726c33a_10;destsuffix=vcs_cache/460ed71bde70f3a932cad8d9044d3f12302bf8b6e95353bd17c44189712e2763"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.9;shallow=1;rev=a97318bf6562f2ed2632c5f985db51b1bc5bdcd0;name=git_8726c33a_11;destsuffix=vcs_cache/fd14e45645e0977841a8f51fbe51cc4ca8444dbd2b4e5eddd91172a3805102fa"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=c3ad8435e7bef96af35732bc0789e5a2278c6d5f;name=git_8726c33a_12;destsuffix=vcs_cache/066c8baed8b5c49c8bf75e59b5e0a559593a7098e3e99236e4fc5b6e29e3ac91"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.6;shallow=1;rev=d103655696d8ae43c4125ee61454dbf03d8e8324;name=git_8726c33a_13;destsuffix=vcs_cache/1422c21cf85623a9e0375e435404b59ca39b995df53077c760d230ae2efc5cec"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.2;shallow=1;rev=d2fcc899bdc2d134b7c00e36137260db963e193c;name=git_8726c33a_14;destsuffix=vcs_cache/bc0be26361e8cef7d5d19a88e76640ca90d6cf97700da6bfcb85b9a2cb309f46"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.4;shallow=1;rev=ec71d6d790538ad88c95a192fd059e11afb45b6f;name=git_8726c33a_15;destsuffix=vcs_cache/990ac138252d2a8529826b2237fedeecd3c72e28d4ccb7016c8a8bda4fd28151"
SRC_URI += "git://github.com/google/go-cmp;protocol=https;nobranch=1;tag=v0.5.8;shallow=1;rev=f144a35ed4ac538fae93fa3783175108738f71b9;name=git_8726c33a_16;destsuffix=vcs_cache/e9c9c25dc056da118c79d8fe80d5c9607c174191206587359d435b45a4783882"
SRC_URI += "git://github.com/google/gnostic-models;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=82b4ba06c153dcd30e1dbcf93601b3bee5cb3792;name=git_62ad6da8_0;destsuffix=vcs_cache/88a05eeac87ac843d53bbad4f86c891fbd1a6eb73d10d5b2c7381c229c0a25ab"
SRC_URI += "git://github.com/google/gnostic-models;protocol=https;branch=main;rev=c7be7c783f49e86348a1081eb387e01a347a4f23;name=git_62ad6da8_1;destsuffix=vcs_cache/9cb02a48bd58ac2a050dea41ebfe49f7cf5987f1435a987a07d3c373d8ac806f"
SRC_URI += "git://github.com/google/uuid;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=0cd6bf5da1e1c83f8b45653022c74f71af0538a4;name=git_c3a7687c_0;destsuffix=vcs_cache/eb93ca348ebb31319a7c752da38e6b49c9cd7ebca47e4d077bcfeb02d6f02fd5"
SRC_URI += "git://github.com/google/uuid;protocol=https;nobranch=1;tag=v1.1.2;shallow=1;rev=0e4e31197428a347842d152773b4cace4645ca25;name=git_c3a7687c_1;destsuffix=vcs_cache/192548bfd3acdce00ddcc9091abd663f637e675eb5470859ea5ca544d5150646"
SRC_URI += "git://github.com/google/uuid;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=0f11ee6918f41a04c201eceeadf612a377bc7fbc;name=git_c3a7687c_2;destsuffix=vcs_cache/1743dd7863ebf20fb946ec26a0525a27c91536f2d01acf863b0a99566cd8f3e5"
SRC_URI += "git://github.com/google/uuid;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=44b5fee7c49cf3bcdf723f106b36d56ef13ccc88;name=git_c3a7687c_3;destsuffix=vcs_cache/baaff4147d4a04e5d30e5b64e58b5212e2563d7d6043a2edc09a3a5c217ad47f"
SRC_URI += "git://github.com/google/uuid;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=bfb86fa49a73e4194d93bea18d7acfe3694438ce;name=git_c3a7687c_4;destsuffix=vcs_cache/d413b418a716d2949c57a5676b5887607713136568f6b6894fed0ce9e8faddea"
SRC_URI += "git://github.com/google/go-containerregistry;protocol=https;nobranch=1;tag=v0.20.2;shallow=1;rev=c195f151efe3369874c72662cd69ad43ee485128;name=git_e4a968c9_0;destsuffix=vcs_cache/341854b57c4450774f0bfb0e735005a0aacc137969d63d2bb61371bd8a5b9f67"
SRC_URI += "git://github.com/google/cel-go;protocol=https;nobranch=1;tag=v0.26.1;shallow=1;rev=8e7beb65e9a70f501fd743c3b70b2a0a2fadac52;name=git_84576395_0;destsuffix=vcs_cache/578448d7e5e229b277fe461a7f5985c6e45f1a836230fec91b750327cd0ce5d9"
SRC_URI += "git://github.com/google/cel-go;protocol=https;nobranch=1;tag=v0.26.0;shallow=1;rev=b023645243168e15bfe52522afccedfeb36ee023;name=git_84576395_1;destsuffix=vcs_cache/29bf51781ec639ac1ab8cea9775b0eb2c33f9ffbea85f69c32fae2a596e305f8"
SRC_URI += "git://github.com/aws/aws-sdk-go-v2;protocol=https;nobranch=1;tag=feature/ec2/imds/v1.16.9;shallow=1;rev=4509a600408280c8dcdbc6825ba750cf1628423d;name=git_0a897d51_0;destsuffix=vcs_cache/955a184cf2a0f33544045aa04663746a0ac0b9af6f2b103a53c7e0971c83f741"
SRC_URI += "git://github.com/aws/aws-sdk-go-v2;protocol=https;nobranch=1;tag=internal/ini/v1.8.0;shallow=1;rev=4fd9126607b61a0fe22af3a6a31b4e4792a66d83;name=git_0a897d51_1;destsuffix=vcs_cache/1019db3148ced92df014f3223b25aa98b2ba2efdbeabf15f6118d4ee009ddf00"
SRC_URI += "git://github.com/aws/aws-sdk-go-v2;protocol=https;nobranch=1;tag=config/v1.27.24;shallow=1;rev=9005edfbb1194c8f340b9bb7288698b58fc7274a;name=git_0a897d51_2;destsuffix=vcs_cache/a8852e0f20dc8097fdeba5e7e49e906d28eb4abb30651ef33d8eb086d24d530a"
SRC_URI += "git://github.com/aws/smithy-go;protocol=https;nobranch=1;tag=v1.20.3;shallow=1;rev=07bbd001753f9633a614f6c0949d3d73142433d0;name=git_0adf6e3e_0;destsuffix=vcs_cache/c1f9fc4ebee11068a7c704ab9d4d1dbf1f08118e5d144a287927a03613bf5c94"
SRC_URI += "git://github.com/aws/aws-sdk-go;protocol=https;nobranch=1;tag=v1.55.6;shallow=1;rev=e1db430efbf87c6fd64a01c3330ad7df794b8847;name=git_b3c0b920_0;destsuffix=vcs_cache/fcf5ef0b6d56f50be5d6868cf80e677ab70a2505357bb49d4b86964479b5a61f"
SRC_URI += "git://github.com/ghodss/yaml;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=0ca9ea5df5451ffdf184b4428c902747c2c11cd7;name=git_5c75ad62_0;destsuffix=vcs_cache/80fe9a835966dce3e484e8b446741cfac9c1f552dcd6ae067fe34cdc19e94504"
SRC_URI += "git://github.com/osrg/gobgp;protocol=https;nobranch=1;tag=v3.29.0;shallow=1;rev=b91614eb13ca1388a1d524ad10ecb05cc416ff56;name=git_6d556e8c_0;destsuffix=vcs_cache/3d4c9442edc58fb06b8d3a1c947a55999ae63ba7d7959bb75564508ce6879d2d"
SRC_URI += "git://github.com/viant/assertly;protocol=https;nobranch=1;tag=v0.4.8;shallow=1;rev=04f45e0aeb6f3455884877b047a97bcc95dc9493;name=git_74bbaac9_0;destsuffix=vcs_cache/762929efec7eee67563d3e66591baa2d0d193803006eec40a29a8dc1b886b2cf"
SRC_URI += "git://github.com/viant/toolbox;protocol=https;nobranch=1;tag=v0.24.0;shallow=1;rev=1be8e4d172138324f40d55ea61a2aeab0c5ce864;name=git_15a07bc4_0;destsuffix=vcs_cache/c98652b7de1e3d1bf96b66a3f56e88a34afd8922921443b0488d547362505d3d"
SRC_URI += "git://github.com/morikuni/aec;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=39771216ff4c63d11f5e604076f9c45e8be1067b;name=git_a24d8d91_0;destsuffix=vcs_cache/ed63d58cf112e0b59a076da22b09a7543de7421c2457060482db3ad8303454e1"
SRC_URI += "git://github.com/quic-go/webtransport-go;protocol=https;branch=master;rev=4ac2c9250e66042470c55c7e9f431269c7dbd3ed;name=git_52251646_0;destsuffix=vcs_cache/5e12c717a1f4c0c6da0516751fb2bc9d607b30706405a6dbe9953061fe6c4d38"
SRC_URI += "git://github.com/quic-go/qpack;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=696c8e28d3f57014b5d86790095e7894f9168bc4;name=git_0cec78a7_0;destsuffix=vcs_cache/cfcf46ed7f6b4ebedf88d1f8fb3bedbd3d592095505ebff103ddcb3ddf37ea01"
SRC_URI += "git://github.com/quic-go/quic-go;protocol=https;nobranch=1;tag=v0.50.1;shallow=1;rev=b90058aba5f65f48e0e150c89bbaa21a72dda4de;name=git_8465036b_0;destsuffix=vcs_cache/32523cd7727a0f2d64908f37b93809d9bf8d00ddcbfc40db7792a7e3eb8e2fa3"
SRC_URI += "git://github.com/rs/xid;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=7aed5a87c88ebb644e4e6d077f58147ac42f03b9;name=git_a158212c_0;destsuffix=vcs_cache/8c8e0881535c4a849e580fe715b34dbc3794e0d11141a2fcea7613de27ba2e46"
SRC_URI += "git://github.com/cpuguy83/go-md2man;protocol=https;nobranch=1;tag=v2.0.7;shallow=1;rev=061b6c7cbecd6752049221aa15b7a05160796698;name=git_af686cb3_0;destsuffix=vcs_cache/44790142f31974c97a48f51298f4d80d17cdea0211947e7cbfe90054a7fe7774"
SRC_URI += "git://github.com/cpuguy83/go-md2man;protocol=https;nobranch=1;tag=v2.0.6;shallow=1;rev=441631534462b74c098953dbd8d5f6210994b0bf;name=git_af686cb3_1;destsuffix=vcs_cache/0b9036af46cc50aa9433a461266e6ef3b3645807c3d1fa49cc53eb201e011781"
SRC_URI += "git://github.com/cpuguy83/go-md2man;protocol=https;nobranch=1;tag=v2.0.0;shallow=1;rev=f79a8a8ca69da163eee19ab442bedad7a35bba5a;name=git_af686cb3_2;destsuffix=vcs_cache/494e210529b35b6873eafaf90caab9198cbc1f4aa877b875861a51d99856f450"
SRC_URI += "git://github.com/joho/godotenv;protocol=https;nobranch=1;tag=v1.5.1;shallow=1;rev=3fc4292b58a67b78e1dbb6e47b4879a6cc602ec4;name=git_77b424c4_0;destsuffix=vcs_cache/cf45c7a052c0f64f7ea75c3a1731d066a553b49b1e140100c84a997a124e7e67"
SRC_URI += "git://github.com/rancher/lasso;protocol=https;nobranch=1;tag=v0.2.3;shallow=1;rev=d9be1e6a051ddf344ab23f18d8ec92f8b1ece3ea;name=git_27a33120_0;destsuffix=vcs_cache/77bd15319c06cf5c1fa06cf66af40d74684745541f0665c86f51cac712a00b2c"
SRC_URI += "git://github.com/rancher/wrangler;protocol=https;nobranch=1;tag=v3.2.3;shallow=1;rev=cc0fd777bcfd3be1f98587c2663fbb7f308922d7;name=git_9c1e9f76_0;destsuffix=vcs_cache/3a83960094a7d66b391479a7747405e8e507cb0ef1ff3f3d1fa72ec18b02a5a4"
SRC_URI += "git://github.com/rancher/dynamiclistener;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=242c2af2db15d1c29283f31efcfff4ae9d5fa0da;name=git_c46470ac_0;destsuffix=vcs_cache/eeec8f47ef9c42ae6b8c657bd6fb79331e1dce35eb9a5be6d0e6f85399adfe38"
SRC_URI += "git://github.com/rancher/permissions;protocol=https;branch=main;rev=4001d3d637f7e7f9aa17c84d89b2462539f1b331;name=git_b05bb6c2_0;destsuffix=vcs_cache/e02ade53a21906ec92d95d6254b258217c135734029c1268cddd026f61e6fbf0"
SRC_URI += "git://github.com/rancher/remotedialer;protocol=https;branch=main;rev=e6b68fd83a6b94cd706c1a7ea94487f66565641e;name=git_cdcc28fb_0;destsuffix=vcs_cache/206cb4efeedee1c1fe966d9a43ff3bbc0d4c509ab2aa8d0004db7b049f5c7ffe"
SRC_URI += "git://github.com/rancher/wharfie;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=532348fc570e63bb96d25d33f48f18d2b48ec8bd;name=git_09989b2b_0;destsuffix=vcs_cache/2099d01958c66b6b4b97899d57c84122c056ea2b32e88b00c636bbda7439e3e3"
SRC_URI += "git://github.com/filecoin-project/go-clock;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=3c7b448af078af6b40c9e914261a9dd829c979e3;name=git_b8aa062c_0;destsuffix=vcs_cache/9b6d15bf12cb60d144da033d9b9decd34ef83d07da3f434686967263c130f12c"
SRC_URI += "git://github.com/nxadm/tail;protocol=https;nobranch=1;tag=v1.4.8;shallow=1;rev=abad231d8d07ef91e09cd4c4c457cac35ed3bbb9;name=git_89148835_0;destsuffix=vcs_cache/badc5a9928e990b92696d59abf692d0a8a1f1de81c54722f9be8817c4d19afc4"
SRC_URI += "git://github.com/nxadm/tail;protocol=https;nobranch=1;tag=v1.4.11;shallow=1;rev=cbff2e202a24674b7bc70720b0e45adbbbef5d0b;name=git_89148835_1;destsuffix=vcs_cache/3d7309c6f9225628d49b0bfc2f32d3f696a9d127463b00b3f716798800b51993"
SRC_URI += "git://github.com/kballard/go-shellquote;protocol=https;branch=master;rev=95032a82bc518f77982ea72343cc1ade730072f0;name=git_e33a00ee_0;destsuffix=vcs_cache/49fe182d1b759955b666e8ad12ff66052cc7e14ba9ccf9e8371ee85848f1f9ac"
SRC_URI += "git://github.com/go-logr/logr;protocol=https;nobranch=1;tag=v1.4.2;shallow=1;rev=1205f429d540b8b81c2b75a38943afb738dac223;name=git_e0ff909e_0;destsuffix=vcs_cache/9655eab28e005d39cc2bb4b149948f2765b6737fb833acda1ea9a8fa1c01f086"
SRC_URI += "git://github.com/go-logr/logr;protocol=https;nobranch=1;tag=v1.4.3;shallow=1;rev=38a1c47ef633fa6b2eee6b8f2e1371ba8626e557;name=git_e0ff909e_1;destsuffix=vcs_cache/5b4f8e13d26b7581594ade5c47d93fb87ebb7720ce23eff7afaed11743464e1f"
SRC_URI += "git://github.com/go-logr/logr;protocol=https;nobranch=1;tag=v1.2.2;shallow=1;rev=99e02a994f50f904b6b201df394776cf687238a9;name=git_e0ff909e_2;destsuffix=vcs_cache/761d6b76e4ca57583edd8a7d6cf39d5a0c0dfd1fb4f82f099c044f754193f7d1"
SRC_URI += "git://github.com/go-logr/logr;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=9fb12b3b21c5415d16ac18dc5cd42c1cfdd40c4e;name=git_e0ff909e_3;destsuffix=vcs_cache/0cb49fece609723c8850b4ad9e521c09c6c85209913c44f1919bb4dedf52fa01"
SRC_URI += "git://github.com/go-logr/logr;protocol=https;nobranch=1;tag=v1.4.1;shallow=1;rev=dcdc3f2cd12e8a5c4e2a6712d6958c90e2e5bd98;name=git_e0ff909e_4;destsuffix=vcs_cache/b10cddf7ded0262c50dc21f1fe4a7dc4510f309ae41e2e02b92554973e08e158"
SRC_URI += "git://github.com/go-logr/zapr;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=78b8af5329abd1ba8695aad821f95fb2e7f4e651;name=git_2cc458ef_0;destsuffix=vcs_cache/ae3cdf9b15bd3f89ac37576db09881fc1eb8089d8793591cc61ab6082dcc887e"
SRC_URI += "git://github.com/go-logr/stdr;protocol=https;nobranch=1;tag=v1.2.2;shallow=1;rev=521af2addfa7c81c8a65d0e85ed34bb6bb6dc262;name=git_76834f06_0;destsuffix=vcs_cache/e69aa58ea5f2f28aa8623652f5e6643b2299d9fe8ba1e6c73a8e3d602290ac67"
SRC_URI += "git://github.com/go-logr/stdr;protocol=https;branch=master;rev=96bad1d688c524409b0da98c82fb7d3d51e60639;name=git_76834f06_1;destsuffix=vcs_cache/1b100f72a351c3b4a878a2bf93e1fddb3b291f1c65a8e97e32d7570ca0e09c59"
SRC_URI += "git://github.com/envoyproxy/protoc-gen-validate;protocol=https;nobranch=1;tag=v1.0.4;shallow=1;rev=32c2415389a3538082507ae537e7edd9578c64ed;name=git_ac4e3fea_0;destsuffix=vcs_cache/ba653e68e62c27005dc8b12fc4ff872f91132a86a99ed568f495801bda2f4f33"
SRC_URI += "git://github.com/envoyproxy/protoc-gen-validate;protocol=https;nobranch=1;tag=v0.6.7;shallow=1;rev=4694024279bdac52b77e22dc87808bd0fd732b69;name=git_ac4e3fea_1;destsuffix=vcs_cache/dcc95e9bed3fa683448a9bc867a1205a859b75fe2b2a15aed67246a76bc6fd3e"
SRC_URI += "git://github.com/envoyproxy/protoc-gen-validate;protocol=https;nobranch=1;tag=v1.2.1;shallow=1;rev=7b06248484ceeaa947e93ca2747eccf336a88ecc;name=git_ac4e3fea_2;destsuffix=vcs_cache/d5f02e84a7cac6538441cf10353084bc8986687c4fb1dbec8ce868f36087a44c"
SRC_URI += "git://github.com/envoyproxy/protoc-gen-validate;protocol=https;nobranch=1;tag=v0.9.1;shallow=1;rev=8ed4f9cc85f771d1f29838a1e4a66b7565ca70ba;name=git_ac4e3fea_3;destsuffix=vcs_cache/3d9cfe300a6eded2c3ffad9dd668b8f3c58133b90ed7417ddd598885722615c7"
SRC_URI += "git://github.com/envoyproxy/protoc-gen-validate;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=9eff07ddfcb4001aa1aab280648153f46e1a8ddc;name=git_ac4e3fea_4;destsuffix=vcs_cache/17dee49ca0a12c9d068fb9ddd8d0ade5d40bec4965b4d5b57c0163c07b7cc1f7"
SRC_URI += "git://github.com/envoyproxy/protoc-gen-validate;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=be2520c8aa2105ea1cb7b89ff8e506c7e8141c26;name=git_ac4e3fea_5;destsuffix=vcs_cache/ecd89a579c798e2583479ead808e21e18beb78976348081588cdcfcf79ec8e8a"
SRC_URI += "git://github.com/envoyproxy/go-control-plane;protocol=https;nobranch=1;tag=v0.10.3;shallow=1;rev=1d7ad182c6f4820d713680e3987538e28917e62b;name=git_f80b47a3_0;destsuffix=vcs_cache/a0b8d3463c49a11b1735137ba400545873873dbf8635da21c9ba4d9c88fe2004"
SRC_URI += "git://github.com/envoyproxy/go-control-plane;protocol=https;nobranch=1;tag=ratelimit/v0.1.0;shallow=1;rev=2cdf9fc1e8a104e69a6487721514041c335d86f6;name=git_f80b47a3_1;destsuffix=vcs_cache/906f63aa0b71e9714823fdb45d45be4659d30de781b6a053c93f43371894845f"
SRC_URI += "git://github.com/envoyproxy/go-control-plane;protocol=https;nobranch=1;tag=envoy/v1.32.3;shallow=1;rev=2d07f5a1efda9ba496b69ffafa7efbf86661c35c;name=git_f80b47a3_2;destsuffix=vcs_cache/b9288b2d8f4e58a2125b708e8a9b1fdb4f0524da33789c4cd0f33b034528f5bc"
SRC_URI += "git://github.com/envoyproxy/go-control-plane;protocol=https;nobranch=1;tag=envoy/v1.32.4;shallow=1;rev=c19bf63a811c90bf9e02f8e0dc1dcef94931ebb4;name=git_f80b47a3_3;destsuffix=vcs_cache/b764640e72f39b0abeb1eee792c7fd920bb28361222420dedee7bbe30022afa6"
SRC_URI += "git://github.com/grpc-ecosystem/go-grpc-prometheus;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=c225b8c3b01faf2899099b768856a9e916e5087b;name=git_b160b895_0;destsuffix=vcs_cache/6ae402a49d1bc3bac276f99d1080f315457578cfa96e8f1bceda4a7f68873878"
SRC_URI += "git://github.com/grpc-ecosystem/go-grpc-middleware;protocol=https;nobranch=1;tag=v2.1.0;shallow=1;rev=3f5e2b31e36c931159a1b80287847840cd581e6e;name=git_e9f7c9ac_0;destsuffix=vcs_cache/4e15ad209f57f1610bea03c67dbeef9ef7792fafe9b2902ca1a141277719f091"
SRC_URI += "git://github.com/grpc-ecosystem/go-grpc-middleware;protocol=https;nobranch=1;tag=providers/prometheus/v1.0.1;shallow=1;rev=7da22cf3f3d3ae190467d9c7a3ea749b3d0e63b5;name=git_e9f7c9ac_1;destsuffix=vcs_cache/3e59bfc763822ab8a68a88fa3e9fac0f47783c9374d27ac65298f1f8d1b2571a"
SRC_URI += "git://github.com/grpc-ecosystem/go-grpc-middleware;protocol=https;nobranch=1;tag=v2.3.0;shallow=1;rev=8ce5e4220c2f6cb6440bad4e977536099a6002f9;name=git_e9f7c9ac_2;destsuffix=vcs_cache/eb8013503d12845ef03a8a225617c122e166d08f7790860431910c3aec77f6aa"
SRC_URI += "git://github.com/grpc-ecosystem/go-grpc-middleware;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd;name=git_e9f7c9ac_3;destsuffix=vcs_cache/f9e6f8f2efbbd5a99a7d24a16dacfb2aec52c722e58816f1d2616ed02c164245"
SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;protocol=https;nobranch=1;tag=v2.11.3;shallow=1;rev=0197faf8b072910084edd1209aa2ac51833b895c;name=git_3fba78e5_0;destsuffix=vcs_cache/f90ca67bbf7c3799855e74cb463b80f6d6aefad11d72ee185564a91a79de0590"
SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;protocol=https;nobranch=1;tag=v1.16.0;shallow=1;rev=094a6fe78b3ca888297d090185cdf30f0e42e157;name=git_3fba78e5_1;destsuffix=vcs_cache/dcb67129f7f42088caddd617e1d006a98ef75266189d65ac236c39b060bd23ab"
SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;protocol=https;nobranch=1;tag=v2.16.0;shallow=1;rev=09e3965a330155f7db8482269d7d91b9bceb7641;name=git_3fba78e5_2;destsuffix=vcs_cache/1806b1b4049a328c529afd03e0debb1bfbbaf9bade72906aa588e4e6eaf7f37e"
SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=8558711daa6c2853489043207b563dceacbc19cf;name=git_3fba78e5_3;destsuffix=vcs_cache/8f8b38530af669edbc4014d377644331264d3f87b252953eb0de0a022c2571a4"
SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;protocol=https;nobranch=1;tag=v2.27.2;shallow=1;rev=91958df0371da5c71794adc92e21cf8fed58df97;name=git_3fba78e5_4;destsuffix=vcs_cache/6c43ad48e059624148bd0ae0b851bb5d1200cd6574bdf1b8e9006ed161aaad3d"
SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;protocol=https;nobranch=1;tag=v2.7.0;shallow=1;rev=9bff7b14fab8aace99d7febe4ae1ee4fac526eca;name=git_3fba78e5_5;destsuffix=vcs_cache/e97a5532df5bba6a602ccc79d4b73c5acd796205dc0bd7e6d5ef4b0521cd67d5"
SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;protocol=https;nobranch=1;tag=v2.27.1;shallow=1;rev=d08f8db7a006221004859a974ecc1d8a8cd5fe69;name=git_3fba78e5_6;destsuffix=vcs_cache/14cb149986565914275b3024c52fb1fca8eedc9ac90c3b9373f902680a2a6b82"
SRC_URI += "git://github.com/grpc-ecosystem/grpc-gateway;protocol=https;nobranch=1;tag=v2.26.3;shallow=1;rev=e80a2e5ec8a869822546ff43962c9ff1e6b91b5d;name=git_3fba78e5_7;destsuffix=vcs_cache/59d5caeb76440943f3ffe5923de7271c919d20694e6c63c85933f29efbfb703a"
SRC_URI += "git://github.com/mxk/go-flowrate;protocol=https;branch=master;rev=cca7078d478f8520f85629ad7c68962d31ed7682;name=git_a209a0d8_0;destsuffix=vcs_cache/12c25c020a66ecc07c7c90ff8a8793d5462f3f4e58338c9b36012b25b4ed81b8"
SRC_URI += "git://github.com/sasha-s/go-deadlock;protocol=https;nobranch=1;tag=v0.3.5;shallow=1;rev=464d34347a399b840a4f963cc96dfc993ccf8c62;name=git_8c229f40_0;destsuffix=vcs_cache/fa29175221f16401d041954c9a07bc5aa8b90d585d480873eaa15a18b5fa8e6d"
SRC_URI += "git://github.com/tencentcloud/tencentcloud-sdk-go;protocol=https;nobranch=1;tag=tencentcloud/common/v1.0.1179;shallow=1;rev=60a2f96450c4ecdcc8a336d349385cf87e953349;name=git_48d09131_0;destsuffix=vcs_cache/ea40a914bba09ef2b8a1f9491a3d05fa72c143bc0bd5a604897e64854346bf9f"
SRC_URI += "git://github.com/tencentcloud/tencentcloud-sdk-go;protocol=https;nobranch=1;tag=tencentcloud/vpc/v1.0.1177;shallow=1;rev=e16bf519574e77f8c08ac57c205a91e22aacb598;name=git_48d09131_1;destsuffix=vcs_cache/a63670dd61eb61aeaa3dba30275c67041639a132d474d31cbdc85408a2dfe105"
SRC_URI += "git://github.com/spaolacci/murmur3;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=f09979ecbc725b9e6d41a297405f65e7e8804acc;name=git_5f45d9a4_0;destsuffix=vcs_cache/a9c1720f1e20cf70178b36d24d6d66ecb259eba3a3e6fd0ca670097f00bd2c48"
SRC_URI += "git://github.com/prometheus/client_model;protocol=https;nobranch=1;tag=v0.6.1;shallow=1;rev=571429e996ba2d9499e3dcb12926767ba953c0ef;name=git_63d71ba5_0;destsuffix=vcs_cache/caf181efa4396d95dac9ea7d6879b5ffa11a4c19d16fb9f0cdb4401b8bad274e"
SRC_URI += "git://github.com/prometheus/client_model;protocol=https;branch=master;rev=5c3871d89910bfb32f5fcab2aa4b9ec68e65a99f;name=git_63d71ba5_1;destsuffix=vcs_cache/f6f51abd7b0f905d6b844652733802c893708c937a90eddb39855a9027e795ef"
SRC_URI += "git://github.com/prometheus/client_model;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=7bc5445566f0fe75b15de23e6b93886e982d7bf9;name=git_63d71ba5_2;destsuffix=vcs_cache/956572947cafa016504d9c969badcfcac4978c09ecb2f24b156d94349ffa584a"
SRC_URI += "git://github.com/prometheus/client_model;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=d56cd794bca9543da8cc93e95432cd64d5f99635;name=git_63d71ba5_3;destsuffix=vcs_cache/069e95e903f8059099fa1060d8aad72df06ddda303ae3e832179548b86006178"
SRC_URI += "git://github.com/prometheus/client_model;protocol=https;nobranch=1;tag=v0.6.2;shallow=1;rev=eb136e513d419e0c31ad750922f0a6f7675c2dee;name=git_63d71ba5_4;destsuffix=vcs_cache/ce4113e6c8f9de1c05a5198a36f67001c5b8ac458bbdbca291a0800fa698d5b1"
SRC_URI += "git://github.com/prometheus/procfs;protocol=https;branch=master;rev=05ee40e3a273f7245e8777337fc7b46e533a9a92;name=git_0ab7c7bc_0;destsuffix=vcs_cache/a31afc6d496c301e460791751c825c4adb554572fc9b0898f20b5141bc3373d1"
SRC_URI += "git://github.com/prometheus/procfs;protocol=https;nobranch=1;tag=v0.15.1;shallow=1;rev=51919fd4b9d0aaca69854ac81bdeda5f96dab366;name=git_0ab7c7bc_1;destsuffix=vcs_cache/9e485df4f8bbb8f868792732d9cf24f477d4d035cf6ee9fdf45dae2869f8e03f"
SRC_URI += "git://github.com/prometheus/procfs;protocol=https;nobranch=1;tag=v0.17.0;shallow=1;rev=61fe41207276bc95c4c391762e9ef137385e8a5d;name=git_0ab7c7bc_2;destsuffix=vcs_cache/bd38c110e95e59c4551170b1bdd1a77f0c2d3bfb31346fe6c34a3ff9a2d59911"
SRC_URI += "git://github.com/prometheus/common;protocol=https;nobranch=1;tag=v0.55.0;shallow=1;rev=0c7b585c7da330aae136aaa874cb4f89f5b3e5d9;name=git_63ab0745_0;destsuffix=vcs_cache/c773458e4153a1156de46f9b19a0c9e562195ea659bd1db2a371c7d3c9894d51"
SRC_URI += "git://github.com/prometheus/common;protocol=https;nobranch=1;tag=v0.62.0;shallow=1;rev=280b0e7d5bdf09ddfd2d93c226671cb2ebdb7d5f;name=git_63ab0745_1;destsuffix=vcs_cache/1c7689cfee4233aa062bec8ece46dce07f442cf27c9c0c1166508855e3b0be21"
SRC_URI += "git://github.com/prometheus/common;protocol=https;nobranch=1;tag=v0.63.0;shallow=1;rev=cf3c56f7b7d09d67cb46592c5e930651fd2d296e;name=git_63ab0745_2;destsuffix=vcs_cache/cf643f42f31268421790c0b0e30560c3f9a5fc15801101442a72832a5bb070c9"
SRC_URI += "git://github.com/prometheus/client_golang;protocol=https;nobranch=1;tag=v1.20.5;shallow=1;rev=48e12a185519fd76b4e514b597483781d9ba4093;name=git_6ffa6057_0;destsuffix=vcs_cache/1a0860e1de6c5f86bfdf0955c8c04423e5e5ff7aa2653d61019308999d3e38b5"
SRC_URI += "git://github.com/prometheus/client_golang;protocol=https;nobranch=1;tag=v1.22.0;shallow=1;rev=d50be25511d790f4c166d68ce7d046c2977d148b;name=git_6ffa6057_1;destsuffix=vcs_cache/fe4288714ba7ad45e7c10ed15d06ed07d31906852c1926f103bd4b73cb475e17"
SRC_URI += "git://github.com/ipld/go-ipld-prime;protocol=https;nobranch=1;tag=v0.21.0;shallow=1;rev=b6717c4b2f7fbbb4a7fa2d328c757abebe005fef;name=git_01136527_0;destsuffix=vcs_cache/bb8bc9521cbe28559a97647e7f8a78fb2945f984dad2d5b962d897cb6871a7c2"
SRC_URI += "git://github.com/ipld/go-codec-dagpb;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=e87d740fd0ddc5016a25545404de85084ff35246;name=git_31287f8b_0;destsuffix=vcs_cache/dd8b896fc06894121e0800e3894828fc6d21d19e9664cee1eab16c3d830df695"
SRC_URI += "git://github.com/ipld/go-car;protocol=https;nobranch=1;tag=v2.14.2;shallow=1;rev=40add1a048591fa33225e158e7aedbbd51258618;name=git_e8224461_0;destsuffix=vcs_cache/80047fb50fd3341888db11ba7140e3ae6917e9e0fe45c213f7b92dbc72d28ee9"
SRC_URI += "git://github.com/ipld/go-car;protocol=https;nobranch=1;tag=v0.6.2;shallow=1;rev=a15405610d5b915b0b14403a201a7c90a910e071;name=git_e8224461_1;destsuffix=vcs_cache/d48161e77a4323f61fefb470b7d9c2a62c9b8a884fac83271ec4e18450e68b8a"
SRC_URI += "git://github.com/Jorropo/jsync;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=f51a772a4b6c97a506f2d318a8a434e1659fc1e8;name=git_f04c8b33_0;destsuffix=vcs_cache/a96c08a6a76a5a81758e76710f7b02de2f40c96f4915be5225b216661cb4409f"
SRC_URI += "git://github.com/santhosh-tekuri/jsonschema;protocol=https;nobranch=1;tag=v5.3.1;shallow=1;rev=16bce71af51f6a4a775f11e649a347a8803940d3;name=git_3ace93c7_0;destsuffix=vcs_cache/9964fa94eb99b405ebcfa3af19e0e16d07aef590c7af497cdfc6743aa4544776"
SRC_URI += "git://github.com/go-sql-driver/mysql;protocol=https;nobranch=1;tag=v1.9.3;shallow=1;rev=62984ada4402df6571557bc3fed2bcbde48ec908;name=git_825229b4_0;destsuffix=vcs_cache/8d8b13db0a1aeb458c063fdae5bc8310ea4fe3f080f94fad773cad52094745d9"
SRC_URI += "git://github.com/rootless-containers/rootlesskit;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=a2c596ff9b3fddc0c2becb38f2ef4004f15765b5;name=git_fc76d262_0;destsuffix=vcs_cache/c40c7edbc87b52c4ec9e35cf48e5d4557c8c35a181e94507263035cc2d41f256"
SRC_URI += "git://github.com/cenkalti/backoff;protocol=https;nobranch=1;tag=v4.3.0;shallow=1;rev=720b78985a65c0452fd37bb155c7cac4157a7c45;name=git_67dac28e_0;destsuffix=vcs_cache/c644c1d0f5212c0210f056d6c7d45f3e482a1fca002b7c3e65edf8d3c060566f"
SRC_URI += "git://github.com/cenkalti/backoff;protocol=https;nobranch=1;tag=v5.0.3;shallow=1;rev=7cad66a637c4ffff09d0795608116ddcc7eb1769;name=git_67dac28e_1;destsuffix=vcs_cache/656f7cb59961eb5e57ba97bf50166eda0c13e2ecff4c8c15b33eb72e8ad26dc4"
SRC_URI += "git://github.com/cenkalti/backoff;protocol=https;nobranch=1;tag=v5.0.2;shallow=1;rev=a52b52789f765d2d83c82ecf1435045c7bd4f3f3;name=git_67dac28e_2;destsuffix=vcs_cache/4ed30c170ae0f557303777eec03bf1e0493c04e9a8839a7728764692563d5b9a"
SRC_URI += "git://github.com/bufbuild/protovalidate-go;protocol=https;branch=main;shallow=1;rev=107b51bb93ef18ea769ece164b12e844315ae6b1;name=git_f2552920_0;destsuffix=vcs_cache/1e227bf24fd07c92ee9ab694fc9a433bd29332b25e3d7f6fc81797204d01c6b9"
SRC_URI += "git://github.com/pelletier/go-toml;protocol=https;nobranch=1;tag=v2.2.2;shallow=1;rev=a3d5a0bb530b5206c728eed9cb57323061922bcb;name=git_5fc8a683_0;destsuffix=vcs_cache/f16c5ced6b530e5c3ea966c274cd62dbd4ce30a2804d17f41a4db2c067724588"
SRC_URI += "git://github.com/pelletier/go-toml;protocol=https;nobranch=1;tag=v2.2.4;shallow=1;rev=ee07c9203b72060f12e31c04ace80e8a187d5a67;name=git_5fc8a683_1;destsuffix=vcs_cache/024e6f520632e6be8a8fbc0202fdf0da2cfc0266ff95451a8e8d944dd0d8882f"
SRC_URI += "git://github.com/pelletier/go-toml;protocol=https;nobranch=1;tag=v1.9.5;shallow=1;rev=fed1464066413075eac02cd4dc368b5221845541;name=git_5fc8a683_2;destsuffix=vcs_cache/22bc2e212b193b23af04b0014dd6e6f15e66953913e88670099f8375927b48c7"
SRC_URI += "git://github.com/goccmack/gocc;protocol=https;branch=master;rev=2292f9e40198d1d43db1e951089d4edd34079619;name=git_830232c6_0;destsuffix=vcs_cache/334b745c54925ef3a2267ac8278eb59a29f0f1d792bcf56d02226be0be31041f"
SRC_URI += "git://github.com/magefile/mage;protocol=https;nobranch=1;tag=v1.14.0;shallow=1;rev=300bbc868ba8f2c15b35e09df7e8804753cac00d;name=git_4be9d374_0;destsuffix=vcs_cache/aa06d81787b87b7fb650df45bdfdd0382bc309275420cf8f707897f49d7a0a7d"
SRC_URI += "git://github.com/evanphx/json-patch;protocol=https;nobranch=1;tag=v5.9.11;shallow=1;rev=84a4bb100ade42a86fce2647c95a7dbcbf569cb2;name=git_55d8c710_0;destsuffix=vcs_cache/27c14deff506910582384f22dee1947f276a48e3e741caa04157345ca331f135"
SRC_URI += "git://github.com/norwoodj/helm-docs;protocol=https;nobranch=1;tag=v1.14.2;shallow=1;rev=37d3055fece566105cf8cff7c17b7b2355a01677;name=git_c5a10f8a_0;destsuffix=vcs_cache/0dae90d63582b75797b84f8c4e75b7f95dd325f01d83f8840e005a192b55cb70"
SRC_URI += "git://github.com/mattn/go-colorable;protocol=https;nobranch=1;tag=v0.1.13;shallow=1;rev=11a925cff3d38c293ddc8c05a16b504e3e2c63be;name=git_65d23631_0;destsuffix=vcs_cache/6a55366e9e60cc108e1e5a2ed7de5f7a45982abaf5a3d3a6b7acc8b4cfce973b"
SRC_URI += "git://github.com/mattn/go-runewidth;protocol=https;nobranch=1;tag=v0.0.16;shallow=1;rev=6ceadc68530e7bfea8cba17d6523bed32912d4fa;name=git_54f38250_0;destsuffix=vcs_cache/1af9e649dfc4b15b3476c94bfc74f82df8afa71fae63a7efc761b8a649019d2d"
SRC_URI += "git://github.com/mattn/go-sqlite3;protocol=https;nobranch=1;tag=v1.14.14;shallow=1;rev=3ccccfb4c9c683a80e2cce810ac652616579e51c;name=git_e0a410bf_0;destsuffix=vcs_cache/50c4747bf84d49eba4b0f7f79bdd9de26f5c94b34f8a35ae9a8e1c28f451c9ce"
SRC_URI += "git://github.com/mattn/go-sqlite3;protocol=https;nobranch=1;tag=v1.14.32;shallow=1;rev=8bf7a8a844faf952aa0245b4c0ad0a47e84f4efd;name=git_e0a410bf_1;destsuffix=vcs_cache/2402d96027b91a7f37020e011f755b272dfd9b1870162a52ceba4b4749a6a070"
SRC_URI += "git://github.com/mattn/go-isatty;protocol=https;nobranch=1;tag=v0.0.16;shallow=1;rev=13e91bf4058fb93d5629deb7b2e3763ec8f4fdf8;name=git_bdb8c628_0;destsuffix=vcs_cache/f79b0a50499696515d01ee34055f66e2f63d620014b0df96e0086e89846966e7"
SRC_URI += "git://github.com/mattn/go-isatty;protocol=https;nobranch=1;tag=v0.0.14;shallow=1;rev=504425e14f742f1f517c4586048b49b37f829c8e;name=git_bdb8c628_1;destsuffix=vcs_cache/2308136371fd99bebf386bb8085b2fbd52239bb9ed641108297f12fe1449c7c9"
SRC_URI += "git://github.com/mattn/go-isatty;protocol=https;nobranch=1;tag=v0.0.12;shallow=1;rev=7b513a986450394f7bbf1476909911b3aa3a55ce;name=git_bdb8c628_2;destsuffix=vcs_cache/88b9a1a69baf78034f4579abd912e2e201eff5c07b6a01f37a1a0adc46e8ae8a"
SRC_URI += "git://github.com/mattn/go-isatty;protocol=https;nobranch=1;tag=v0.0.20;shallow=1;rev=a7c02353c47bc4ec6b30dc9628154ae4fe760c11;name=git_bdb8c628_3;destsuffix=vcs_cache/d07760adabb0d05ba45e3c8997554326fa96668c12bc4572654f288670e1af35"
SRC_URI += "git://github.com/mattn/go-shellwords;protocol=https;nobranch=1;tag=v1.0.12;shallow=1;rev=973b9d5391598d4ee601db46fa32f6e186a356ac;name=git_86631c51_0;destsuffix=vcs_cache/3e9de7967c04a07a314669e56b72110ac8eee96a9646f5b9863c709575abe8d1"
SRC_URI += "git://github.com/raulk/go-watchdog;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=9c5e371109037bec1852ea63c9512a94307bfea0;name=git_2dbaa760_0;destsuffix=vcs_cache/34d6a570c4d70327aaea767dcbdc29163f948cd0c01cf3e21cea350f0e244d23"
SRC_URI += "git://github.com/microcosm-cc/bluemonday;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=82c7118e8ccf7403d4860175d97bb635e8e28239;name=git_0d0893f6_0;destsuffix=vcs_cache/1f5f16ce297343e10bfd1fdee29be4d6468aad83de3febc58f20a778d6c282ee"
SRC_URI += "git://github.com/boombuler/barcode;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=3cfea5ab600ae37946be2b763b8ec2c1cf2d272d;name=git_4efcad21_0;destsuffix=vcs_cache/8d666854a7caacdc5967fa1e27ffc08f41fd72c5e40be09e693722dbf8bd5d2f"
SRC_URI += "git://github.com/boombuler/barcode;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=6c824513baccd76c674ce72112c29ef550187b08;name=git_4efcad21_1;destsuffix=vcs_cache/0a0efb4280c325862e9637bb8db36c731fb3078492bd1292def4cd024a373081"
SRC_URI += "git://github.com/buger/jsonparser;protocol=https;branch=master;rev=bf1c66bbce23153d89b23f8960071a680dbef54b;name=git_67b93344_0;destsuffix=vcs_cache/901336b30fc76e411d2bb38577c1468994ac5071302a3e77afc7d385071133cf"
SRC_URI += "git://github.com/buger/jsonparser;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=df3ea76ece10095374fd1c9a22a4fb85a44efc42;name=git_67b93344_1;destsuffix=vcs_cache/9e7d88ec56247178ccab447d74a526005db3524f40984768e84aa7c9dbcbe255"
SRC_URI += "git://github.com/avast/retry-go;protocol=https;nobranch=1;tag=v4.6.1;shallow=1;rev=93932f8b6d01fb56dec3eb0ca7cbaa0e90cbbc25;name=git_2e094515_0;destsuffix=vcs_cache/c6c0b66f1d97506e5ea2ef535277871572a2dbb28ed0ddfd875ec2b7351557d4"
SRC_URI += "git://github.com/wlynxg/anet;protocol=https;nobranch=1;tag=v0.0.5;shallow=1;rev=839bc3a920f1b87dd3ce1386e425aa5ef2e69d24;name=git_fb128353_0;destsuffix=vcs_cache/6e97bb11853767e00afec043f13abfd3d741facce94e50bacdc395a38ed0c10b"
SRC_URI += "git://github.com/wlynxg/anet;protocol=https;nobranch=1;tag=v0.0.3;shallow=1;rev=a8525cbb183e42802dcf57e39bd1daf26e771050;name=git_fb128353_1;destsuffix=vcs_cache/3fff681b48e7bb19b2c7eb9cbd840891c440aa0ec9b381c91b3b826cde7dc3cd"
SRC_URI += "git://github.com/davidlazar/go-crypto;protocol=https;branch=master;rev=b73af7476f6c55b31aa2797d1f98afc94699548d;name=git_6d330e66_0;destsuffix=vcs_cache/f8545c6c5e0f5ce36f49f75f9833021b00462cdac0533b39a4de3c1e32b359d3"
SRC_URI += "git://github.com/jellevandenhooff/dkim;protocol=https;branch=master;rev=f50fe3d243e1a9c9369eea29813517f3af190518;name=git_885fe4b8_0;destsuffix=vcs_cache/9e4a30734fce86854ee4aa881f2c309bd19baeaef70f181545ed2b2a1c061853"
SRC_URI += "git://github.com/moby/vpnkit;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=7f0eff0dd99b576c5474de53b4454a157c642834;name=git_985a60b4_0;destsuffix=vcs_cache/e87172b8659c2c06fd1c759745489c8dedb5ca436a1e7e41ed8ce01ea55b1559"
SRC_URI += "git://github.com/moby/term;protocol=https;branch=main;rev=1aeaba8785877a66f57739be9fccb6f5cfab429e;name=git_1bc89d26_0;destsuffix=vcs_cache/73f708b9d9059493286c6397b036d30bed42bf690e136a7734e2c3ab02bf2a5a"
SRC_URI += "git://github.com/moby/term;protocol=https;nobranch=1;tag=v0.5.2;shallow=1;rev=6c1b69fecbac2753dcaf18718a7e9f9093c3760d;name=git_1bc89d26_1;destsuffix=vcs_cache/b7e959e4874fee596e5f3eaf06300410fe7cefde4fbece51042d17be137ef04e"
SRC_URI += "git://github.com/moby/term;protocol=https;branch=main;shallow=1;rev=9c3c875fad924eb6c9dd32a361b5fc0a49a4feb9;name=git_1bc89d26_2;destsuffix=vcs_cache/5cc8891a8c0a335a819bc8631c6ae22843fe9aaf3603be8dd7afbb418e7ff526"
SRC_URI += "git://github.com/moby/locker;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=281af2d563954745bea9d1487c965f24d30742fe;name=git_a03ea75a_0;destsuffix=vcs_cache/5549df51df50be0334c0cca67abc7ed6c0bd4fceee3f7bb56eb917b56bfe8644"
SRC_URI += "git://github.com/moby/sys;protocol=https;nobranch=1;tag=user/v0.3.0;shallow=1;rev=54475191138bd297c627eb1a59e1e54b953957f1;name=git_66165bb7_0;destsuffix=vcs_cache/8ea1faceda9bb3618c7b96f0749fcc6b4672432eef27c1f25c4bf631513501f2"
SRC_URI += "git://github.com/moby/sys;protocol=https;nobranch=1;tag=user/v0.4.0;shallow=1;rev=71f0c5ead442a11945a589a7aafd6ef5976fffc8;name=git_66165bb7_1;destsuffix=vcs_cache/1ea4d88317a39a40b500e6a8370c6c5f6d53cf5486d16925f6374042d8bf9896"
SRC_URI += "git://github.com/moby/sys;protocol=https;nobranch=1;tag=sequential/v0.6.0;shallow=1;rev=cafbe42351600ca9b363e220722f66d96f6e71f4;name=git_66165bb7_2;destsuffix=vcs_cache/c5c70dcea521c7e4cc66d0ca1ccdc1721b1a865780c1a1b9274ced410fa0553f"
SRC_URI += "git://github.com/moby/docker-image-spec;protocol=https;nobranch=1;tag=v1.3.1;shallow=1;rev=f1d00ebd2d6d6805170d5543dbca4b850f35f9af;name=git_00e28400_0;destsuffix=vcs_cache/7e0006fc710e13d8f5d4dd052be9861a4fd4562e1330ab6bdf94303f885e80da"
SRC_URI += "git://github.com/moby/ipvs;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=fe22ac585b3e22a969cbde61addd99ecd93ab22c;name=git_1cdc309a_0;destsuffix=vcs_cache/85ad978ede4c5144b2f8625692b46b54aabbc582a90819deed18a5ecee25930a"
SRC_URI += "git://github.com/moby/spdystream;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=77eb080123d208697674a07b74ceaf94c98bee8b;name=git_30522a60_0;destsuffix=vcs_cache/d7500df0fff4308611e91e5edf74d69178b53dccca9230c03beecb0a26d56124"
SRC_URI += "git://github.com/cilium/ebpf;protocol=https;nobranch=1;tag=v0.16.0;shallow=1;rev=061e86d8f5e99aa6f04d11a3807c8cacdbe7908b;name=git_1e891de1_0;destsuffix=vcs_cache/8e810695e5aecdedc82025b50fe217f458e95243dfd6f3a725e4be31bb89421b"
SRC_URI += "git://github.com/cilium/ebpf;protocol=https;nobranch=1;tag=v0.12.3;shallow=1;rev=1a65b78df6d9fbe88cd546d689e3e1af54227f23;name=git_1e891de1_1;destsuffix=vcs_cache/27b87ab64b375e62ae86b22936d61ab8e529b1e2573f57e1ff6c2c7962831fd3"
SRC_URI += "git://github.com/minio/c2goasm;protocol=https;branch=master;rev=36a3d3bbc4f3ec1eafcf7989776be7e84736ace9;name=git_14fb0335_0;destsuffix=vcs_cache/c771a7e488b145a938a24f50bcb884ac42f5c6258234cac239220927ceedd89d"
SRC_URI += "git://github.com/minio/sha256-simd;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=6096f891a77bfe490cbea7a424c821b5fdb92849;name=git_83ebb5d1_0;destsuffix=vcs_cache/3ac524d45cebe2855802574ee18fc2060f5f3a93ddd4d91a68f06877e8209b2f"
SRC_URI += "git://github.com/minio/sha256-simd;protocol=https;branch=master;rev=6de4475307716de15b286880ff321c9547086fdd;name=git_83ebb5d1_1;destsuffix=vcs_cache/f7483cb191fb530c8632db183ab89d999b4043d7002985ac12d052b1b5576a7b"
SRC_URI += "git://github.com/minio/highwayhash;protocol=https;nobranch=1;tag=v1.0.3;shallow=1;rev=030a8b332625f1501d534324055b1de810fe9233;name=git_46fe2f72_0;destsuffix=vcs_cache/13e55fb9c4891d9f755648df608529ee6f656107bacfc2a7dd12e6c5cc406fc2"
SRC_URI += "git://github.com/minio/minio-go;protocol=https;nobranch=1;tag=v7.0.91;shallow=1;rev=e8e8acaa6eaaefd79cea2d814b99a1217078bf3f;name=git_df6be319_0;destsuffix=vcs_cache/bc8f82bd1430bf02acd11930cc47020ff170fbf1ae9bb9d48ba406bb09fe9ef0"
SRC_URI += "git://github.com/minio/md5-simd;protocol=https;nobranch=1;tag=v1.1.2;shallow=1;rev=776275e0c9a74ceebbd50fe5c1d61b0c80c608df;name=git_5c4d2205_0;destsuffix=vcs_cache/397f359a68246a8b77921be7c65472b7e4a7c5a0c837e37d23051103bb3e7452"
SRC_URI += "git://github.com/minio/asm2plan9s;protocol=https;branch=master;rev=cdd76441f9d8c17c52d85f7657da5e8ce55f6083;name=git_39f5b609_0;destsuffix=vcs_cache/1d713c116cf07cde94fb7217feaa2a84754f66a5f9efcce083b8e323dc8d4639"
SRC_URI += "git://github.com/minio/blake2b-simd;protocol=https;branch=master;rev=3f5f724cb5b182a5c278d6d3d55b40e7f8c2efb4;name=git_37f6f35a_0;destsuffix=vcs_cache/a7172bc363c1aa8958685ed450a1cbfc85d03ce6d4613c888737d3596695372a"
SRC_URI += "git://github.com/minio/crc64nvme;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=0a53153041b96db22da97cd5a39090ec49ff8deb;name=git_a9bf449d_0;destsuffix=vcs_cache/99d22a47d7dc0b6d727f8bd46880ad0e2df5a2ea16c812830dbada8145e44c08"
SRC_URI += "git://github.com/containerd/zfs;protocol=https;nobranch=1;tag=v2.0.0-rc.0;shallow=1;rev=ac25940eac8d55a66eb07b5444da0bd98ab03f2b;name=git_62ef0568_0;destsuffix=vcs_cache/760d9b417b3649f7335a5437c1ddc3ce9a7d15632bcac73a7aabc3c145104a12"
SRC_URI += "git://github.com/containerd/console;protocol=https;nobranch=1;tag=v1.0.5;shallow=1;rev=c8d962180f543ac07c008ecc79a413406ea10c0b;name=git_7dc259a2_0;destsuffix=vcs_cache/a38aca664db28f607862e39301d2fd06b3c58312662cbd189f451215c3eb9894"
SRC_URI += "git://github.com/containerd/stargz-snapshotter;protocol=https;nobranch=1;tag=estargz/v0.17.0;shallow=1;rev=6f6aacb044960a0820a2d2954f5cbcc40b17fbdb;name=git_0c473532_0;destsuffix=vcs_cache/24a2796839044959bbf030bb3fd1172f4a49c4577d48199b4f7087d3952367d6"
SRC_URI += "git://github.com/containerd/plugin;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=19cedbf730bb9ae1c106c4d4df8492bb3d3fb8fd;name=git_0f1fd608_0;destsuffix=vcs_cache/f786b847c888d27ca5c517b566772c78216ed963d31d5119a32ebad7494855ea"
SRC_URI += "git://github.com/containerd/platforms;protocol=https;nobranch=1;tag=v1.0.0-rc.1;shallow=1;rev=e3566b8ff1994b8dc88bae5768d32830e0cd0cfd;name=git_96693f8e_0;destsuffix=vcs_cache/228b46280b8405c1f31e6357892b48ca503c9081ad55b4542dacec14a2cb0142"
SRC_URI += "git://github.com/containerd/cgroups;protocol=https;branch=main;rev=4cbc285b33272039927a0b066d3412799db8de14;name=git_85a7d8f6_0;destsuffix=vcs_cache/efdc4a4bcf92a38fdda6308b27a617183f63949243d144893e252eb1f81568c1"
SRC_URI += "git://github.com/containerd/cgroups;protocol=https;nobranch=1;tag=v3.0.5;shallow=1;rev=bce3c7e5fbf05852294998684293918fcb3f59dd;name=git_85a7d8f6_1;destsuffix=vcs_cache/5915036ca3b1a492afe8acd828fa11ac9556f8742822bb2a5b5c0050c65e4b9b"
SRC_URI += "git://github.com/containerd/cgroups;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=fe7323f622bc222e72473679f12a9089aeeda177;name=git_85a7d8f6_2;destsuffix=vcs_cache/b7eed1c3a5878daec84f43cd928ea64e16fc8f878586727e74e9ffe16c493abb"
SRC_URI += "git://github.com/containerd/nri;protocol=https;nobranch=1;tag=v0.8.0;shallow=1;rev=6d486acd3f7190d39f3b22490b59f7b7bb937b22;name=git_523249c2_0;destsuffix=vcs_cache/ba74adc9d7b3b1cfa448d53477902136dcbbecec853952e1cf60100155fb0f11"
SRC_URI += "git://github.com/containerd/log;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=0fc1e28871fdf2786e2cc51bbe4133db6547a199;name=git_b70b7359_0;destsuffix=vcs_cache/697be36d9b8a0eb34f8591d0f69b6d596e1e9341b5944ebf81ddd334b1907bc6"
SRC_URI += "git://github.com/containerd/otelttrpc;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=fa91cafe17adf59a0edc10650135dfd1dfb761c2;name=git_69c055ed_0;destsuffix=vcs_cache/c27d4a7087a7f4624cdf40c161f9707dbb90cd2d71159840f7c7b610260e9f24"
SRC_URI += "git://github.com/containerd/protobuild;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=168a8eac459f4c240ad54e1147f916056efd4c46;name=git_d8d48ca8_0;destsuffix=vcs_cache/7cfac99318ce6513d3f62c22baae310b7cc70562da7c000901e610a84fb83c70"
SRC_URI += "git://github.com/containerd/ttrpc;protocol=https;nobranch=1;tag=v1.2.7;shallow=1;rev=3b8c8b75577584e412043afb7b561193a4a47d2e;name=git_1deba031_0;destsuffix=vcs_cache/89e0e59ec2637becf69ff869326d460e7b3aa5c251d58a6d42981bc9c12360fd"
SRC_URI += "git://github.com/containerd/errdefs;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=4817405e4a3caeb7aee9dac68ed55339c59cb635;name=git_070120f7_0;destsuffix=vcs_cache/d9d1c9949e837f39205605237b656e944c7d0cd69e48a906fabdb6bebe0edb66"
SRC_URI += "git://github.com/containerd/imgcrypt;protocol=https;nobranch=1;tag=v1.1.11;shallow=1;rev=619fd33080b087702c72e93451a698c381d522d0;name=git_3f4049aa_0;destsuffix=vcs_cache/17da6d128306c148de29d6f7cdef54b559d793d7812b86e0c56c05df293474b5"
SRC_URI += "git://github.com/containerd/imgcrypt;protocol=https;nobranch=1;tag=v2.0.1;shallow=1;rev=c377ec98ff79ec9205eabf555ebd2ea784738c6c;name=git_3f4049aa_1;destsuffix=vcs_cache/cf07f49bde1cc9b1c042dfb7055d38c832cb69592e89521daa5ad46b367e047b"
SRC_URI += "git://github.com/containerd/fuse-overlayfs-snapshotter;protocol=https;nobranch=1;tag=v2.1.6;shallow=1;rev=8b4beab359e7d031f06783f60a34f2a9b7297ef5;name=git_923d9d3e_0;destsuffix=vcs_cache/d6462a2e449413e1dd1cf0af4cad9575f645aa1bdbde1b40c8a967fe3de781cf"
SRC_URI += "git://github.com/containerd/continuity;protocol=https;nobranch=1;tag=v0.4.5;shallow=1;rev=44e2adf7e9cd87330f3ad656e7a006ef91ed8c1e;name=git_b4d76115_0;destsuffix=vcs_cache/ef286b146362aa5da58f9ef4e88323a32e1ea45eda78c6d484875972ce0a81e0"
SRC_URI += "git://github.com/containerd/go-runc;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=df3c22d088ca919d1943efa8ae0cfc0514da0542;name=git_84c96084_0;destsuffix=vcs_cache/9044e9e240020298712a51a4db4736afc66d70b1870cf11cac73c0661be06842"
SRC_URI += "git://github.com/containerd/btrfs;protocol=https;nobranch=1;tag=v2.0.0;shallow=1;rev=f611cf12b33f43269574b2ad82bcb55e4d6f9982;name=git_afc7f4f6_0;destsuffix=vcs_cache/8a2ee3ce7d871ae06962c07984197acdfd6035091884c9db0791378ac0229823"
SRC_URI += "git://github.com/containerd/typeurl;protocol=https;nobranch=1;tag=v2.2.3;shallow=1;rev=5b047adad57d172afa9654c019fe65bf0540cc4d;name=git_94e812bb_0;destsuffix=vcs_cache/60bc9255cadbea28631b3293cd629cbe0b9a9cffb987712231cdc4f9dc75a2cb"
SRC_URI += "git://github.com/containerd/go-cni;protocol=https;nobranch=1;tag=v1.1.12;shallow=1;rev=f4736bb1d1b10293d9c484cbf79254a5efa1e020;name=git_cab8b449_0;destsuffix=vcs_cache/55070c8abada9a5bff1ca98847799f569e31b4d2f5e8f75fd9d55e51e55a9447"
SRC_URI += "git://github.com/containerd/containerd;protocol=https;nobranch=1;tag=v1.7.23;shallow=1;rev=57f17b0a6295a39009d861b89e3b3b87b005ca27;name=git_c2fd43eb_0;destsuffix=vcs_cache/a1d7484f71722c8333276b8a97578cdc7a2b04a9fe0f1e1054185b3fe55fcac0"
SRC_URI += "git://github.com/containerd/containerd;protocol=https;nobranch=1;tag=api/v1.9.0;shallow=1;rev=9033738f0870139e925d1afe05774a0387ebbabd;name=git_c2fd43eb_1;destsuffix=vcs_cache/a97ed33307fd5222dcceff22a874ffe5191127480c383c0f3595bc3c3e07e4b9"
SRC_URI += "git://github.com/containerd/fifo;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=151b205263c29d471e0d55c787d2ce9f5343fd46;name=git_6f3d1077_0;destsuffix=vcs_cache/e4b0152cde11b075ce8a8a9f0db77d54abb72ee1bab1036ab0c157b678aade47"
SRC_URI += "git://github.com/shengdoushi/base58;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=c5f44ca1af76fb63925d5fba8fa7b85870199839;name=git_5bf66d47_0;destsuffix=vcs_cache/035baa9ea735720820f8db8fcb1243512e712c7b053c7f9a90ae59535b86ff59"
SRC_URI += "git://github.com/bahlo/generic-list-go;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=89fb9b4cdfd4b5295651f72e9f892f1595b4d6c9;name=git_b593ddee_0;destsuffix=vcs_cache/336e9cb12ebc89503883ddd49ee8665a91a926bcd8ca8f0b61825251d069562a"
SRC_URI += "git://github.com/GoogleCloudPlatform/opentelemetry-operations-go;protocol=https;nobranch=1;tag=detectors/gcp/v1.26.0;shallow=1;rev=b3bdb19182d7e63f4a9d87e95223bb2f6ff94b15;name=git_2c8937f6_0;destsuffix=vcs_cache/6104f04c10a69440134a3077d94e7091acb7792dba37ef833832dcab14fc75dd"
SRC_URI += "git://github.com/GoogleCloudPlatform/opentelemetry-operations-go;protocol=https;nobranch=1;tag=detectors/gcp/v1.25.0;shallow=1;rev=d637680bde0cb1e4d06117621478e5ac281ff556;name=git_2c8937f6_1;destsuffix=vcs_cache/be287d0c5f0cf7c8552c99e2b8be67e46cf1c24c93310324e134c8c36f9821e9"
SRC_URI += "git://github.com/mr-tron/base58;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=cd0e5141f51dfcadb8311fd8e495eb11126a8010;name=git_2382a1fa_0;destsuffix=vcs_cache/14d7e3112c3f11ef311960c71847e06e31560d98c3f1564a4855ea1cffa55234"
SRC_URI += "git://github.com/mr-tron/base58;protocol=https;nobranch=1;tag=v1.1.2;shallow=1;rev=d504ab2e22d97cb9f10b1d146a1e6a063f4a5f43;name=git_2382a1fa_1;destsuffix=vcs_cache/3369e156e7fc62c8176e0235366ab60f1073929fd2791dd086e105fbb96021c3"
SRC_URI += "git://github.com/modern-go/concurrent;protocol=https;branch=master;rev=bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94;name=git_2bbaef4c_0;destsuffix=vcs_cache/09a996e0549b43adaeb1c40a8dc339563ed1a8dcc831e5cb074441a30d502d23"
SRC_URI += "git://github.com/modern-go/concurrent;protocol=https;branch=master;rev=e0a39a4cb4216ea8db28e22a69f4ec25610d513a;name=git_2bbaef4c_1;destsuffix=vcs_cache/720429d876e0c333185ab19ebc83ff389edac9e5b459d07c74e7a18cae1c5b7a"
SRC_URI += "git://github.com/modern-go/reflect2;protocol=https;nobranch=1;tag=v1.0.2;shallow=1;rev=2b33151c9bbc5231aea69b8861c540102b087070;name=git_975c3d3f_0;destsuffix=vcs_cache/21d04a5177cfeef214577aa3b5c90454aed60c2184b77a0fffa7922aa843666a"
SRC_URI += "git://github.com/modern-go/reflect2;protocol=https;branch=master;rev=35a7c28c31ee079903db043180532306a621943a;name=git_975c3d3f_1;destsuffix=vcs_cache/b0f41ee692517b4a6786fb48ce9d49e532c4f77cac6cacadd6ff49dcb7325931"
SRC_URI += "git://github.com/modern-go/reflect2;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=94122c33edd36123c84d5368cfb2b69df93a0ec8;name=git_975c3d3f_2;destsuffix=vcs_cache/5f837a9261606850c86cb464d91848cb7e2e334be529f812891c080cfd881b9a"
SRC_URI += "git://github.com/xiang90/probing;protocol=https;branch=master;rev=43a291ad63a214a207fefbf03c7d9d78b703162b;name=git_dd17c416_0;destsuffix=vcs_cache/0d47dfcb60edac5534bead1b8901c3c729078f9a10fe384a43d78672a2725866"
SRC_URI += "git://github.com/xiang90/probing;protocol=https;branch=master;rev=a49e3df8f510ee8b42e68345ca4636dbb161bd0a;name=git_dd17c416_1;destsuffix=vcs_cache/d2061d68c832996bd0e67cf52556c9e8923750fb34190a39eba1a85e96d63c26"
SRC_URI += "git://github.com/sirupsen/logrus;protocol=https;nobranch=1;tag=v1.7.0;shallow=1;rev=6699a89a232f3db797f2e280639854bbc4b89725;name=git_02061634_0;destsuffix=vcs_cache/81335b2629d8436e03cd7a0110567d20301cf6fd100cc1723a57a0678e9a4ec8"
SRC_URI += "git://github.com/sirupsen/logrus;protocol=https;nobranch=1;tag=v1.8.1;shallow=1;rev=bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b;name=git_02061634_1;destsuffix=vcs_cache/1389673f985797078534cc41d2be170c341c9dc3ceff65dd417e2583d488159b"
SRC_URI += "git://github.com/sirupsen/logrus;protocol=https;nobranch=1;tag=v1.9.3;shallow=1;rev=d40e25cd45ed9c6b2b66e6b97573a0413e4c23bd;name=git_02061634_2;destsuffix=vcs_cache/a1230aee5f8f1a866199cbec636d1525e00a9b13cf2fe0023dcf6b874c525014"
SRC_URI += "git://github.com/containernetworking/cni;protocol=https;nobranch=1;tag=v1.1.2;shallow=1;rev=3363d143688bb83ca18489ac8b9dc204c1d49c4a;name=git_4ce5ee0d_0;destsuffix=vcs_cache/87a00205ccab1273bc857f73790e9f3b6992245964f22970be973875c3df09e3"
SRC_URI += "git://github.com/containernetworking/cni;protocol=https;nobranch=1;tag=v1.3.0;shallow=1;rev=a28faab92684aed3af64d5085733c34550ce9877;name=git_4ce5ee0d_1;destsuffix=vcs_cache/6fa30880d920c48b1630347223a375694a450629a1037b649907b1ab1f2f237a"
SRC_URI += "git://github.com/containernetworking/plugins;protocol=https;nobranch=1;tag=v1.7.1;shallow=1;rev=a5d507e2b884d8bd6a001c9e5a9118113ffef444;name=git_4541537c_0;destsuffix=vcs_cache/2e15cdcec7dd8f067163f45e43158d2400226e1aae480e0e1ca8a35f9dda829b"
SRC_URI += "git://github.com/mikioh/tcpopt;protocol=https;branch=master;rev=172688c1accceb1c8699343c22838f55e4b662ca;name=git_a47a665e_0;destsuffix=vcs_cache/af90ca34a7ae8e7eb9302780266e78a7f94198251ca6982770d866368b6680b0"
SRC_URI += "git://github.com/mikioh/tcp;protocol=https;branch=master;rev=803a9b46060c1d8b9ee03ff0386b87c179f50227;name=git_394fa7c1_0;destsuffix=vcs_cache/b5018b1632de9497f73466e6e74890e66ea73426b1654ecabffc283ddc76d241"
SRC_URI += "git://github.com/mikioh/ipaddr;protocol=https;branch=master;rev=d465c8ab672111787b24b8f03326449059a4aa33;name=git_d18a58d7_0;destsuffix=vcs_cache/60b561c79969dff0b810b19930e0f41d48404a26b5354e19527f2a78cc3d5b06"
SRC_URI += "git://github.com/mikioh/tcpinfo;protocol=https;branch=master;rev=30a79bb1804bc47fa7fe29928c9109f368792a9e;name=git_70aaa852_0;destsuffix=vcs_cache/4a5614e584aeea02cac795328a3831dc0f25b929872390eac1db8d3362c95929"
SRC_URI += "git://github.com/pmezard/go-difflib;protocol=https;branch=master;rev=5d4384ee4fb2527b0a1256a821ebfc92f91efefc;name=git_b66720d7_0;destsuffix=vcs_cache/542a02198867d48986449e0f3353a6afa6fd53ac0a9f07be5882207092512174"
SRC_URI += "git://github.com/pmezard/go-difflib;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=792786c7400a136282c1664665ae0a8db921c6c2;name=git_b66720d7_1;destsuffix=vcs_cache/c04ad296d2e3203fda8b7ca96feaca21b20b3b7441e33c7d67cda029ea61ab4c"
SRC_URI += "git://github.com/JohnCGriffin/overflow;protocol=https;branch=master;rev=46fa312c352cdb9517817d04f2067d49f418e332;name=git_f7f1a882_0;destsuffix=vcs_cache/dd996835062d34e4037945d1eae5fbc030d54b829d729b7822cc08c659132ea2"
SRC_URI += "git://github.com/petermattis/goid;protocol=https;branch=master;rev=4fcff4a6cae7cd8fdaeeaa8bb87443eda9dec107;name=git_8e87b253_0;destsuffix=vcs_cache/28fe23d2ffb5463ca74406309be8d07f56f5b77b8f151b1f3d5a8edf6d6ae9be"
SRC_URI += "git://github.com/go-openapi/jsonreference;protocol=https;nobranch=1;tag=v0.20.2;shallow=1;rev=1f158e563669961b8e54817e3ea57978d439ffff;name=git_2d19bf8f_0;destsuffix=vcs_cache/2b1f5e4abef192d562993c04982e0222c673c03ef641b68a8e86ea31eae7b8e4"
SRC_URI += "git://github.com/go-openapi/jsonreference;protocol=https;nobranch=1;tag=v0.21.1;shallow=1;rev=6973d2f8636af9d72c2d4b37d6779cf3699afe8d;name=git_2d19bf8f_1;destsuffix=vcs_cache/32252b7288576cccb8099d9d6957d28ee21d9f4f78e06340d819346e090be49b"
SRC_URI += "git://github.com/go-openapi/jsonreference;protocol=https;nobranch=1;tag=v0.21.0;shallow=1;rev=c5fa756d84ccb15425cb8664d142ad550fe58b1b;name=git_2d19bf8f_2;destsuffix=vcs_cache/359a0a2bd5b2e27fa39b50aa5bc4877d0e7eb71d87351cbb4add221a16567f13"
SRC_URI += "git://github.com/go-openapi/swag;protocol=https;nobranch=1;tag=stringutils/v0.24.0;shallow=1;rev=04b65d3aff180750a2ad252c8b3da549a1c02dfa;name=git_8c33ed8b_0;destsuffix=vcs_cache/94e3966ec332dabf18fd4edbe42a9d1441527fc63864651167313e4fbfe78d57"
SRC_URI += "git://github.com/go-openapi/swag;protocol=https;nobranch=1;tag=v0.24.1;shallow=1;rev=3b4039d0b89a2722b0a6b96e5cce47505e0dd184;name=git_8c33ed8b_1;destsuffix=vcs_cache/451aa60797eedc0c6c6be636b34daa2e4879e7a6b036c164737518362fb3493e"
SRC_URI += "git://github.com/go-openapi/swag;protocol=https;nobranch=1;tag=v0.23.0;shallow=1;rev=53e32e82f758c8e884819330a87aef294ff10c1f;name=git_8c33ed8b_2;destsuffix=vcs_cache/c9cae28160c75921d2cb4ab3d1f827a75eff410d92b10dbdb59ee96851a11ee6"
SRC_URI += "git://github.com/go-openapi/jsonpointer;protocol=https;nobranch=1;tag=v0.21.0;shallow=1;rev=8b546b950409bd7b131488a88613339cd8937b7f;name=git_a3358eda_0;destsuffix=vcs_cache/eaab28eda54bc7b1675e90e5ebeb79d02f5b4b71c2430301297b1b41c648226c"
SRC_URI += "git://github.com/go-openapi/jsonpointer;protocol=https;nobranch=1;tag=v0.22.0;shallow=1;rev=ea421064bbd1a1dc07bf3cecd02a049066f02146;name=git_a3358eda_1;destsuffix=vcs_cache/07a3b6466e7ec1b616693fe05543cd37ed1685e7ac95219768f8bbee4c6991fd"
SRC_URI += "git://github.com/lyft/protoc-gen-star;protocol=https;nobranch=1;tag=v0.6.1;shallow=1;rev=1635a6baa3f5803596cca67b641e8ee46d12ecca;name=git_6c3dbd55_0;destsuffix=vcs_cache/954e002c0ca53e9a63bc41b7a47e67ce7c07c452bcac5686cde096f3f8c15e17"
SRC_URI += "git://github.com/lyft/protoc-gen-star;protocol=https;branch=master;rev=496ad1ac90a4573d8b89f09e6ef5f8e25dd4adb8;name=git_6c3dbd55_1;destsuffix=vcs_cache/1ca7403dedc7c0fa8b51d7953d5122425b70b3a2d16c061990848ffbc3e2a376"
SRC_URI += "git://github.com/lyft/protoc-gen-star;protocol=https;nobranch=1;tag=v2.0.3;shallow=1;rev=c5d8db18cd90807e53e5fa5f8bd8e4eb58570c30;name=git_6c3dbd55_2;destsuffix=vcs_cache/3b4d4bc0c19fa6a3e89dd96803627ae2fafd4fc0e96ac3f0244f6cdd349b5b20"
SRC_URI += "git://github.com/lyft/protoc-gen-star;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=d186061f0cdc717ce813e52d91c29130e2d1a6bc;name=git_6c3dbd55_3;destsuffix=vcs_cache/8960bb77696761b7c48866b91ff764e35b341fbdf7208d92d844683d403c2b13"
SRC_URI += "git://github.com/sergi/go-diff;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=0a651d56613f9de4bed8b9c4769b776ef168bfca;name=git_e1fff811_0;destsuffix=vcs_cache/86106c4efc271d1677439593b9fe785d3c91b004e3bcf98a1c4ad43ed2a45f1c"
SRC_URI += "git://github.com/sergi/go-diff;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=1744e2970ca51c86172c8190fadad617561ed6e7;name=git_e1fff811_1;destsuffix=vcs_cache/344874ac4867ac9c8ed33411004cbbaa6d0209b978da7ba178f92e0f1fb63da8"
SRC_URI += "git://github.com/docopt/docopt-go;protocol=https;branch=master;rev=ee0de3bc6815ee19d4a46c7eb90f829db0e014b1;name=git_fd9895cf_0;destsuffix=vcs_cache/751de0440af708f4965069ceb6bd0ea4be3936767177b3370285c4be76b4c1b7"
SRC_URI += "git://github.com/crackcomm/go-gitignore;protocol=https;branch=master;rev=7843d2ba8fdf5e4a4930032287f600cbb3f41fad;name=git_0b39fa94_0;destsuffix=vcs_cache/749e0ab358801ca7a35880e9a38c392d5611c47b90fa4c3bcd9cd33b61c78765"
SRC_URI += "git://github.com/ulikunitz/xz;protocol=https;nobranch=1;tag=v0.5.12;shallow=1;rev=4f11dce79b9977ec2976a978d6c594ea1c23cf29;name=git_0eda9f24_0;destsuffix=vcs_cache/6893ec11e21a25b31cb8083b8131e91054ca2975087e9f827acce2f13da916ef"
SRC_URI += "git://github.com/kubernetes-sigs/cli-utils;protocol=https;nobranch=1;tag=v0.37.2;shallow=1;rev=0a569f59bebe08eb86f0fb530741343b10e01249;name=git_ca836ae2_0;destsuffix=vcs_cache/bff3525ef45b568078e9c3abd8ea25c9ffefe690ddc4804aeff00414847d9d3b"
SRC_URI += "git://github.com/kubernetes-sigs/apiserver-network-proxy;protocol=https;nobranch=1;tag=konnectivity-client/v0.33.0;shallow=1;rev=37140650c57cbe11fad4f01ce6ee095dc74788ef;name=git_b3704b90_0;destsuffix=vcs_cache/4978430bfa566b2b400f2a2df7673a8718c5a6b8848d7939a0d2450cd7ce6da3"
SRC_URI += "git://github.com/kubernetes-sigs/kustomize;protocol=https;nobranch=1;tag=kustomize/v5.7.1;shallow=1;rev=168971a50110fc90dfbd1327245e7aabe5c07e8f;name=git_e39894d8_0;destsuffix=vcs_cache/560052c6e8e1e43719507c1722267c9ab89b2acbd58bb5737b0405c54cd0624a"
SRC_URI += "git://github.com/kubernetes-sigs/kustomize;protocol=https;nobranch=1;tag=cmd/config/v0.20.1;shallow=1;rev=792b241a4a13ae4cfae171e2665ff44607c99431;name=git_e39894d8_1;destsuffix=vcs_cache/cd5046b6e9788c37d63249f1f0e4efc1d3556bd8126aeeea71926e0aed56ab74"
SRC_URI += "git://github.com/kubernetes-sigs/kustomize;protocol=https;nobranch=1;tag=kyaml/v0.20.1;shallow=1;rev=87f462af25615bb5b83f9010aa6d4b46946bf0d6;name=git_e39894d8_2;destsuffix=vcs_cache/3f7955ef663154dde14b5915ce642a2a6eb52cc7cf07cf8d2e1ec2fbecdd3a3b"
SRC_URI += "git://github.com/kubernetes-sigs/kustomize;protocol=https;nobranch=1;tag=api/v0.20.1;shallow=1;rev=8b42cd9918f226dca98703088ba8af0b320df8a3;name=git_e39894d8_3;destsuffix=vcs_cache/31556c12be78f3355ccbeb69d43c300517c7ca9054bd4dba7b5e1588e3eef8c2"
SRC_URI += "git://github.com/kubernetes-sigs/randfill;protocol=https;nobranch=1;tag=v1.0.0;shallow=1;rev=1b6128de8ceabf6d20c4d81d770bf439c1494960;name=git_8dcba602_0;destsuffix=vcs_cache/64598686d0dc1d499a7860fd9d58ec01370c353b03b4e9377d668d615af13dc6"
SRC_URI += "git://github.com/kubernetes-sigs/yaml;protocol=https;nobranch=1;tag=v1.6.0;shallow=1;rev=048d724aca2d37ddb5b03c90b5b4550a3a48766d;name=git_a731a2aa_0;destsuffix=vcs_cache/289ff1bc36e2275d8f58e8de4b1e27b0cabf0d8bfcb2058f040045490a48f9fc"
SRC_URI += "git://github.com/kubernetes-sigs/structured-merge-diff;protocol=https;nobranch=1;tag=v4.6.0;shallow=1;rev=0ee1c6563b9c1026100560fef64164bde5fabbfd;name=git_68ce0dfe_0;destsuffix=vcs_cache/81d83ddafdea91b3ca45b61ae19d3ce9c163389fa42f1ab0ccef266a73d6a686"
SRC_URI += "git://github.com/kubernetes-sigs/structured-merge-diff;protocol=https;nobranch=1;tag=v6.3.0;shallow=1;rev=d3e4dc6f630e155d2fbfdac465eb0da8a737245f;name=git_68ce0dfe_1;destsuffix=vcs_cache/d66ac94ec61bd2ff1830ecd910c5ba59307d9987a0b5e8bc4d43eed2a9670e03"
SRC_URI += "git://github.com/kubernetes-sigs/json;protocol=https;branch=main;rev=2d320260d730f3842fef7b08d9a807bdbc617824;name=git_5671cdf3_0;destsuffix=vcs_cache/464b6144a42f16f67617e6ae70c780fa6b3663ca909d664a33af0b61e7456764"
SRC_URI += "git://github.com/kubernetes-sigs/knftables;protocol=https;nobranch=1;tag=v0.0.18;shallow=1;rev=007fc6b3ddf2de86708d11af4d4bdaac1c68ea5f;name=git_035a4e7e_0;destsuffix=vcs_cache/e1a6f7a503b540d2cba78ffaa72a5e8807399224b9c0095c37b5c1d0478c1084"
SRC_URI += "git://gitlab.com/cznic/sqlite;protocol=https;nobranch=1;tag=v1.18.1;shallow=1;rev=282bdb12f8ce48a34b4b768863c4e44c310c4bd8;name=git_348f6c58_0;destsuffix=vcs_cache/fdbe6617375de1a9a66fc632c8069afd20f384dd8b3a07c8c6080f42b28eda0e"
SRC_URI += "git://gitlab.com/cznic/strutil;protocol=https;nobranch=1;tag=v1.1.3;shallow=1;rev=bba0c72b66bb9ced2dfd2ee521b7f16b2cbb39fa;name=git_151fa26a_0;destsuffix=vcs_cache/1e99b09442b6c2019e0e7b598422bc67c9cf9a8b9676835db4d3f047b87c4f85"
SRC_URI += "git://gitlab.com/cznic/strutil;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=dbc88fcb642d7337518b6f7cc925fedd5436f88f;name=git_151fa26a_1;destsuffix=vcs_cache/acc879212d0e15bff2ae46119565975264d41c2a593011ad4e247638924e3c0c"
SRC_URI += "git://gitlab.com/cznic/memory;protocol=https;nobranch=1;tag=v1.1.1;shallow=1;rev=5b777f1f9f35b7508d29ba7b1c27d6e91aef45a0;name=git_5a4efa70_0;destsuffix=vcs_cache/e8852b19512bea7e443771c8e3ef2fd67d33e0119f4be216435cd601a3cc7d7a"
SRC_URI += "git://gitlab.com/cznic/memory;protocol=https;nobranch=1;tag=v1.2.0;shallow=1;rev=8b760a0d43c86c8e75a53ace32ed88bb6f1a1c35;name=git_5a4efa70_1;destsuffix=vcs_cache/0e7bc3e877e7976ad1ed92272748c02849fbcd42eb70acd17247ec4fe038e835"
SRC_URI += "git://gitlab.com/cznic/memory;protocol=https;nobranch=1;tag=v1.2.1;shallow=1;rev=dc4770e3c31974ecc672914707c2dc6c08411ae7;name=git_5a4efa70_2;destsuffix=vcs_cache/4fd7bd293a9eab4597434da0680f62810c5bb927585c49747b3f354d9427972d"
SRC_URI += "git://gitlab.com/cznic/libc;protocol=https;nobranch=1;tag=v1.16.1;shallow=1;rev=1ae9b8378313bdb18a3dd4d7b4651f8e55229a73;name=git_f682a46d_0;destsuffix=vcs_cache/0481cbc237b34be2a7bcaadbc867f56f2afefa650eb1ded68d6add0edb6aeccb"
SRC_URI += "git://gitlab.com/cznic/libc;protocol=https;nobranch=1;tag=v3.16.8;shallow=1;rev=2d5f3daf273be436db467182ab43355792a51956;name=git_f682a46d_1;destsuffix=vcs_cache/d79d0847682efd4711f36f69807e2368efed591926683bad587d39806c7381ac"
SRC_URI += "git://gitlab.com/cznic/libc;protocol=https;nobranch=1;tag=v1.16.0;shallow=1;rev=4c18ce72c3127ae18cbb67e24e85fb2f2124c7b7;name=git_f682a46d_2;destsuffix=vcs_cache/7a8f68de5f49b5088a510c30ef71338e2b6445cae74113140f1a098e260f0532"
SRC_URI += "git://gitlab.com/cznic/libc;protocol=https;nobranch=1;tag=v1.17.0;shallow=1;rev=78295183964581952b5da7f8ddb66d412fc5ada5;name=git_f682a46d_3;destsuffix=vcs_cache/c2b55640c9a2367c1f176d4048a5a6bfeeb880bff73d2a05c0df11ae419edf4b"
SRC_URI += "git://gitlab.com/cznic/libc;protocol=https;nobranch=1;tag=v1.16.19;shallow=1;rev=81b222527ac4fd4a244f128eb9fd561aee246ab3;name=git_f682a46d_4;destsuffix=vcs_cache/f6e8081e351e38f874cdc07a3dd854763131e37f7515505659187200cf40090c"
SRC_URI += "git://gitlab.com/cznic/libc;protocol=https;nobranch=1;tag=v1.17.1;shallow=1;rev=8cd9d82dd650cd2393b55a013e35b9c260f59f99;name=git_f682a46d_5;destsuffix=vcs_cache/b2c848296a4ac5d8b4094420f44f97719595fa3b0c963a304c11de5388aeabdf"
SRC_URI += "git://gitlab.com/cznic/libc;protocol=https;nobranch=1;tag=v1.16.17;shallow=1;rev=f404eb82c2a901f2b05c97599f0a31f08d0f0844;name=git_f682a46d_6;destsuffix=vcs_cache/a0c1b5a4a42a29909f00b88cf609894972a75f968839843180738f2f45580705"
SRC_URI += "git://gitlab.com/cznic/cc;protocol=https;nobranch=1;tag=v3.36.2;shallow=1;rev=43fb8b35d15784602eefacfec76f1c9eb2d13969;name=git_214c7c8b_0;destsuffix=vcs_cache/9856a35d3434f01c2bbdbeb16dd784a74a6bbd86784663eaeae59c65e6b97256"
SRC_URI += "git://gitlab.com/cznic/cc;protocol=https;nobranch=1;tag=v3.36.0;shallow=1;rev=474e819c37bc6c574a37590dc60f3789b5129749;name=git_214c7c8b_1;destsuffix=vcs_cache/b02fe8bc03c5e851593620d531755ef0ae8da67c09aa2c59c65f6b04200d4617"
SRC_URI += "git://gitlab.com/cznic/cc;protocol=https;nobranch=1;tag=v3.36.3;shallow=1;rev=c47a4b1f7491b7d1d01ba69884c482fca9c398ba;name=git_214c7c8b_2;destsuffix=vcs_cache/ed8414d1a6c19dbaf975879262386654b5494c37de1fc0294b960a41f87d9422"
SRC_URI += "git://gitlab.com/cznic/mathutil;protocol=https;nobranch=1;tag=v1.2.2;shallow=1;rev=19b10d78032b3c42e8b92557729019b39392a1f6;name=git_6d5eb6f7_0;destsuffix=vcs_cache/251ee1101b335908928139f9ae781bcf1d91572691ad2f88ee1c99eec731c1b7"
SRC_URI += "git://gitlab.com/cznic/mathutil;protocol=https;nobranch=1;tag=v1.5.0;shallow=1;rev=b13e5b5643328f15fd2fcedc85f647f0d8f9180f;name=git_6d5eb6f7_1;destsuffix=vcs_cache/0e18bbd7b03178cacced97e2025b9141e301accc33d76248ac1cd1176c27e3d5"
SRC_URI += "git://gitlab.com/cznic/mathutil;protocol=https;nobranch=1;tag=v1.4.1;shallow=1;rev=b92365762bc1283de2770db8dc21590a3c1fbacb;name=git_6d5eb6f7_2;destsuffix=vcs_cache/60fe669ee9b827300d36b7b9381e180f3d6ea4bfd24a295446f9ca338a4dd604"
SRC_URI += "git://gitlab.com/cznic/ccgo;protocol=https;nobranch=1;tag=v3.16.4;shallow=1;rev=23b1473dade28e1e536856449f4320963bf93796;name=git_d9964fb9_0;destsuffix=vcs_cache/557efb4651615324e327d9049783b8afeaca848273bdcc3d36643ede00658fd2"
SRC_URI += "git://gitlab.com/cznic/ccgo;protocol=https;nobranch=1;tag=v3.16.9;shallow=1;rev=2a0bc4c905963c72b8b7089ad6de3100810e86da;name=git_d9964fb9_1;destsuffix=vcs_cache/3fd049f49fe66f8bab0c14f687a55d5816f5dacb0249c41047777bfd527e0f49"
SRC_URI += "git://gitlab.com/cznic/ccgo;protocol=https;nobranch=1;tag=v3.36.0;shallow=1;rev=41399a37e894f6a0a3f9032d7a1786c84f19d438;name=git_d9964fb9_2;destsuffix=vcs_cache/6712f69bc486743bc43b0c86f2e3dd6915cb0beccb1446fa30e821f2dd169c23"
SRC_URI += "git://gitlab.com/cznic/ccgo;protocol=https;nobranch=1;tag=v3.16.6;shallow=1;rev=545dce73089df56b530efd672cb95837b8c61557;name=git_d9964fb9_3;destsuffix=vcs_cache/ff506f3effa69bf86cc29cbb04978c325b9c60a267546c2f4d62ab7a9ed2c281"
SRC_URI += "git://gitlab.com/cznic/ccgo;protocol=https;nobranch=1;tag=v3.16.8;shallow=1;rev=ae303416a5afb0976bfcfcea693eac569b9a9718;name=git_d9964fb9_4;destsuffix=vcs_cache/1feeb8567194fd3b5f8dc49dde85eb2f375c1eb1d972c93b567c2892504abe0f"
SRC_URI += "git://gitlab.com/cznic/ccgo;protocol=https;nobranch=1;tag=v3.36.0;shallow=1;rev=bc99d88307be67553201c58a1d38665cec1835ea;name=git_d9964fb9_5;destsuffix=vcs_cache/f6aec29ba268f3671d7ae97ddd1d945f07bdc2a3a2a380e470983fd85bccce1e"
SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;tag=v0.12.0;shallow=1;rev=1616a7fa5fe23b54fee0cc3dd6d0bd48abc19914;name=git_e2f6844a_0;destsuffix=vcs_cache/0892c89bc686df08eb12440ea6150587e81a2a64d649aa806391f724242e39d9"
SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;tag=v0.9.0;shallow=1;rev=1ce61fe87e0e5dd90752d2b6c5972f9b6918e77c;name=git_e2f6844a_1;destsuffix=vcs_cache/ee6cc7ed0b5163f469fb16f28670cd552975136162b0b78e37c241b49a2ab45a"
SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=2c09566ef13fb5556401ddff3c53c3dbc2a42dac;name=git_e2f6844a_2;destsuffix=vcs_cache/8716990bce5a795ed7217a8414cde3a2264737d777a6c6d672af4f144ebc54d7"
SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=555d28b269f0569763d25dbe1a237ae74c6bcc82;name=git_e2f6844a_3;destsuffix=vcs_cache/cc2d1a6d2eaa513064d93e0e7d68799f6f3b9e55afaad10db65a954e84930405"
SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=85acf8d2951cb2a3bde7632f9ff273ef0379bcbd;name=git_e2f6844a_4;destsuffix=vcs_cache/b7d0032a2b35ad2b155634b64567be8ddff4d50ec5f5b11d4d6dbcd5de0d4a04"
SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=883aed519795b30de35e6bc28ec8f681494afa87;name=git_e2f6844a_5;destsuffix=vcs_cache/2156f2e87ae87986a90bbc7e90f96dbadd6c75e5a5cf58374156774aa149e6a8"
SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=9d24e82272b4f38b78bc8cff74fa936d31ccd8ef;name=git_e2f6844a_6;destsuffix=vcs_cache/a7bf7a0a97321984eb1263f5f8bcb9a99d0c8c477cc52ef001a84cf9d22bdc60"
SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=f3bd1da661afd6357b957af27c50ccdb248b7dd3;name=git_e2f6844a_7;destsuffix=vcs_cache/99c0566fe2c2c74fd06b335e0f79a1dd361c2d21e5f34e7f893379b51f71cbde"
SRC_URI += "git://go.googlesource.com/time;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=fbb02b2291d28baffd63558aa44b4b56f178d650;name=git_e2f6844a_8;destsuffix=vcs_cache/81ecc17ec6f9ce3c24c81bc47c225d106aa16cc8682f661c5bd5121645a5d02c"
SRC_URI += "git://go.googlesource.com/term;protocol=https;nobranch=1;tag=v0.30.0;shallow=1;rev=04218fdaf78fa213d4e82c988184a250f6c354c2;name=git_2e975dd2_0;destsuffix=vcs_cache/230a9ad5970c535aa1950c73435327a9cb9d5e83503624d5c6e16e85e01f577a"
SRC_URI += "git://go.googlesource.com/term;protocol=https;nobranch=1;tag=v0.28.0;shallow=1;rev=40b02d69cd8f2efc8aeb262071f74fb4319b6661;name=git_2e975dd2_1;destsuffix=vcs_cache/c7ab826908bfbeedd10778ec2f9e99bf8c4f17dc2307f3f8b629c3c57e3aec5e"
SRC_URI += "git://go.googlesource.com/term;protocol=https;nobranch=1;tag=v0.34.0;shallow=1;rev=a35244d18d7756b12deca31a518c0fa1327d050a;name=git_2e975dd2_2;destsuffix=vcs_cache/4068bd62e633557f5121f1150b74cc041354352d709c0b6f81073ee6de3b795a"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=0694c2d4d067f97ebef574d63a763ee8ab559da7;name=git_352eeab4_0;destsuffix=vcs_cache/070e6e260472315f6ba6e238626e285d84a43336630a1d16b3b36bdf4646aa6c"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=33d19683fad8d833d2299173c7bf8ced0f102764;name=git_352eeab4_1;destsuffix=vcs_cache/423eb15a04e4454e890f30e4c0dac1d9e77fccc49b3362364c35587a12fdb6fb"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=35266b937fa69456d24ed72a04d75eb6857f7d52;name=git_352eeab4_2;destsuffix=vcs_cache/960b7c9d4ddfbefd45a6d48297a906f4b0ccbe3c3383ef05023e54917ade5ef4"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=4410531fe0302c24ddced794ec5760f25dd22066;name=git_352eeab4_3;destsuffix=vcs_cache/e45e91f63ecabed6e2fc5694479f5815a6f9f194ed9cc6de3b82f138849c49b8"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v0.14.0;shallow=1;rev=445ab0e75e6df9b6a4d3d5437bda2a7cac74eb72;name=git_352eeab4_4;destsuffix=vcs_cache/c1bc0401104ed0700b972d3239cff34e5c25c71a585fdf192166e5fffd86d2b5"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=58c23975cae11f062d4b3b0c143fe248faac195d;name=git_352eeab4_5;destsuffix=vcs_cache/7da3c11cba2a787aaee93ffb1c3df9569f261518e0756d12397899de67cd4ba4"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=6944b10bf41077a939a283aba62be2c1a676d8ef;name=git_352eeab4_6;destsuffix=vcs_cache/f716d31e61736a881b3a3455606db76d06070f46197ac4854fee481664779d19"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=69e4b8554b2a817a1f0015867f0858d02801f0f5;name=git_352eeab4_7;destsuffix=vcs_cache/8aa6a4103a642027318e71c34cf96f36841d3b0f2207784428d262c8196a1d9a"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=723b81ca9867ff50b0503a48989028b6133eff47;name=git_352eeab4_8;destsuffix=vcs_cache/b8ab23f0dae178e32879b632dbe6bdafa68d2adbca0cdab246a1a191861ae41c"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=775e3b0c77b940684efe0f152b6075671018854f;name=git_352eeab4_9;destsuffix=vcs_cache/62e6da8160fab0b85476f6635c9b7a91cd8d2ffcf3e378ccae364f35a52f8d04"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=a66eb6448b8d7557efb0c974c8d4d72085371c58;name=git_352eeab4_10;destsuffix=vcs_cache/a2dc1025c2f6f5aea92e4b16ad5652ef8e42828b81996d69f78f6e748e4353d3"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=c13761719519258ff9c1a8b224f63d6e29b63d27;name=git_352eeab4_11;destsuffix=vcs_cache/b37f0eab9e6f594ee0606e7133ca4097ac11bd4ae233cace2435f40c5b0c92ad"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=c73c2afc3b812cdd6385de5a50616511c4a3d458;name=git_352eeab4_12;destsuffix=vcs_cache/b102b22127c1245c8a36117c04c695c96bab07b8625fa6ea6acb0817661b53d5"
SRC_URI += "git://go.googlesource.com/image;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=cff245a6509b8c4de022d0d5b9037c503c5989d6;name=git_352eeab4_13;destsuffix=vcs_cache/0d317c9aa4b4b4dfde8410acf4c7f3d1abb7f9c1c2a2b87b529fc268e6850aaa"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=034126e5016b48119ac2b12b5f4d3ae7f2a9eaa0;name=git_13df7481_0;destsuffix=vcs_cache/ccf36b46cf0ea9db00e8eee78451e8ec194df1878864b880291d5568879ef46b"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=0f08993efd8a8ec67e75bcccf86b0e1569b0ab0a;name=git_13df7481_1;destsuffix=vcs_cache/d990221fa3e13bf5d553a63ee9c6d1230da3203e25f35da86e44fbcbdb37fbcc"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=3bfbaada29be620417d472f349d55056286b2119;name=git_13df7481_2;destsuffix=vcs_cache/6cde361d88de4dffd488cfa918dff8f19a8bfc876e3bcb0d3ba469b9838b74a5"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.21.0;shallow=1;rev=46a3137daeac7bd5e64dc5971191e4a7207e6d89;name=git_13df7481_3;destsuffix=vcs_cache/b353f336a8275795b8f764cbc880dab145e59c77d2680640cb8b8406d84d13ca"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=49f84bccfd3469cb3095201f7855641bcc8eb49a;name=git_13df7481_4;destsuffix=vcs_cache/889c218c9f791913eb421eb515ddc05b99ff527458a58d48e57cefdf60215045"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=4bf6d317e70e84f331138b880efdafc2ba2f6c3b;name=git_13df7481_5;destsuffix=vcs_cache/29507dbad2cae46fbcae4fc962a243a2c5e892dd2074ef6f1734d294b3ba9cec"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.9.0;shallow=1;rev=69aa7acea306dfd277ec48fcc687ef8fa0f2bdb4;name=git_13df7481_6;destsuffix=vcs_cache/5d37f452b45a9fa695391acad9005fe8c18db1b7ec3da7f75e8eaebcc35fe607"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.4.1;shallow=1;rev=6ce8bb3f08e0e47592fe93e007071d86dcf214bb;name=git_13df7481_7;destsuffix=vcs_cache/206acb8ff959778c884f1c3bbbaa82e36913ae74a9d04c7d1daf9ae735e6b899"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=7c05a442b7c1d1a107879b4a090bb5a38d3774a1;name=git_13df7481_8;destsuffix=vcs_cache/ef19e6412fd24a3f6a04528cf94a6f4a990d6401faff4167170e33521f6a972f"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=859b3ef565e237f9f1a0fb6b55385c497545680d;name=git_13df7481_9;destsuffix=vcs_cache/c7adf8bcca55c1652cddd18c7e949788e387f878482d2553dd5f0a8b63dae8ba"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=86c51ed26bb44749b7d60a57bab0e7524656fe8a;name=git_13df7481_10;destsuffix=vcs_cache/8d01fb415e3ecdf7c1c57243ebaa9b07a2cecd87ea1574f747bbc2ab686be373"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.17.0;shallow=1;rev=aa51b25a4485b19ca64f578bad6fa40229e75984;name=git_13df7481_11;destsuffix=vcs_cache/f5ac06bdfe55fc7bd179f7c5a60562be13e6bcc09b95c407d4406e98a81ce1c0"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=b3066c3a67d8fdd8d86771626cb76efaac967f4a;name=git_13df7481_12;destsuffix=vcs_cache/74713812b6fe8157fc71ab8e56adbb96692f32b1e16d4c12258550972c0167bf"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.8.0;shallow=1;rev=b71060237c896c7c9fc602ab66e33ea6079659fa;name=git_13df7481_13;destsuffix=vcs_cache/7ef51338d8e623e736e20c1b31c1b901aaec9b92183668719ead1a38003fbd8c"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.12.0;shallow=1;rev=baa5c2d058db25484c20d76985ba394e73176132;name=git_13df7481_14;destsuffix=vcs_cache/6298f3a9437391a0bc3f25313e688f4d0fadb24b18e5241b03c109c66fc85ed2"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.18.0;shallow=1;rev=c0bdc7bd01c96a3472df419bc2b082e06b09a219;name=git_13df7481_15;destsuffix=vcs_cache/9bf2815e529f54c303a717858f212b598d63451dae7c527cd3ae3120966ec7f2"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=c90efee705eefc6efa975842f5e85f455b0b4639;name=git_13df7481_16;destsuffix=vcs_cache/297abdff6eb1d63062878ae152e4dbbe2044e72c3faa8a549a52f14cb613602d"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.4.2;shallow=1;rev=d6ab96f2441f9631f81862375ef66782fc4a9c12;name=git_13df7481_17;destsuffix=vcs_cache/1448cd87ba33f0c5f7c01cf93b4c22767eb3d941a3e9ab58be3df424f0abb989"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=d8296639b499981d50d327e4b5714c5734e925d6;name=git_13df7481_18;destsuffix=vcs_cache/67c5b61acf0613f31cf24fb7b39c85659f78dd48e34194ac1b3ed6afcfad73df"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.24.0;shallow=1;rev=dc121ce20ffab6bb810a0f231cfa9c24d3e51b29;name=git_13df7481_19;destsuffix=vcs_cache/809f2b0ddaa3729cfade74e7ee11f229989864a955e83864fe69d136cd5537c0"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=ed3ec21bb8e252814c380df79a80f366440ddb2d;name=git_13df7481_20;destsuffix=vcs_cache/d8ce3a26ef11a4e81bfc12391c4d0bf865766bcb2812acb31931c12ee0d326f8"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.27.0;shallow=1;rev=f8a9fe217cff893cb67f4acad96a0021c13ee6e7;name=git_13df7481_21;destsuffix=vcs_cache/c732fb18987301684a2d18c11ad478d8b2f6d1b824544e3603e467859fd58c6a"
SRC_URI += "git://go.googlesource.com/mod;protocol=https;nobranch=1;tag=v0.15.0;shallow=1;rev=fa1ba4269bda724bb9f01ec381fbbaf031e45833;name=git_13df7481_22;destsuffix=vcs_cache/7e2510260fb34e72e79e38bbfdb10ff9a20e584f7d79822b31c6b8f4177f1f2a"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=023911ca70b2cc091589e1a4b1be99e92165422d;name=git_7d9b3b49_0;destsuffix=vcs_cache/ea46f0fa4dd9eba08f834a2bd8dc044113f8b67d61f85320b560e68b442e05f9"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=030b2cf1153e8cae0dc666053fad6691cde7fbd9;name=git_7d9b3b49_1;destsuffix=vcs_cache/4ef86113602963c32d8cec3fb6b2eaa3acdfffdce617ce6eaa391b607b6ec2f6"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=079ba7bd75cd9273a17b56fd7759dda47d106fdd;name=git_7d9b3b49_2;destsuffix=vcs_cache/a6af1240cf48c72e88e6c9c3f3ec6c90e090639c21e772e6efe0718ba8ed7f5e"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=0bb0c0a6e84655f8baa6389e6dff9796ca1b26d2;name=git_7d9b3b49_3;destsuffix=vcs_cache/9bcffe49fd6f1222546abfdb28e7b18b0bd6579d413b369c2fc3e67eb2af5be2"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=113979e3529a77b99c4f3e5f3c8a22802a39cc95;name=git_7d9b3b49_4;destsuffix=vcs_cache/74532c68be1c7f64a0eee926ba2b0b7d4552a8c11bae36838bf170186db4264d"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=11955173bddd0ab0afcd688e6dc9c1b7c28fb546;name=git_7d9b3b49_5;destsuffix=vcs_cache/844d4dad510f2c01dc0afd28d06c23ff2ffc385ddf161fb554c91479292e1856"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=11d5b4c81c7d840ea4047650c225641a5f855ad9;name=git_7d9b3b49_6;destsuffix=vcs_cache/2d8d3902f23e044a5cf54516d823fff0b6b9f9f5f68437d7ecc2be9b9c21c578"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=1cc6d1ef6c743b46817e84e7fde3eae82816dc9d;name=git_7d9b3b49_7;destsuffix=vcs_cache/b1ff1fcac3f303ec8f9dc45f0a04e618eb529d4b6f31d5a63510d76ecaa5decb"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=20370b0cb4b25d20a35ee592d915c5e0640a0258;name=git_7d9b3b49_8;destsuffix=vcs_cache/bd0bf6e3ed018e210e16e525555d05e0486d4ec53d3ba7c609b7e56b9364fd2f"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=298f0cb1881e71e68bc5bc17757fabe78a426460;name=git_7d9b3b49_9;destsuffix=vcs_cache/4bdade122172b6644bff0ea433cdb68d5460d8b894432e030ced235888ac6fdc"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.26.0;shallow=1;rev=2ab3b5143581f36ca417dd73637437ef1df628a8;name=git_7d9b3b49_10;destsuffix=vcs_cache/271ef829b5b5fa76803855af1b275a7a031b1ceb2f51196c3759837cf381f745"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=2bc93b1c0c88b2406b967fcd19a623d1ff9ea0cd;name=git_7d9b3b49_11;destsuffix=vcs_cache/a38308477b0826f4e2722c46d57181206aed37d83120b2006c188cb3ffd8b45d"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=2c0ae70061356820330c96810d9483beb9a6da8e;name=git_7d9b3b49_12;destsuffix=vcs_cache/4c8a444f6107791541908255bd50e11af470e356ff01ab9ac1f463decf2926fe"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=2c860bdd6e788e473e1f01b87efa55ad87450d39;name=git_7d9b3b49_13;destsuffix=vcs_cache/221ec0cb17bf3a2346aea44d74eee60627df413a858eb87bc88634d8c35d571a"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=2d16b83fe98cd1bed9e2ce9fdc86bd438d14aab7;name=git_7d9b3b49_14;destsuffix=vcs_cache/f527e1fac3f75fc1a067a73434c4c47c4b96ac108d2cba6b0e47872d79a9a180"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=2f3ba24bd6e75104fb11be4edf062de340ffd1ab;name=git_7d9b3b49_15;destsuffix=vcs_cache/1c2aaa00f769aa85e30892812bc2d3337acbf407b7b7572dba2749015f07e032"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=36563e24a2627da92566d43aa1c7a2dd895fc60d;name=git_7d9b3b49_16;destsuffix=vcs_cache/99ab34378fbb8c2df203059478095f39cae3e1680e667b56e537713b29c25b70"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=39188db5885871ea0132a6314eab0c1b5d179a8b;name=git_7d9b3b49_17;destsuffix=vcs_cache/d264cf9b238b9cff8b395b9b32e33d4177f14385bed998da7abed371f5e0526f"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=3a792d9c32b2634e09d90a8e377b8f77fca8f02a;name=git_7d9b3b49_18;destsuffix=vcs_cache/305ed2d38b46f24b73f9e12743362ec0902aef39adfa78bad6c7a3313e5b63d4"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=40960b6deb8ecdb8bcde6a8f44722731939b8ddc;name=git_7d9b3b49_19;destsuffix=vcs_cache/a73cd8dde59b9198ec496fef230dd07ae439facd33bf7b95f5610f1859d30b2a"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=43d50277825c291cf84444b652566c6f79131ff8;name=git_7d9b3b49_20;destsuffix=vcs_cache/d240ea68b66b61b52fcb2f0df676a9917cd4ba684b16e8a6a3661744be6d149f"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.36.0;shallow=1;rev=44d18e11572cd133e1eec6811ba57d78ff20addf;name=git_7d9b3b49_21;destsuffix=vcs_cache/eca34926517222149ac44d6549f9f4c024e04ce49fc348e07ddcf1d9141cb855"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=4f2ddba30aff720d7cb90a510a695e622273ce77;name=git_7d9b3b49_22;destsuffix=vcs_cache/127436867fee18029c314cbf5aa8f3817b6baa749db4930661ea03d4cf64fc1a"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=502c634771c4ba335286d55fc24eeded1704f592;name=git_7d9b3b49_23;destsuffix=vcs_cache/0c7dcbfb4a6c111157758f6817e56887899598231c73d48b48772aff20f57497"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=6467de6f59a7c849780e0f7e4a33c7a2dfdd2e71;name=git_7d9b3b49_24;destsuffix=vcs_cache/c31e56539c4f66de07b7aed2ace97400ca14f476578f99758dae504d826b50d5"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.11.0;shallow=1;rev=675bf3c243d60cbba429fad9924e520e8a86074f;name=git_7d9b3b49_25;destsuffix=vcs_cache/a6989a0d2594b0d1275515c24788d86390e508148425434ebd0c5ddd24eff318"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=6889da9d54793ea182dd07be58824cf86bf0746b;name=git_7d9b3b49_26;destsuffix=vcs_cache/4bb680d5078e9f5b224321050fa642d40db62d9aa94cd313b947c99ae68dec5f"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.31.0;shallow=1;rev=6a5b66bef78dc7a1cf8593b276f35102ec0cb11c;name=git_7d9b3b49_27;destsuffix=vcs_cache/bed17cc240f5db53481ff12da26dafbfc6624413bd0f5b8d53c644ed17dc3a44"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=6c149bb5ef0db65038b2abbe6c6d0128f2f2cd90;name=git_7d9b3b49_28;destsuffix=vcs_cache/6692c891910018beadfcc14c9ec45f46ab5327bfd61da79d3af068a112d336cb"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=6c7e314b6563ee0a4dc169c7ee9960e0b709c035;name=git_7d9b3b49_29;destsuffix=vcs_cache/7354e9c60da187bf76c29e054523e4bac2ac4bfe88809db6dee0fd062fbde0da"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=6cdbf07be9d0ad08776df0b65fb1b3e4e617c42a;name=git_7d9b3b49_30;destsuffix=vcs_cache/8634fb91aae0d9ac927aa95432dd838b88fa185eb24871e8719bb90baeec6312"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=6e04913cbbac05c5c0c9d8f237717e292f700e76;name=git_7d9b3b49_31;destsuffix=vcs_cache/6944ed54388a92cad4d9aa7f6954b553270a8bdd815358451b7f2df801d00eb2"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=6e064ea0cf2dcfaca8da2da9f42da458bab38756;name=git_7d9b3b49_32;destsuffix=vcs_cache/efa64d8d3cd55f203299331ff8e8e78d5b40939e93c3d4630911486b2c36a6db"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=706bc42d1f0d6e520b893595825c475de0fea824;name=git_7d9b3b49_33;destsuffix=vcs_cache/f5f732e5f87c658191cc36b24e9fe8add41b81ac928ea26c1ef182fad341b09f"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=77e3bb0ad9e72123a382fe9c4870b269210dab83;name=git_7d9b3b49_34;destsuffix=vcs_cache/cce92615db3a3b6760dc9c89f486481afa96867100287870b9b10b2418b14c29"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=7b8e75db28f4b09dc0b853eadee5b034956bcb9e;name=git_7d9b3b49_35;destsuffix=vcs_cache/6d390c64b47660abe1d1ce2ce2ef75a6e5b2b861ee6468715614a2c2dc3b8eec"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=7c47624df98f421302ad5a380f58fd5ed0ecb734;name=git_7d9b3b49_36;destsuffix=vcs_cache/a7efe20c5bee119c7e0018be6d57820b9b6a182d1818d3ec344c022fad6b7114"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=7d3b6ebf133df879df3e448a8625b7029daa8954;name=git_7d9b3b49_37;destsuffix=vcs_cache/c755819b69cf8b7b057384c91b3783a9b6fb8e30eb2cc7bb6cbd47a844700fc9"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=8de300cfc20a62d78c74c4b482fcfc0090f8d95c;name=git_7d9b3b49_38;destsuffix=vcs_cache/8c146f3af69ca54b0f4041c7e3494127df29dd0184a797039c33277936e0e8d0"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=90fa682c2a6e6a37b3a1364ce2fe1d5e41af9d6d;name=git_7d9b3b49_39;destsuffix=vcs_cache/e396d41e128acc62cbad331ee090a99e470d23a3611d8b07d3c2cc41a1cc0b49"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=95d2e580d8ebe4f401d837412cc97c79829521d0;name=git_7d9b3b49_40;destsuffix=vcs_cache/478c24895abd62719976e666dd78fadc4852bcfe2907e14e2ea05ed20c641fc9"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=go/packages/packagestest/v0.1.1-deprecated;shallow=1;rev=9b68bc9966ee62cbe4704dea268ca17f0d2cd8a7;name=git_7d9b3b49_41;destsuffix=vcs_cache/8e3caf6560e23534404ba0ab07b0c731a8ce6b61a9e6f462e08b6981ef496441"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=9cc4af7d6b2c2a2e47f9cfaa500cd669b42e449b;name=git_7d9b3b49_42;destsuffix=vcs_cache/45c50e63284bcc972ab6ab4025fb4a3c5e8bde43cc50c9d4172210b58401d8f4"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=a0a13e073c7bae39af55369bcd1c2dc7ebb88ede;name=git_7d9b3b49_43;destsuffix=vcs_cache/069fe73566295ef215af76b1a6e6ededd162cc4a918c9c8afb215b68d8fd8d7f"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=a0e659d5136104039ac16d1718b6ef26f458e22c;name=git_7d9b3b49_44;destsuffix=vcs_cache/1980977bb288fad93cf20d33c91d1b3c0e055ea4d1684e06dc77923ac1279aaf"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=a30bf2db82d4f645ded9030efbbf6d4fbe5e70eb;name=git_7d9b3b49_45;destsuffix=vcs_cache/35569a3e9a1616f688fef658c58f92ff87ff0e02f5e9b3f1b86683e655148455"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=a543418bbed226001a4070d59e3948f32822fa7b;name=git_7d9b3b49_46;destsuffix=vcs_cache/604b6ba5d4ebe76a481d4830bee4d6f566e7e631b571ac8015ce69c86641d7ab"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=a5b4c53f6e8bdcafa95a94671bf2d1203365858b;name=git_7d9b3b49_47;destsuffix=vcs_cache/9aa0538da27525d431d8f63a93dbd2124b97ae084c55a124cf3af87d09c1350b"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=go/expect/v0.1.0-deprecated;shallow=1;rev=a5f2a1893145b1c54ec841e1c5cae7f9853e724a;name=git_7d9b3b49_48;destsuffix=vcs_cache/2eb3287db940156bd2959401e8d48cb2fb49c63aa67526d9ceb95c021e217faa"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=a911d9008d1f732040244007778232b02ebb2b84;name=git_7d9b3b49_49;destsuffix=vcs_cache/66ef5cdeff3f23cd4cb68ee35cea085a2611f440b73b84717eaf81c91073c59c"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=ab21143f238442efbf2d6acedb69eaddbb43d088;name=git_7d9b3b49_50;destsuffix=vcs_cache/7120c62aa1f536f776c11268e04c38e6f605d466d77fdee84ce605103cb163c9"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=ab2804fb9c9d835d4f0c627146cdd5cb04d69b0b;name=git_7d9b3b49_51;destsuffix=vcs_cache/681d3176ec23cc963357eee4e001402c35ba39a7b6b9050a438517f6513a06f2"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=ac6f37ff4c2a33cb06841e9c34015d81e7f9b5b2;name=git_7d9b3b49_52;destsuffix=vcs_cache/43b44f7fa1982c6186dd9e542925373fcba4fb45f5f11c6bb15ae15ae102e76a"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=b0ab187a48186b109eb44ed635ba4408fdfbb658;name=git_7d9b3b49_53;destsuffix=vcs_cache/1125b0e89656eb8e1827a5e40f05c6f90cefd3865b1ade44e370a473fc143751"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=b303f430e36defd25ec47aec1f8076610fe28c38;name=git_7d9b3b49_54;destsuffix=vcs_cache/ca0a4bf9cc24502eb0d02fad0c6ac2b3af2b6ddabbf8da645234be4dad57bdce"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.1.12;shallow=1;rev=b3b5c13b291f9653da6f31b95db100a2e26bd186;name=git_7d9b3b49_55;destsuffix=vcs_cache/caef14ab3734fcbf0d05c7a9aab8ffc3dee6066c109316257d37ec9c806f1482"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.13.0;shallow=1;rev=b5e55d198461206bca9558e65cdd518f8e4f2735;name=git_7d9b3b49_56;destsuffix=vcs_cache/113f573f2a2c2d878f629ffd220d2fb3cfeacb1a574a60b2ab9343fc01919103"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=b753a1ba74fa2c944df1826a2f467fb9e51f801e;name=git_7d9b3b49_57;destsuffix=vcs_cache/392fab25e5f801d07d491491567c4db5dee7a7a32a1a6567457ef700862486c7"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=b9c20aec41a58d08b028186fa880270b804fb2e6;name=git_7d9b3b49_58;destsuffix=vcs_cache/5146172ace0e6119ac3f43e3cacfc64d4cf1863f17ef7f0b739796477b8129ad"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.22.0;shallow=1;rev=bc6931db37c33e064504346d9259b3b6d20e13f6;name=git_7d9b3b49_59;destsuffix=vcs_cache/10bea447200918a13a0eaada4a47b9a446243e6ececead01fd2287ea617160ed"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=bf1340f18c4a84892158455a762da3c45c604c7a;name=git_7d9b3b49_60;destsuffix=vcs_cache/6c8790fc7b3befa2907aa988d6874dc4e1f8e7d5c07ba6a015d4776be0e2a4e4"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.1.9;shallow=1;rev=c20fd7c261728ff8bc25aebb4d850b0880ab0530;name=git_7d9b3b49_61;destsuffix=vcs_cache/32e8c4907baf7e591acc33b8b672c6da6327a28ae18311b72a365ae8a71f69f2"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.1.2;shallow=1;rev=c3e30ffe9275c0e89ef0d38049bad16987bd7fb2;name=git_7d9b3b49_62;destsuffix=vcs_cache/99ed6e2cadb97ba3a9fe774b6c6faf8ad27a3b136188c69f6ec28f265dfbd55e"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.1.1;shallow=1;rev=cd1d0887dc8cfcfb844340a5fce628c61da00a20;name=git_7d9b3b49_63;destsuffix=vcs_cache/886612312141612c41f7e440a435372859c2488766ef38844a8f08e4f254e464"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=d0863f03daeff79ab917de5768285bb077f77b20;name=git_7d9b3b49_64;destsuffix=vcs_cache/9cceea9495e6089f0c928f6375a5a449bcc62a88cb95dab0e1f31915000449d9"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=d0a3d012864b53e579e8ec5cbf6a5405dbc12423;name=git_7d9b3b49_65;destsuffix=vcs_cache/96223c6883b6ad53c22b89242d9d1822370ac2846c4f8978c66911fb347463eb"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.1.4;shallow=1;rev=d824a7481dff873bb36f76c5b92c46c97852d52e;name=git_7d9b3b49_66;destsuffix=vcs_cache/cc860187ce86cace85b270cf8d9ce367c759d765af32d68b21ce2053300cc455"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=e2f9c7f1fc8e3456c71ab5b45a8220d3ae8e0aef;name=git_7d9b3b49_67;destsuffix=vcs_cache/ca5030a33b2caba3679e360e649b9e573cc660e9cdf4a4f688926e443a25293a"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;branch=master;rev=e35e4ccd0d2ddd32df7536574a7fec39296395f0;name=git_7d9b3b49_68;destsuffix=vcs_cache/0b4650c7b05369ac18500a7c8384cc765164e101ec7c04e735cf8c33b4e514c9"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=e65039ee4138194d75ebaa2da35887260d5e15b2;name=git_7d9b3b49_69;destsuffix=vcs_cache/997a34db84eadec76534a800881cfdad5e184fc260cbf1d53bcfe3ac91dc2f64"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=ea181f53ac568019e9fb1574c252555775c01e28;name=git_7d9b3b49_70;destsuffix=vcs_cache/312b74551646c70a4fcbb0a1dfbf1768f6e42206c1e119131d2af5faaf4f0a73"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.1.5;shallow=1;rev=ef97713d99aa4e69742aa68fd45a63247b5d3ea0;name=git_7d9b3b49_71;destsuffix=vcs_cache/32011ee50b2e2b3fde1b309b6eb03d8779eae964763651ef589169357141e117"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=f112c43328372460f7ac5bc951711609e22b01cc;name=git_7d9b3b49_72;destsuffix=vcs_cache/6a7c07c85d0e6cfd90fe681aecaa4717b8966dd488b09b79b2dabe0c3148c39f"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=f727befe758c04ce68d52abc6e69ad111e2c6797;name=git_7d9b3b49_73;destsuffix=vcs_cache/4e56e084dd75c8283bc4445105a474a9f715b9fd5d860b0e5c12c567ddd9f950"
SRC_URI += "git://go.googlesource.com/tools;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=fe37c9e135b934191089b245ac29325091462508;name=git_7d9b3b49_74;destsuffix=vcs_cache/09b8c3d38b40154ed1e7eb0e59cab361ef8cb98e5b119ce32f5f1aff63b473e6"
SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;tag=v0.34.0;shallow=1;rev=8da7ed17cdaf5e1d42aa868f0b0322a207a17dcd;name=git_ed42bd05_0;destsuffix=vcs_cache/24d91a8da0c61c84416bc081f87c9530bdd043f861805147b823427a1685f4a0"
SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;tag=v0.33.0;shallow=1;rev=dfc720dfe0cfc125116068c20efcdcb5e4eab464;name=git_ed42bd05_1;destsuffix=vcs_cache/efb49d6c533f0c4edb5aaa1328290d633a3c9d6b88a92eed26a023d8ff604d7a"
SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;tag=v0.38.0;shallow=1;rev=e1fcd82abba34df74614020343be8eb1fe85f0d9;name=git_ed42bd05_2;destsuffix=vcs_cache/5a5fbae248b5082295ad2d3f305366fff8b6f7f2bdf52f962ab7307ad7df3fd3"
SRC_URI += "git://go.googlesource.com/net;protocol=https;nobranch=1;tag=v0.43.0;shallow=1;rev=e74bc31d69f225b635e065a602db3fbfa9850f93;name=git_ed42bd05_3;destsuffix=vcs_cache/82a07fe1904c263f9f213772e8b13c56a46fabfea0ee1ca2eed4873551103c0e"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=14c0d48ead0cd47e3104ada247d91be04afc7a5a;name=git_38515699_0;destsuffix=vcs_cache/7afd1c64dfde05434b834de00d80d064b0dee0ac8e86a20a3ccb3b3477062816"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=1bdb400fb39a45cc788ffe7e5d7a2a9719afc7e9;name=git_38515699_1;destsuffix=vcs_cache/5ad35cfebebfa5b556ca6d44b5026673bb71ab874271a0fc395ab751275779ae"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.3.4;shallow=1;rev=22f1617af38ed4cd65b3b96e02bab267e560155c;name=git_38515699_2;destsuffix=vcs_cache/e76db68acf0b576548fa714f294c3cc8f71a39e409d5458a9af88b7c906026db"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.3.3;shallow=1;rev=23ae387dee1f90d29a23c0e87ee0b46038fbed0e;name=git_38515699_3;destsuffix=vcs_cache/fc27daff31c5f47a26c7ef94196bf8cee86c79308480edbe7cf8e4dc0c447e43"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.3.2;shallow=1;rev=342b2e1fbaa52c93f31447ad2c6abc048c63e475;name=git_38515699_4;destsuffix=vcs_cache/7b34b135bbda1292ea284d86dfed6e5bdf5fc64fa2fe19d2299467019e4d1944"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.3.7;shallow=1;rev=383b2e75a7a4198c42f8f87833eefb772868a56f;name=git_38515699_5;destsuffix=vcs_cache/3b8a76fcf794a9f1d2139606900fb5805f666e19e7234b234fc05ccf35ef6a06"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.22.0;shallow=1;rev=3b64043c9e8fa8cd61a019df17dc729630915fa9;name=git_38515699_6;destsuffix=vcs_cache/048a81c21999c74347b58bb43a6fc3a39ee90657527bbd2758fc37765fb93d61"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.28.0;shallow=1;rev=425d715b4a85c7698cedf621412bb53794cbda53;name=git_38515699_7;destsuffix=vcs_cache/a7d5fe87723af3c471d5ed18e25d604d34081f39ab1219b457b5da3a8ff54d08"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.3.8;shallow=1;rev=434eadcdbc3b0256971992e8c70027278364c72c;name=git_38515699_8;destsuffix=vcs_cache/58ff57824b0729eefaf3df2367dae8bc8ac492e23e66261031610ca60cc202a8"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.9.0;shallow=1;rev=48e4a4a957429d31328a685863b594ca9a06b552;name=git_38515699_9;destsuffix=vcs_cache/3967a908774b78ac4accafb04231e416ce132dfa549184a51d5d00981ace0f45"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.23.0;shallow=1;rev=566b44fc931e2542778a18423c655ce99b4f1402;name=git_38515699_10;destsuffix=vcs_cache/2868deb5bd5e435710cf636cb91e294492c665341a5f65e26da3b82c645fd40d"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.14.0;shallow=1;rev=6c97a165dd661335ff7bce6104a008558123c353;name=git_38515699_11;destsuffix=vcs_cache/314ce90da59b55f1c43f4f8d9511a0fdba7d266959c9169598c6ca4e65509a34"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=71a9c9afc4cd710b9412f7f99f0d8e35b10e488a;name=git_38515699_12;destsuffix=vcs_cache/96612e2431a1761ab2f4e3efdfda115a56ed517010d61db70a8407c43037c89f"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.3.5;shallow=1;rev=75a595aef632b07c6eeaaa805adb6f0f66e4130e;name=git_38515699_13;destsuffix=vcs_cache/7c683dff6b1d330d20dc7fc0e186c8632c397daa3755d4b91c1b350508bb8953"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.16.0;shallow=1;rev=9c2f3a21352d1ff4e47776534e3f334b39ec0183;name=git_38515699_14;destsuffix=vcs_cache/2a43a8d9f7fda989d18550dbde2e274aacbe0eabcbd14bd38be60f84d1c1fd67"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.8.0;shallow=1;rev=9db913aaf20ced01b7a130d9fb222d74a1339fa6;name=git_38515699_15;destsuffix=vcs_cache/7301a8d6bc73b52110759ca9f9a6077d67edd1f6a2c1b6e1090b637096d9087b"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.17.0;shallow=1;rev=b2bec85eb9df7c6fcf50218bde3db5e22b35e481;name=git_38515699_16;destsuffix=vcs_cache/b2ed225adb707701e8acdb5ca1f97b68330d6b62805bc3b9f9f3473e33d22e39"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=c8236a6712b1b530895a7182a8a9fc06f1c5cf4e;name=git_38515699_17;destsuffix=vcs_cache/9974d41816273a58d8b62e9171e596f80984fe4fa9d97cb8ba42d9cd287d2180"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.21.0;shallow=1;rev=d42948e5579eb996bedb7df76c7ad57fae4e83c7;name=git_38515699_18;destsuffix=vcs_cache/7fcb78a8fd04f8a91f109513bdf93dd6c6681a83c61c24ba5d330cc070dad0a6"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.3.6;shallow=1;rev=e328d63cff14134669501e0e154e4f141c784322;name=git_38515699_19;destsuffix=vcs_cache/4b522f9dc77a0e02cea9ffd3b10d3f85a766a1f7900b412ab5c3f6a41718c2ea"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=ec5565b1b747ce5ca569aeefc09e737b479a12ac;name=git_38515699_20;destsuffix=vcs_cache/b8a903f703513b2581d07cb95305680dfbfa228869b8fba9564dce4d47d162b9"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=f21a4dfb5e38f5895301dc265a8def02365cc3d0;name=git_38515699_21;destsuffix=vcs_cache/4d433f261a2c7cdc7fd6aff90f7c6096c21b412fcc4b5c8494239264cb0c661b"
SRC_URI += "git://go.googlesource.com/text;protocol=https;nobranch=1;tag=v0.12.0;shallow=1;rev=fb697c0580b4b6ab0a21ca17e64788b981fb6018;name=git_38515699_22;destsuffix=vcs_cache/74d70156218364b0ba18f38742a4dee9e0c6829f7242834ff0f9e44461fd643c"
SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;tag=v0.35.0;shallow=1;rev=5b936e1f126baa13682eff91c2e4d5d9e3a0b71d;name=git_da0444fc_0;destsuffix=vcs_cache/f10760bd79dec3ae3deb5c7e80a5341c9e5063e347f2cffc7799e8661bf7a7b9"
SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;tag=v0.31.0;shallow=1;rev=74cfc93a99be6ca6f193856132e6799065b071af;name=git_da0444fc_1;destsuffix=vcs_cache/c87d91ed596c4c340f033586e42fe11bf578a7f212448d4a3fa86dbd4b8d4747"
SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;tag=v0.34.0;shallow=1;rev=751c3c6ac2a644645976e8e7f3db0b75c87d32c6;name=git_da0444fc_2;destsuffix=vcs_cache/2b062c37af0c61e127746bd6edbd8a4ab78a43e7a985582e31e25d2d9539449c"
SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;tag=v0.30.0;shallow=1;rev=863b3c4ac4975ff758815fa8d01acb6771f37177;name=git_da0444fc_3;destsuffix=vcs_cache/cef0b94e63cc5f5b9e0a30e26b3a4b3cbfcf2356d9ce5285e78900231b8efdd8"
SRC_URI += "git://go.googlesource.com/sys;protocol=https;nobranch=1;tag=v0.29.0;shallow=1;rev=d4ac05dc8c4c953ec29cae3df56c0833f4010763;name=git_da0444fc_4;destsuffix=vcs_cache/f38a791419f4d5b967057378dd4050b42368925d6b7a668ded952eaad5ca184f"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.28.0;shallow=1;rev=0042180b24f3cfe500f4cad3cabbc33c0a341f78;name=git_d7a72cb8_0;destsuffix=vcs_cache/d2b6ecf539d65ddfeb4fb1ae239242eda4beabc633af2fc4ce8c73915ed91fc6"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=08078c50e5b5244ec123a6b69facdbc13b21a548;name=git_d7a72cb8_1;destsuffix=vcs_cache/6e426c04cd5151809be86349a81d8e817b0c3ee8a42a6cea4697ba1b81abbb88"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;branch=master;rev=0ebed06d00948a7aee9a5490123450d895686784;name=git_d7a72cb8_2;destsuffix=vcs_cache/89118000acfc5423c5eccd6d329118f7f52ce480e36cee728f61b3f06ba85af9"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=0f29369cfe4552d0e4bcddc57cc75f4d7e672a33;name=git_d7a72cb8_3;destsuffix=vcs_cache/6a5bc2506db942146d8a314ada12f48a941f5ee9aafb0b9e7d53f1de7f4c0bfc"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.24.0;shallow=1;rev=22134a41033e44c2cd074106770ab5b7ca910d15;name=git_d7a72cb8_4;destsuffix=vcs_cache/be89d63080feffbcbe6644bcea46d6fc18206e67876ec876ed0f9049c6538349"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=2bc19b11175fd0ae72c59c53fa45eff3f93d6a46;name=git_d7a72cb8_5;destsuffix=vcs_cache/8a78323c8c445319afee32896e4e0d4994c957b3016731747d55317ad43666bb"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.4.0;shallow=1;rev=34ffb07a9918c019c2d5080521104d2598ed8266;name=git_d7a72cb8_6;destsuffix=vcs_cache/282615a8ce4596cc4e45bdc04232784e114dd27dc975826c421d448e061dbb22"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=36075149c5b89480def496c735b8a1ba5fc63218;name=git_d7a72cb8_7;destsuffix=vcs_cache/c5f76558204f83c53192609f087d59588eab142c6209e08ca50fbe6262dd103c"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.23.0;shallow=1;rev=3e6480915d39dd1a80fa460e56413857f02cc1b9;name=git_d7a72cb8_8;destsuffix=vcs_cache/78ce5b000291abd93fd9abe5ed3da0e80d8b8d0a608ef4cdc081689cdf7eacf8"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=5d25da1a8d43b66f2898c444f899c7bcfd6a407e;name=git_d7a72cb8_9;destsuffix=vcs_cache/519b663d463d4efc56fd4a810585f7ef16426cce018e6e42ed60142506539041"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=6242fa91716a9b0e1cbc7506d79c18c64a2341e8;name=git_d7a72cb8_10;destsuffix=vcs_cache/321670aa94588466ddd75c62d07312768b12ea7e80c4fb2ff36b7b5d7b7b7ae6"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=62b4eedd7210c3ff2fc694318a8a312b96f01a74;name=git_d7a72cb8_11;destsuffix=vcs_cache/f0689574d5bcb200d96aaa39170246a206dc86784db8bce26930d46e18470235"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.27.0;shallow=1;rev=681b4d8edca1bcfea5bce685d77ea7b82ed3e7b3;name=git_d7a72cb8_12;destsuffix=vcs_cache/cac8bc5f9c1271e14eb9f4bee6443b763f599859866fbff6c799a7311a71b391"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=6f1e6394065a17f7c4e686dad23e06b6843e20e0;name=git_d7a72cb8_13;destsuffix=vcs_cache/f85811280024110f0ee87d56b0970029b87432912bbda48798cdd047895707e6"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;branch=master;rev=6fdb5e3db783d4a038a89fb82279727f80e7bf8e;name=git_d7a72cb8_14;destsuffix=vcs_cache/af317d31f0cec8852ae8f768f264e6409b76adfd771754e4799c2ae40f281265"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.8.0;shallow=1;rev=839de2255f57ac5af1321327f280f79471825bc9;name=git_d7a72cb8_15;destsuffix=vcs_cache/82a7329560ffc3e9e45527430c8067b43aa5714b3da8421a4b4189452bcd3736"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=858c2ad4c8b6c5d10852cb89079f6ca1c7309787;name=git_d7a72cb8_16;destsuffix=vcs_cache/953b311a964505de6e1c6de0e08ba65ce5eb3334bd9016417470f4352ad05b98"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=9780585627b5122c8cc9c6a378ac9861507e7551;name=git_d7a72cb8_17;destsuffix=vcs_cache/27fde3276078b39a8ff13b73a43f320c8ad417fe00ce51358d1221da036b9438"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=9bb904979d93d76cf7000f77c4a1d7bc06c7a708;name=git_d7a72cb8_18;destsuffix=vcs_cache/92954437a4c76ccacf6fe2fe66e6b9e0f13c497250678b4de2119d55af9fc81b"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=9dcd33a902f40452422c2367fefcb95b54f9f8f8;name=git_d7a72cb8_19;destsuffix=vcs_cache/75d99cea02de603ece3b274301070e364efccb149c6fb524517dea736d27d61a"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=9fd604954f58d391cab0f7f49affb0a6aa864086;name=git_d7a72cb8_20;destsuffix=vcs_cache/c20351aab32c314523f5e7a58c41e14e5a174d8fb9019b3063f0eefaa7c3c580"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=a41e5a7819143202e8d21fb9ac9c659fbd501fb3;name=git_d7a72cb8_21;destsuffix=vcs_cache/55e97d12893a1f162c1a112be1cd59e2f915b260d2e3135435b23d8b2dca7ed6"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=adbaf66a0bae46206ed661df3c5bae3752a3347c;name=git_d7a72cb8_22;destsuffix=vcs_cache/774719951f8ca497a82b5ae20c0f9b96fc20362e7479dc39e8bb97def975f09d"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;branch=master;rev=b44042a4b9c12aec471902e0287a912bcb3ac1db;name=git_d7a72cb8_23;destsuffix=vcs_cache/4643c5fa8a017020dd3260693bfa1131093f8322b73211f95d6710568ec0fd9a"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.26.0;shallow=1;rev=b9c813be7d0ec3262d46deb8677ba5cda93d95ec;name=git_d7a72cb8_24;destsuffix=vcs_cache/1f83206f82f75017d0a4418bcc97edca2e4183c31b83ded29e926f4755b46735"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=ba52d332ba9961c5b5c1e8fee42614c0f5c2c076;name=git_d7a72cb8_25;destsuffix=vcs_cache/076dc968d89193de10ca00d86d5661fe03700d3ccafa53769dac5e090c5a7550"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=bf48bf16ab8d622ce64ec6ce98d2c98f916b6303;name=git_d7a72cb8_26;destsuffix=vcs_cache/ba506cfd432b7920fb2c5d6f6cb280c42e9d1911208fba8592a075d263ddf70b"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=cd4f82c27b84ec2516d3c38a5b5acaf8823e2702;name=git_d7a72cb8_27;destsuffix=vcs_cache/7c0db46f66056ac02fc0470c096aaa02ec57613845a3e8e77565f5f6f9ec862b"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.30.0;shallow=1;rev=cf1431934151b3a93e0b3286eb6798ca08ea3770;name=git_d7a72cb8_28;destsuffix=vcs_cache/9d690404d55fe61f12b60291b8248b30b26748c84367097aae3de38a202f1504"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=d0670ef3b1ebba3a000f754b3acf1c4be6c221b0;name=git_d7a72cb8_29;destsuffix=vcs_cache/8f11176a43f20d4ac553cc9eb7634e205fcbd7d539e566651ee44c98adf424f8"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=d3ed0bb246c8d3c75b63937d9a5eecff9c74d7fe;name=git_d7a72cb8_30;destsuffix=vcs_cache/82edac4de3ad67e00370a2ae07ea7507c954621a90b063bc7bf075f84a15791d"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=d668ce993890a79bda886613ee587a69dd5da7a6;name=git_d7a72cb8_31;destsuffix=vcs_cache/4229195363ef2a96dc974c3d2151dd7f37bc3e361d886f7feae1141baf42e63b"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=e64efc72b421e893cbf63f17ba2221e7d6d0b0f3;name=git_d7a72cb8_32;destsuffix=vcs_cache/211a40fa92a2ec1c3cde36d221c9accab5379e7a230d56adf81aaae313ae059a"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;branch=master;rev=f21342109be17cd214ecfcd33065b79cd571673e;name=git_d7a72cb8_33;destsuffix=vcs_cache/351d1fabdb4fa60c3e4cb2cc5d4a44b30955567cba29728bf9f0d856a050ae6f"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=f6687ab2804cbebdfdeef385bee94918b1ce83de;name=git_d7a72cb8_34;destsuffix=vcs_cache/0d7f9e058c13f764178ba4477f1822d080b7c0230111df567dde87d34f38f303"
SRC_URI += "git://go.googlesource.com/oauth2;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=fd043fe589d2d1486b6af56f44a691e819752a23;name=git_d7a72cb8_35;destsuffix=vcs_cache/73bd1dd884e57af3aac27c5b454b6868a455a88ba7c6e49584ce04b59a3f70b1"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=036812b2e83c0ddf193dd5a34e034151da389d09;name=git_d7307bee_0;destsuffix=vcs_cache/737630eedb4e22444bcc842c824d09c82d5ad676f18cc2707c343fe462789b29"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=09787c993a3ab68e3d1f5c9b2394ab9433f391be;name=git_d7307bee_1;destsuffix=vcs_cache/cbc28b85bb7dc700be3c18580ce9ab3ed657bdd6fddc6e818c41725dc83e6f42"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=0de741cfad7ff3874b219dfbc1b9195b58c7c490;name=git_d7307bee_2;destsuffix=vcs_cache/a4127a4166f0454b5fd36927c78ee4923f61426c8326a6f0e1678a9b7f056e8c"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=112230192c580c3556b8cee6403af37a4fc5f28c;name=git_d7307bee_3;destsuffix=vcs_cache/b68e56943c8c12324ce0414e7075fd80f016eafe879c0c69e6b25893ebb49bce"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.7.0;shallow=1;rev=14be23e5b48bec28285f8a694875175ecacfddb3;name=git_d7307bee_4;destsuffix=vcs_cache/ee5f66a740cf90c02e7e970c3568863387f64bb7461b46cd2e1b321f0f2cedd5"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=1d60e4601c6fd243af51cc01ddf169918a5407ca;name=git_d7307bee_5;destsuffix=vcs_cache/a474d88ee14fcd89b314b779d02a4628461aebbfc6613a6ba90e583c35e15b02"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.2.0;shallow=1;rev=1ea32573ddff2d374504dcc8102328ea790af85f;name=git_d7307bee_6;destsuffix=vcs_cache/a7ad2126a1ecc8b6983bf462c8c108fa0516b752af69da928520874a03907e9b"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=37e7f081c4d4c64e13b10787722085407fe5d15f;name=git_d7307bee_7;destsuffix=vcs_cache/901f082ea4e1c94dfbaef54bd883432751214951b6b2d5885765a306b1c60d1f"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.13.0;shallow=1;rev=396f3a06ea2a49eb410f12e244c0dd77095d0de9;name=git_d7307bee_8;destsuffix=vcs_cache/a33a3a0f53ccdab2ce7a33e5a447e5d85635802ec4dffa5677f6965e6e07b706"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.8.0;shallow=1;rev=411f99ef121375a146e962b6eab78b03b7429483;name=git_d7307bee_9;destsuffix=vcs_cache/552bab19670b2a96ac65b9bf6d179b6bbbdd4321531f3f9b5a1e39585df8bd69"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=42b317875d0fa942474b76e1b46a6060d720ae6e;name=git_d7307bee_10;destsuffix=vcs_cache/19d48188f5a03164bde06d13dc555c6a2ebc78aafd3dabc7439ec4c9dcca3519"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=43a5402ce75a95522677f77c619865d66b8c57ab;name=git_d7307bee_11;destsuffix=vcs_cache/32b2418d90427c02e56a995b913942d75791bb2c01e6fe4bf4397ff7373d9d58"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.6.0;shallow=1;rev=59c1ca1e4661ed4452be4069ceea3c233f4deec1;name=git_d7307bee_12;destsuffix=vcs_cache/d1f9c53373163011c3c882e0a20cabac6c7f78d5004f190209f6f6e56bcfb008"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=67f06af15bc961c363a7260195bcd53487529a21;name=git_d7307bee_13;destsuffix=vcs_cache/63c5dce6fecd17ec0193ec4ee4221b61ccd0834c745a066128df4000c7ec583e"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=6e8e738ad208923de99951fe0b48239bfd864f28;name=git_d7307bee_14;destsuffix=vcs_cache/7d5034817f1223ca018ebdc04acb161be44c7701db7dc206d930a59b8df9a014"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.16.0;shallow=1;rev=7fad2c9213e0821bd78435a9c106806f2fc383f1;name=git_d7307bee_15;destsuffix=vcs_cache/17303686dd20f8890e406d26fb4a7132b9859025d470a9d471f2290d9471d58c"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;branch=master;rev=7fc1605a5dde7535a0fc1770ca44238629ff29ac;name=git_d7307bee_16;destsuffix=vcs_cache/463fa6019c65d8e667ea1543c48af9adc0f85ed2192d79a82c22d050950ba743"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=886fb9371eb4b47af10bff9c8025a8c9e1554b92;name=git_d7307bee_17;destsuffix=vcs_cache/ca22f14e147dd49170157c4d70861fe830bc43b62113fa8da7da7806f515979b"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=8fcdb60fdcc0539c5e357b2308249e4e752147f1;name=git_d7307bee_18;destsuffix=vcs_cache/82c5f68308634d71f14642af33f7cae6ce2af441f244d3c2d379f3b81e8912f8"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.10.0;shallow=1;rev=913fb63af28f446cd10c684ee847b5606cf328f7;name=git_d7307bee_19;destsuffix=vcs_cache/ecf38e62fdc11d73893fcbb5321fdb3a36329ddbca9848162be0d5bf11e7cc5b"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=93782cc822b6b554cb7df40332fd010f0473cbc8;name=git_d7307bee_20;destsuffix=vcs_cache/250b838d3dd291145ccea7fef1b9f7e7b1a081a69d0f055b5079955bd87597da"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.12.0;shallow=1;rev=b637f27e40ad6e222f3d301cc113e635f0fa08be;name=git_d7307bee_21;destsuffix=vcs_cache/816f766106b7a38cd9a650db7a181bc3dee8da3eaab0487f1ff7e618c6f19d72"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=cd5d95a43a6e21273425c7ae415d3df9ea832eeb;name=git_d7307bee_22;destsuffix=vcs_cache/eaa2921285a7524f3154ea98a551847767b259c18f901ed97668900b204aa7a6"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.5.1;shallow=1;rev=e225da77a7e68af35c70ccbf71af2b83e6acac3c;name=git_d7307bee_23;destsuffix=vcs_cache/21df7493a16af12233b318b2a2a914c541c6b155a0bb6ec0891d01554074c1f4"
SRC_URI += "git://go.googlesource.com/sync;protocol=https;nobranch=1;tag=v0.11.0;shallow=1;rev=fe3591bd8a96873abc98bb9d2d5c62f27efca3e9;name=git_d7307bee_24;destsuffix=vcs_cache/a1ea9c5d66cb424c251553fb8c78853cf27fd86db554b15dc8e4ca40ed88f6f2"
SRC_URI += "git://go.googlesource.com/telemetry;protocol=https;branch=master;rev=1a19826ec488c3c893223573f54d44c8daf5237b;name=git_fe729624_0;destsuffix=vcs_cache/521d61e180a192ddd858d6c59db514ef9d319fa8000362b4167fe2314fb70264"
SRC_URI += "git://go.googlesource.com/telemetry;protocol=https;branch=master;rev=bda55230c457d8271c577c0da94d4b94e3543dd4;name=git_fe729624_1;destsuffix=vcs_cache/55f64daa6b07d1422edbea2ff80ef3c3307bd4fcf3117421ebc3cbcbb7f53bb8"
SRC_URI += "git://go.googlesource.com/telemetry;protocol=https;branch=master;rev=f48c80bd79b2b9bbe9e92392128a67b8b49dc014;name=git_fe729624_2;destsuffix=vcs_cache/c54180718e7e7daabb84b58a6b2956cf351a2230912f69d7c617c0eff9cb6428"
SRC_URI += "git://go.googlesource.com/crypto;protocol=https;nobranch=1;tag=v0.36.0;shallow=1;rev=49bf5b80c8108983f588ecabd7bf996e6e63a515;name=git_f72f7a6f_0;destsuffix=vcs_cache/e604e80bcc65f6bfcf2b77eacfe5e23de57628a541140ef5b929504f1bf5dec2"
SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;branch=master;rev=04be3eba64a22a838cdb17b8dca15a52871c08b4;name=git_e8cbb9fc_0;destsuffix=vcs_cache/eebbc7ff1ce54422705a4e11c1a375ce3ad751ff9c853e7948e423942bb5e416"
SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;tag=v0.1.9;shallow=1;rev=1b5146add8981d58be77b16229c0ff0f8bebd8c1;name=git_e8cbb9fc_1;destsuffix=vcs_cache/8c142112d3bf2046dde4cb3dda11db03c95a8ab51bfb424b4d31be45594f7e6a"
SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;tag=v0.1.9;shallow=1;rev=2f41105eb62f341cfe208d06de4ee3bdd3a083da;name=git_e8cbb9fc_2;destsuffix=vcs_cache/d1005dd1711b63891c69b5b7174c44abae72f194572a3a97648371206aff52f6"
SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;tag=v0.1.9;shallow=1;rev=5ec99f83aff198f5fbd629d6c8d8eb38a04218ca;name=git_e8cbb9fc_3;destsuffix=vcs_cache/1a7eef0babb47828059471e537bef1e9023bf22cd1c23e5fcaf7523b68332e82"
SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;tag=v0.1.9;shallow=1;rev=65e65417b02f28de84b55f16b46a1e789149973a;name=git_e8cbb9fc_4;destsuffix=vcs_cache/fb4550d892569011a6d824653edfa1346570f06c13855e9f494086cb828c67d0"
SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;branch=master;rev=7835f813f4da395c9a1f7c0fe732a63d1c79d331;name=git_e8cbb9fc_5;destsuffix=vcs_cache/85f1ddb5366a63575b400fe71b8e71e61442686574ec1bd9cbe86a4d29b14eaa"
SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;tag=v0.1.9;shallow=1;rev=9bdfabe68543c54f90421aeb9a60ef8061b5b544;name=git_e8cbb9fc_6;destsuffix=vcs_cache/a190c0bd506167cc1631eefeb81697d88fd666066c0d35abb4f058915f9881cd"
SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;tag=v0.1.9;shallow=1;rev=a985d3407aa71f30cf86696ee0a2f409709f22e1;name=git_e8cbb9fc_7;destsuffix=vcs_cache/19bf66358270f1db6b287805895c6fc8385236e01234a96b3da1d15fe70245f7"
SRC_URI += "git://go.googlesource.com/xerrors;protocol=https;nobranch=1;tag=v0.1.9;shallow=1;rev=f3a8303e98df87cf4205e70f82c1c3c19f345f91;name=git_e8cbb9fc_8;destsuffix=vcs_cache/b58a4cb0d6e1fba648c1252d9b2defce5bc798b0687f24402e56035456e8856c"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=0405dc783f0a9c4dbf56901f56e49fa485943f4c;name=git_879ce674_0;destsuffix=vcs_cache/d8094bfff5be63c2b0853e1c998c2afa53b43dba21cc8d3cfe527f9d7ece4fe5"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;branch=master;rev=054e65f0b394d1bf387a254295588fb7e5bd0516;name=git_879ce674_1;destsuffix=vcs_cache/dbb067264d2f4bb818fb9a2ea13cd7f757ff6d42d3564c479d688490c14fad88"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;branch=master;rev=2d47ceb2692f22136c9ff680c192d3d19c5dd9e2;name=git_879ce674_2;destsuffix=vcs_cache/fa78cf25fa01c74cefb0336713724c43d794cf309539a0b58c51aa1c413b6612"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=2f50522955873285d9bf17ec91e55aec8ae82edc;name=git_879ce674_3;destsuffix=vcs_cache/a9173c2f6c06cf46d8d352e9a005f8a639979213a6b3ce9c28b85b3a8feea812"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;branch=master;rev=334a2380cb910c8f550f5736c3bb95510c92a425;name=git_879ce674_4;destsuffix=vcs_cache/52e7a308d0009512027c90d3cb8746f08c35e838b8c5bcfdcf228f8c247082a0"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=3d87b88a115fa4e65fadcbf34e6a60e8040cec41;name=git_879ce674_5;destsuffix=vcs_cache/b24969f2e7dcc79cbe05f9664aee0357541a14e2fce927851795c1bab65c851d"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=509febef88a4b4fad613c9cc84ac7e982f22e774;name=git_879ce674_6;destsuffix=vcs_cache/24a92c0230c7a99a0620162cfb1c9889faa209539dc7a8d6c83fe5ce9072c5a3"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;branch=master;rev=542afb5b7346d69c3c878cfdd23a583e8524294d;name=git_879ce674_7;destsuffix=vcs_cache/4d68604c768c2db1f3a002a4924870097b24fd45f2fef4ed6fda23efa710af33"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=6cc2880d07d65fc535a1fb4fbd58b397bc1c5312;name=git_879ce674_8;destsuffix=vcs_cache/d44b881013a1a32499c214d17a48e29f44234e14bdad245c0c13d53242305333"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=8460e604b9de9da5834c9f198cadf9dca4b05cac;name=git_879ce674_9;destsuffix=vcs_cache/40977dead8068fd4b2ff7931c2a65890c06ac3fbe73cedd91e7bdaba1396450c"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;branch=master;rev=8a7402abbf56ed11a2540c1d8beb569bd29e22d1;name=git_879ce674_10;destsuffix=vcs_cache/3575b051814aade4d8d39c1eaad80043b24b44f1c94ac279ffa894655e6e9268"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=a1355ae1e2c30eb123356c2a35c2f420652999f9;name=git_879ce674_11;destsuffix=vcs_cache/8142b4f7c5934b463d74ac709369928d7bd5de48755654856e25b7cfc4680248"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=a1ab85dbe136a36c66fbea07de5e3d62a0ce60ad;name=git_879ce674_12;destsuffix=vcs_cache/c407947082e00cb9b17e762f1bdf26756d1c843481a7cbf2b9db2195a5f000e3"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=a1d7652674e8f269b17d9be90d3c4c1d0e8830e8;name=git_879ce674_13;destsuffix=vcs_cache/5da1e6476d8c10399b2d224d117d1922fe284dbd2d5a779a5c8eed9ef52b1ae1"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=c13cbed26979984b7dddd468b78daf72f8b4b473;name=git_879ce674_14;destsuffix=vcs_cache/5e3865da628c79dcfbf1fe1b38e44eec9a2cb87916320ca4b24e18c632d01c0e"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=c74c464bbbf2425793dda2a0044770271fc009c7;name=git_879ce674_15;destsuffix=vcs_cache/048156c64e3fc8188190d7b12d3a6b0225808e64a7322471dce0880951f52ed0"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;branch=master;rev=c95f2b4c22f226b18030fd3b7d5cd47e0d12395a;name=git_879ce674_16;destsuffix=vcs_cache/f76523cedcb5f027ada68cb92d0853bc7821bd839c9080b39d75620c26fda2d2"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=da58074b429933d2abeae71d6ef619366febf38e;name=git_879ce674_17;destsuffix=vcs_cache/0c008f03dfadc1ba1ed0f9302784a76949b4893799820d559755ea2e0ab1acfa"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=efd6b22b2522a48712e1fd0b3c1ab34d243f5245;name=git_879ce674_18;destsuffix=vcs_cache/4281c66658a4012d76c7a15fa06fddce2becfd1e8d1481fc5f88cc83d970e281"
SRC_URI += "git://go.googlesource.com/exp;protocol=https;nobranch=1;tag=v1.19.1;shallow=1;rev=f17229e696bd4e065144fd6ae1313e41515abbdc;name=git_879ce674_19;destsuffix=vcs_cache/91669ead7de1bac04412edfec51b8a55066b1b5d40fd8e953da885087ddb5d1b"
SRC_URI += "git://bitbucket.org/bertimus9/systemstat;protocol=https;nobranch=1;tag=v0.5.0;shallow=1;rev=a9593ffcd68e650a7a948ece6e3cedea1e335947;name=git_18196d4b_0;destsuffix=vcs_cache/6ca0e0fb7cbc92d202c2811fcab489de19da52e28373c626af0f0a1dc83c58fb"
SRC_URI += "git://github.com/helm/helm;protocol=https;nobranch=1;tag=v3.17.3;shallow=1;rev=e4da49785aa6e6ee2b86efd5dd9e43400318262b;name=git_1a0f2f14_0;destsuffix=vcs_cache/f6717b1e9762a48fcfd9c6be43396848479d6ba05c7290900b26cf004535c7a7"
SRC_URI += "git://github.com/kubernetes/utils;protocol=https;branch=master;rev=0af2bda4dd1d4b5b10c2a000f68c34d1e0b83acf;name=git_9da930f9_0;destsuffix=vcs_cache/412ce20112e66799b2741bf75932f9be5b8946f566fa272287f2fdeef5305184"
SRC_URI += "git://github.com/kubernetes/system-validators;protocol=https;nobranch=1;tag=v1.10.1;shallow=1;rev=d1ccc6057dcb381921dc84645ebf75c5bd9063e9;name=git_44dd04a8_0;destsuffix=vcs_cache/588ebe9de3d6575ae2d8a441ca3d7212351215fddfcfa70d3a134a8200abd883"
SRC_URI += "git://github.com/kubernetes/kube-openapi;protocol=https;branch=master;rev=f3f2b991d03be98072466d6aff0880ad93184b2c;name=git_dbee483c_0;destsuffix=vcs_cache/bbdfcb1726af92c510f587baa66600e18719a63bbabc846728d7c2ff829a2146"
SRC_URI += "git://github.com/kubernetes/gengo;protocol=https;branch=master;rev=76c5745d351167fef4d517eb79e7f6458db10957;name=git_c68f8a69_0;destsuffix=vcs_cache/090f1773e66d5d5a460eb0fa7d3ab67bc78ed27e620f54dfba8d7e154f7d0aec"
SRC_URI += "git://github.com/kubernetes/gengo;protocol=https;branch=master;rev=85fd79dbfd9fc7a328697266cbb852e1857ec2a0;name=git_c68f8a69_1;destsuffix=vcs_cache/fecf0b6497c8938df1af06bac17e71f9443e9b53c193ded4d9ff97fae707fc02"
SRC_URI += "git://github.com/kubernetes/cri-client;protocol=https;nobranch=1;tag=v0.34.1;shallow=1;rev=6063f15166ef1384cca5a06281c5da320e25c843;name=git_9869dd94_0;destsuffix=vcs_cache/da96e29ada69cae3ebde2d235f6bdbd0f8b320c860d135991549f36f64b63cdd"
SRC_URI += "git://github.com/cncf-tags/container-device-interface;protocol=https;nobranch=1;tag=specs-go/v1.0.0;shallow=1;rev=40e4c311613750fb2bf8766635d4ed60c0bf3194;name=git_c2439148_0;destsuffix=vcs_cache/a9b36137e55bc5c537c3eddc79e73eca4dc1c855628a8e32e027103df4d865f4"
SRC_URI += "git://github.com/cncf-tags/container-device-interface;protocol=https;nobranch=1;tag=v1.0.1;shallow=1;rev=79790445c2d70820f6824eb42832d2efd0f08dd2;name=git_c2439148_1;destsuffix=vcs_cache/228f05c3a05800a5e1340385d34910aac599df817838e50aa367b9cd09151186"
SRC_URI += "git://github.com/FiloSottile/edwards25519;protocol=https;nobranch=1;tag=v1.1.0;shallow=1;rev=325f520de716c1d2d2b4e8dc2f82c7ccc5fac764;name=git_41754dd3_0;destsuffix=vcs_cache/f4c4c638435f40478f3fd4350a83ea7fc251e7970f9edee9b9bc5101fbd4f799"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.94.1;shallow=1;rev=0055466d17f3bf8df38c1c87563fee5812b0efc2;name=git_8ce8c847_0;destsuffix=vcs_cache/a1074b1a6eea84588b01563c199258b62134634586a06ae7d4bde3d6dfd91c80"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=iam/v0.12.0;shallow=1;rev=01c4e075c5cd6d24443aeb725c6089b41d3ef014;name=git_8ce8c847_1;destsuffix=vcs_cache/a4a079629de638d5ff06c7791d502bea07404f5929ad807a954e01f6dc7f3ada"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.34.0;shallow=1;rev=0ebda48a7f143b1cce9eb37a8c1106ac762a3430;name=git_8ce8c847_2;destsuffix=vcs_cache/7ad758c4afa07e6d3eb84e55900eeb0ff823b42b3cc292be6b8ea1282a8fabdd"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.62.0;shallow=1;rev=12af083615cb0c363f5a43f7d25f615049e754df;name=git_8ce8c847_3;destsuffix=vcs_cache/1452f5fa14873c4e7e03f8afdbba0306f2a99d0aca851efb3d63cd1b52f6c5b1"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=1da6f8becc6593973e5db1705242a9ce554bea3a;name=git_8ce8c847_4;destsuffix=vcs_cache/611cf51adb6a7768419f8b60c9f13a2748c34db479b34083d88e66990828c5b7"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.97.0;shallow=1;rev=26286e362470c1b4e60e33d07cb2e12b62843ed7;name=git_8ce8c847_5;destsuffix=vcs_cache/dff11aa213cd83ed83f49e9ac5a1f9fc8d13376ed14aaf51307692bbf0237982"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.46.3;shallow=1;rev=264def2dd949cdb8a803bb9f50fa29a67b798a6a;name=git_8ce8c847_6;destsuffix=vcs_cache/ad04bf19c8e676046d04fd39dfb263b0986dc7f2e0a3d7ff9d50b116eb0899c3"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.104.0;shallow=1;rev=268106262c293afcf527c0478f61edeefda36531;name=git_8ce8c847_7;destsuffix=vcs_cache/e1732755559e422d81de774120b3e393a4682a6b8052acfcc15aa68a25a5f4b3"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=pubsub/v1.30.0;shallow=1;rev=27944ca88115b8bd8cd22b6e620d38a116138601;name=git_8ce8c847_8;destsuffix=vcs_cache/0192e5c0cb05cf9d9525a0be46d4c12a8f7b3d8afe9a90434bfa6c55e8dabac8"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.87.0;shallow=1;rev=2a43d6d30d7041eb6ed0b305c81dc32c8c42ebc1;name=git_8ce8c847_9;destsuffix=vcs_cache/3bd23936ac05ea93983ee27ffee76cb0033d5bf8d5d04c19bc3ff86f3aedd856"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.1.0;shallow=1;rev=30266055641ae2d75b9f59cd97b1f1be2063b5c3;name=git_8ce8c847_10;destsuffix=vcs_cache/38306b9c69267cdd2a9d5ebcb989846b8393f3fc17b719f19cac4763dd928914"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=31cd2720718549130beba36431b52fd1e17a62cd;name=git_8ce8c847_11;destsuffix=vcs_cache/b765c5e702844356d169606afedf6172bad2a216794625f7683f12c0ebc76323"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/v1.10.0;shallow=1;rev=3280a16f594a30e199eea5b884210bc4874588f9;name=git_8ce8c847_12;destsuffix=vcs_cache/1d74a84bfc999f82c74fc47d353b13155f2cc2be4fc46084aaffceeca1e76c99"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/metadata/v0.5.2;shallow=1;rev=35d1f813f755c88d6869d993796c5ddf8ac3eea3;name=git_8ce8c847_13;destsuffix=vcs_cache/545512f9060ccdd4a5f961c7872003895f14afd8d660e406e141363d3cbedd5a"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=storage/v1.28.1;shallow=1;rev=3756ec80e8575c3501addee5b859e0782ff1fe9d;name=git_8ce8c847_14;destsuffix=vcs_cache/328ff1f52af08e0324d7c72df47d8c7d47882340af6fb2dcecce024f516e015a"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=speech/v1.15.0;shallow=1;rev=3c279308301a8276ba79082ea44ad47d5861e8c0;name=git_8ce8c847_15;destsuffix=vcs_cache/0c186def62dae0a7f74b18cd772f48a83c8dd700c66cffc62686b774ad54c771"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.102.1;shallow=1;rev=41e3d636a41ffc9182aee77e8292652e81cf3774;name=git_8ce8c847_16;destsuffix=vcs_cache/3ff06e67fc463ebdc97119f99b8fe1bfc5dee35222beb11f0ae1cf800f72f7cc"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.78.0;shallow=1;rev=43314b8a54eed1a5d50fa2b571a331b7b2c33c59;name=git_8ce8c847_17;destsuffix=vcs_cache/9dfb9984b7a384a1d413f21fced678b83eca79e247fa930c5cdc1d411cb82251"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.3.0;shallow=1;rev=44b3a7d2be2df066b6625227cf4e4988d35a2cd1;name=git_8ce8c847_18;destsuffix=vcs_cache/ba89cfe9648fb75fb9ac78822a06eb2277c00d5c6c080986d01b030dff3ec227"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=kms/v1.6.0;shallow=1;rev=4501142495a8c98324a8eda7a6bd3c0fc636aa58;name=git_8ce8c847_19;destsuffix=vcs_cache/a15323629ee8ae35ad1d0d1af7b2d97db3f3aa89b6af66724ede87654f911459"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/metadata/v0.1.0;shallow=1;rev=478962e1292c6dd7825b037a2df716e1e19288d1;name=git_8ce8c847_20;destsuffix=vcs_cache/82df32d4daaf5cabca0a58d2904ef57458c45d65a4355f68de0dc67e588db9ce"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/v1.14.0;shallow=1;rev=4854a71afe422c812b0702f3aa7adeb3d4ede26c;name=git_8ce8c847_21;destsuffix=vcs_cache/7209d38f6644d6a8d1818fac7557a3526a2e126698b86def8b4800ffe657cec0"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.99.0;shallow=1;rev=5563382a8560ea851e6d54962ea71165b2807b24;name=git_8ce8c847_22;destsuffix=vcs_cache/de22d8e511d3eea0a886608bc4d8fcc3c0083b36b1463b99ed19b11fd9aa6c06"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=56d81f123b5b4491aaf294042340c35ffcb224a7;name=git_8ce8c847_23;destsuffix=vcs_cache/da5fed3e77e6c34534cccf240d6303797df6d5fe7fa8b925de8bbc7e3f207d9d"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=5db0ea82df1f243e699227467382e1436b8e1ad7;name=git_8ce8c847_24;destsuffix=vcs_cache/c54daae69626d86e9e6435bc94258f1ac6b4639ae329e529592c99150e2c801f"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.65.0;shallow=1;rev=5f1389763ab4f59736c2a60413b7cb0c59f044a2;name=git_8ce8c847_25;destsuffix=vcs_cache/5ab5786d1dd61aeb45ab9d535988ed7a53b1dddc50b37192fb1298fce8babc77"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=pubsublite/v1.7.0;shallow=1;rev=60a29626e86617234850ad02cf2ebc4e28fed51d;name=git_8ce8c847_26;destsuffix=vcs_cache/547bcc606f17fdee8a4e746e4bc8e53f4bdab567833520e649ae7bd7e615cbcd"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.83.0;shallow=1;rev=63479374d0dd7e42f16da1199ca6cb42903dca68;name=git_8ce8c847_27;destsuffix=vcs_cache/7f4f9abf8e4c57096eb1360bc3026be4765c670fe2c1f2b309ffb036ba11abac"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=6836342c67d0d1eccc745a5a4a3dfa9d2b56ac28;name=git_8ce8c847_28;destsuffix=vcs_cache/7eb6034d3ae4ea10fa9dbbe0c3eb9fa71edc14797b958f2d2f152219a64688bd"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=logging/v1.7.0;shallow=1;rev=69705144832c715cf23832602ad9338b911dff9a;name=git_8ce8c847_29;destsuffix=vcs_cache/0279d1606680b9c7598aebcfa83529fddc0043426140ba3c1486778adb49a1d3"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.56.0;shallow=1;rev=69e77e66e59741e053c986d469791a983ee1d6a5;name=git_8ce8c847_30;destsuffix=vcs_cache/2c54e38defb5dd556378ba26ee0c65786d0f6296b86a655d917f7461dbfcc751"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.52.0;shallow=1;rev=6daa679260d92196ffca2362d652c924fdcb7a22;name=git_8ce8c847_31;destsuffix=vcs_cache/eea8ca18c0885d5dd09afbbffaeaa8b1bec09e22f03cccb13b5c788ee77d502c"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.93.3;shallow=1;rev=71387f0142a47d5452dffe710e9a9013d6f73fed;name=git_8ce8c847_32;destsuffix=vcs_cache/e36ccce6d1cd743c1138ac40f4301daa0ad91e036f198d9e6f0908d5b311db0b"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=kms/v1.10.1;shallow=1;rev=73a0597a2ed9b53338f54153b0e50bd367efab5c;name=git_8ce8c847_33;destsuffix=vcs_cache/cc27d3332ce5f22c4c98870f78572fbf5cf77977e783c8b28df50f7f84001eb4"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=firestore/v1.9.0;shallow=1;rev=756f7bf9cab1a402fe3b496c5cdbbeabf7b5112d;name=git_8ce8c847_34;destsuffix=vcs_cache/ceb4b249f664729cc64329479900818ede6e2e15b1f44715a2f23d5fad459446"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.102.0;shallow=1;rev=76df551f315a74a8347fa1843471c3f6361cb411;name=git_8ce8c847_35;destsuffix=vcs_cache/abf0a818373ed838017b3c4e2c095dc49d3596434a4df414cf16b1bfd5a32001"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.75.0;shallow=1;rev=78ee29b9079c9f8a19c34eb69f7d62b5fe3ed638;name=git_8ce8c847_36;destsuffix=vcs_cache/6b8c349bc0c7c5f22cb7ed159e66eadfa34cc4eb99daa7f8b7fe85dc1ca910e8"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.107.0;shallow=1;rev=792b962171dad5fcb9cad8440a85b571326ef94a;name=git_8ce8c847_37;destsuffix=vcs_cache/0bec27d910a6c6f923cd2ef64411541df0ff66ea5ab3aac2841651c4f571aa9c"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.79.0;shallow=1;rev=7b265c31d18abf4998af13e547bdf0fb1ed904b3;name=git_8ce8c847_38;destsuffix=vcs_cache/f7f486a0948a9da7caae091a2c03a8bbf4085525e03af9f21ff82a3ac77d0dd6"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.84.0;shallow=1;rev=7be0af6601eb5f557776ca09bd55b2df72e98d75;name=git_8ce8c847_39;destsuffix=vcs_cache/7246e10db395d40ebeb3660505170d9cc37fdf1f896b04667268bbdb40aec5c3"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/metadata/v0.2.0;shallow=1;rev=851a985848f217504cac0f1085601e85f810088b;name=git_8ce8c847_40;destsuffix=vcs_cache/7721cca1db0223ae75394c2047a351fae91e1f92f7e8d5c4df198b8616e9e864"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=storage/v1.29.0;shallow=1;rev=89071ae6ddd608d93aee14bc5b26dc6790a2669d;name=git_8ce8c847_41;destsuffix=vcs_cache/aab2dc94de4369a20e2f38855ada4e73cdbb4961e74b06ca16b4fb6e5b21aafd"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.38.0;shallow=1;rev=8c41231e01b2085512d98153bcffb847ff9b4b9f;name=git_8ce8c847_42;destsuffix=vcs_cache/5933d0346f98b5e818b31546f3361b0cfd4fc785135d5047043b3c46aac43e4d"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=8de2b41cefa46546cb9e52939e2af9ff41f3980a;name=git_8ce8c847_43;destsuffix=vcs_cache/a7b7071e7aca5b2ef18bf5ae3085d96957dcafc640d2ad7365fcf22a8dccff15"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=longrunning/v0.1.1;shallow=1;rev=900afc403f6a1b477fa52a2a9fa6e3db1547d860;name=git_8ce8c847_44;destsuffix=vcs_cache/79131b5bc942072dcf42aea4271b97409de03d9f1d30502810bcd5d5ea51a2d7"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.57.0;shallow=1;rev=925e4a2f53e8013f144420c7f561482b927024b9;name=git_8ce8c847_45;destsuffix=vcs_cache/3d59ac8823d7dd43d82bc2211e31e8be3ac10b15765a249c2985a5153bdf03d3"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=osconfig/v1.11.0;shallow=1;rev=947c9ace8740e40abe0ca79acb894ea333655f88;name=git_8ce8c847_46;destsuffix=vcs_cache/3630c70041e226e9c6007e499bddcf67e2ccaf86513fbbd0927a03539f196ee4"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.74.0;shallow=1;rev=993bc6d69389a81fc259e0ce6f5d01cb37bd2899;name=git_8ce8c847_47;destsuffix=vcs_cache/993e946f6dc15fb972472d46f2f64f71cf65baf6ccb9fc8227d2c133a885c446"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=99cfff1d6ffbc0a069b0d74814c97a25a65e077d;name=git_8ce8c847_48;destsuffix=vcs_cache/1c73a951d16f1eadfd9668b4a7aba9a5e52d5a99d792a13724afbfe62df9284d"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=iam/v0.6.0;shallow=1;rev=9fa7217e34e24d79d8b7ed11074dfe9e25b67ec6;name=git_8ce8c847_49;destsuffix=vcs_cache/90d398f07459729da9186d901543984a16327facb1c3274fcb31ad7c196e5117"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=a23d0dd54ebca4349e1255a78c6ec05dafb020b2;name=git_8ce8c847_50;destsuffix=vcs_cache/b204b39ecd40f78188e1c45bc946057b037cf8b6bf15db430337fe6fe6540527"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.54.0;shallow=1;rev=a6b88cf34a491498e4c7d15c107a31058693e2cb;name=git_8ce8c847_51;destsuffix=vcs_cache/643c7ad670c2babb5230f39ae42a095ca08a4f896441270c95478c910307eabd"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.81.0;shallow=1;rev=a9e5bdc4191b4b9282b3b53c549e89ccd183c9b6;name=git_8ce8c847_52;destsuffix=vcs_cache/72eb750ec6bc3c197bb7c7fe1386a95c1cd3dd56fffe8b6b57ef4c5b6378b1ee"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=iam/v0.11.0;shallow=1;rev=a9fe62eaef43fdf27f07b1c0762ecddac57c469f;name=git_8ce8c847_53;destsuffix=vcs_cache/6a714cdb5142408730551c791c7874235d0ec0278adb0f7aae5016b58fb28d6e"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=bigquery/v1.50.0;shallow=1;rev=ac0a0f6a39a6d02bbb8688ce9cd52c3f272d1874;name=git_8ce8c847_54;destsuffix=vcs_cache/1c03e9457f90be4b8998effb917c342db7cc012dbd10b2f78d28494b3d6d15a0"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.110.0;shallow=1;rev=b4d0ff0e4e7be0f8048416f13db56d1c7bb6bec0;name=git_8ce8c847_55;destsuffix=vcs_cache/3eb00a05770eb9cdc4ca914054fe73e39f91c54df2ddaff3484170db110c731c"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=b53c5fb3db03202ca43bdc3ca484ff1212a6cd4f;name=git_8ce8c847_56;destsuffix=vcs_cache/6d3cdd28868d4c72115213e864880d9223eab71bfd0bb68e4dcd8dffb38d5d80"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=pubsub/v1.28.0;shallow=1;rev=b5b7cdec59df6a746ed7ffef0aad667ced8cbc87;name=git_8ce8c847_57;destsuffix=vcs_cache/fb65615d3397e5d763aa37d818a7aa6e7e67309626c49b6451b8e7afa4cd1aa6"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=b819419387769bd414bbf8d8622d4f213a07350c;name=git_8ce8c847_58;destsuffix=vcs_cache/4b5a499f3906301cfa1bc3dd7506cc3ab8a30d3e64643dae15d2a3df5cbceee5"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/metadata/v0.3.0;shallow=1;rev=b952f41fc832fbe5ed74f47ae0e6d6f2e93448e0;name=git_8ce8c847_59;destsuffix=vcs_cache/6cefe0e999f7e54f8e4350f47ea965e709d95914a8205ce1f2c9f111222524ac"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.72.0;shallow=1;rev=ba853fd15702573bfcc69d9187821063f8778a8e;name=git_8ce8c847_60;destsuffix=vcs_cache/561f8a1401677c2cd508f6f67e24958f2b20ba5130e3dd4cebeebf0551c29022"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=optimization/v1.3.1;shallow=1;rev=bd90ad90c1de4495ea270e7d1ba3390a41f88f0a;name=git_8ce8c847_61;destsuffix=vcs_cache/45fdc59ebb89ea304418f28be93aa6613d32d05b8b377929074d7c25b263fb9e"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/metadata/v0.2.1;shallow=1;rev=bda33ab27df09e69800fa6358e2c6b29aa524c31;name=git_8ce8c847_62;destsuffix=vcs_cache/f8239654c937164cc6334a1550e2564de5ab3a83f19af69dd417e1dae7e23ba6"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.100.2;shallow=1;rev=c0e65c58430ba7e2f39a90c5e3c27f4f34f3e188;name=git_8ce8c847_63;destsuffix=vcs_cache/8f1905daf867ec0b5e08a8b567419075a32b3025defd5986e14901910d42be2c"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=notebooks/v1.8.0;shallow=1;rev=c2bf628da9b4f30df75608ffa77c2fb8d6a6cf8d;name=git_8ce8c847_64;destsuffix=vcs_cache/f11241d1e14390e3617f702b3ca39f1546fc5e4be50f7e3b27689550649d33e6"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/v1.15.1;shallow=1;rev=c2f7b349b0623cbf4c7f4bbd1fe5d575004c5248;name=git_8ce8c847_65;destsuffix=vcs_cache/bdb6c8df626ebeb03676b1b17ac78bbac07a07fffea3d6de43bfce9f3b0a21f7"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/metadata/v0.6.0;shallow=1;rev=c33cc6112a45ef9cbb0a8940bc49e3126a92f22f;name=git_8ce8c847_66;destsuffix=vcs_cache/d28d24a1c059f24f9a19e965a78cb9f99f1d7b30bd6e1af88358e59da7e762dd"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=spanner/v1.45.0;shallow=1;rev=c43900b8ec37740e7b6cabac9e32e4ec2851f123;name=git_8ce8c847_67;destsuffix=vcs_cache/f3aa3ca9566ce95c17185541c91237648e6011af5df40998b2210fed59d4a203"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.44.2;shallow=1;rev=c498a8335f5bc0f6eeec5ba68bef9f242770ed4c;name=git_8ce8c847_68;destsuffix=vcs_cache/14757f8cdcf1b5f5fea99a0b6427c2367c68af3a6b3314512b6fe9c4e89e1dbf"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.44.1;shallow=1;rev=c5d562bdb35850f11d6a275d85ab8535265e9821;name=git_8ce8c847_69;destsuffix=vcs_cache/77a653a2698a34f18f297d16fa94ed1966c94014b679e285cc2218c821030b83"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=errorreporting/v0.3.0;shallow=1;rev=c9aebae6d9cd8518bc247b7198ed38365577a872;name=git_8ce8c847_70;destsuffix=vcs_cache/c4a772c1fc6c9f2d513fcf21c61d6c9d435d488f438a97d88dd0b534491ad286"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=cdfd26840ecae6f823b2f7cae293a78c569a0a87;name=git_8ce8c847_71;destsuffix=vcs_cache/b2ea19419967c9862136fb26de65fceb2e07d89a43e592f7bd0ab77689f492aa"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/v1.13.0;shallow=1;rev=ce0c9440634b17558adea724ea4e5a735dc1f1d0;name=git_8ce8c847_72;destsuffix=vcs_cache/ea268d0ffc7f46c5379a110aa36265f7938f14253e60a15854b44c5c07c33739"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.44.3;shallow=1;rev=ceeb313ad77b789a7fa5287b36a1d127b69b7093;name=git_8ce8c847_73;destsuffix=vcs_cache/24e285f07cd9c0a14066e60065f8bdb716deb8de5b4cb8f9f49f3a50844a747b"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/metadata/v0.2.3;shallow=1;rev=cf8081fada0955a1682ce3fc400b44bc141309c7;name=git_8ce8c847_74;destsuffix=vcs_cache/9781311b5fcf66277a24594fe45884bd90cf6bb3b5b187c6807d1bb0b50707c5"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=certificatemanager/v1.6.0;shallow=1;rev=d19398dcc8b0913e6cbdf9a80d950564be48201d;name=git_8ce8c847_75;destsuffix=vcs_cache/d3657b54277173a20eb852d4e9d53eb0de5866432be7173d7f77960375a129eb"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.45.1;shallow=1;rev=d1af076dc3f6a314e9dd6610fe83b0f7afaff6d6;name=git_8ce8c847_76;destsuffix=vcs_cache/3d58727c7b52e938bdda1392282e968c0fcdaefa02596301a3ccf4ca52236684"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/v1.18.0;shallow=1;rev=d1db4b27fd8d31b35f4f5d136b5b7120e130ebe8;name=git_8ce8c847_77;destsuffix=vcs_cache/e82b0fcc6518b31a8f87b735d4b1e0b2c9f44feed5269d1b73c59e6d658494f3"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=d67722db87258fa5365697918ba1e04b8db53f95;name=git_8ce8c847_78;destsuffix=vcs_cache/23e6867706f8754674949ee16f0e60dc092711a2ad84aee51f01dafea85a547b"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.53.0;shallow=1;rev=d96ccb2ba7586bb79a416471882d347754a78ce5;name=git_8ce8c847_79;destsuffix=vcs_cache/d87010ffe0aa3f31fc0e1a12ae8c86b69f122b30c9e2d231aea274d9244c4017"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/metadata/v0.5.0;shallow=1;rev=dbd3f0a56ce509d07d0b1dabc41fc59c4f5b03fc;name=git_8ce8c847_80;destsuffix=vcs_cache/089b3c1386cf111c3317b786cdf3d790a4f200d0e92bd4ace1efe29b55b8d75c"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/v1.19.3;shallow=1;rev=de2567030b46dca629c4226b680c66692d0bd7e4;name=git_8ce8c847_81;destsuffix=vcs_cache/8c1a189de721529fdc795f95c6d5a644cdf4e277c92a50c2b3d0c73731b5aa13"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.31.0;shallow=1;rev=debcad1964693daf8ef4bc06292d7e828e075130;name=git_8ce8c847_82;destsuffix=vcs_cache/e00ea9f64eabbf9a9f221a272d9b8bba0bf2955ed6bc71c66d3f69bc26de6d57"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=compute/v1.12.1;shallow=1;rev=e23881d96705b96acf2937ea8ac2a48b6013f034;name=git_8ce8c847_83;destsuffix=vcs_cache/cb2d2c7bb536ca050e799d59b9574309d408ede867330bd01698a7fd4541dcbd"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.50.0;shallow=1;rev=e5804108aed715c49f731aab1a847f063fb23681;name=git_8ce8c847_84;destsuffix=vcs_cache/89062298181093c14eca0b795d368045c510b8131551e7e0607d6beda8df0cef"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=e992f090fd6a4a0d576b960a3c0590f73a71e3e7;name=git_8ce8c847_85;destsuffix=vcs_cache/054f690a30936e0afd5af196f62910d1b3d3f0af512e3e7a87e93760ecc1b161"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.90.0;shallow=1;rev=e9ddbfed05f5d824664769f6cd2baaf71c12b7c3;name=git_8ce8c847_86;destsuffix=vcs_cache/50a39d3ef02514605a409479867a9f43566d6174f46b32015f0d5a11a2581185"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=datastore/v1.11.0;shallow=1;rev=ecb7f028bbf462aa3424ee9b9611821b8540b283;name=git_8ce8c847_87;destsuffix=vcs_cache/f81b913266aef0efd9c0061d88a123d1cbff38a374bc04ec920ed45877f904df"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=storage/v1.27.0;shallow=1;rev=f471d12b8756566e832702830c414198f2b5f8d3;name=git_8ce8c847_88;destsuffix=vcs_cache/3d2b851809aa67c64dc641219140622c85ab1463050221390ea68e9ef14b5d4b"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=v0.37.0;shallow=1;rev=f52f9bc132541d2aa914f42100c36d10b1ef7e0c;name=git_8ce8c847_89;destsuffix=vcs_cache/90b488f875629fea1edb8c640a0226f5839168f947add1fec1ad3ed82f733207"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;branch=main;rev=f5833e6cd8d2fc39e4decb9962062904601fc9c9;name=git_8ce8c847_90;destsuffix=vcs_cache/a35f7138c197a678f26b06ea0b23fcb309be9874c4a34c38f613d4fb67eeb01a"
SRC_URI += "git://github.com/googleapis/google-cloud-go;protocol=https;nobranch=1;tag=kms/v1.9.0;shallow=1;rev=fe33c7b797f35139e7bfdefdae3d5e18356f09bb;name=git_8ce8c847_91;destsuffix=vcs_cache/1525a429c8d4f8c555cf5e1789b0cfc9243d6646302f882234466de04ccb6548"
|