-
Notifications
You must be signed in to change notification settings - Fork 0
/
playground.swift
13013 lines (12997 loc) · 666 KB
/
playground.swift
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
import Foundation
extension String {
private static let githubComPrefix = "https://github.com/"
private static let gitSuffix = ".git"
var droppingGithubComPrefix: String {
if lowercased().hasPrefix(String.githubComPrefix) {
return String(dropFirst(String.githubComPrefix.count))
}
return self
}
var droppingGitExtension: String {
if lowercased().hasSuffix(String.gitSuffix) {
return String(dropLast(String.gitSuffix.count))
}
return self
}
var cacheDirectoryName: String? {
URL(string: self).flatMap {
guard let host = $0.host, !host.isEmpty else { return nil }
let trunk = $0.path
.replacingOccurrences(of: "/", with: "-")
.lowercased()
.droppingGitExtension
guard !trunk.isEmpty else { return nil }
return trunk.hasPrefix("-")
? host + trunk
: host + "-" + trunk
}
}
}
let compatible_5_2 = [
"https://github.com/0111b/Conf.git",
"https://github.com/0111b/JSONDecoder-Keypath.git",
"https://github.com/0x7fs/countedset.git",
"https://github.com/0xdeadp00l/bech32.git",
"https://github.com/1024jp/GzipSwift.git",
"https://github.com/1024jp/WFColorCode.git",
"https://github.com/123flo321/pogoprotos-swift.git",
"https://github.com/1904labs/ios-test-utils.git",
"https://github.com/20tab/depthnsdictionary.git",
"https://github.com/3a4oT/DateToolsObjC.git",
"https://github.com/3d4medical/gltfscenekit.git",
"https://github.com/3lvis/Networking.git",
"https://github.com/3qax/swiftyoled.git",
"https://github.com/417-72KI/SwiftUtilities.git",
"https://github.com/ABridoux/BooleanExpressionEvaluation.git",
"https://github.com/ABridoux/lux.git",
"https://github.com/AaronBratcher/AgileDB.git",
"https://github.com/Adorkable/Eunomia.git",
"https://github.com/Adorkable/swift-log-format-and-pipe.git",
"https://github.com/AlTavares/Ciao.git",
"https://github.com/AlTavares/Nappa.git",
"https://github.com/Alamofire/Alamofire.git",
"https://github.com/Alamofire/AlamofireImage.git",
"https://github.com/AlaskaAirlines/keychain.git",
"https://github.com/Alecrim/AlecrimAsyncKit.git",
"https://github.com/Alecrim/AlecrimCoreData.git",
"https://github.com/AlexLittlejohn/DelaunaySwift.git",
"https://github.com/AliSoftware/Dip.git",
"https://github.com/AliSoftware/OHHTTPStubs.git",
"https://github.com/AliSoftware/Reusable.git",
"https://github.com/AlwaysRightInstitute/NWHTTPProtocol.git",
"https://github.com/AlwaysRightInstitute/Shell.git",
"https://github.com/AlwaysRightInstitute/SwiftEliza.git",
"https://github.com/AlwaysRightInstitute/SwiftObjCBridge.git",
"https://github.com/AlwaysRightInstitute/SwiftXmlRpc.git",
"https://github.com/AlwaysRightInstitute/SwiftyExpat.git",
"https://github.com/AlwaysRightInstitute/WebPackMiniS.git",
"https://github.com/AlwaysRightInstitute/mustache.git",
"https://github.com/AlwaysRightInstitute/wren-swift.git",
"https://github.com/AndrewBarba/Bluebird.swift.git",
"https://github.com/AndrewBarba/alpaca-swift.git",
"https://github.com/AndrewBarba/ed25519.git",
"https://github.com/ApolloZhu/BilibiliKit.git",
"https://github.com/ApolloZhu/srt2bilibilikit.git",
"https://github.com/ApolloZhu/swift_qrcodejs.git",
"https://github.com/Appsaurus/Avatars.git",
"https://github.com/Appsaurus/CodableExtensions.git",
"https://github.com/Appsaurus/PlaceholderImages.git",
"https://github.com/Appsaurus/RandomFactory.git",
"https://github.com/Appsaurus/RuntimeExtensions.git",
"https://github.com/Appsaurus/SwiftTestUtils.git",
"https://github.com/ArtSabintsev/Freedom.git",
"https://github.com/Arti3DPlayer/USBDeviceSwift.git",
"https://github.com/AsyncNinja/AsyncNinja.git",
"https://github.com/AvdLee/Poes.git",
"https://github.com/AvdLee/appstoreconnect-swift-sdk.git",
"https://github.com/Azoy/Sword.git",
"https://github.com/BadhanGanesh/BJOTPViewController.git",
"https://github.com/Balancingrock/Ascii.git",
"https://github.com/Balancingrock/BRUtils.git",
"https://github.com/Balancingrock/Http.git",
"https://github.com/Balancingrock/SwifterLog.git",
"https://github.com/Balancingrock/SwifterSockets.git",
"https://github.com/Balancingrock/vjson.git",
"https://github.com/BalestraPatrick/Stryng.git",
"https://github.com/BarredEwe/MoyaNetworkClient.git",
"https://github.com/Bayer-Group/TimberSwift.git",
"https://github.com/BeAppOnline/AFBilling.git",
"https://github.com/BeAppOnline/AFNetwork.git",
"https://github.com/BeAppOnline/Cancellable.git",
"https://github.com/BellAppLab/Defines.git",
"https://github.com/BellAppLab/Weakable.git",
"https://github.com/BenEmdon/CenteredCollectionView.git",
"https://github.com/BenchR267/Parsel.git",
"https://github.com/BenziAhamed/Tracery.git",
"https://github.com/Bersaelor/KDTree.git",
"https://github.com/Bersaelor/SwiftyHYGDB.git",
"https://github.com/BiAtoms/Http.swift.git",
"https://github.com/BiAtoms/Request.swift.git",
"https://github.com/BiAtoms/Socket.swift.git",
"https://github.com/BiAtoms/Xml.swift.git",
"https://github.com/Bilue/ContentFittingWebView.git",
"https://github.com/BinaryBirds/build-kit.git",
"https://github.com/BinaryBirds/git-kit.git",
"https://github.com/BinaryBirds/shell-kit.git",
"https://github.com/Blackjacx/Quickie.git",
"https://github.com/Boilertalk/BigInt.swift.git",
"https://github.com/Boilertalk/Keystore.swift.git",
"https://github.com/Boilertalk/Web3.swift.git",
"https://github.com/Boilertalk/telegrambot.swift.git",
"https://github.com/Boris-Em/ColorKit.git",
"https://github.com/Bouke/ICY.git",
"https://github.com/Brightify/ReactantUI.git",
"https://github.com/BubiDevs/SwiftFlags.git",
"https://github.com/Building42/HTTPParserC.git",
"https://github.com/Building42/Telegraph.git",
"https://github.com/CUITCHE/UserCaches.git",
"https://github.com/Carthage/Commandant.git",
"https://github.com/Carthage/ReactiveTask.git",
"https://github.com/Ch0uti/ChouTi.git",
"https://github.com/Chandlerdea/HTTPKit.git",
"https://github.com/ChargePoint/xcparse.git",
"https://github.com/CharlesJS/CSAuthSample.git",
"https://github.com/CharlesJS/CSProgress.git",
"https://github.com/ChimeHQ/Dusk.git",
"https://github.com/ChimeHQ/Meter.git",
"https://github.com/ChimeHQ/NicerTouchBar.git",
"https://github.com/ChimeHQ/OperationPlus.git",
"https://github.com/ChimeHQ/Rearrange.git",
"https://github.com/ChimeHQ/SwiftLSPClient.git",
"https://github.com/ChimeHQ/WindowTreatment.git",
"https://github.com/Clafou/DevicePpi.git",
"https://github.com/Clipy/KeyHolder.git",
"https://github.com/Clipy/LoginServiceKit.git",
"https://github.com/Clipy/Magnet.git",
"https://github.com/Clipy/Sauce.git",
"https://github.com/Clipy/Screeen.git",
"https://github.com/CocoaLumberjack/CocoaLumberjack.git",
"https://github.com/CodeNationDev/CoreTempMonitorSwift.git",
"https://github.com/CodeNationDev/IntegritySwift.git",
"https://github.com/CodeNationDev/SimplyLogger.git",
"https://github.com/CodeNationDev/SwiftMagicHelpers.git",
"https://github.com/CodeNationDev/UIMagicDropDown.git",
"https://github.com/CodyFlame/CodyFire.git",
"https://github.com/Coeur/CollectionViewCenteredFlowLayout.git",
"https://github.com/CombineCommunity/CombineCocoa.git",
"https://github.com/CombineCommunity/CombineDataSources.git",
"https://github.com/CombineCommunity/CombineRealm.git",
"https://github.com/CombineHarvesters/AVFoundationCombine.git",
"https://github.com/CombineHarvesters/CombineTesting.git",
"https://github.com/CombineHarvesters/FoundationCombine.git",
"https://github.com/CombineHarvesters/HealthKitCombine.git",
"https://github.com/CooperCorona/COpenBlas.git",
"https://github.com/CooperCorona/CoronaErrors.git",
"https://github.com/CooperCorona/CoronaMath.git",
"https://github.com/CoreOffice/CoreXLSX.git",
"https://github.com/CoreOffice/CryptoOffice.git",
"https://github.com/CoreOffice/OLEKit.git",
"https://github.com/Cosmo/GrammaticalNumber.git",
"https://github.com/Cosmo/HackMan.git",
"https://github.com/Cosmo/Nodes.git",
"https://github.com/Cosmo/StringCase.git",
"https://github.com/CuratoOpenSource/InjectableLoggers.git",
"https://github.com/CypherPoet/AnimatableGradients.git",
"https://github.com/CypherPoet/SwiftUIPolygon.git",
"https://github.com/Daniel1of1/CSwiftV.git",
"https://github.com/DanielCardonaRojas/SwiftVerify.git",
"https://github.com/DanielCardonaRojas/Veil.git",
"https://github.com/Darkngs/DECardNumberFormatter.git",
"https://github.com/Darkngs/DEPhoneNumberFormatter.git",
"https://github.com/DarthStrom/Moxie.git",
"https://github.com/DataModelGen/DataModelKit.git",
"https://github.com/DaveWoodCom/XCGLogger.git",
"https://github.com/DavidSkrundz/Collections.git",
"https://github.com/Dean151/ImageUtility.git",
"https://github.com/Dean151/RecordingOverlay.git",
"https://github.com/DeclarativeHub/ReactiveKit.git",
"https://github.com/DenTelezhkin/Ariadne.git",
"https://github.com/Desquared/Greek-vocative-name-iOS.git",
"https://github.com/DiUS/pact-consumer-swift.git",
"https://github.com/Digipolitan/alamofire-logging.git",
"https://github.com/Digipolitan/dependency-injector.git",
"https://github.com/Digipolitan/framework-swift-template.git",
"https://github.com/Digipolitan/localization-toolkit-object-mapper.git",
"https://github.com/Digipolitan/localization-toolkit.git",
"https://github.com/Digipolitan/runtime-environment.git",
"https://github.com/Digipolitan/session-kit.git",
"https://github.com/DimaRU/CDRCodable.git",
"https://github.com/DingSoung/Extension.git",
"https://github.com/DirectToSwift/SwiftUIRules.git",
"https://github.com/DuetHealth/Bedrock.git",
"https://github.com/DuetHealth/DrX.git",
"https://github.com/DynamicKit/SecurityKit.git",
"https://github.com/EFPrefix/EFQRCode.git",
"https://github.com/Einstore/HTTPMediaTypes.git",
"https://github.com/Einstore/WebErrorKit.git",
"https://github.com/Ether-CLI/Manifest.git",
"https://github.com/EtneteraMobile/ETBinding.git",
"https://github.com/FabioTacke/RingSig.git",
"https://github.com/FabrizioBrancati/BFKit-Swift.git",
"https://github.com/FabrizioBrancati/Queuer.git",
"https://github.com/FamilySearch/sModel.git",
"https://github.com/FelixHerrmann/FHConstraints.git",
"https://github.com/FelixHerrmann/FHDiffableViewControllers.git",
"https://github.com/FitnessKit/AntMessageProtocol.git",
"https://github.com/FitnessKit/BluetoothMessageProtocol.git",
"https://github.com/FitnessKit/DataDecoder.git",
"https://github.com/FitnessKit/FitDataProtocol.git",
"https://github.com/FitnessKit/FitnessUnits.git",
"https://github.com/FitnessKit/TcxDataProtocol.git",
"https://github.com/Fitzafful/BillboardSwiftLibrary.git",
"https://github.com/Flinesoft/AnyLint.git",
"https://github.com/Flinesoft/CSVImporter.git",
"https://github.com/Flinesoft/HandySwift.git",
"https://github.com/Flinesoft/HandyUIKit.git",
"https://github.com/FluuxIO/XMPP.git",
"https://github.com/FluxorOrg/Fluxor.git",
"https://github.com/FluxorOrg/FluxorExplorerInterceptor.git",
"https://github.com/FluxorOrg/FluxorExplorerSnapshot.git",
"https://github.com/FormatterKit/DayPeriodFormatter.git",
"https://github.com/Frizlab/stream-reader.git",
"https://github.com/Frugghi/SwiftLCS.git",
"https://github.com/Fyrts/Multipart.git",
"https://github.com/GEOSwift/GEOSwift.git",
"https://github.com/GEOSwift/GEOSwiftMapKit.git",
"https://github.com/GEOSwift/geos.git",
"https://github.com/GenericDataSource/GenericDataSource.git",
"https://github.com/GetStream/stream-swift.git",
"https://github.com/GettEngineering/Prism.git",
"https://github.com/GigaBitcoin/secp256k1.swift.git",
"https://github.com/GottaGetSwifty/CodableWrappers.git",
"https://github.com/GraphQLSwift/GraphQL.git",
"https://github.com/GraphQLSwift/Graphiti.git",
"https://github.com/GroupeMINASTE/APIRequest.swift.git",
"https://github.com/GroupeMINASTE/DonateViewController.git",
"https://github.com/GroupeMINASTE/Keychain.swift.git",
"https://github.com/HeroTransitions/Hero.git",
"https://github.com/IBAnimatable/IBAnimatable.git",
"https://github.com/IBDecodable/IBDecodable.git",
"https://github.com/IBDecodable/IBGraph.git",
"https://github.com/IBDecodable/IBLinter.git",
"https://github.com/IBM-Swift/alert-notification-sdk.git",
"https://github.com/IBM/swift-sdk-core.git",
"https://github.com/Igor-Palaguta/MotoSwift.git",
"https://github.com/Igor-Palaguta/YoutubeEngine.git",
"https://github.com/IngmarStein/SMJobKit.git",
"https://github.com/JMatharu/AlgoBrain.git",
"https://github.com/JamitLabs/MungoHealer.git",
"https://github.com/JanGorman/Agrume.git",
"https://github.com/JensRavens/Interstellar.git",
"https://github.com/Jimmy-Lee/Networking.git",
"https://github.com/JimmyMAndersson/StatKit.git",
"https://github.com/Joannis/IkigaJSON.git",
"https://github.com/Joannis/SMTPKitten.git",
"https://github.com/JohnSundell/Codextended.git",
"https://github.com/JohnSundell/Ink.git",
"https://github.com/JohnSundell/ShellOut.git",
"https://github.com/JohnSundell/Splash.git",
"https://github.com/JohnSundell/files.git",
"https://github.com/JohnSundell/identity.git",
"https://github.com/JohnSundell/releases.git",
"https://github.com/JohnSundell/require.git",
"https://github.com/JohnSundell/sweep.git",
"https://github.com/JohnSundell/xgen.git",
"https://github.com/JonathanDowning/SwiftMETAR.git",
"https://github.com/JosephDuffy/HashableByKeyPath.git",
"https://github.com/JosephDuffy/Partial.git",
"https://github.com/JosephDuffy/Persist.git",
"https://github.com/JosephDuffy/SwiftChecksDangerPlugin.git",
"https://github.com/JoshHrach/ActivityIndicatorView.git",
"https://github.com/Jounce/Surge.git",
"https://github.com/JuanjoArreola/AllCache.git",
"https://github.com/JuanjoArreola/Apic.git",
"https://github.com/JuanjoArreola/AsyncRequest.git",
"https://github.com/JuanjoArreola/KeychainStore.git",
"https://github.com/JuanjoArreola/Logg.git",
"https://github.com/JuanjoArreola/ShallowPromises.git",
"https://github.com/Juanpe/SkeletonView.git",
"https://github.com/KKBOX/OpenAPI-Swift.git",
"https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git",
"https://github.com/Kawoou/AnyDate.git",
"https://github.com/KeithPiTsui/PaversSugar.git",
"https://github.com/KelvinJin/AnimatedCollectionViewLayout.git",
"https://github.com/Khan/SwiftTweaks.git",
"https://github.com/KieranHarper/Yakka.git",
"https://github.com/Kinvey/swift-sdk.git",
"https://github.com/KittyMac/flynn.git",
"https://github.com/Kitura/BlueCryptor.git",
"https://github.com/Kitura/BlueECC.git",
"https://github.com/Kitura/BlueRSA.git",
"https://github.com/Kitura/BlueSSLService.git",
"https://github.com/Kitura/BlueSignals.git",
"https://github.com/Kitura/BlueSocket.git",
"https://github.com/Kitura/CCurl.git",
"https://github.com/Kitura/CEpoll.git",
"https://github.com/Kitura/CZlib.git",
"https://github.com/Kitura/CircuitBreaker.git",
"https://github.com/Kitura/CloudEnvironment.git",
"https://github.com/Kitura/Configuration.git",
"https://github.com/Kitura/FileKit.git",
"https://github.com/Kitura/Health.git",
"https://github.com/Kitura/HeliumLogger.git",
"https://github.com/Kitura/Kitura-CORS.git",
"https://github.com/Kitura/Kitura-Cache.git",
"https://github.com/Kitura/Kitura-Compression.git",
"https://github.com/Kitura/Kitura-CouchDB.git",
"https://github.com/Kitura/Kitura-Credentials.git",
"https://github.com/Kitura/Kitura-CredentialsFacebook.git",
"https://github.com/Kitura/Kitura-CredentialsGitHub.git",
"https://github.com/Kitura/Kitura-CredentialsGoogle.git",
"https://github.com/Kitura/Kitura-CredentialsHTTP.git",
"https://github.com/Kitura/Kitura-CredentialsJWT.git",
"https://github.com/Kitura/Kitura-Markdown.git",
"https://github.com/Kitura/Kitura-NIO.git",
"https://github.com/Kitura/Kitura-OpenAPI.git",
"https://github.com/Kitura/Kitura-Session-Redis.git",
"https://github.com/Kitura/Kitura-Session.git",
"https://github.com/Kitura/Kitura-StencilTemplateEngine.git",
"https://github.com/Kitura/Kitura-TemplateEngine.git",
"https://github.com/Kitura/Kitura-WebSocket-Compression.git",
"https://github.com/Kitura/Kitura-WebSocket-NIO.git",
"https://github.com/Kitura/Kitura-WebSocket.git",
"https://github.com/Kitura/Kitura-net.git",
"https://github.com/Kitura/Kitura-redis.git",
"https://github.com/Kitura/Kitura.git",
"https://github.com/Kitura/KituraContracts.git",
"https://github.com/Kitura/KituraKit.git",
"https://github.com/Kitura/LoggerAPI.git",
"https://github.com/Kitura/OpenSSL.git",
"https://github.com/Kitura/Swift-JWT.git",
"https://github.com/Kitura/Swift-Kuery-ORM.git",
"https://github.com/Kitura/Swift-Kuery-PostgreSQL.git",
"https://github.com/Kitura/Swift-Kuery.git",
"https://github.com/Kitura/Swift-SMTP.git",
"https://github.com/Kitura/Swift-cfenv.git",
"https://github.com/Kitura/SwiftyRequest.git",
"https://github.com/Kitura/TypeDecoder.git",
"https://github.com/Kitura/swift-html-entities.git",
"https://github.com/KreuzKummelll/FarmhouseCore.git",
"https://github.com/KristopherGBaker/Maaku.git",
"https://github.com/KristopherGBaker/libcmark_gfm.git",
"https://github.com/Kuniwak/MemoryLeakTestKit.git",
"https://github.com/Kuniwak/MirrorDiffKit.git",
"https://github.com/Kuniwak/MultipartFormDataKit.git",
"https://github.com/L1MeN9Yu/Senna.git",
"https://github.com/LeoNatan/LNPopupController.git",
"https://github.com/LeoNatan/LNPopupUI.git",
"https://github.com/LeoNatan/LNTouchVisualizer.git",
"https://github.com/LogOwl/LogSwift.git",
"https://github.com/LogOwl/LogSwiftKitura.git",
"https://github.com/Lopdo/SwiftPlugins-PluginInterface.git",
"https://github.com/LowKostKustomz/StatusAlert.git",
"https://github.com/LucianoPolit/Caesura.git",
"https://github.com/LuizZak/GPEngine.git",
"https://github.com/LuizZak/JelloSwift.git",
"https://github.com/MAKoski/AppStoreReviewManager.git",
"https://github.com/MKGitHub/DevBoard.git",
"https://github.com/MLSDev/LoadableViews.git",
"https://github.com/MLSDev/TRON.git",
"https://github.com/Macro-swift/Macro.git",
"https://github.com/Macro-swift/MacroApp.git",
"https://github.com/Macro-swift/MacroExpress.git",
"https://github.com/Macro-swift/MacroLambda.git",
"https://github.com/MadeByHecho/Miles.git",
"https://github.com/MaherKSantina/DSCore.git",
"https://github.com/MakeAWishFoundation/SwiftyMocky.git",
"https://github.com/MastodonKit/MastodonKit.git",
"https://github.com/MaxDesiatov/XMLCoder.git",
"https://github.com/MaxDesiatov/typology.git",
"https://github.com/MaxHaertwig/ANTLR4-Swift.git",
"https://github.com/MaxHaertwig/SwiftyHolidays.git",
"https://github.com/Maxvit5/Validator.git",
"https://github.com/Michael-Vorontsov/ResultPromises.git",
"https://github.com/MihaelIsaev/SwifQLNIO.git",
"https://github.com/MiniDOM/MiniDOM.git",
"https://github.com/Mobelux/DataOperation.git",
"https://github.com/Mobelux/DiskCache.git",
"https://github.com/Mobelux/ImageFetcher.git",
"https://github.com/MobileNativeFoundation/Kronos.git",
"https://github.com/MobileNativeFoundation/XCLogParser.git",
"https://github.com/MobileNativeFoundation/set-simulator-location.git",
"https://github.com/Molbie/Outlaw.git",
"https://github.com/Mordil/RediStack.git",
"https://github.com/Moya/Moya.git",
"https://github.com/MrSkwiggs/Netswift.git",
"https://github.com/NSHipster/HypertextLiteral.git",
"https://github.com/NSHipster/swift-log-github-actions.git",
"https://github.com/Nef10/SwiftBeanCountModel.git",
"https://github.com/Nef10/SwiftBeanCountParser.git",
"https://github.com/Neo4j-Swift/Neo4j-Swift.git",
"https://github.com/Neo4j-Swift/PackStream-Swift.git",
"https://github.com/Neo4j-Swift/bolt-swift.git",
"https://github.com/NextLevel/NextLevel.git",
"https://github.com/NextLevel/NextLevelSessionExporter.git",
"https://github.com/Nextdoor/corridor.git",
"https://github.com/NicholasBellucci/SociableWeaver.git",
"https://github.com/NicholasBellucci/StatefulTabView.git",
"https://github.com/NiftyTreeStudios/Nifty-Dice-Roller-cmd.git",
"https://github.com/NiftyTreeStudios/Nifty-Dice-Roller.git",
"https://github.com/Nike-Inc/Elevate.git",
"https://github.com/Nike-Inc/Willow.git",
"https://github.com/Nirma/UIDeviceComplete.git",
"https://github.com/Nirma/UIFontComplete.git",
"https://github.com/NoTests/RxFeedback.swift.git",
"https://github.com/NobodyNada/COpenSSL.git",
"https://github.com/NobodyNada/Clibevent.git",
"https://github.com/NobodyNada/Clibuv.git",
"https://github.com/NobodyNada/Clibwebsockets.git",
"https://github.com/NozeIO/MicroExpress.git",
"https://github.com/NozeIO/Noze.io.git",
"https://github.com/NozeIO/swift-nio-irc-client.git",
"https://github.com/NozeIO/swift-nio-irc-eliza.git",
"https://github.com/NozeIO/swift-nio-irc-server.git",
"https://github.com/NozeIO/swift-nio-irc-webclient.git",
"https://github.com/NozeIO/swift-nio-redis-client.git",
"https://github.com/OAuthSwift/OAuthSwift.git",
"https://github.com/OAuthSwift/OAuthSwiftAlamofire.git",
"https://github.com/OakCityLabs/Endpoint.git",
"https://github.com/OakCityLabs/RealmCoder.git",
"https://github.com/Octadero/MemoryLayoutKit.git",
"https://github.com/Octadero/Unarchiver.git",
"https://github.com/OlehKulykov/PLzmaSDK.git",
"https://github.com/OneAfternoon/Ward.git",
"https://github.com/OpenCombine/OpenCombine.git",
"https://github.com/OpenKitten/BSON.git",
"https://github.com/OpenKitten/Cheetah.git",
"https://github.com/OpenKitten/MongoKitten.git",
"https://github.com/OpenKitten/NioDNS.git",
"https://github.com/OperatorFoundation/Auburn.git",
"https://github.com/OperatorFoundation/Bits.git",
"https://github.com/OperatorFoundation/Blake2.git",
"https://github.com/OperatorFoundation/InternetProtocols.git",
"https://github.com/OperatorFoundation/SwiftQueue.git",
"https://github.com/Otbivnoe/CodableAlamofire.git",
"https://github.com/PL-Swift/CPLSwift.git",
"https://github.com/Peek-Travel/swift-currency.git",
"https://github.com/PerfectlySoft/Perfect-COpenSSL.git",
"https://github.com/PerfectlySoft/Perfect-CZlib-src.git",
"https://github.com/PerfectlySoft/Perfect-MIME.git",
"https://github.com/Peter-Schorn/RegularExpressions.git",
"https://github.com/PoissonBallon/GoogleStaticMapsKit.git",
"https://github.com/Ponyboy47/CLI.git",
"https://github.com/Ponyboy47/CSelect.git",
"https://github.com/Ponyboy47/Cdirent.git",
"https://github.com/Ponyboy47/Cglob.git",
"https://github.com/Ponyboy47/Pathman.git",
"https://github.com/Ponyboy47/Strings.git",
"https://github.com/Ponyboy47/TaskKit.git",
"https://github.com/Pronto-am/MobileCMS-iOS-SDK.git",
"https://github.com/ProxymanApp/atlantis.git",
"https://github.com/PureLayout/PureLayout.git",
"https://github.com/PureSwift/BluetoothDarwin.git",
"https://github.com/PureSwift/GATT.git",
"https://github.com/Qminder/swift-api.git",
"https://github.com/Quick/Nimble.git",
"https://github.com/Quick/Quick.git",
"https://github.com/RACCommunity/FlexibleDiff.git",
"https://github.com/RNCryptor/RNCryptor.git",
"https://github.com/Ramotion/reel-search.git",
"https://github.com/ReCombine/ReCombine.git",
"https://github.com/ReSwift/ReSwift-Router.git",
"https://github.com/ReSwift/ReSwift.git",
"https://github.com/ReactiveCocoa/ReactiveSwift.git",
"https://github.com/ReactiveX/RxSwift.git",
"https://github.com/ReactorKit/ReactorKit.git",
"https://github.com/ReactorKit/WeakMapTable.git",
"https://github.com/RedMadRobot/apexy-ios.git",
"https://github.com/RedMadRobot/autograph.git",
"https://github.com/RedMadRobot/catbird.git",
"https://github.com/RedMadRobot/golden-key.git",
"https://github.com/RedMadRobot/input-mask-ios.git",
"https://github.com/RedMadRobot/parser-autograph.git",
"https://github.com/RedMadRobot/service-autograph.git",
"https://github.com/RedMadRobot/synopsis.git",
"https://github.com/RevenueCat/purchases-ios.git",
"https://github.com/RiftValleySoftware/RVS_BasicGCDTimer.git",
"https://github.com/RiftValleySoftware/RVS_GeneralObserver.git",
"https://github.com/RiftValleySoftware/RVS_Generic_Swift_Toolbox.git",
"https://github.com/RiftValleySoftware/RVS_IPAddress.git",
"https://github.com/RiftValleySoftware/RVS_ParseXMLDuration.git",
"https://github.com/RiftValleySoftware/RVS_PersistentPrefs.git",
"https://github.com/Rightpoint/BonMot.git",
"https://github.com/RougeWare/Swift-Atomic.git",
"https://github.com/RougeWare/Swift-Cross-Kit-Types.git",
"https://github.com/RougeWare/Swift-Function-Tools.git",
"https://github.com/RougeWare/Swift-Lazy-Containers.git",
"https://github.com/RougeWare/Swift-MultiplicativeArithmetic.git",
"https://github.com/RougeWare/Swift-Optional-Tools.git",
"https://github.com/RougeWare/Swift-Rectangle-Tools.git",
"https://github.com/RougeWare/Swift-Safe-Collection-Access.git",
"https://github.com/RougeWare/Swift-SemVer.git",
"https://github.com/RougeWare/Swift-Special-String.git",
"https://github.com/RougeWare/Swift-String-Integer-Access.git",
"https://github.com/RougeWare/Swift-TODO.git",
"https://github.com/RxSwiftCommunity/Action.git",
"https://github.com/RxSwiftCommunity/RxAlamofire.git",
"https://github.com/RxSwiftCommunity/RxCoreLocation.git",
"https://github.com/RxSwiftCommunity/RxDataSources.git",
"https://github.com/RxSwiftCommunity/RxGRDB.git",
"https://github.com/RxSwiftCommunity/RxGesture.git",
"https://github.com/RxSwiftCommunity/RxKeyboard.git",
"https://github.com/RxSwiftCommunity/RxNimble.git",
"https://github.com/RxSwiftCommunity/RxRealm.git",
"https://github.com/RxSwiftCommunity/RxSwiftExt.git",
"https://github.com/S2Ler/FetchedResultsPublisher.git",
"https://github.com/S2Ler/SwiftyImageIO.git",
"https://github.com/SAP/cloud-sdk-ios-fiori.git",
"https://github.com/SCENEE/FloatingPanel.git",
"https://github.com/SD10/GitDiffSwift.git",
"https://github.com/SDWebImage/SDWebImage.git",
"https://github.com/SDWebImage/SDWebImageHEIFCoder.git",
"https://github.com/SDWebImage/SDWebImageLinkPlugin.git",
"https://github.com/SDWebImage/SDWebImageLottieCoder.git",
"https://github.com/SDWebImage/SDWebImagePDFCoder.git",
"https://github.com/SDWebImage/SDWebImagePhotosPlugin.git",
"https://github.com/SDWebImage/SDWebImageSVGCoder.git",
"https://github.com/SDWebImage/SDWebImageWebPCoder.git",
"https://github.com/SDWebImage/libaom-Xcode.git",
"https://github.com/SDWebImage/libdav1d-Xcode.git",
"https://github.com/SDWebImage/libde265-Xcode.git",
"https://github.com/SDWebImage/libheif-Xcode.git",
"https://github.com/SDWebImage/librlottie-Xcode.git",
"https://github.com/SDWebImage/libwebp-Xcode.git",
"https://github.com/Saelyria/Artemis.git",
"https://github.com/Sajjon/ForkHyugitEllipticCurve.git",
"https://github.com/Saklad5/HTTP-Response-Date.git",
"https://github.com/SalehAlbuga/azure-functions-swift.git",
"https://github.com/Sam-Spencer/Easier-CGRect.git",
"https://github.com/Sam-Spencer/HorizonDefaults.git",
"https://github.com/Sam-Spencer/ProgressReporter.git",
"https://github.com/Samasaur1/DiceKit.git",
"https://github.com/Samasaur1/MailKit.git",
"https://github.com/Samasaur1/ProtocolKit.git",
"https://github.com/Samasaur1/REPL.git",
"https://github.com/Samasaur1/RPG-card-generator.git",
"https://github.com/Samasaur1/SimpleSwiftServer.git",
"https://github.com/Samasaur1/SwiftIP.git",
"https://github.com/Samasaur1/SwiftySCADKit.git",
"https://github.com/Samasaur1/ToothpasteSqueezer.git",
"https://github.com/Samasaur1/Typer.git",
"https://github.com/Samasaur1/TyperTool.git",
"https://github.com/Samasaur1/UtilityKit.git",
"https://github.com/SergioEstevao/SVEVideoUI.git",
"https://github.com/Shadberrow/YVAnchor.git",
"https://github.com/ShaneQi/Cooking.git",
"https://github.com/ShaneQi/SwipeSelectingCollectionView.git",
"https://github.com/ShitLib/shitlib-swift.git",
"https://github.com/Shopify/FunctionalTableData.git",
"https://github.com/SlaunchaMan/ErrorAssertions.git",
"https://github.com/SnapKit/SnapKit.git",
"https://github.com/SoftwareEngineerChris/Consolidate.git",
"https://github.com/SoftwareEngineerChris/MonetaryAmount.git",
"https://github.com/SoftwareEngineerChris/MonetaryExchange.git",
"https://github.com/SoftwareEngineerChris/RoundedDecimal.git",
"https://github.com/SomeRandomiOSDev/CBORCoding.git",
"https://github.com/SomeRandomiOSDev/Complex.git",
"https://github.com/SomeRandomiOSDev/Half.git",
"https://github.com/SomeRandomiOSDev/ReadWriteLock.git",
"https://github.com/SomeRandomiOSDev/SwiftyCast.git",
"https://github.com/SongProOrg/songpro-swift.git",
"https://github.com/Spinners/Spin.Swift.git",
"https://github.com/StatusQuo/InjectKit.git",
"https://github.com/SteadyAction/DesignableView.git",
"https://github.com/SusanDoggie/Float16.git",
"https://github.com/SusanDoggie/brotli.git",
"https://github.com/SusanDoggie/libjpeg.git",
"https://github.com/SusanDoggie/libwebp.git",
"https://github.com/SvenTiigi/WhatsNewKit.git",
"https://github.com/SwifQL/Bridges.git",
"https://github.com/SwifQL/MySQLBridge.git",
"https://github.com/SwifQL/PostgresBridge.git",
"https://github.com/SwifQL/SwifQL.git",
"https://github.com/SwifQL/VaporBridges.git",
"https://github.com/SwifQL/VaporFluentDriver.git",
"https://github.com/SwiftAPNs/COpenSSL.git",
"https://github.com/SwiftDocOrg/CommonMark.git",
"https://github.com/SwiftDocOrg/GraphViz.git",
"https://github.com/SwiftDocOrg/Markup.git",
"https://github.com/SwiftDocOrg/SwiftMarkup.git",
"https://github.com/SwiftDocOrg/SwiftSemantics.git",
"https://github.com/SwiftDocOrg/swift-doc.git",
"https://github.com/SwiftGL/Image.git",
"https://github.com/SwiftGL/Math.git",
"https://github.com/SwiftGL/OpenGL.git",
"https://github.com/SwiftGen/StencilSwiftKit.git",
"https://github.com/SwiftNIOExtras/swift-nio-irc.git",
"https://github.com/SwiftNIOExtras/swift-nio-redis.git",
"https://github.com/SwiftORM/SQLite-StORM.git",
"https://github.com/SwiftORM/Storm.git",
"https://github.com/SwiftObjects/SwiftObjects.git",
"https://github.com/SwiftObjects/SwiftObjectsZeeQLBridge.git",
"https://github.com/SwiftPackageIndex/SemanticVersion.git",
"https://github.com/SwiftPackageRepository/GameKitService.swift.git",
"https://github.com/SwiftPackageRepository/ISO639.swift.git",
"https://github.com/SwiftScream/URITemplate.git",
"https://github.com/SwiftStudies/OysterKit.git",
"https://github.com/SwiftWebResources/SemanticUI-Swift.git",
"https://github.com/SwiftWebResources/jQuery-Swift.git",
"https://github.com/SwiftWebUI/SwiftWebUI.git",
"https://github.com/SwifterSwift/SwifterSwift.git",
"https://github.com/SwiftyBeaver/SBObjectiveCWrapper.git",
"https://github.com/SwiftyBeaver/SwiftyBeaver.git",
"https://github.com/SwiftyGuerrero/SGCircuitBreaker.git",
"https://github.com/SwiftyGuerrero/SGSwiftyBind.git",
"https://github.com/SwiftyJSON/SwiftyJSON.git",
"https://github.com/SwiftyLinkerKit/LinkerKitIRCBot.git",
"https://github.com/SwiftyLinkerKit/SwiftyLinkerKit.git",
"https://github.com/SwiftyLinkerKit/SwiftyTM1637.git",
"https://github.com/SwingDev/RxSwiftAutoRetry.git",
"https://github.com/Swinject/Swinject.git",
"https://github.com/Swinject/SwinjectAutoregistration.git",
"https://github.com/TICESoftware/vapor-gorush.git",
"https://github.com/Tantalum73/Audiograph.git",
"https://github.com/ThasianX/ElegantCalendar.git",
"https://github.com/ThasianX/ElegantColorPalette.git",
"https://github.com/ThasianX/ElegantPages.git",
"https://github.com/ThatsJustCheesy/InAnyCase.git",
"https://github.com/ThatsJustCheesy/SDEFinitely.git",
"https://github.com/Thomvis/BrightFutures.git",
"https://github.com/Tunous/JoinedText.git",
"https://github.com/TypeError/koba.git",
"https://github.com/Vidyashrijadhav/MyPackage.git",
"https://github.com/VladimirBrejcha/LoadingView.git",
"https://github.com/VladimirBrejcha/SelectableStackView.git",
"https://github.com/WXKDarkSky/WXKDarkSky.git",
"https://github.com/WeTransfer/Diagnostics.git",
"https://github.com/WeTransfer/GitBuddy.git",
"https://github.com/WeTransfer/Mocker.git",
"https://github.com/WeTransfer/WeTransfer-Swift-SDK.git",
"https://github.com/Weebly/OrderedSet.git",
"https://github.com/WilhelmOks/Appetizer.git",
"https://github.com/WilhelmOks/HexColor.git",
"https://github.com/Workable/swift-error-handler.git",
"https://github.com/WxWatch/DragonService.git",
"https://github.com/X140Yu/pangu.Swift.git",
"https://github.com/Yalantis/Segmentio.git",
"https://github.com/YutoMizutani/JSONtoCodable.git",
"https://github.com/Ze0nC/SwiftPygments.git",
"https://github.com/Ze0nC/SwiftPygmentsPublishPlugin.git",
"https://github.com/ZeeQL/ZeeQL3.git",
"https://github.com/ZeeQL/ZeeQL3Combine.git",
"https://github.com/ZeeQL/ZeeQL3Freddy.git",
"https://github.com/ZeeZide/FSCheckoutSheet.git",
"https://github.com/a2/MessagePack.swift.git",
"https://github.com/a2/swift-shortcuts.git",
"https://github.com/aaronsky/buildkite-swift.git",
"https://github.com/abadikaka/SFSymbolsFinder.git",
"https://github.com/abdalaliii/Unboxing.git",
"https://github.com/abdullahselek/ASCollectionView.git",
"https://github.com/abdullahselek/Lighty.git",
"https://github.com/abdullahselek/Swifty360Player.git",
"https://github.com/abeintopalo/appiconsetgen.git",
"https://github.com/aciidb0mb3r/SwiftMQTT.git",
"https://github.com/adam-fowler/aws-signer-v4.git",
"https://github.com/adam-fowler/big-num.git",
"https://github.com/adam-fowler/compress-nio.git",
"https://github.com/adam-fowler/dictionary-encoder.git",
"https://github.com/adam-fowler/mqtt-nio.git",
"https://github.com/adam-fowler/s3-filesystem-kit.git",
"https://github.com/adam-fowler/swift-srp.git",
"https://github.com/adam-fowler/xml-coding.git",
"https://github.com/adamayoung/TMDb.git",
"https://github.com/adamcichy/SwiftySound.git",
"https://github.com/adamwaite/Validator.git",
"https://github.com/adhumi/bradel.git",
"https://github.com/admkopec/LSFileWrapper.git",
"https://github.com/aestesis/CFreeType.git",
"https://github.com/aestesis/libtess.git",
"https://github.com/aestesis/vulkan.git",
"https://github.com/aestesis/xcb.git",
"https://github.com/agisboye/CLMDB.git",
"https://github.com/agisboye/swiftlmdb.git",
"https://github.com/agnosticdev/networkconnectivity.git",
"https://github.com/aguilarpgc/timelapse.git",
"https://github.com/ahti/SQLele.git",
"https://github.com/ahti/SQLeleCoder.git",
"https://github.com/airbnb/MagazineLayout.git",
"https://github.com/airbnb/ResilientDecoding.git",
"https://github.com/airbnb/lottie-ios.git",
"https://github.com/airsidemobile/JOSESwift.git",
"https://github.com/akane/Magellan.git",
"https://github.com/akashivskyy/QuickSwiftCheck.git",
"https://github.com/akazm/stimpak.git",
"https://github.com/akkyie/SwiftLEB.git",
"https://github.com/akkyie/Tablier.git",
"https://github.com/akkyie/WAKit.git",
"https://github.com/akosma/SwiftMoment.git",
"https://github.com/albertodebortoli/Promis.git",
"https://github.com/alejandro-isaza/Upsurge.git",
"https://github.com/alemar11/AdvancedOperation.git",
"https://github.com/alemar11/Mechanica.git",
"https://github.com/alex566/Match3Kit.git",
"https://github.com/alexandertar/LASwift.git",
"https://github.com/alexanderwe/LoggingKit.git",
"https://github.com/alexanderwe/WebSocketKit.git",
"https://github.com/alexdrone/Utility.git",
"https://github.com/alexeyxo/protobuf-swift.git",
"https://github.com/alexito4/equallyspacedstack.git",
"https://github.com/alexito4/sectioner.git",
"https://github.com/alexjohnj/Requests.git",
"https://github.com/alexjohnj/typednotification.git",
"https://github.com/alexruperez/SecurePropertyStorage.git",
"https://github.com/alexruperez/tagging.git",
"https://github.com/algolia/algoliasearch-client-swift.git",
"https://github.com/allaboutapps/Fetch.git",
"https://github.com/allegro/swift-junit.git",
"https://github.com/altavares/swiftyshell.git",
"https://github.com/amadeu01/atlas.git",
"https://github.com/amarantedaniel/JanusSwift.git",
"https://github.com/americanexpress/xcprojectlint.git",
"https://github.com/amine2233/GitHubModel.git",
"https://github.com/amine2233/Reactive.git",
"https://github.com/amosavian/AMSMB2.git",
"https://github.com/amosavian/ExtendedAttributes.git",
"https://github.com/amosavian/FileProvider.git",
"https://github.com/amzn/service-model-swift-code-generate.git",
"https://github.com/amzn/smoke-aws-credentials.git",
"https://github.com/amzn/smoke-aws-generate.git",
"https://github.com/amzn/smoke-aws.git",
"https://github.com/amzn/smoke-dynamodb.git",
"https://github.com/amzn/smoke-framework.git",
"https://github.com/amzn/smoke-http.git",
"https://github.com/andersonlucasg3/Swift.Binary.git",
"https://github.com/andre-alves/PHDiff.git",
"https://github.com/andreamazz/AMPopTip.git",
"https://github.com/andreamazz/AMScrollingNavbar.git",
"https://github.com/andreamazz/BubbleTransition.git",
"https://github.com/andreamazz/SubtleVolume.git",
"https://github.com/andresilvagomez/Localize.git",
"https://github.com/andybest/linenoise-swift.git",
"https://github.com/aniket965/argstodict.git",
"https://github.com/aniket965/eraser.git",
"https://github.com/aniket965/eternalflame.git",
"https://github.com/aniket965/treecli.git",
"https://github.com/antitypical/Result.git",
"https://github.com/antongaenko/keybro.git",
"https://github.com/antranapp/SwiftyHUDView.git",
"https://github.com/apleshkov/saber.git",
"https://github.com/apparata/clikit.git",
"https://github.com/apparata/rulekit.git",
"https://github.com/appcron/acinteractor.git",
"https://github.com/apple/FHIRModels.git",
"https://github.com/apple/example-package-dealer.git",
"https://github.com/apple/example-package-deckofplayingcards.git",
"https://github.com/apple/example-package-fisheryates.git",
"https://github.com/apple/example-package-playingcard.git",
"https://github.com/apple/swift-algorithms.git",
"https://github.com/apple/swift-argument-parser.git",
"https://github.com/apple/swift-atomics.git",
"https://github.com/apple/swift-crypto.git",
"https://github.com/apple/swift-distributed-tracing-baggage-core.git",
"https://github.com/apple/swift-distributed-tracing-baggage.git",
"https://github.com/apple/swift-distributed-tracing.git",
"https://github.com/apple/swift-format.git",
"https://github.com/apple/swift-llbuild.git",
"https://github.com/apple/swift-log.git",
"https://github.com/apple/swift-metrics.git",
"https://github.com/apple/swift-nio-extras.git",
"https://github.com/apple/swift-nio-http2.git",
"https://github.com/apple/swift-nio-ssh.git",
"https://github.com/apple/swift-nio-ssl.git",
"https://github.com/apple/swift-nio-transport-services.git",
"https://github.com/apple/swift-nio.git",
"https://github.com/apple/swift-numerics.git",
"https://github.com/apple/swift-package-manager.git",
"https://github.com/apple/swift-protobuf.git",
"https://github.com/apple/swift-se0270-range-set.git",
"https://github.com/apple/swift-service-discovery.git",
"https://github.com/apple/swift-statsd-client.git",
"https://github.com/apple/swift-syntax.git",
"https://github.com/apple/swift-system.git",
"https://github.com/apple/swift-tools-support-async.git",
"https://github.com/apple/swift-tools-support-core.git",
"https://github.com/apple/swiftpm-on-llbuild2.git",
"https://github.com/apppear/chartview.git",
"https://github.com/appsquickly/XcodeEditor.git",
"https://github.com/arguiot/Euler.git",
"https://github.com/armadsen/ORSSerialPort.git",
"https://github.com/armadsen/mypackage.git",
"https://github.com/arnecs/mqttkit.git",
"https://github.com/artemkalinovsky/Legatus.git",
"https://github.com/artemnovichkov/TransitionRouter.git",
"https://github.com/artemnovichkov/carting.git",
"https://github.com/artemnovichkov/fastfood.git",
"https://github.com/artemnovichkov/spasibo.git",
"https://github.com/arthurpalves/badgy.git",
"https://github.com/arthurpalves/coherent-swift.git",
"https://github.com/artman/Signals.git",
"https://github.com/arturgrigor/IPAPI.git",
"https://github.com/asensei/AnyCodable.git",
"https://github.com/asensei/Result.git",
"https://github.com/ashfurrow/danger-swiftlint.git",
"https://github.com/ashleymills/Reachability.swift.git",
"https://github.com/asoderman/JSONDecoder.git",
"https://github.com/attaswift/BTree.git",
"https://github.com/attaswift/BigInt.git",
"https://github.com/attaswift/Deque.git",
"https://github.com/attaswift/SipHash.git",
"https://github.com/autimatisering/AMKit.git",
"https://github.com/automatontec/jsonconfig.git",
"https://github.com/autoreleasefool/hive-engine.git",
"https://github.com/autozimu/stringmetric.swift.git",
"https://github.com/avito-tech/GraphiteClient.git",
"https://github.com/aydenp/passencoder.git",
"https://github.com/b3ll/Decomposed.git",
"https://github.com/backslash-f/aescryptable.git",
"https://github.com/badrinathvm/StepperView.git",
"https://github.com/baguio/SwiftUI-IfLet.git",
"https://github.com/banjun/ReactiveSSE.git",
"https://github.com/bankex/web3swift.git",
"https://github.com/bannzai/eracalculator.git",
"https://github.com/bannzai/kuri.git",
"https://github.com/bannzai/ocha.git",
"https://github.com/bannzai/ragnarok.git",
"https://github.com/bannzai/spmdemo.git",
"https://github.com/bannzai/swdifft.git",
"https://github.com/bannzai/teapot.git",
"https://github.com/bannzai/xcodeproject.git",
"https://github.com/batoulapps/adhan-swift.git",
"https://github.com/bearyinnovative/funcbot.git",
"https://github.com/beatsbears/incrementer.git",
"https://github.com/beatsbears/ipaddress_v4.git",
"https://github.com/behrang/YamlSwift.git",
"https://github.com/belozierov/SwiftCoroutine.git",
"https://github.com/bengottlieb/marcel.git",
"https://github.com/bengottlieb/plug.git",
"https://github.com/benspratling4/SwiftPatterns.git",
"https://github.com/benspratling4/swiftawssignaturev4.git",
"https://github.com/benspratling4/swiftfoundationcompression.git",
"https://github.com/bergusman/evotor.git",
"https://github.com/bermudadigitalstudio/Log.git",
"https://github.com/bermudadigitalstudio/cerberus.git",
"https://github.com/bermudadigitalstudio/redshot.git",
"https://github.com/bermudadigitalstudio/titan.git",
"https://github.com/bermudadigitalstudio/titanloggingswiftybeaver.git",
"https://github.com/bersaelor/swiftybeagle.git",
"https://github.com/besarism/SSSSOnboarding.git",
"https://github.com/bgayman/FlipBook.git",
"https://github.com/bgerstle/scout.git",
"https://github.com/bhansconnect/swifttimeit.git",
"https://github.com/bibinjacobpulickal/AutoLayoutProxy.git",
"https://github.com/bibinjacobpulickal/BBAlert.git",
"https://github.com/bibinjacobpulickal/BBLayoutKit.git",
"https://github.com/bibinjacobpulickal/BBLoader.git",
"https://github.com/bibinjacobpulickal/BBToast.git",
"https://github.com/bibinjacobpulickal/ServiceManager.git",
"https://github.com/bielikb/UIViewPreview.git",
"https://github.com/bielikb/UseAutoLayout.git",
"https://github.com/bielikb/textattributes.git",
"https://github.com/bigMOTOR/DataDrivenRxDatasources.git",
"https://github.com/bignerdranch/Deferred.git",
"https://github.com/binarybirds/sunlight.git",
"https://github.com/binarybirds/testify.git",
"https://github.com/binarybirds/timezones.git",
"https://github.com/bitmark-inc/tweetnacl-swiftwrap.git",
"https://github.com/bitrise-io/trace-cocoa-sdk.git",
"https://github.com/bizz84/SwiftyStoreKit.git",
"https://github.com/bjtj/swift-http-server.git",
"https://github.com/bjtj/swift-upnp-tools.git",
"https://github.com/bjtj/swift-xml.git",
"https://github.com/blackjacx/SHDateFormatter.git",
"https://github.com/blackjacx/Source.git",
"https://github.com/bmbowdish/swiftfall.git",
"https://github.com/bmonty/AvWeather.git",
"https://github.com/bojan/Thingy.git",
"https://github.com/bouke/dns.git",
"https://github.com/bouke/glob.git",
"https://github.com/bouke/hkdf.git",
"https://github.com/bouke/ini.git",
"https://github.com/bouke/lark.git",
"https://github.com/bouke/netservice.git",
"https://github.com/bouke/srp.git",
"https://github.com/bow-swift/bow-arch.git",
"https://github.com/bow-swift/bow-lite.git",
"https://github.com/bow-swift/bow.git",
"https://github.com/bow-swift/nef.git",
"https://github.com/bppr/speck.git",
"https://github.com/bradlarson/gpuimage2.git",
"https://github.com/brainfinance/stackdriverlogging.git",
"https://github.com/brettfazio/CameraView.git",
"https://github.com/bricklife/boostblekit.git",
"https://github.com/brightdigit/AssetLib.git",
"https://github.com/brightdigit/Base32Crockford.git",
"https://github.com/brightdigit/GampKit.git",
"https://github.com/brightdigit/MistKit.git",
"https://github.com/brightdigit/Options.git",
"https://github.com/brightdigit/SwiftVer.git",
"https://github.com/broadwaylamb/gottagofast.git",
"https://github.com/brokenhandsio/SteamPress.git",
"https://github.com/brokenhandsio/VaporSecurityHeaders.git",
"https://github.com/brokenhandsio/cmark-gfm.git",
"https://github.com/brokenhandsio/leaf-error-middleware.git",
"https://github.com/bruno-garcia/SentryCocoaLumberjack.git",
"https://github.com/brutella/log-swift.git",
"https://github.com/brutella/xcollectiondata.git",
"https://github.com/brycesteve/perfect-view2pdf.git",
"https://github.com/buzzfeed/MockDuck.git",
"https://github.com/capnslipp/NilCoalescingAssignmentOperators.git",
"https://github.com/capnslipp/SCNMathExtensions.git",
"https://github.com/capnslipp/SCNViewController.git",
"https://github.com/capnslipp/Tribool.git",
"https://github.com/capnslipp/Vuckt.git",
"https://github.com/carekit-apple/carekit.git",
"https://github.com/carson-katri/attributedstringbuilder.git",
"https://github.com/carthage/carthage.git",
"https://github.com/cats-oss/Degu.git",
"https://github.com/cats-oss/ExtensionProperty.git",
"https://github.com/cats-oss/Sica.git",
"https://github.com/cats-oss/cujira.git",
"https://github.com/cats-oss/grpc-swift-client.git",
"https://github.com/catverse/balam.git",
"https://github.com/cbaker6/CertificateSigningRequest.git",
"https://github.com/cbguder/CBGPromise.git",
"https://github.com/cbpowell/MarqueeLabel.git",
"https://github.com/ccgus/fmdb.git",
"https://github.com/cellular/cellular-swift.git",
"https://github.com/cezheng/Fuzi.git",
"https://github.com/cfilipov/texttable.git",
"https://github.com/cgarciae/ndarray.git",
"https://github.com/cgarciae/stream.git",
"https://github.com/che1404/vipergen.git",
"https://github.com/chenyunguiMilook/SwiftyXML.git",
"https://github.com/chipjarred/KnuthAlgorithmD.git",
"https://github.com/chrisaljoudi/swift-log-oslog.git",
"https://github.com/chrisamanse/QRSwift.git",
"https://github.com/chrisladd/DashDashSwift.git",
"https://github.com/chrispomeroyhale/csv-dialect-swift.git",
"https://github.com/christiankm/FinanceKit.git",
"https://github.com/chrs1885/Capable.git",
"https://github.com/ckanchan/CDKOraccInterface.git",
"https://github.com/ckanchan/CDKSwiftOracc.git",
"https://github.com/cloudant/swift-cloudant.git",
"https://github.com/cloutiertyler/base58string.git",
"https://github.com/cmtrounce/SwURL.git",
"https://github.com/codeOfRobin/CloudKitFeatureFlags.git",
"https://github.com/codeeagle/combineex.git",
"https://github.com/codeinversion/sensors-swift-trainers.git",
"https://github.com/codeinversion/sensors-swift.git",
"https://github.com/codewinsdotcom/PostgresClientKit.git",
"https://github.com/coinbase/coinbase-ios-sdk.git",
"https://github.com/coinpaprika/changelly-api-swift-client.git",
"https://github.com/coinpaprika/coinpaprika-api-swift-client.git",
"https://github.com/coinpaprika/coinswitch-api-swift-client.git",
"https://github.com/collinhundley/jwt.git",
"https://github.com/commercetools/commercetools-ios-sdk.git",
"https://github.com/composed-swift/composed.git",
"https://github.com/composed-swift/composedui.git",
"https://github.com/contentful/contentful-persistence.swift.git",
"https://github.com/contentful/contentful.swift.git",
"https://github.com/contentstack/contentstack-swift.git",
"https://github.com/contentstack/contentstack-utils-swift.git",
"https://github.com/coodly/talktocloud.git",
"https://github.com/coopercorona/voronoi.git",
"https://github.com/cosmo/iso8859.git",
"https://github.com/couriere/uiextensions.git",
"https://github.com/cpageler93/api-client.git",
"https://github.com/cpageler93/consulswift.git",
"https://github.com/cpageler93/jiraswift.git",
"https://github.com/cpageler93/quack.git",
"https://github.com/cpageler93/swiftyhawk.git",
"https://github.com/creekpld/romanize.git",
"https://github.com/crelies/ListPagination.git",
"https://github.com/crelies/json-dsl.git",
"https://github.com/crelies/uikit-modifiers.git",
"https://github.com/cremo-music/notus.git",
"https://github.com/cristik/Suture.git",
"https://github.com/crossroadlabs/Regex.git",
"https://github.com/crspybits/CredentialsDropbox.git",
"https://github.com/crspybits/CredentialsMicrosoft.git",
"https://github.com/crspybits/SwiftyAWSSNS.git",
"https://github.com/cryptomator/cryptolib-swift.git",
"https://github.com/cs4alhaider/Helper4Swift.git",
"https://github.com/cs4alhaider/NetworkKit.git",
"https://github.com/cs4alhaider/ProfilePlaceholderView.git",
"https://github.com/cszatmary/DiscreteMathematics.git",
"https://github.com/cszatmary/SwiftySweetness.git",
"https://github.com/ctreffs/SwiftImGui.git",
"https://github.com/ctreffs/SwiftSimctl.git",
"https://github.com/cx-org/CombineX.git",
"https://github.com/cxa/MenuItemKit.git",
"https://github.com/cxa/Piz.git",
"https://github.com/cxa/XPaver.git",