forked from JuliaRegistries/General
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Registry.toml
3030 lines (3028 loc) · 261 KB
/
Registry.toml
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
name = "General"
uuid = "23338594-aafe-5451-b93e-139f81909106"
repo = "https://github.com/JuliaRegistries/General.git"
description = """
Official general Julia package registry where people can
register any package they want without too much debate about
naming and without enforced standards on documentation or
testing. We nevertheless encourage documentation, testing and
some amount of consideration when choosing package names.
"""
[packages]
00701ae9-d1dc-5365-b64a-a3a3ebf5695e = { name = "BioAlignments", path = "B/BioAlignments" }
00718b61-6157-5045-8849-3d4c4093d022 = { name = "Convertible", path = "C/Convertible" }
0087ddc6-3964-5e57-817f-9937aefb0357 = { name = "MathOptInterfaceMosek", path = "M/MathOptInterfaceMosek" }
009559a3-9522-5dbb-924b-0b6ed2b22bb9 = { name = "XGBoost", path = "X/XGBoost" }
00bb91fb-75dd-5f5f-97ed-3cee78a05366 = { name = "Boltzmann", path = "B/Boltzmann" }
00bf1f32-23ad-54cc-bf6e-3216db8a43a2 = { name = "SolveDSGE", path = "S/SolveDSGE" }
00cbc572-0deb-5633-9df8-266c9fbbb95c = { name = "ImageRegistration", path = "I/ImageRegistration" }
00d00faa-c8f6-542a-bba9-9987f051d897 = { name = "TotalVariation", path = "T/TotalVariation" }
00e1d38a-71a9-5665-8612-32ae585a75a3 = { name = "NumericalMethodsforEngineers", path = "N/NumericalMethodsforEngineers" }
00ebfdb7-1f24-5e51-bd34-a7502290713f = { name = "CSTParser", path = "C/CSTParser" }
0111da9b-5c18-507b-82d1-0701aba3485a = { name = "HyperbolicPlane", path = "H/HyperbolicPlane" }
011e45e9-a2a7-589e-9d3d-92a8c4506549 = { name = "SparseVectors", path = "S/SparseVectors" }
01453d9d-ee7c-5054-8395-0335cb756afa = { name = "DiffEqDiffTools", path = "D/DiffEqDiffTools" }
01605889-e1f3-5716-a155-5007402aa664 = { name = "FactCheck", path = "F/FactCheck" }
01638602-6071-5c9b-be9d-28079212bf65 = { name = "DevIL", path = "D/DevIL" }
01680d73-4ee2-5a08-a1aa-533608c188bb = { name = "GenericSVD", path = "G/GenericSVD" }
016819b2-f4c4-559b-a82b-d92a82b855ff = { name = "Algencan", path = "A/Algencan" }
01a6e8c0-b5b3-11e9-1fe6-8b3e5c2aa61e = { name = "FstFileFormat", path = "F/FstFileFormat" }
01e79fc4-f247-5fa3-af0e-2bd1d4cc767f = { name = "Cumulants", path = "C/Cumulants" }
01f381cc-face-5a0a-ade9-ef63dc65d628 = { name = "ProjectiveVectors", path = "P/ProjectiveVectors" }
01fcc997-4f28-56b8-8a06-30002c134abb = { name = "FTPClient", path = "F/FTPClient" }
02130f1c-4665-5b79-af82-ff1385104aa0 = { name = "NOMAD", path = "N/NOMAD" }
028f657a-7ace-5159-a694-8cfd97933b0c = { name = "TotalLeastSquares", path = "T/TotalLeastSquares" }
029fbca0-4020-57ac-9646-11c6794697c1 = { name = "QuantumTomography", path = "Q/QuantumTomography" }
02a96ca5-b822-518b-9654-c826a3622d91 = { name = "GLText", path = "G/GLText" }
02d47bb6-7ce6-556a-be16-bb1710789e2b = { name = "TensorCast", path = "T/TensorCast" }
02fcd773-0e25-5acc-982a-7f6622650795 = { name = "ImageTransformations", path = "I/ImageTransformations" }
033835bb-8acc-5ee8-8aae-3f567f8a3819 = { name = "JLD2", path = "J/JLD2" }
03512f2c-8e8a-5728-b518-32bdd82c6646 = { name = "Grid", path = "G/Grid" }
0374c0b2-85fe-5995-9aba-c71c9668af00 = { name = "CorrNoise", path = "C/CorrNoise" }
0376cc21-f8a9-5fcf-8891-fde1415a4fd3 = { name = "Reinforce", path = "R/Reinforce" }
037cace4-c66a-5006-a6b7-c26ba1b2f83e = { name = "TOML", path = "T/TOML" }
03a36d30-c4fd-5eb2-8349-29d148f4657d = { name = "EasyPkg", path = "E/EasyPkg" }
03a91e81-4c3e-53e1-a0a4-9c0c8f19dd66 = { name = "SplitApplyCombine", path = "S/SplitApplyCombine" }
03bc5d91-8e1a-555a-857b-eaff090ecb7c = { name = "SchattenNorms", path = "S/SchattenNorms" }
03c08e68-d706-55a2-92d2-cbe0f9d07a98 = { name = "Devectorize", path = "D/Devectorize" }
03c2b57b-fb4c-5576-ac09-ef0ca0563633 = { name = "ObjectStores", path = "O/ObjectStores" }
03cd79ca-8c7a-5860-9d8a-6c8e1a175697 = { name = "TinyInt", path = "T/TinyInt" }
03d21f85-4b71-5aa4-88fd-39a722493ec0 = { name = "DeepDish", path = "D/DeepDish" }
03de777c-af7e-5070-b460-500ad0553889 = { name = "UnitlessFlatten", path = "U/UnitlessFlatten" }
041a2d23-8c6e-5597-be73-bf96b5e0dfd4 = { name = "SortMerge", path = "S/SortMerge" }
04294c92-b9b2-5258-861c-e23397c8ec5d = { name = "VSL", path = "V/VSL" }
0438fec6-b81c-52d9-9651-d286848f50a8 = { name = "EquationsOfState", path = "E/EquationsOfState" }
0448d7d9-159c-5637-8537-fd72090fea46 = { name = "RandomizedLinAlg", path = "R/RandomizedLinAlg" }
048039a2-5e1a-11e9-0eb6-5da22298fca4 = { name = "StochasticSemiDiscretizationMethod", path = "S/StochasticSemiDiscretizationMethod" }
048d6160-1a0b-53cd-a5b3-316946cc8d80 = { name = "MortarContact2D", path = "M/MortarContact2D" }
04a0146e-e6df-5636-8d7f-62fa9eb0b20c = { name = "Variography", path = "V/Variography" }
04a18a73-7590-580c-b363-eeca0919eb2a = { name = "ClassImbalance", path = "C/ClassImbalance" }
04a3d532-ba69-5937-989a-472689bdb720 = { name = "OptimPack", path = "O/OptimPack" }
04afed74-ac16-11e9-37b6-1352e3e05830 = { name = "CryptoUtils", path = "C/CryptoUtils" }
04d39a18-1502-5db8-a704-9ca743349cef = { name = "HyperDualMatrixTools", path = "H/HyperDualMatrixTools" }
04f20302-f1b9-11e8-29d9-7d841cb0a64a = { name = "WorldOceanAtlasTools", path = "W/WorldOceanAtlasTools" }
05003743-e4a8-526e-8961-a30f3f368c99 = { name = "FLAC", path = "F/FLAC" }
0514ce98-527e-5c83-a6f3-1386c478fe4b = { name = "DynMultiply", path = "D/DynMultiply" }
051d7522-44e4-540e-be03-d1c94a7ee7ea = { name = "Weber", path = "W/Weber" }
052768ef-5323-5732-b1bb-66c8b64840ba = { name = "CUDA", path = "C/CUDA" }
053f045d-5466-53fd-b400-a066f88fe02a = { name = "SimilaritySearch", path = "S/SimilaritySearch" }
054b7d4e-9922-5ad3-8b46-7dbe695a681f = { name = "Strategems", path = "S/Strategems" }
055956cb-9e8b-5191-98cc-73ae4a59e68a = { name = "DiffEqPhysics", path = "D/DiffEqPhysics" }
057dd010-8810-581a-b7be-e3fc3b93f78c = { name = "FastTransforms", path = "F/FastTransforms" }
0589d01f-c3b6-5cc6-ab6a-4b6af70345b6 = { name = "Orchestra", path = "O/Orchestra" }
059b0e18-018a-5deb-a5b2-c624ee85784b = { name = "ClosedIntervals", path = "C/ClosedIntervals" }
059e8e86-8a00-5752-9d3d-adbce60f63dd = { name = "ControlToolbox", path = "C/ControlToolbox" }
05bca326-078c-5bf0-a5bf-ce7c7982d7fd = { name = "SimpleDiffEq", path = "S/SimpleDiffEq" }
05c142c7-bb2b-5e1a-8572-72adadc91edc = { name = "Brim", path = "B/Brim" }
0601b4d0-0592-11e9-1558-ab091b5e7996 = { name = "BetweenFlags", path = "B/BetweenFlags" }
0612f1b9-51e2-5127-9fc2-313c368ba66d = { name = "Augmentor", path = "A/Augmentor" }
06416c39-db7e-5258-b068-33480f0cdbbc = { name = "ChipSort", path = "C/ChipSort" }
067cfa3b-fa88-53b2-a873-5b23b3a16e31 = { name = "NonlinearEigenproblems", path = "N/NonlinearEigenproblems" }
069b7b12-0de2-55c6-9aab-29f3d0a68a2e = { name = "FunctionWrappers", path = "F/FunctionWrappers" }
06bb1623-fdd5-5ca2-a01c-88eae3ea319e = { name = "PenaltyFunctions", path = "P/PenaltyFunctions" }
06dfef30-8e85-11e9-0a8e-cb6ed32fdbef = { name = "MerkleTrees", path = "M/MerkleTrees" }
06e1c1a7-607b-532d-9fad-de7d9aa2abac = { name = "TiledIteration", path = "T/TiledIteration" }
06e20410-f094-55a1-8b95-30db52a31525 = { name = "SQSChannels", path = "S/SQSChannels" }
06eb3307-b2af-5a2a-abea-d33192699d32 = { name = "ManifoldLearning", path = "M/ManifoldLearning" }
06f97529-6637-5087-ad05-841db92f8a3d = { name = "DeclarativePackages", path = "D/DeclarativePackages" }
07022389-42e1-531f-a782-428ffad55639 = { name = "EmpiricalRisks", path = "E/EmpiricalRisks" }
070d9d8b-17a7-5814-83fa-42438ba5c6e0 = { name = "Diana", path = "D/Diana" }
071ae1c0-96b5-11e9-1965-c90190d839ea = { name = "DiffEqGPU", path = "D/DiffEqGPU" }
07258bb1-70fb-50ed-9200-988f9681c4d2 = { name = "KaTeX", path = "K/KaTeX" }
0729bffe-8e6b-52fa-a3fa-893719b744f4 = { name = "POMDPToolbox", path = "P/POMDPToolbox" }
072d6d2a-3012-5899-ad46-80d259e265c6 = { name = "Stats", path = "S/Stats" }
07493b3f-dabb-5b16-a503-4139292d7dd4 = { name = "Alpine", path = "A/Alpine" }
074bffb8-faa7-59ba-9894-a592f955b684 = { name = "DependenciesParser", path = "D/DependenciesParser" }
07503c7f-9676-5157-a8e2-6c0d0a9caee7 = { name = "BritishNationalGrid", path = "B/BritishNationalGrid" }
0775deef-a35f-56d7-82da-cfc52f91364d = { name = "SoftPosit", path = "S/SoftPosit" }
077cf62c-ad2d-5edd-99ec-638372f8b004 = { name = "sparseQFCA", path = "S/sparseQFCA" }
0796e94c-ce3b-5d07-9a54-7f471281c624 = { name = "Tokenize", path = "T/Tokenize" }
079b6ec6-a4f7-11e9-0358-1904ae85a441 = { name = "RandomBasedArrays", path = "R/RandomBasedArrays" }
07b341a0-ce75-57c6-b2de-414ffdc00be5 = { name = "ADCME", path = "A/ADCME" }
07bf71a7-21be-5f6a-a6d1-44595bb4f960 = { name = "Arbitrary", path = "A/Arbitrary" }
07d1fe3e-3e46-537d-9eac-e9e13d0d4cec = { name = "TensorKit", path = "T/TensorKit" }
07e3d4f1-5dc2-5a3a-9c19-e1965b76eff9 = { name = "SortingNetworks", path = "S/SortingNetworks" }
07f2c1e0-90b0-56cf-bda7-b44b56e34eed = { name = "Modia3D", path = "M/Modia3D" }
07f847a3-b39a-5451-bea0-0f0f0688aa14 = { name = "BasisFunctionExpansions", path = "B/BasisFunctionExpansions" }
08074719-1b2a-587c-a292-00f91cc44415 = { name = "POMDPModelTools", path = "P/POMDPModelTools" }
0810563c-c8a8-53be-b185-e51c33dc41ea = { name = "LogProbs", path = "L/LogProbs" }
08131aa3-fb12-5dee-8b74-c09406e224a2 = { name = "OpenCL", path = "O/OpenCL" }
0818e8b4-bd9c-59ff-a62a-597382e55725 = { name = "WORLD", path = "W/WORLD" }
082447d4-558c-5d27-93f4-14fc19e9eca2 = { name = "ChainRules", path = "C/ChainRules" }
0825541b-7374-5e1e-93bd-72e337c8a986 = { name = "ANOVA", path = "A/ANOVA" }
0827807b-44c9-51d0-af97-efe667fe6b2a = { name = "StableDQMC", path = "S/StableDQMC" }
083f6447-9a71-585a-bc2e-c0ad124fd6e4 = { name = "PrintFileTree", path = "P/PrintFileTree" }
085fdc97-bbf0-5359-b689-34bac5cd65e1 = { name = "OmniSci", path = "O/OmniSci" }
085fde7c-5f94-55e4-8448-8bbb5db6dde9 = { name = "LocalFilters", path = "L/LocalFilters" }
08616f76-7c98-59da-b8b2-5722997be6c9 = { name = "EchoJulia", path = "E/EchoJulia" }
0862f596-cf2d-50af-8ef4-f2be67dfa83f = { name = "HTTPClient", path = "H/HTTPClient" }
0881af41-a624-557c-96ff-9a730c8d7287 = { name = "Web3", path = "W/Web3" }
08854c51-b66b-5062-a90d-8e7ae4547a49 = { name = "BasisMatrices", path = "B/BasisMatrices" }
0898d9ac-042b-5d31-8dcc-959fb3365f19 = { name = "QueryableBackend", path = "Q/QueryableBackend" }
08a2b407-ddc3-586a-afd6-c784ad1fffe2 = { name = "ResultTypes", path = "R/ResultTypes" }
08abe8d2-0d0c-5749-adfa-8a2ac140af0d = { name = "PrettyTables", path = "P/PrettyTables" }
08acae6c-c1bf-11e9-0c27-6b1945f8789b = { name = "MultivariateSeries", path = "M/MultivariateSeries" }
08b01624-6c0b-11e9-1b9f-6d80c967c393 = { name = "MemberFunctions", path = "M/MemberFunctions" }
08b6f058-0539-51ec-9920-f66949f89f7a = { name = "OpenStreetMap", path = "O/OpenStreetMap" }
08cea906-7a73-5b72-9a90-5814a991aa32 = { name = "Graft", path = "G/Graft" }
08eae483-2844-53a4-a2b9-23549d80f877 = { name = "HilbertSchmidtIndependenceCriterion", path = "H/HilbertSchmidtIndependenceCriterion" }
08f7bda6-d19a-5869-bd1c-a698fdb2a278 = { name = "FEHM", path = "F/FEHM" }
0913cafa-90c8-523e-aa68-da9dd2ac225d = { name = "MarkableIntegers", path = "M/MarkableIntegers" }
093fc24a-ae57-5d10-9952-331d41423f4d = { name = "LightGraphs", path = "L/LightGraphs" }
09453d48-b9e1-5bf0-a018-8d5c65f8cb56 = { name = "InterestRates", path = "I/InterestRates" }
09519885-d2c1-5f68-9f99-0bf084a786ec = { name = "LCA", path = "L/LCA" }
09606e27-ecf5-54fc-bb29-004bd9f985bf = { name = "ODEInterfaceDiffEq", path = "O/ODEInterfaceDiffEq" }
0987c9cc-fe09-11e8-30f0-b96dd679fdca = { name = "MonteCarloMeasurements", path = "M/MonteCarloMeasurements" }
0999239e-cb9f-5507-94be-17f19fa7f34d = { name = "SugarBLAS", path = "S/SugarBLAS" }
09ab397b-f2b6-538f-b94a-2f83cf4a842a = { name = "StructArrays", path = "S/StructArrays" }
09f84164-cd44-5f33-b23f-e6b0d136a0d5 = { name = "HypothesisTests", path = "H/HypothesisTests" }
0a079aed-d6b3-5437-8291-8c1e09ce1327 = { name = "PyLogging", path = "P/PyLogging" }
0a1fb500-61f7-11e9-3c65-f5ef3456f9f0 = { name = "BlockDiagonals", path = "B/BlockDiagonals" }
0a46da34-8e4b-519e-b418-48813639ff34 = { name = "CSDP", path = "C/CSDP" }
0a755509-c5b1-5d6f-9b24-59bcda3c37a3 = { name = "ProximalBase", path = "P/ProximalBase" }
0a7d185b-be57-59df-ac21-86d8a1799c2e = { name = "JuliaPetra", path = "J/JuliaPetra" }
0a941bbe-ad1d-11e8-39d9-ab76183a1d99 = { name = "Zarr", path = "Z/Zarr" }
0aa23630-203b-5143-82b5-c6be0bbd4ea8 = { name = "PyLCM", path = "P/PyLCM" }
0aa819cd-b072-5ff4-a722-6bc24af294d9 = { name = "SQLite", path = "S/SQLite" }
0ae4a718-28b7-58ec-9efb-cded64d6d5b4 = { name = "VegaDatasets", path = "V/VegaDatasets" }
0b1a1467-8014-51b9-945f-bf0ae24f4b77 = { name = "KrylovKit", path = "K/KrylovKit" }
0b7cd5e2-b3f3-5fae-9080-a65912ed73e3 = { name = "Mortar2D", path = "M/Mortar2D" }
0b8eec52-1728-55d1-8c35-0960165a0176 = { name = "MPFI", path = "M/MPFI" }
0bb624de-12df-571d-ad84-47aef8b93290 = { name = "Elly", path = "E/Elly" }
0bc01f2c-55c2-58f2-9882-94a900939fb1 = { name = "ConicIP", path = "C/ConicIP" }
0bcc2ff6-69eb-520d-bede-0374fc5bd2fd = { name = "Bedgraph", path = "B/Bedgraph" }
0bf59076-c3b1-5ca4-86bd-e02cd72cde3d = { name = "AdvancedHMC", path = "A/AdvancedHMC" }
0c1320c5-0940-5dc6-8c7d-d9650cdddf58 = { name = "SimplePosetAlgorithms", path = "S/SimplePosetAlgorithms" }
0c46a032-eb83-5123-abaf-570d42b7fbaa = { name = "DifferentialEquations", path = "D/DifferentialEquations" }
0c68f7d7-f131-5f86-a1c3-88cf8149b2d7 = { name = "GPUArrays", path = "G/GPUArrays" }
0c7047ce-818d-11e9-1109-0323cd70e08d = { name = "TSMLextra", path = "T/TSMLextra" }
0c723cd3-b8cd-5d40-b370-ba682dde9aae = { name = "MKLSparse", path = "M/MKLSparse" }
0ca9fa26-8833-11e9-3415-832a08817e5a = { name = "EMpht", path = "E/EMpht" }
0cdbb3b1-e653-5045-b8d5-b31a04c2a6c9 = { name = "JuliaManager", path = "J/JuliaManager" }
0cef87d0-566b-5ace-96b7-ad13d8157ade = { name = "ZipCode", path = "Z/ZipCode" }
0cf705f9-a9e2-50d1-a699-2b372a39b750 = { name = "Redis", path = "R/Redis" }
0d03fcb2-b6c8-5e3f-827d-1089daad1804 = { name = "Digits", path = "D/Digits" }
0d4725de-cd7c-5e44-8a85-a48caeef9fa5 = { name = "Readables", path = "R/Readables" }
0d499d91-6ae5-5d63-9313-12987b87d5ad = { name = "AWSSDK", path = "A/AWSSDK" }
0d51577d-51b9-51d5-9c9b-f56d3e616bfa = { name = "ClobberingReload", path = "C/ClobberingReload" }
0d6d677f-8475-5ebf-bbf8-769304748c2b = { name = "SDE", path = "S/SDE" }
0d84ce59-e78b-5c9a-b954-3a5400d7f6ed = { name = "ExprOptimization", path = "E/ExprOptimization" }
0d8eea64-f1a1-5e4b-acfb-dd13f4d7386c = { name = "Maker", path = "M/Maker" }
0db19996-df87-5ea3-a455-e3a50d440464 = { name = "NBInclude", path = "N/NBInclude" }
0dbe55a1-025c-5c9b-ab45-55492d058cfb = { name = "SenseHat", path = "S/SenseHat" }
0dc4ae03-94be-5b30-bb99-4e20affbc5f0 = { name = "DFOLS", path = "D/DFOLS" }
0dca132f-5d13-5402-9020-a5b78506aeac = { name = "CauseMap", path = "C/CauseMap" }
0dcf7749-4f9f-5e13-9c57-506664207bbc = { name = "EmpiricalCDFs", path = "E/EmpiricalCDFs" }
0dcfe8bb-47b6-5269-b585-1300020e3d64 = { name = "Reconstructables", path = "R/Reconstructables" }
0e18b5df-1f6d-5218-abdd-6febb37acc78 = { name = "FluxJS", path = "F/FluxJS" }
0e1eec36-3e51-505b-9453-8db846dc2724 = { name = "Nord", path = "N/Nord" }
0e44f1d2-4516-5e7d-9182-378ae59e766c = { name = "PlotRecipes", path = "P/PlotRecipes" }
0e44f5e4-bd66-52a0-8798-143a42290a1d = { name = "Hwloc", path = "H/Hwloc" }
0e486f62-d771-522d-b768-ec41bdde0066 = { name = "StatsdClient", path = "S/StatsdClient" }
0e69188a-a5d4-5622-b4e4-a72373136fc5 = { name = "VectorizedRoutines", path = "V/VectorizedRoutines" }
0e6f8da7-a7fc-5c8b-a220-74e902c310f9 = { name = "NBodySimulator", path = "N/NBodySimulator" }
0e7c1a32-1b9f-5532-88a4-e668712d6a4c = { name = "SatelliteDynamics", path = "S/SatelliteDynamics" }
0e9554e2-b38b-11e9-16d7-9d9abfec665a = { name = "SphericalHarmonicModes", path = "S/SphericalHarmonicModes" }
0ea44823-1ff1-5b9a-8293-5fd55a38e746 = { name = "LCMCore", path = "L/LCMCore" }
0ef565a4-170c-5f04-8de2-149903a85f3d = { name = "Geodesy", path = "G/Geodesy" }
0efc519c-db33-5916-ab87-703215c3906f = { name = "Faker", path = "F/Faker" }
0f160d28-7819-5803-9275-299e9913be39 = { name = "EgyptianFractions", path = "E/EgyptianFractions" }
0f1e0344-ec1d-5b48-a673-e5cf874b6c29 = { name = "WebIO", path = "W/WebIO" }
0f34fb1e-4541-5b4c-aef0-c26dfe4a41db = { name = "CoverageBase", path = "C/CoverageBase" }
0f4fe800-344e-11e9-2949-fb537ad918e1 = { name = "OMJulia", path = "O/OMJulia" }
0f51c51e-adfa-5141-8a04-d40246b8977c = { name = "PiecewiseLinearOpt", path = "P/PiecewiseLinearOpt" }
0f5c7595-fa0c-55c8-9031-265ea63f34cf = { name = "BDF", path = "B/BDF" }
0f8b85d8-7281-11e9-16c2-39a750bddbf1 = { name = "JSON3", path = "J/JSON3" }
0fc0a36d-df90-57f3-8f93-d78a9fc72bb5 = { name = "Manopt", path = "M/Manopt" }
0fc2ff8b-aaa3-5acd-a817-1944a5e08891 = { name = "LeastSquaresOptim", path = "L/LeastSquaresOptim" }
0fd90b74-7c1f-579e-9252-02cd883047b9 = { name = "Currencies", path = "C/Currencies" }
0fe7c1db-08c2-54a3-a222-6d1d3b7a471a = { name = "DataArrays", path = "D/DataArrays" }
0ff2d225-4740-5ba6-bff6-8e455aafa9c9 = { name = "Bhaskara", path = "B/Bhaskara" }
100d92e6-c477-5236-9e74-205fcab5fd63 = { name = "LorentzDrudeMetals", path = "L/LorentzDrudeMetals" }
102930c3-cf33-599f-b3b1-9a29a5acab30 = { name = "SmoothingSplines", path = "S/SmoothingSplines" }
102ac46a-7ee4-5c85-9060-abc95bfdeaa3 = { name = "MultivariatePolynomials", path = "M/MultivariatePolynomials" }
102ba61c-8d8f-5910-ae56-8563da4a761b = { name = "ExpressionUtils", path = "E/ExpressionUtils" }
102dff8d-99cb-5cc2-9bf9-d9fe3a2e5e7a = { name = "OpenTrick", path = "O/OpenTrick" }
103da179-b3e4-57c1-99a4-586354eb2c5a = { name = "ViscousFlow", path = "V/ViscousFlow" }
104b5d7c-a370-577a-8038-80a2059c5097 = { name = "WebSockets", path = "W/WebSockets" }
1070d6b7-bf31-58fb-9220-e7913ad0860a = { name = "NetworkViz", path = "N/NetworkViz" }
10b2438b-ffd4-5096-aa58-44041d5c8f3b = { name = "Tracking", path = "T/Tracking" }
10d0aa13-cc34-5b6c-9bed-444edd59ae61 = { name = "YT", path = "Y/YT" }
10dff2fc-5484-5881-a0e0-c90441020f8a = { name = "JSOSolvers", path = "J/JSOSolvers" }
10e44e05-a98a-55b3-a45b-ba969058deb6 = { name = "MATLAB", path = "M/MATLAB" }
10e51d30-6ba1-539a-b97e-c69c597142c4 = { name = "ImagePhaseCongruency", path = "I/ImagePhaseCongruency" }
112f6efa-9a02-5b7d-90c0-432ed331239a = { name = "VegaLite", path = "V/VegaLite" }
1130ab10-4a5a-5621-a13d-e4788d82bd4c = { name = "DiffEqParamEstim", path = "D/DiffEqParamEstim" }
11b9c370-7f32-11e9-2601-596d25f02000 = { name = "NormalMaps", path = "N/NormalMaps" }
11d3f387-6b1b-5124-abbd-847758a5de3c = { name = "PolynomialZeros", path = "P/PolynomialZeros" }
11ec6118-8d4c-11e9-02bb-6986bd51d19a = { name = "RunLengthArrays", path = "R/RunLengthArrays" }
11f193de-5e89-5f17-923a-7d207d56daf9 = { name = "LMDB", path = "L/LMDB" }
1222c4b2-2114-5bfd-aeef-88e4692bbb3e = { name = "julia", path = "J/julia" }
123dc426-2d89-5057-bbad-38513e3affd8 = { name = "SymEngine", path = "S/SymEngine" }
124859b0-ceae-595e-8997-d05f6a7a8dfe = { name = "DataDeps", path = "D/DataDeps" }
124a6c59-8edb-56a9-bb1d-56f762e41daf = { name = "GraphGLRM", path = "G/GraphGLRM" }
124badd8-7747-5df6-9c35-5cbf8cd52816 = { name = "StrICU", path = "S/StrICU" }
126761fe-f960-5dac-8eb4-3469629b6dc1 = { name = "MuKanren", path = "M/MuKanren" }
1277b4bf-5013-50f5-be3d-901d8477a67a = { name = "ShiftedArrays", path = "S/ShiftedArrays" }
12a3da48-b57e-5905-8e12-c27bbf7a5065 = { name = "ProjectTemplate", path = "P/ProjectTemplate" }
12a7aed9-f4ee-5e21-a57e-4f63a8148421 = { name = "InPlace", path = "I/InPlace" }
12aac903-9f7c-5d81-afc2-d9565ea332ae = { name = "BinaryBuilder", path = "B/BinaryBuilder" }
12b1f071-75ca-5403-9634-55c067809894 = { name = "FractionalGaussianFields", path = "F/FractionalGaussianFields" }
12d937ae-5f68-53be-93c9-3a6f997a20a8 = { name = "PEG", path = "P/PEG" }
12f4821f-d7ee-5ba6-b76b-566925c5fcc5 = { name = "AMDGPUnative", path = "A/AMDGPUnative" }
13072b0f-2c55-5437-9ae7-d433b7a33950 = { name = "AxisAlgorithms", path = "A/AxisAlgorithms" }
1313f7d8-7da2-5740-9ea0-a2ca25f37964 = { name = "DataFramesMeta", path = "D/DataFramesMeta" }
133c4774-c510-5f25-b650-129312f89f69 = { name = "Jackknife", path = "J/Jackknife" }
134e5e36-593f-5add-ad60-77f754baafbe = { name = "Catlab", path = "C/Catlab" }
135379e1-83be-5ae7-9e8e-29dade3dc6c7 = { name = "StratiGraphics", path = "S/StratiGraphics" }
1375f997-1772-542d-b6fa-a8ee39124556 = { name = "CompEcon", path = "C/CompEcon" }
137af188-b1ec-11e9-0b40-31ed9142ae64 = { name = "XXhash", path = "X/XXhash" }
138f1668-1576-5ad7-91b9-7425abbf3153 = { name = "IntervalConstraintProgramming", path = "I/IntervalConstraintProgramming" }
13907d55-377f-55d6-a9d6-25ac19e11b95 = { name = "HaltonSequences", path = "H/HaltonSequences" }
13bb3beb-38fe-5ca7-9a46-050a216300b1 = { name = "ViZDoom", path = "V/ViZDoom" }
13c4ecad-ea00-5001-86f7-0fc03bbaafeb = { name = "MetadataTools", path = "M/MetadataTools" }
13d02911-3e28-5d8e-aec8-340b5d61074e = { name = "GroveAlg", path = "G/GroveAlg" }
13e0c4e3-fd7a-51bf-9e22-ec7679f18909 = { name = "COESA", path = "C/COESA" }
13e28ba4-7ad8-5781-acae-3021b1ed3924 = { name = "AppleAccelerate", path = "A/AppleAccelerate" }
13f3f980-e62b-5c42-98c6-ff1f3baf88f0 = { name = "CairoMakie", path = "C/CairoMakie" }
1407db8f-3b7b-5b59-abc8-36200bfa8e15 = { name = "MDPs", path = "M/MDPs" }
140ffc9f-1907-541a-a177-7475e0a401e9 = { name = "ProximalAlgorithms", path = "P/ProximalAlgorithms" }
14197337-ba66-59df-a3e3-ca00e7dcff7a = { name = "GenericLinearAlgebra", path = "G/GenericLinearAlgebra" }
14223e4e-d436-5d0e-89da-0790356f936a = { name = "Queueing", path = "Q/Queueing" }
142c1900-a1c3-58ae-a66d-b187f9ca6423 = { name = "LLLplus", path = "L/LLLplus" }
144146ce-868b-5e43-9e5b-0e94f26a569f = { name = "Qutilities", path = "Q/Qutilities" }
1441a9f6-6a74-5418-a591-cdf1d78a07f0 = { name = "StateSpaceReconstruction", path = "S/StateSpaceReconstruction" }
145d500b-351c-58b3-a0aa-f5d7e249d989 = { name = "PlanarConvexHulls", path = "P/PlanarConvexHulls" }
1463e38c-9381-5320-bcd4-4134955f093a = { name = "StatFiles", path = "S/StatFiles" }
147f7a91-919c-5e8e-8a4a-6ff704d685c9 = { name = "Vue", path = "V/Vue" }
149ba50c-99c4-11e9-1e32-e960083e84dc = { name = "StataCall", path = "S/StataCall" }
149e707d-584d-56d3-88ec-740c18e106ff = { name = "PkgDev", path = "P/PkgDev" }
14b8a8f1-9102-5b29-a752-f990bacb7fe1 = { name = "PkgTemplates", path = "P/PkgTemplates" }
14e1027c-497b-598e-bddc-6586fb90d6c5 = { name = "MolecularDynamics", path = "M/MolecularDynamics" }
14f6b274-bf6f-559e-ad68-649875ca52dd = { name = "DynamicDiscreteModels", path = "D/DynamicDiscreteModels" }
14f7f29c-3bd6-536c-9a0b-7339e30b5a3e = { name = "AMD", path = "A/AMD" }
150eb455-5306-5404-9cee-2592286d6298 = { name = "CoordinateTransformations", path = "C/CoordinateTransformations" }
15111844-de3b-5229-b4ba-526f2f385dc9 = { name = "IntervalContractors", path = "I/IntervalContractors" }
1520ce14-60c1-5f80-bbc7-55ef81b5835c = { name = "AbstractTrees", path = "A/AbstractTrees" }
1537fe66-4725-5aba-80f4-3a74792cecc1 = { name = "CALCEPH", path = "C/CALCEPH" }
15425d4b-8de4-5414-94ee-c672bedd8b29 = { name = "BitFloats", path = "B/BitFloats" }
158674fc-8238-5cab-b5ba-03dfc80d1318 = { name = "ReinforcementLearning", path = "R/ReinforcementLearning" }
159f3aea-2a34-519c-b102-8c37f9878175 = { name = "Cairo", path = "C/Cairo" }
15a4fa57-098d-5a77-b233-4f9ba1cdf842 = { name = "LowLevelFloatFunctions", path = "L/LowLevelFloatFunctions" }
15abb135-4bdc-5618-878f-10a5e80a0700 = { name = "PhantomJS", path = "P/PhantomJS" }
15bad361-1dfa-5a14-8210-7c6791966b1c = { name = "Docker", path = "D/Docker" }
15d4e49f-4837-5ea3-a885-5b28bfa376dc = { name = "LowRankModels", path = "L/LowRankModels" }
15e1cf62-19b3-5cfa-8e77-841668bca605 = { name = "NPZ", path = "N/NPZ" }
15e8f15b-3645-5025-a891-6b51f5bb17d6 = { name = "XClipboard", path = "X/XClipboard" }
15f3aee2-9e10-537f-b834-a6fb8bdb944d = { name = "WCS", path = "W/WCS" }
15f4f7f2-30c1-5605-9d31-71845cf9641f = { name = "AutoHashEquals", path = "A/AutoHashEquals" }
160ba089-64bf-5ba7-9e14-98ab1d9bcb0a = { name = "LightGraphsMatching", path = "L/LightGraphsMatching" }
16167f82-ea26-5cba-b1de-ed6fd5e30a11 = { name = "VulkanCore", path = "V/VulkanCore" }
161a31e8-61e0-548c-99b5-a49067c596c0 = { name = "CUDNN", path = "C/CUDNN" }
1624bea9-42b1-5fc1-afd3-e96f729c8d6c = { name = "ConjugatePriors", path = "C/ConjugatePriors" }
1629540a-9a93-50e9-aec3-2a5ae159dca9 = { name = "Batched", path = "B/Batched" }
163b9779-6631-5f90-a265-3de947924de8 = { name = "Blobs", path = "B/Blobs" }
163ba53b-c6d8-5494-b064-1a9d43ac40c5 = { name = "DiffResults", path = "D/DiffResults" }
1654ce90-6ed3-553a-957f-9452c3a40996 = { name = "Bits", path = "B/Bits" }
165a45c3-f624-5814-8e85-3bdf39a7becd = { name = "DASKR", path = "D/DASKR" }
1671dc4f-43c8-512c-ab25-e1704a74065e = { name = "MCMCChain", path = "M/MCMCChain" }
16905944-f982-529b-abb2-b839f98f160b = { name = "Octo", path = "O/Octo" }
169818f4-1a3d-53bf-95b3-11177825b1e3 = { name = "SemidefiniteModels", path = "S/SemidefiniteModels" }
16d363e1-28f1-5f2b-b949-57f6f2d5f8ba = { name = "GraphViz", path = "G/GraphViz" }
16f501b2-0501-55e6-a1df-7f221b4b01c3 = { name = "SoftConfidenceWeighted", path = "S/SoftConfidenceWeighted" }
16f6c422-f222-508b-b0da-15025777bca7 = { name = "RobustShortestPath", path = "R/RobustShortestPath" }
16fef848-5104-11e9-1b77-fb7a48bbb589 = { name = "LiveServer", path = "L/LiveServer" }
170c7662-660e-5658-93f2-9369b3e86d75 = { name = "BayesianIntegral", path = "B/BayesianIntegral" }
1711496e-389e-5c2f-a773-3b6147c29b08 = { name = "Hyperspecialize", path = "H/Hyperspecialize" }
1724a1d5-ab78-548d-94b3-135c294f96cf = { name = "LittleEndianBase128", path = "L/LittleEndianBase128" }
172a5912-0be3-5bce-b68a-ea4f60b69b05 = { name = "SOM", path = "S/SOM" }
17511681-8477-586a-8d98-4cfd5a1f2ec3 = { name = "ERFA", path = "E/ERFA" }
176e4ad4-9107-502a-977c-53a5728fe704 = { name = "MDDatasets", path = "M/MDDatasets" }
1785f50a-c9a2-51c8-aad6-0dd19114bd56 = { name = "ReinforcementLearningEnvironmentDiscrete", path = "R/ReinforcementLearningEnvironmentDiscrete" }
178780b6-09b2-5a6d-bf61-2be9dd85b544 = { name = "ActiveAppearanceModels", path = "A/ActiveAppearanceModels" }
179af706-886a-5703-950a-314cd64e0468 = { name = "CFTime", path = "C/CFTime" }
17a20078-44f0-5f21-b410-214499191408 = { name = "Perceptrons", path = "P/Perceptrons" }
17b45ede-fd0d-54ef-b825-8cf9fc64da95 = { name = "RLEVectors", path = "R/RLEVectors" }
17bba4b7-aaeb-52bc-bdfe-ff0c2fe83683 = { name = "IndependentRandomSequences", path = "I/IndependentRandomSequences" }
17c455ec-5277-5eb9-8881-1d8f05fa5d2b = { name = "AnsiColor", path = "A/AnsiColor" }
17f17636-5e38-52e3-a803-7ae3aaaf3da9 = { name = "CuthillMcKee", path = "C/CuthillMcKee" }
182e52fb-cfd0-5e46-8c26-fd0667c990f4 = { name = "POMDPPolicies", path = "P/POMDPPolicies" }
18364772-b071-5c00-bfd7-ceeaffab630a = { name = "IPython", path = "I/IPython" }
183c5c77-57e6-5aef-838d-23cea72795fe = { name = "ClusterUtils", path = "C/ClusterUtils" }
186bb1d3-e1f7-5a2c-a377-96d770f13627 = { name = "Fontconfig", path = "F/Fontconfig" }
186d2b2d-8ad5-54a6-bcea-66047609c611 = { name = "ProteinEnsembles", path = "P/ProteinEnsembles" }
186dfeec-b415-5c13-8e76-5fbf19f56f9b = { name = "FEniCS", path = "F/FEniCS" }
18716f60-6c0e-11e9-0a37-e9870d4a7c8f = { name = "Ditherings", path = "D/Ditherings" }
189a3867-3050-52da-a836-e630ba90ab69 = { name = "Reexport", path = "R/Reexport" }
18c5d748-a4d3-11e9-30ca-051f275622c1 = { name = "MRphy", path = "M/MRphy" }
18d08c8c-0732-55ee-a446-91a51d7b4206 = { name = "Kwonly", path = "K/Kwonly" }
18d3ab0b-97fc-5e2b-aa05-5bdf3eee57bb = { name = "FaSTLMM", path = "F/FaSTLMM" }
18d88a8f-8a75-5d15-b264-b01de3add918 = { name = "QPSParser", path = "Q/QPSParser" }
18e31ff7-3703-566c-8e60-38913d67486b = { name = "Peaks", path = "P/Peaks" }
1902f260-5fb4-5aff-8c31-6271790ab950 = { name = "Knet", path = "K/Knet" }
1914dd2f-81c6-5fcd-8719-6d5c9610ff09 = { name = "MacroTools", path = "M/MacroTools" }
19188cdf-3410-574e-a556-e73fa9e4281b = { name = "FunctionalTables", path = "F/FunctionalTables" }
191a621a-6537-11e9-281d-650236a99e60 = { name = "Dualization", path = "D/Dualization" }
191d1da1-0f37-5779-b8ea-a655caa0c150 = { name = "DependentBootstrap", path = "D/DependentBootstrap" }
192bee09-7f27-5365-8a12-1b6f807ba546 = { name = "TensorDecompositions", path = "T/TensorDecompositions" }
19401b82-8c43-11e9-36fe-e7e08b9911f1 = { name = "DesignStructureMatrix", path = "D/DesignStructureMatrix" }
194296ae-ab2e-5f79-8cd4-7183a0a5a0d1 = { name = "LibPQ", path = "L/LibPQ" }
1950589f-4d68-56f0-9b94-9d8646217309 = { name = "MetaImageFormat", path = "M/MetaImageFormat" }
195a77af-17c0-520f-ac58-3336c7ea8576 = { name = "OpenIDConnect", path = "O/OpenIDConnect" }
19670fab-07f0-5a41-99c5-c090d774ee27 = { name = "BBI", path = "B/BBI" }
196d93e9-2b0a-59bc-85dd-07b4a30d24dc = { name = "BayesianTools", path = "B/BayesianTools" }
197b51f5-fdb5-5f35-aa9f-0a14f35f5b28 = { name = "Poptart", path = "P/Poptart" }
1986cc42-f94f-5a68-af5c-568840ba703d = { name = "Unitful", path = "U/Unitful" }
198dc43e-9e51-5cd7-9d40-d9794d335912 = { name = "TSML", path = "T/TSML" }
198e06fe-97b7-11e9-32a5-e1d131e6ad66 = { name = "BangBang", path = "B/BangBang" }
19bc9d3f-2e19-511f-8328-e05a4e11f4db = { name = "Smile", path = "S/Smile" }
19bfd68b-3085-5123-a7aa-2ec83b867ca4 = { name = "CORBITS", path = "C/CORBITS" }
19dc6840-f33b-545b-b366-655c7e3ffd49 = { name = "HCubature", path = "H/HCubature" }
19e549d1-356f-5655-9f3d-c1d6136da705 = { name = "GeoStatsDevTools", path = "G/GeoStatsDevTools" }
19eb6ba3-879d-56ad-ad62-d5c202156566 = { name = "Packing", path = "P/Packing" }
19ecbf4d-ef7c-5e4b-b54a-0a0ff23c5aed = { name = "Codecs", path = "C/Codecs" }
19fa3120-7c27-5ec5-8db8-b0b0aa330d6f = { name = "VertexSafeGraphs", path = "V/VertexSafeGraphs" }
1a029416-38b0-5245-b7ed-67249edcb994 = { name = "Arrowhead", path = "A/Arrowhead" }
1a094a50-539a-5eba-b3bf-75406d1a4751 = { name = "PSFWrite", path = "P/PSFWrite" }
1a0d837d-f7ba-5e72-a8f8-b8273492ab4e = { name = "CVXOPT", path = "C/CVXOPT" }
1a1bcaad-b889-5540-93fc-02c6735e0f5a = { name = "GroundMotion", path = "G/GroundMotion" }
1a2887a7-38b6-5ebe-8978-3a02049ebf6f = { name = "PressureFieldContact", path = "P/PressureFieldContact" }
1a297f60-69ca-5386-bcde-b61e274b549b = { name = "FillArrays", path = "F/FillArrays" }
1a62e0fc-b85c-5ca0-b1e8-6e77e6a3b884 = { name = "NOAAData", path = "N/NOAAData" }
1a7fcfa4-7553-5727-a5d0-072824df3c21 = { name = "PathDistribution", path = "P/PathDistribution" }
1a804d9e-d798-534b-a6a9-4525c36f0718 = { name = "FMMLIB2D", path = "F/FMMLIB2D" }
1a8c2f83-1ff3-5112-b086-8aa67b057ba1 = { name = "Query", path = "Q/Query" }
1a8c6405-7c80-5152-b09a-939ccf02cadd = { name = "Klara", path = "K/Klara" }
1a9c1350-211b-5766-99cd-4544d885a0d1 = { name = "Classes", path = "C/Classes" }
1ab33d94-6c6c-50cc-93f0-e3f623a46aa0 = { name = "SymmetricTensors", path = "S/SymmetricTensors" }
1ad140ea-4347-5a62-a6a1-01b178d7cc4e = { name = "ConnectionPools", path = "C/ConnectionPools" }
1af16e33-887a-59b3-8344-18f1671b3ade = { name = "Omega", path = "O/Omega" }
1b10255b-6da3-57ce-9089-d24e8517b87e = { name = "GlobalSensitivityAnalysis", path = "G/GlobalSensitivityAnalysis" }
1b1ac587-b5be-5dfb-974d-c9dc89f4aca5 = { name = "SVMLightLoader", path = "S/SVMLightLoader" }
1b2943d0-825d-5907-9c5f-04e3ce562884 = { name = "StreamStats", path = "S/StreamStats" }
1b4a561d-cfcb-5daf-8433-43fcf8b4bea3 = { name = "LegacyStrings", path = "L/LegacyStrings" }
1b53aba6-35b6-5f92-a507-53c67d53f819 = { name = "CUTEst", path = "C/CUTEst" }
1b8b39c6-5c46-50f5-9c36-ac18d7f28ae0 = { name = "VarianceComponentTest", path = "V/VarianceComponentTest" }
1b915085-20d7-51cf-bf83-8f477d6f5128 = { name = "WinReg", path = "W/WinReg" }
1ba2fcf6-b438-57ac-94bf-052622d64a91 = { name = "MDCT", path = "M/MDCT" }
1ba61846-84f7-5936-906d-801d78ac1a4a = { name = "Graph500", path = "G/Graph500" }
1bab7a21-64e8-56bc-ba2e-ce7bd6692a08 = { name = "PyProj", path = "P/PyProj" }
1bc83da4-3b8d-516f-aca4-4fe02f6d838f = { name = "SafeTestsets", path = "S/SafeTestsets" }
1becfd5a-13be-5cc0-ae8a-5353609a805d = { name = "ValueSymbols", path = "V/ValueSymbols" }
1c4bc1b3-3fa8-5944-a62c-081c1d8ea3be = { name = "Actors", path = "A/Actors" }
1c724243-ef5b-51ab-93f4-b0a88ac62a95 = { name = "AWSS3", path = "A/AWSS3" }
1c8ee90f-4401-5389-894e-7a04a3dc0f4d = { name = "IterableTables", path = "I/IterableTables" }
1cb3b9ac-1ffd-5777-9e6b-a3d42300664d = { name = "IndexableBitVectors", path = "I/IndexableBitVectors" }
1cfade01-22cf-5700-b092-accc4b62d6e1 = { name = "UnicodeFun", path = "U/UnicodeFun" }
1cfcecda-3531-5955-88e9-4d9a0801da84 = { name = "VennEuler", path = "V/VennEuler" }
1d20419d-a1bd-598e-846b-24709a6a9336 = { name = "RealSense", path = "R/RealSense" }
1d21c727-5350-5715-a0f1-d07632c10ec8 = { name = "Silo", path = "S/Silo" }
1d2582b0-0a75-5730-abde-fb3f8b9ef95d = { name = "SwiftObjectStores", path = "S/SwiftObjectStores" }
1d40253f-d7d5-5bc2-be73-07f0f24a3532 = { name = "Pushover", path = "P/Pushover" }
1d51b185-1a84-59cf-b84e-03b0e3da30b7 = { name = "DrawSimpleGraphs", path = "D/DrawSimpleGraphs" }
1d72914e-1fed-50e5-8d1f-642a1f6dcbc8 = { name = "ReinforcementLearningEnvironmentAtari", path = "R/ReinforcementLearningEnvironmentAtari" }
1d978283-2c37-5f34-9a8e-e9c0ece82495 = { name = "TensorFlow", path = "T/TensorFlow" }
1db0cb78-5717-11e9-0361-01e0964942ce = { name = "SurfaceTopology", path = "S/SurfaceTopology" }
1dd54a5c-ff30-55c3-9c22-2141a9b2792c = { name = "GadflyDiff", path = "G/GadflyDiff" }
1dea7af3-3e70-54e6-95c3-0bf5283fa5ed = { name = "OrdinaryDiffEq", path = "O/OrdinaryDiffEq" }
1e09ba94-8865-5af0-8cfd-6b3609c426e6 = { name = "SubMatrixSelectionSVD", path = "S/SubMatrixSelectionSVD" }
1e31e15d-4957-550d-a244-318eced754ae = { name = "DFControl", path = "D/DFControl" }
1e53f5aa-a928-5bf7-8b39-c478a00d13b2 = { name = "MP3", path = "M/MP3" }
1e616198-aa4e-51ec-90a2-23f7fbd31d8d = { name = "COSMO", path = "C/COSMO" }
1e750ffe-536c-5017-b62c-84f0da8e1185 = { name = "BackpropNeuralNet", path = "B/BackpropNeuralNet" }
1e9c538a-f78c-5de5-8ffb-0b6dbe892d23 = { name = "RegularizedLeastSquares", path = "R/RegularizedLeastSquares" }
1ec41992-ff65-5c91-ac43-2df89e9693a4 = { name = "MosekTools", path = "M/MosekTools" }
1f15a43c-97ca-5a2a-ae31-89f07a497df4 = { name = "CxxWrap", path = "C/CxxWrap" }
1f53f557-16c0-5f8f-980f-fb7167e19889 = { name = "SpectralGaussianSimulation", path = "S/SpectralGaussianSimulation" }
1f554e9c-ddc6-5d78-a4ef-ff7defcf835d = { name = "NCEI", path = "N/NCEI" }
1f9da163-5ddd-5895-b7bb-161347ed2303 = { name = "StanMamba", path = "S/StanMamba" }
1fa08884-6cdb-542d-8938-eb45e6bbeb56 = { name = "MergedMethods", path = "M/MergedMethods" }
1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8 = { name = "Format", path = "F/Format" }
1fb05d12-6c47-528b-bee1-deadc63ff0b4 = { name = "Sched", path = "S/Sched" }
1fcaf345-95e3-5b8b-91d6-2145eb844b9d = { name = "GasPowerModels", path = "G/GasPowerModels" }
1fd47b50-473d-5c70-9696-f719f8f3bcdc = { name = "QuadGK", path = "Q/QuadGK" }
1fd64df0-a4d2-11e9-360d-2f03868f4cf5 = { name = "Xsum", path = "X/Xsum" }
202779bd-50eb-51bf-ba18-ab2f8c575de8 = { name = "PrettyPlots", path = "P/PrettyPlots" }
2030c09a-7f63-5d83-885d-db604e0e9cc0 = { name = "InfrastructureModels", path = "I/InfrastructureModels" }
203fad6b-76d5-5f68-8b2e-e85904e86574 = { name = "FusionDirect", path = "F/FusionDirect" }
2091bfbe-2937-51d6-a893-7459a14235e5 = { name = "DiscriminantAnalysis", path = "D/DiscriminantAnalysis" }
2098c8a6-82c4-11e9-1f54-e72760d085ce = { name = "LibSymspg", path = "L/LibSymspg" }
209c9289-0e93-5bc3-a9c6-3b517a31ee3c = { name = "TimeSeriesResampler", path = "T/TimeSeriesResampler" }
20febd7b-183b-5ae2-ac4a-720e7ce64774 = { name = "Retry", path = "R/Retry" }
214a0ac2-f95b-54f7-a80b-442ed9c2c9e8 = { name = "CorpusLoaders", path = "C/CorpusLoaders" }
2152367d-059c-52e9-ae52-2d26002cb4a3 = { name = "CUDAnativelib", path = "C/CUDAnativelib" }
2169fc97-5a83-5252-b627-83903c6c433c = { name = "AlgebraicMultigrid", path = "A/AlgebraicMultigrid" }
2172800d-0309-5a57-a84f-d50c94757422 = { name = "Probably", path = "P/Probably" }
217a5fbf-7069-5d7e-8910-cffeb5401964 = { name = "GraphMatrices", path = "G/GraphMatrices" }
2193fd1e-84d4-5b0b-a3be-f484d363cd43 = { name = "ParallelSparseMatMul", path = "P/ParallelSparseMatMul" }
21ca0261-441d-5938-ace7-c90938fde4d4 = { name = "Transformers", path = "T/Transformers" }
21d151f5-1f6d-55ec-8524-1c9aee35b0a4 = { name = "LassoPlot", path = "L/LassoPlot" }
21f26bdd-93a7-5c22-aaad-c68df1035b25 = { name = "DetectionTheory", path = "D/DetectionTheory" }
2207ec0c-686c-5054-b4d2-543502888820 = { name = "HybridSystems", path = "H/HybridSystems" }
221dce02-7e96-5d1b-a637-f113167531ab = { name = "Calc", path = "C/Calc" }
22202ab0-7cdc-564b-a5d5-860f91f3518e = { name = "PSPlot", path = "P/PSPlot" }
22286c92-06ac-501d-9306-4abd417d9753 = { name = "AccurateArithmetic", path = "A/AccurateArithmetic" }
22415677-39a4-5241-a37a-00beabbbdae8 = { name = "RobotOS", path = "R/RobotOS" }
22609570-6d06-11e9-3c98-5705e233061e = { name = "ExpressPathToRegex", path = "E/ExpressPathToRegex" }
2267b70d-4c4a-5da2-8395-98751c0d506a = { name = "StrRegex", path = "S/StrRegex" }
226e0482-2e74-5b70-8460-0a87d2a092cc = { name = "ConformalMaps", path = "C/ConformalMaps" }
228000da-037f-5747-90a9-8195ccbf91a5 = { name = "XMLDict", path = "X/XMLDict" }
22bb73d7-edb2-5785-ba1e-7d60d6824784 = { name = "SVR", path = "S/SVR" }
22c333fb-6c73-5509-a736-78cf55b615ef = { name = "BracedErrors", path = "B/BracedErrors" }
22cec73e-a1b8-11e9-2c92-598750a2cf9c = { name = "InitialValues", path = "I/InitialValues" }
22d8b318-f366-56fb-a292-a93f7d76c017 = { name = "OAuth", path = "O/OAuth" }
22e9dc34-2a0d-11e9-0de0-8588d035468b = { name = "NetworkDynamics", path = "N/NetworkDynamics" }
22fd7b30-a8c0-5bf2-aabe-97783860d07c = { name = "DirectSum", path = "D/DirectSum" }
236a7b2a-d24f-53e9-bd69-8f3c16745bb2 = { name = "CLArrays", path = "C/CLArrays" }
23877df9-4f3f-5b93-82a9-6fc988bf1876 = { name = "TerminalUI", path = "T/TerminalUI" }
238d586b-a4bf-555c-9891-eda6fc5e55a2 = { name = "RoMEPlotting", path = "R/RoMEPlotting" }
23992714-dd62-5051-b70f-ba57cb901cac = { name = "MAT", path = "M/MAT" }
23fbe1c1-3f47-55db-b15f-69d7ec21a316 = { name = "Latexify", path = "L/Latexify" }
24249f21-da20-56a4-8eb1-6a02cf4ae2e6 = { name = "SymPy", path = "S/SymPy" }
242c1f41-6415-5004-acc6-bbcbfa0e5f47 = { name = "BioArgParse", path = "B/BioArgParse" }
2431c0de-905f-5065-a272-d48c42d73feb = { name = "CommonCrawl", path = "C/CommonCrawl" }
245c20d8-22eb-51ed-a154-2138e8ce21b5 = { name = "LazySequences", path = "L/LazySequences" }
24678dba-d5e9-5843-a4c6-250288b04835 = { name = "TSne", path = "T/TSne" }
2472808a-b354-52ea-a80e-1658a3c6056d = { name = "KernelDensityEstimate", path = "K/KernelDensityEstimate" }
24875eb6-1ad1-5a2b-a058-ae0b6bfd31a9 = { name = "Extern", path = "E/Extern" }
24eb86ea-9a1d-5509-b853-16293a282e04 = { name = "FirstOrderLogic", path = "F/FirstOrderLogic" }
24f65c1e-0a10-5d3d-8a1f-a83399f3fced = { name = "SuffixArrays", path = "S/SuffixArrays" }
251f48c7-f5a4-5bc8-b6b6-ff4797c45649 = { name = "SMCExamples", path = "S/SMCExamples" }
253502cb-d042-5725-98ed-f972bb437cdb = { name = "Mathematica", path = "M/Mathematica" }
2535ab7d-5cd8-5a07-80ac-9b1792aadce3 = { name = "JSON2", path = "J/JSON2" }
2542163d-3f63-581c-abc1-15efe995b982 = { name = "Memcache", path = "M/Memcache" }
2547b907-48b9-5396-a2af-edc57bff161c = { name = "RandomCorrelationMatrices", path = "R/RandomCorrelationMatrices" }
255f4518-d178-57ab-9c44-739df5d483c3 = { name = "AWSSES", path = "A/AWSSES" }
2576dda1-a324-5b11-aa66-c48ed7e3c618 = { name = "RandomMatrices", path = "R/RandomMatrices" }
2576ec5c-8ce1-53b8-82cc-96973a684d4e = { name = "EAGOSmoothMcCormickGrad", path = "E/EAGOSmoothMcCormickGrad" }
258d96c3-0b0c-5644-b641-119ebad15d7d = { name = "MonteCarloMarkovKernels", path = "M/MonteCarloMarkovKernels" }
259c3a9c-12c3-507f-b21f-68ecc40fcda4 = { name = "MMTF", path = "M/MMTF" }
25b2b4a2-b5c6-11e9-0768-bd8610217833 = { name = "OMRemote", path = "O/OMRemote" }
25c06242-cc58-593c-a204-a17bebfb33b5 = { name = "Keys", path = "K/Keys" }
25e41dd2-4622-11e9-1641-f1adca772921 = { name = "ReinforcementLearningEnvironments", path = "R/ReinforcementLearningEnvironments" }
25f12f5a-a783-5f9a-af99-e55629686113 = { name = "QDates", path = "Q/QDates" }
25f206ee-5729-11e9-3bb3-7baf6634b443 = { name = "LaplaceBIE", path = "L/LaplaceBIE" }
25fe7709-2684-556e-993c-fe1845b19d72 = { name = "Hose", path = "H/Hose" }
260eed61-d0e8-5f1e-b040-a9756a401c97 = { name = "PerronFrobenius", path = "P/PerronFrobenius" }
261fd431-d7e4-51f7-86ab-ce9e57fc1fff = { name = "StateSpaceRoutines", path = "S/StateSpaceRoutines" }
262c1cb6-76e2-5873-868b-19ece3183cc5 = { name = "LRSLib", path = "L/LRSLib" }
26663084-47d3-540f-bd97-40ca743aafa4 = { name = "PoincareInvariants", path = "P/PoincareInvariants" }
266f59ce-6e72-579c-98bb-27b39b5c037e = { name = "LaTeXTabulars", path = "L/LaTeXTabulars" }
2679e427-3c69-5b7f-982b-ece356f1e94b = { name = "Metis", path = "M/Metis" }
267bd6e8-c492-5d7c-9aed-5ac0f2f898a0 = { name = "DataValueArrays", path = "D/DataValueArrays" }
26b386a0-5622-11e9-3ee7-f1bbe84c80da = { name = "WaterFlows", path = "W/WaterFlows" }
26cc04aa-876d-5657-8c51-4c34ba976000 = { name = "FiniteDifferences", path = "F/FiniteDifferences" }
26dc7fb7-0d88-57af-8ff4-0a7e14249ddd = { name = "SimpleGF2", path = "S/SimpleGF2" }
26dcc766-85df-5edc-b560-6076d5dbac63 = { name = "LPVSpectral", path = "L/LPVSpectral" }
26e3df79-567a-58ea-9c5d-b0cd0a93ad6a = { name = "Viridis", path = "V/Viridis" }
26fa0e40-23c6-5e70-8e5d-49a8a0c72583 = { name = "Scryfall", path = "S/Scryfall" }
274281c4-ae57-11e9-2014-65d3d5d9358c = { name = "MIRTio", path = "M/MIRTio" }
274955c0-c284-5bf7-b122-5ecd51c559de = { name = "MusicManipulations", path = "M/MusicManipulations" }
275e499e-7a09-5551-a1d1-9fe535a2b717 = { name = "FastRationals", path = "F/FastRationals" }
276b0191-6968-5de0-98fd-2a81b0f3910d = { name = "Cliffords", path = "C/Cliffords" }
276daf66-3868-5448-9aa4-cd146d93841b = { name = "SpecialFunctions", path = "S/SpecialFunctions" }
2774e3e8-f4cf-5e23-947b-6d7e65073b56 = { name = "NLsolve", path = "N/NLsolve" }
278398fc-db6b-536a-86ef-0b56cf867102 = { name = "Lora", path = "L/Lora" }
27996c0f-39cd-5cc1-a27a-05f136f946b6 = { name = "GtkReactive", path = "G/GtkReactive" }
27a35ec8-0f55-11e9-2fe5-1b2fd0e5b6fd = { name = "BTCParser", path = "B/BTCParser" }
27aeedcb-f738-516b-a0b8-3211cf1146e5 = { name = "RobustPmap", path = "R/RobustPmap" }
27c6c700-beb4-11e9-0d5d-570238037c5a = { name = "Reddit", path = "R/Reddit" }
27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae = { name = "Primes", path = "P/Primes" }
27faeba3-bc54-5829-b163-df8cb949fe88 = { name = "RegularExpressions", path = "R/RegularExpressions" }
27fc6e5e-f203-5799-a75e-6abe30976ce9 = { name = "SpeedDate", path = "S/SpeedDate" }
2803e5a7-5153-5ecf-9a86-9b4c37f5f5ac = { name = "ImageAxes", path = "I/ImageAxes" }
280722bd-5306-5089-bba0-9ea74ef75271 = { name = "Mortar3D", path = "M/Mortar3D" }
281102dc-23b7-58f9-8736-e3566ed2adc3 = { name = "InformedDifferentialEvolution", path = "I/InformedDifferentialEvolution" }
281f80d8-6e88-11e9-078b-b90be1742701 = { name = "OpenPixelControl", path = "O/OpenPixelControl" }
283c5d60-a78f-5afe-a0af-af636b173e11 = { name = "MeshCat", path = "M/MeshCat" }
2841fd70-8698-11e9-176d-6dfa142d2ee7 = { name = "DPMMSubClusters", path = "D/DPMMSubClusters" }
2859d429-0a23-5e0c-862a-e399fa3ffec5 = { name = "Cpp", path = "C/Cpp" }
286e9d63-9694-5540-9e3c-4e6708fa07b2 = { name = "RingLists", path = "R/RingLists" }
28a8edfd-32bd-5648-83f9-9b597c29a4fc = { name = "MeCab", path = "M/MeCab" }
28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71 = { name = "GR", path = "G/GR" }
28d57a85-8fef-5791-bfe6-a80928e7c999 = { name = "Transducers", path = "T/Transducers" }
28d598bf-9b8f-59f1-b38c-5a06b4a0f5e6 = { name = "BGZFStreams", path = "B/BGZFStreams" }
28df3e28-0a79-56be-9a03-a8ecf656ae93 = { name = "EllipticFEM", path = "E/EllipticFEM" }
28ea79d9-6354-52a7-8af1-38e01db141d4 = { name = "ULID", path = "U/ULID" }
28f2ccd6-bb30-5033-b560-165f7b14dc2f = { name = "ApproxFun", path = "A/ApproxFun" }
2904ab23-551e-5aed-883f-487f97af5226 = { name = "ElasticPDMats", path = "E/ElasticPDMats" }
290757bd-39a7-5095-97bb-ca0f46959724 = { name = "NLOptControl", path = "N/NLOptControl" }
2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91 = { name = "StatsBase", path = "S/StatsBase" }
291d046c-3347-11e9-1e74-c3d251d406c6 = { name = "MixedSubdivisions", path = "M/MixedSubdivisions" }
291fd964-e446-5d75-9412-e8e0eb420fa7 = { name = "PlanarMaps", path = "P/PlanarMaps" }
294b8cca-700e-58d6-a0fc-7d74c0d9f51a = { name = "ASCIIPlots", path = "A/ASCIIPlots" }
295af30f-e4ad-537b-8983-00126c2a3abe = { name = "Revise", path = "R/Revise" }
2972619a-3223-5d84-b495-1a2ccd5409fe = { name = "DPClustering", path = "D/DPClustering" }
297e508c-b2a7-11e8-1524-5dccae6124f6 = { name = "QPDAS", path = "Q/QPDAS" }
298d2fe5-ed61-55e0-b3ba-7e58c5ff2f7d = { name = "QuickHull", path = "Q/QuickHull" }
298f00ba-5fcf-566c-9100-f8b551e1d946 = { name = "EclipsingBinaryStars", path = "E/EclipsingBinaryStars" }
2996bd0c-7a13-11e9-2da2-2f5ce47296a9 = { name = "ImageQualityIndexes", path = "I/ImageQualityIndexes" }
299745a8-1dd2-5813-967e-1153b019bdef = { name = "StrFs", path = "S/StrFs" }
29a5b9bd-5f4b-5ac4-b55d-354adcfa5575 = { name = "IntModN", path = "I/IntModN" }
29a6e085-ba6d-5f35-a997-948ac2efa89a = { name = "Wavelets", path = "W/Wavelets" }
29b9fc01-2d52-5901-8357-88823a8aad60 = { name = "FancyDiagnostics", path = "F/FancyDiagnostics" }
29fbe528-8531-5c35-ac08-d2ebca7928d6 = { name = "SALSA", path = "S/SALSA" }
2a33fa5d-563c-51b9-8885-f62d16798090 = { name = "DriftDiffusionPoissonSystems", path = "D/DriftDiffusionPoissonSystems" }
2a4eff87-6e1e-5ceb-a32e-3bc6a5c2833f = { name = "Immerse", path = "I/Immerse" }
2a67aa01-6213-50f9-bb91-c167b72acb78 = { name = "GoogleCloudObjectStores", path = "G/GoogleCloudObjectStores" }
2a6d852e-3fac-5a38-885c-fe708af2d09e = { name = "Morton", path = "M/Morton" }
2a8e4939-dab8-5edc-8f64-72a8776f13de = { name = "Mixers", path = "M/Mixers" }
2a98de0d-ca3b-5770-8d1d-3c2c55f12676 = { name = "TakagiFactorization", path = "T/TakagiFactorization" }
2ae35dd2-176d-5d53-8349-f30d82d94d4f = { name = "Permutations", path = "P/Permutations" }
2aec4490-903f-5c70-9b11-9bed06a700e1 = { name = "FourierFlows", path = "F/FourierFlows" }
2aef5ad7-51ca-5a8f-8e88-e75cf067b44b = { name = "QueryOperators", path = "Q/QueryOperators" }
2b0e0bc5-e4fd-59b4-8912-456d1b03d8d7 = { name = "LanguageServer", path = "L/LanguageServer" }
2b1cd6f4-158b-5933-849b-48df756daf9e = { name = "TenPuzzle", path = "T/TenPuzzle" }
2b3899e7-9068-5c5c-a4f4-f7d195ee295c = { name = "DCEMRI", path = "D/DCEMRI" }
2b5bf9a6-f3f8-5352-af9c-82bb4af718d8 = { name = "CollisionDetection", path = "C/CollisionDetection" }
2b5f629d-d688-5b77-993f-72d75c75574e = { name = "DiffEqBase", path = "D/DiffEqBase" }
2b6d1eac-7baa-5078-8adc-e6a3e659f14f = { name = "SingleFloats", path = "S/SingleFloats" }
2b6db37a-05bd-5fbd-94f7-97a8281041e3 = { name = "AuditoryFilters", path = "A/AuditoryFilters" }
2b727f88-579d-59bb-b93a-095bc3108f36 = { name = "TwoBasedIndexing", path = "T/TwoBasedIndexing" }
2b7a1792-8151-5239-925d-e2b8fdfa3201 = { name = "Circuitscape", path = "C/Circuitscape" }
2bb279fe-b7da-5b2b-8ce2-4088845e51bb = { name = "ApproximateBayesianComputing", path = "A/ApproximateBayesianComputing" }
2bcd8d84-2ef9-5317-bfa0-0ed5605635ad = { name = "ImageInpainting", path = "I/ImageInpainting" }
2bd173c7-0d6d-553b-b6af-13a54713934c = { name = "NodeJS", path = "N/NodeJS" }
2be3f83a-7913-5748-9f20-7d448995b934 = { name = "FlashWeave", path = "F/FlashWeave" }
2c06ca41-a429-545c-b8f0-5ca7dd64ba19 = { name = "JuliaDBMeta", path = "J/JuliaDBMeta" }
2c0eff9b-9a80-518e-bf77-efb53308e6ff = { name = "Jumos", path = "J/Jumos" }
2c364e2c-59fb-59c3-96f3-194112e690e0 = { name = "HSARuntime", path = "H/HSARuntime" }
2c470bb0-bcc8-11e8-3dad-c9649493f05e = { name = "Kronecker", path = "K/Kronecker" }
2c695a8d-9458-5d45-9878-1b8a99cf7853 = { name = "HistogramThresholding", path = "H/HistogramThresholding" }
2c79eb96-f1c8-5833-9e83-ed2fdcddfc0c = { name = "Push", path = "P/Push" }
2c80a279-213e-54d7-a557-e9a14725db56 = { name = "Trajectories", path = "T/Trajectories" }
2c982244-eb47-11e8-1c11-070084c1fd7d = { name = "EdgeCameras", path = "E/EdgeCameras" }
2cb19f9e-ec4d-5c53-8573-a4542a68d3f0 = { name = "StatsKit", path = "S/StatsKit" }
2cce017d-b860-5b64-a7c6-b523e7e6e8b4 = { name = "MetaTools", path = "M/MetaTools" }
2cd5bd5f-40a1-5050-9e10-fc8cdb6109f5 = { name = "ILog2", path = "I/ILog2" }
2cd9c1d6-d267-5370-983e-0bc605925cae = { name = "LocalDiskObjectStores", path = "L/LocalDiskObjectStores" }
2d09df54-9d0f-5258-8220-54c2a3d4fbee = { name = "StatisticalRethinking", path = "S/StatisticalRethinking" }
2d0ec36b-e807-5756-994b-45af29551fcf = { name = "OMETIFF", path = "O/OMETIFF" }
2d3116d5-4b8f-5680-861c-71f149790274 = { name = "Bridge", path = "B/Bridge" }
2d52b4ab-c3e3-5ee9-8cd7-16337136d172 = { name = "NumericFuns", path = "N/NumericFuns" }
2d60506e-37c1-5cda-81c8-3286a9be7342 = { name = "ImageHistogram", path = "I/ImageHistogram" }
2d69052b-6a58-5cd9-a030-a48559c324ac = { name = "Swagger", path = "S/Swagger" }
2d691ee1-e668-5016-a719-b2531b85e0f5 = { name = "LIBLINEAR", path = "L/LIBLINEAR" }
2d8a0fbb-4798-5e24-a1ee-cf44ecca4972 = { name = "OCCA", path = "O/OCCA" }
2da68c74-98d7-5633-99d6-8493888d7b1e = { name = "SymDict", path = "S/SymDict" }
2db162a6-7e43-52c3-8d84-290c1c42d82a = { name = "QML", path = "Q/QML" }
2dcacdae-9679-587a-88bb-8b444fb7085b = { name = "ParallelDataTransfer", path = "P/ParallelDataTransfer" }
2ddba703-00a4-53a7-87a5-e8b9971dde84 = { name = "Juniper", path = "J/Juniper" }
2dfb63ee-cc39-5dd5-95bd-886bf059d720 = { name = "PooledArrays", path = "P/PooledArrays" }
2e05858d-61bb-58c4-9d37-747e7cb565b8 = { name = "ReinforcementLearningEnvironmentClassicControl", path = "R/ReinforcementLearningEnvironmentClassicControl" }
2e15cbd7-567d-54fc-b411-c87ed8bc262a = { name = "Samantha", path = "S/Samantha" }
2e2c70e5-d463-5cb0-9776-5d0c86956fe9 = { name = "DataFitting", path = "D/DataFitting" }
2e2ca445-9e14-5b13-8677-4410f177f82b = { name = "BARON", path = "B/BARON" }
2e361c58-64d7-11e9-3ab3-89c4c0b8f7db = { name = "ImageNoise", path = "I/ImageNoise" }
2e475f56-4567-5c41-94ff-3f69a29378f9 = { name = "LabelNumerals", path = "L/LabelNumerals" }
2e7db186-766a-50e7-8928-5c30181fb135 = { name = "Remez", path = "R/Remez" }
2e89c364-fad6-56cb-99bd-ebadcd2cf8d2 = { name = "AffineArithmetic", path = "A/AffineArithmetic" }
2e9cd046-0924-5485-92f1-d5272153d98b = { name = "Gurobi", path = "G/Gurobi" }
2eb9e3d9-fdc6-5d3b-abfa-b97b7f8e5896 = { name = "Julz", path = "J/Julz" }
2ec943e9-cfe8-584d-b93d-64dcb6d567b7 = { name = "Libz", path = "L/Libz" }
2edaba10-b0f1-5616-af89-8c11ac63239a = { name = "Nemo", path = "N/Nemo" }
2edd74a5-e968-5e45-af77-76d29aa6a478 = { name = "FinancialToolbox", path = "F/FinancialToolbox" }
2ee39098-c373-598a-b85f-a56591580800 = { name = "LabelledArrays", path = "L/LabelledArrays" }
2ef04bfc-99ca-5394-8b07-22b12ff94927 = { name = "QSWalk", path = "Q/QSWalk" }
2f1371dc-8782-550b-8f75-ab2bdac561bd = { name = "PropertyGraph", path = "P/PropertyGraph" }
2f2169dc-6776-11e9-1952-6179d4a35fe3 = { name = "JupyterParameters", path = "J/JupyterParameters" }
2f22cdd6-88d8-5d3f-9c50-37b200e63d5a = { name = "DoubleDouble", path = "D/DoubleDouble" }
2f354839-79df-5901-9f0a-cdb2aac6fe30 = { name = "Pajarito", path = "P/Pajarito" }
2f5ab805-579b-5381-9d0b-584976f35e23 = { name = "StringParserPEG", path = "S/StringParserPEG" }
2f5eb75a-258c-59e0-affc-f41c55f75335 = { name = "LightGraphsFlows", path = "L/LightGraphsFlows" }
2f5f767c-a11e-5269-a972-637d4b97c32d = { name = "LeapSeconds", path = "L/LeapSeconds" }
2f8fdf4e-e012-5916-ad7c-0e4644026d1e = { name = "GoogleCharts", path = "G/GoogleCharts" }
2f96e190-b8a6-11e9-0b3d-5fbd22c21613 = { name = "RobustAdaptiveMetropolisSampler", path = "R/RobustAdaptiveMetropolisSampler" }
2fb1d81b-e6a0-5fc5-82e6-8e06903437ab = { name = "GeoArrays", path = "G/GeoArrays" }
2fbcfb34-fd0c-5fbb-b5d7-e826d8f5b0a9 = { name = "UniqueVectors", path = "U/UniqueVectors" }
2fcf5ba9-9ed4-57cf-b73f-ff513e316b9c = { name = "NeighbourLists", path = "N/NeighbourLists" }
2fda8390-95c7-5789-9bda-21331edee243 = { name = "LsqFit", path = "L/LsqFit" }
2fe49d83-0758-5602-8f54-1f90ad0d522b = { name = "Expectations", path = "E/Expectations" }
2ff30676-a39f-58b2-ad74-5d1012d57b9b = { name = "WorldBankData", path = "W/WorldBankData" }
3025c34a-b394-11e9-2a55-3fee550c04c8 = { name = "GridapGmsh", path = "G/GridapGmsh" }
30363a11-5582-574a-97bb-aa9a979735b9 = { name = "NetCDF", path = "N/NetCDF" }
30578b45-9adc-5946-b283-645ec420af67 = { name = "URIParser", path = "U/URIParser" }
307e1779-6603-555d-8172-ea684b6e5cfa = { name = "PlanOut", path = "P/PlanOut" }
308a6e0c-0495-45e1-b1ab-67fb455a0d77 = { name = "CBindingGen", path = "C/CBindingGen" }
308eb6b3-cc68-5ff3-9e97-c3c4da4fa681 = { name = "RationalRoots", path = "R/RationalRoots" }
30a7bc16-7fba-505b-b600-cae92896a3fe = { name = "JPLEphemeris", path = "J/JPLEphemeris" }
30ad73d7-305e-5999-88c2-a7d9e8945169 = { name = "QueryTables", path = "Q/QueryTables" }
30d42797-9b21-5812-9dff-9e32203c7e18 = { name = "MachO", path = "M/MachO" }
30ee299c-4142-5be6-b36c-c88c17e1d32f = { name = "ChemicalKinetics", path = "C/ChemicalKinetics" }
30fc2ffe-d236-52d8-8643-a9d8f7c094a7 = { name = "LossFunctions", path = "L/LossFunctions" }
311a05b2-6137-4a5a-b473-18580a3d38b5 = { name = "DemoCards", path = "D/DemoCards" }
313cdc1a-70c2-5d6a-ae34-0150d3930a38 = { name = "Indexing", path = "I/Indexing" }
314ce334-5f6e-57ae-acf6-00b6e903104a = { name = "TaylorModels", path = "T/TaylorModels" }
315b5843-54e0-5281-b073-3e322808fa17 = { name = "SaveREPL", path = "S/SaveREPL" }
31851ddc-f9b7-5097-a470-69ef907d7682 = { name = "LinearFractional", path = "L/LinearFractional" }
31a5f54b-26ea-5ae9-a837-f05ce5417438 = { name = "Debugger", path = "D/Debugger" }
31c24e10-a181-5473-b8eb-7969acd0382f = { name = "Distributions", path = "D/Distributions" }
31c64edf-cdeb-50e4-845d-ed2334360c20 = { name = "TensorValues", path = "T/TensorValues" }
31df374a-5bce-54dc-914a-f687be069de8 = { name = "Getopt", path = "G/Getopt" }
31f4e45d-be81-5be7-b2dd-bc577b4f7be8 = { name = "DualMatrixTools", path = "D/DualMatrixTools" }
3201237a-9847-11e9-0d2a-6d530c977506 = { name = "LinearAdjoints", path = "L/LinearAdjoints" }
32113eaa-f34f-5b0d-bd6c-c81e245fc73d = { name = "PkgBenchmark", path = "P/PkgBenchmark" }
321657f4-b219-11e9-178b-2701a2544e81 = { name = "ScientificTypes", path = "S/ScientificTypes" }
322a6be2-4ae8-5d68-aaf1-3e960788d1d9 = { name = "Sass", path = "S/Sass" }
323cb8eb-fbf6-51c0-afd0-f8fba70507b2 = { name = "GeoStatsBase", path = "G/GeoStatsBase" }
324d217c-45ce-50fc-942e-d289b448e8cf = { name = "ReferenceTests", path = "R/ReferenceTests" }
324d7699-5711-5eae-9e2f-1d82baa6b597 = { name = "CategoricalArrays", path = "C/CategoricalArrays" }
328247a4-1e87-56eb-b3f2-bcec366639cb = { name = "CrossDecomposition", path = "C/CrossDecomposition" }
329a7628-3119-536a-a060-c6b2f8e35265 = { name = "Maracas", path = "M/Maracas" }
32ab9816-da6e-5a9c-bbd0-a7a9d16c65d7 = { name = "FEMDynamics", path = "F/FEMDynamics" }
32e1273b-95f2-5990-a28e-8939b2e70f37 = { name = "AlgebraResultTypes", path = "A/AlgebraResultTypes" }
3304b86d-eb5b-5d22-9ed4-3b0a60539cfe = { name = "Optionals", path = "O/Optionals" }
333b5096-10d4-5fe3-8aed-15ce8e90d50b = { name = "DReal", path = "D/DReal" }
3348d572-c7ce-5100-8a2c-7d2bb2d34f8f = { name = "MambaModels", path = "M/MambaModels" }
3349acd9-ac6a-5e09-bcdb-63829b23a429 = { name = "ProtoBuf", path = "P/ProtoBuf" }
336ed68f-0bac-5ca0-87d4-7b16caf5d00b = { name = "CSV", path = "C/CSV" }
33729d6b-6e64-5c8d-a7fe-d444d17d628d = { name = "CellularAutomata", path = "C/CellularAutomata" }
3391f64e-dcde-5f30-b752-e11513730f60 = { name = "CDDLib", path = "C/CDDLib" }
33a4982b-2a1f-504f-9f57-5459487c996a = { name = "IDXParser", path = "I/IDXParser" }
33ad39ac-ed31-50eb-9b15-43d0656eaa72 = { name = "PhyloNetworks", path = "P/PhyloNetworks" }
33d173f1-3be9-53c5-a697-8225b67db89c = { name = "DocSeeker", path = "D/DocSeeker" }
33f35c42-577e-5c66-8569-bbf1771cbf32 = { name = "SeparatingAxisTheorem2D", path = "S/SeparatingAxisTheorem2D" }
34004b35-14d8-5ef3-9330-4cdb6864b03a = { name = "HypergeometricFunctions", path = "H/HypergeometricFunctions" }
34035eb4-37db-58ae-b003-a3202c898701 = { name = "DiffEqPDEBase", path = "D/DiffEqPDEBase" }
340492b5-2a47-5f55-813d-aca7ddf97656 = { name = "EndpointRanges", path = "E/EndpointRanges" }
340e8cb6-72eb-11e8-37ce-c97ebeb32050 = { name = "SearchLight", path = "S/SearchLight" }
34107986-0299-5882-844e-fd949a1ee147 = { name = "WeberCedrus", path = "W/WeberCedrus" }
34431166-ec0b-5f3d-af82-e2d5065c44b8 = { name = "PValueAdjust", path = "P/PValueAdjust" }
345a2cc7-28d8-58b2-abdf-cff77ea7d7f1 = { name = "CUDD", path = "C/CUDD" }
347217b8-be9f-584b-81aa-3fac8492ed31 = { name = "KernSmooth", path = "K/KernSmooth" }
348f2d5d-71a3-5ad4-b565-8af070f99681 = { name = "SpatialEcology", path = "S/SpatialEcology" }
34922c18-7c2a-561c-bac1-01e79b2c4c92 = { name = "VisualRegressionTests", path = "V/VisualRegressionTests" }
34982d31-ea70-56fc-a7d3-dc148ae8a7f4 = { name = "LibTrading", path = "L/LibTrading" }
34c5aeac-e683-54a6-a0e9-6e0fdc586c50 = { name = "HSL", path = "H/HSL" }
34c9ecfb-342e-5e3f-98cd-df711e743db1 = { name = "Units", path = "U/Units" }
34da2185-b29b-5c13-b0c7-acf172513d20 = { name = "Compat", path = "C/Compat" }
34f115b4-9156-5266-a33d-ca359e631fb8 = { name = "SyntheticGrids", path = "S/SyntheticGrids" }
34f15cae-5318-50c9-93d3-9feadd34e321 = { name = "StructJuMP", path = "S/StructJuMP" }
34f1f09b-3a8b-5176-ab39-66d58a4d544e = { name = "ClusterManagers", path = "C/ClusterManagers" }
34f3d4b8-9242-5bf8-8faf-4f21e918fce6 = { name = "ConfidenceWeighted", path = "C/ConfidenceWeighted" }
3532a73c-0c3e-5edc-89e3-d771336b0a2d = { name = "ParticleScattering", path = "P/ParticleScattering" }
353921e4-b2a0-5f7c-adb9-3f3137bad256 = { name = "ExtremelyRandomizedTrees", path = "E/ExtremelyRandomizedTrees" }
353fb843-c566-51e6-ba49-78b3e3d5ebb5 = { name = "FEMBasis", path = "F/FEMBasis" }
3549b72e-d846-5e61-81ad-7b3ef408fc17 = { name = "Filetimes", path = "F/Filetimes" }
355abbd5-f08e-5560-ac9e-8b5f2592a0ca = { name = "POMDPModels", path = "P/POMDPModels" }
356022a1-0364-5f58-8944-0da4b18d706f = { name = "NamedDims", path = "N/NamedDims" }
356ae075-8bc9-5ef9-a342-46c9ba26438c = { name = "GridArrays", path = "G/GridArrays" }
35a29f4d-8980-5a13-9543-d66fff28ecb8 = { name = "DocumenterTools", path = "D/DocumenterTools" }
35b54cfc-a451-5a54-a69a-9b99a7b670e9 = { name = "WaveletMatrices", path = "W/WaveletMatrices" }
35d56a6d-6727-516e-9b7e-96cab7480cce = { name = "SGDOptim", path = "S/SGDOptim" }
35d6a980-a343-548e-a6ea-1d62b119f2f4 = { name = "ColorSchemes", path = "C/ColorSchemes" }
35dd6a29-728b-5d91-8fe9-8df4ea503c83 = { name = "Isotonic", path = "I/Isotonic" }
35eb6272-8738-11e9-0051-6dceb7698eda = { name = "ConsoleInput", path = "C/ConsoleInput" }
35fa313e-aa48-52ea-bc82-ddb91c7db87b = { name = "Materials", path = "M/Materials" }
362a7bfe-67b7-5e6e-8d98-34092436a248 = { name = "SearchMethods", path = "S/SearchMethods" }
3637df68-df41-5d16-b00c-95ac8c2142c5 = { name = "Bio", path = "B/Bio" }
3639840a-3b65-599e-a5e5-6439523e890e = { name = "RandomV06", path = "R/RandomV06" }
3646fa90-6ef7-5e7e-9f22-8aca16db6324 = { name = "ScikitLearn", path = "S/ScikitLearn" }
366cf18f-59d5-5db9-a4de-86a9f6786172 = { name = "RigidBodyDynamics", path = "R/RigidBodyDynamics" }
368b7869-440d-5a68-a3d1-bbc86b0a93b0 = { name = "UnivariateFunctions", path = "U/UnivariateFunctions" }
36b54c61-190e-5a5f-82d5-6f0a962d7362 = { name = "PushVectors", path = "P/PushVectors" }
36b8f3f0-b776-11e8-061f-1f20094e1fc8 = { name = "MetaArrays", path = "M/MetaArrays" }
36cfb952-b4c3-5807-bb82-2c0fddb7e68e = { name = "SystemImageBuilder", path = "S/SystemImageBuilder" }
36e9a02b-89ba-5c81-9f23-352891f35b31 = { name = "ErdosExtras", path = "E/ErdosExtras" }
37097376-7805-5844-a42f-f170eef30b7c = { name = "DPMeansClustering", path = "D/DPMeansClustering" }
371237a9-e6c1-5201-9adb-3d8cfa78fa9f = { name = "MPIFiles", path = "M/MPIFiles" }
3725be50-bbbd-5592-92c3-2f0e82159c3e = { name = "PhysOcean", path = "P/PhysOcean" }
37834d88-8936-577c-80c9-1066ecf66832 = { name = "RomanNumerals", path = "R/RomanNumerals" }
3783bdb8-4a98-5b6b-af9a-565f29a5fe9c = { name = "TableTraits", path = "T/TableTraits" }
37933770-58e7-5599-b2a0-fdc2bbb99623 = { name = "ImputeNaNs", path = "I/ImputeNaNs" }
379a43df-f81c-573e-83a6-069eb6c11a71 = { name = "WeightedArrays", path = "W/WeightedArrays" }
37b6cedf-1f77-55f8-9503-c64b63398394 = { name = "Traceur", path = "T/Traceur" }
37cfa864-2cd6-5c12-ad9e-b6597d696c81 = { name = "BioCore", path = "B/BioCore" }
37e2e3b7-166d-5795-8a7a-e32c996b4267 = { name = "ReverseDiff", path = "R/ReverseDiff" }
37e8709b-1ed2-53db-b26a-3571262b3cb4 = { name = "EffectiveWaves", path = "E/EffectiveWaves" }
37f0c46e-897f-50ef-b453-b26c3eed3d6c = { name = "TimeToLive", path = "T/TimeToLive" }
37f6aa50-8035-52d0-81c2-5a1d08754b2d = { name = "TikzPictures", path = "T/TikzPictures" }
382cd787-c1b6-5bf2-a167-d5b971a19bda = { name = "TableTraitsUtils", path = "T/TableTraitsUtils" }
3834c8fd-48e2-52a5-93ac-c34d1bd191f7 = { name = "TextModel", path = "T/TextModel" }
38540f10-b2f7-11e9-35d8-d573e4eb0ff2 = { name = "CommonSolve", path = "C/CommonSolve" }
3868d828-178d-56af-83e1-d523478a73cd = { name = "AIControl", path = "A/AIControl" }
38708fd2-87cb-5685-8cf6-f81d134ed590 = { name = "DispatcherCache", path = "D/DispatcherCache" }
3895d2a7-ec45-59b8-82bb-cfc6a382f9b3 = { name = "CUDAapi", path = "C/CUDAapi" }
38a4a31c-f17b-5f22-8721-d9b4a0175df2 = { name = "GeneticAlgorithms", path = "G/GeneticAlgorithms" }
38ac1a67-8e16-5889-9a62-b2c9995eb50f = { name = "ComplexPhasePortrait", path = "C/ComplexPhasePortrait" }
38bc9a14-d65a-5c5a-8a51-c6e7361b5ffc = { name = "HttpParser", path = "H/HttpParser" }
38cab1e9-85a4-5f0b-a884-40c18149b8cd = { name = "Fixtures", path = "F/Fixtures" }
38e38edf-8417-5370-95a0-9cbb8c7f171a = { name = "GLM", path = "G/GLM" }
38eea1fd-7d7d-5162-9d08-f89d0f2e271e = { name = "AugmentedGaussianProcesses", path = "A/AugmentedGaussianProcesses" }
391af1a9-06f1-59d3-8d21-0be089654739 = { name = "Spectra", path = "S/Spectra" }
39424ebd-4cf3-5550-a685-96706a953f40 = { name = "TreeView", path = "T/TreeView" }
3943505e-88e3-5b18-a3d9-e2be89fdab48 = { name = "KongYiji", path = "K/KongYiji" }
396aa475-d5af-5b65-8c11-5c82e21b2380 = { name = "MultiResolutionIterators", path = "M/MultiResolutionIterators" }
39881422-4b75-5582-a5c7-0feb14562a65 = { name = "SetProg", path = "S/SetProg" }
398f06c4-4d28-53ec-89ca-5b2656b7603d = { name = "AbstractLattices", path = "A/AbstractLattices" }
39abe10b-433b-5dbd-92d4-e302a9df00cd = { name = "MySQL", path = "M/MySQL" }
39d38320-a18c-5735-a4f5-135970cd79b8 = { name = "CloudGraphs", path = "C/CloudGraphs" }
39dd38d3-220a-591b-8e3c-4c3a8c710a94 = { name = "Dierckx", path = "D/Dierckx" }
39de3d68-74b9-583c-8d2d-e117c070f3a9 = { name = "AxisArrays", path = "A/AxisArrays" }
39ec1447-df44-5f4c-beaa-866f30b4d3b2 = { name = "Millboard", path = "M/Millboard" }
39f5be34-8529-5463-bac7-bf6867c840a3 = { name = "LoopThrottle", path = "L/LoopThrottle" }
3a141323-8675-5d76-9d11-e1df1406c778 = { name = "PolynomialRoots", path = "P/PolynomialRoots" }
3a3ce9e8-98e7-11e9-0fa0-055639f146d3 = { name = "BitConverter", path = "B/BitConverter" }
3a41ca7c-167c-5dd3-b068-80165705c037 = { name = "Equations", path = "E/Equations" }
3a865a2d-5b23-5a0f-bc46-62713ec82fae = { name = "CuArrays", path = "C/CuArrays" }
3a97d323-0669-5f0c-9066-3539efd106a3 = { name = "MPFR_jll", path = "M/MPFR_jll" }
3a9ba88e-79c2-56d1-8a6d-815ee8f38f0c = { name = "RandomFerns", path = "R/RandomFerns" }
3abffc1c-5106-53b7-b354-a47bfc086282 = { name = "ControlSystemIdentification", path = "C/ControlSystemIdentification" }
3ae66bd7-4256-56cd-8b87-f856965b5ccf = { name = "Miletus", path = "M/Miletus" }
3b2b4ff1-bcff-5658-a3ee-dbcf1ce5ac09 = { name = "Multisets", path = "M/Multisets" }
3b47aaff-9524-5d9d-a292-eeb6a187c032 = { name = "FocusedBlindDecon", path = "F/FocusedBlindDecon" }
3b74c4c8-83ac-59e6-af00-836933a3a159 = { name = "Loss", path = "L/Loss" }
3b7a836e-365b-5785-a47d-02c71176b4aa = { name = "PGFPlots", path = "P/PGFPlots" }
3b89720e-b86e-5936-9f69-824af742f89b = { name = "QDXML", path = "Q/QDXML" }
3b8c1752-506b-11e9-3f9b-8db86abc7c68 = { name = "TCX", path = "T/TCX" }
3bad70da-0c46-5862-8b75-4985ed19fec8 = { name = "XMLRPC", path = "X/XMLRPC" }
3bb67fe8-82b1-5028-8e26-92a6c54297fa = { name = "TranscodingStreams", path = "T/TranscodingStreams" }
3bd8f0ae-a0f2-5238-a5af-e1b399a4940c = { name = "Microbiome", path = "M/Microbiome" }
3bf275ae-c56e-51b1-910f-9ec630bf193d = { name = "LinguisticData", path = "L/LinguisticData" }
3c0b384b-479c-5684-b2ef-9d7a46dd931e = { name = "QuantumInformation", path = "Q/QuantumInformation" }
3c28c6f8-a34d-59c4-9654-267d177fcfa9 = { name = "BioSymbols", path = "B/BioSymbols" }
3c28d9fa-eaec-11e8-3371-6131c0bd32f6 = { name = "TheCannon", path = "T/TheCannon" }
3c64ce36-c3ed-51c2-a7aa-9c9aa94f3624 = { name = "LinearResponseVariationalBayes", path = "L/LinearResponseVariationalBayes" }
3c7084bd-78ad-589a-b5bb-dbd673274bea = { name = "GLPKMathProgInterface", path = "G/GLPKMathProgInterface" }
3c71623a-a715-5176-9801-629b201a4880 = { name = "GraphDataFrameBridge", path = "G/GraphDataFrameBridge" }
3c9fd3ee-a92c-11e9-08dd-a9434b97651a = { name = "CodeTransformation", path = "C/CodeTransformation" }
3ca710bb-85d4-534c-9bae-b7b5d9e27e20 = { name = "FixedSizeStrings", path = "F/FixedSizeStrings" }
3cb15238-376d-56a3-8042-d33272777c9a = { name = "ChangePrecision", path = "C/ChangePrecision" }
3cc68bcd-71a2-5612-b932-767ffbe40ab0 = { name = "SetRounding", path = "S/SetRounding" }
3cdcf5f2-1ef4-517c-9805-6587b60abb01 = { name = "RecipesBase", path = "R/RecipesBase" }
3ce1bdb9-727b-5794-a8c0-19c5c87cd16a = { name = "SpatialGrids", path = "S/SpatialGrids" }
3d38dfc6-4f17-513e-996d-152e5e70789c = { name = "ScanImageTiffReader", path = "S/ScanImageTiffReader" }
3d39a06a-b57e-5769-b499-4d62b23c243f = { name = "EnhancedGJK", path = "E/EnhancedGJK" }
3d41126b-a46a-5bdb-b7a1-7ea6cc35a8ef = { name = "XSim", path = "X/XSim" }
3da002f7-5984-5a60-b8a6-cbb66c0b333f = { name = "ColorTypes", path = "C/ColorTypes" }
3dacf901-f8cd-5544-86ed-7a705f85c244 = { name = "jInv", path = "J/jInv" }
3dd14ad9-0029-526e-86e9-8aa0bdd2ab0d = { name = "FixedPolynomials", path = "F/FixedPolynomials" }
3df1733e-8da1-5e0d-9c60-b33daa64fdfa = { name = "Gasp", path = "G/Gasp" }
3e1990a7-5d81-5526-99ce-9ba3ff248f21 = { name = "Hecke", path = "H/Hecke" }
3e6341c9-01f6-5312-b33f-f8894a2e817a = { name = "SLEEF", path = "S/SLEEF" }
3e66a162-7b8c-5da0-b8f8-124ecd2c3ae1 = { name = "CompScienceMeshes", path = "C/CompScienceMeshes" }
3e78a19a-cc83-51d8-955b-515f39fd7955 = { name = "Bukdu", path = "B/Bukdu" }
3e7d7328-36f8-4388-bd01-4613c92c7370 = { name = "PredictMD", path = "P/PredictMD" }
3e82249f-a303-547a-a2b6-0781e594f165 = { name = "Morsel", path = "M/Morsel" }
3e9e306e-7e3c-11e9-12d2-8f8f67a2f951 = { name = "FunctionalStateMachine", path = "F/FunctionalStateMachine" }
3eaba693-59b7-5ba5-a881-562e759f1c8d = { name = "StatsModels", path = "S/StatsModels" }
3ee6bc94-e39f-5162-bd50-f9adad5d8866 = { name = "SynthesisFilters", path = "S/SynthesisFilters" }
3eeacb1d-13c2-54cc-9b18-30c86af3cadb = { name = "TabularDisplay", path = "T/TabularDisplay" }
3f0dd361-4fe0-5fc6-8523-80b14ec94d85 = { name = "DefaultApplication", path = "D/DefaultApplication" }
3f3442c8-4998-5f9a-b6f6-804928b92bc1 = { name = "RiemannComplexNumbers", path = "R/RiemannComplexNumbers" }
3f410d47-d341-57c5-b0c7-127616a53c76 = { name = "BooSTjl", path = "B/BooSTjl" }
3f49405f-012b-5ae6-ad9b-9087b1131e69 = { name = "Jfire", path = "J/Jfire" }
3f54b04b-17fc-5cd4-9758-90c048d965e3 = { name = "LorentzVectors", path = "L/LorentzVectors" }
3f7aa1fa-0fbc-58b7-89cd-01d1190b12a7 = { name = "LineEdit", path = "L/LineEdit" }
3f865c0f-6dca-5f4d-999b-29fe1e7e3c92 = { name = "ScatteredInterpolation", path = "S/ScatteredInterpolation" }
3f90d43e-2ba6-5087-9e86-8e3765b17318 = { name = "Tachyons", path = "T/Tachyons" }
3fa0cd96-eef1-5676-8a61-b3b8758bbffb = { name = "REPL", path = "R/REPL" }
3fc713dc-8771-5a7b-b2d9-79d2995ff451 = { name = "REPLCompletions", path = "R/REPLCompletions" }
3ffbb5c2-dde1-5000-9600-8fb8e4218afa = { name = "Fuji", path = "F/Fuji" }
400165cc-b992-11e9-18fb-114a7be5e8c2 = { name = "NLIDatasets", path = "N/NLIDatasets" }
402eba18-653d-57be-950a-da680ed1f2db = { name = "Sparklines", path = "S/Sparklines" }
4030f512-cedb-5907-ac7f-4ab05ad75ee7 = { name = "HeatTransfer", path = "H/HeatTransfer" }
40713840-3770-5561-ab4c-a76e7d0d7895 = { name = "IncompleteLU", path = "I/IncompleteLU" }
4076af6c-e467-56ae-b986-b466b2749572 = { name = "JuMP", path = "J/JuMP" }
4086de5b-f4b6-55f3-abb0-b8c73827585f = { name = "GLVisualize", path = "G/GLVisualize" }
409f5150-fb84-534f-94db-80d1e10f57e1 = { name = "FeatherLib", path = "F/FeatherLib" }
40c74d1a-b44c-5b06-a7c1-6cbea58ea978 = { name = "TableView", path = "T/TableView" }
40e3b903-d033-50b4-a0cc-940c62c95e31 = { name = "Clang", path = "C/Clang" }
40e66cde-538c-5869-a4ad-c39174c6795b = { name = "LDLFactorizations", path = "L/LDLFactorizations" }
41288a94-bad6-50fe-b760-28007bed6cea = { name = "BOSSArrays", path = "B/BOSSArrays" }
41316d4b-5af7-5582-b67f-8b4865fbb384 = { name = "DimensionalityReduction", path = "D/DimensionalityReduction" }
4138dd39-2aa7-5051-a626-17a0bb65d9c8 = { name = "JLD", path = "J/JLD" }
41400c72-0c58-5c16-8579-4ecbce768449 = { name = "SimpleGraphAlgorithms", path = "S/SimpleGraphAlgorithms" }
414d4a1f-53a7-59c9-88e8-37580f05eeca = { name = "EasyTranspose", path = "E/EasyTranspose" }
418bc28f-b43b-5e0b-a6e7-61bbc1a2c1df = { name = "YaoBlocks", path = "Y/YaoBlocks" }
41994980-b535-5476-86a1-6733688e0e4a = { name = "D3TypeTrees", path = "D/D3TypeTrees" }
41a43668-ff68-5e81-b2d7-6ef3c0dd3db1 = { name = "ForestBiometrics", path = "F/ForestBiometrics" }
41a84b80-6cf2-11e9-379d-9df124847946 = { name = "ComplexValues", path = "C/ComplexValues" }
41ab1584-1d38-5bbf-9106-f11c6c58b48f = { name = "InvertedIndices", path = "I/InvertedIndices" }
41ba435c-a500-5816-a783-a9707c6f5f3a = { name = "Deconvolution", path = "D/Deconvolution" }
41bf760c-e81c-5289-8e54-58b1f1f8abe2 = { name = "DiffEqSensitivity", path = "D/DiffEqSensitivity" }
41fac6d6-0ffa-5bcc-b863-17dd4947be41 = { name = "Parametron", path = "P/Parametron" }
42063a9e-4db3-11e9-2c9c-956b066f8181 = { name = "RDates", path = "R/RDates" }
4210c81c-ea79-58ed-b1f5-cefccb200c31 = { name = "LifeTable", path = "L/LifeTable" }
42171d58-473b-503a-8d5f-782019eb09ec = { name = "PlyIO", path = "P/PlyIO" }
4225ea8a-3324-57e7-9ddc-5798a2cb9eab = { name = "Tk", path = "T/Tk" }
422c787a-46d8-5bcd-977a-e425588d3a91 = { name = "CLBLAS", path = "C/CLBLAS" }
423ec4af-fed9-5355-ada1-918c9f4b4566 = { name = "Curl", path = "C/Curl" }
4263706f-63e6-5d2d-b5cd-cd6834b0c510 = { name = "MessageUtils", path = "M/MessageUtils" }
42699a24-3520-5f41-a549-6a478ed667c2 = { name = "Serd", path = "S/Serd" }
4278c8f4-0a4f-53d1-b67c-7986f76c9f21 = { name = "Bandits", path = "B/Bandits" }
428bdadb-6287-5aa5-874b-9969638295fd = { name = "SimJulia", path = "S/SimJulia" }
429524aa-4258-5aef-a3af-852621145aeb = { name = "Optim", path = "O/Optim" }
429591f6-91af-11e9-00e2-59fbe8cec110 = { name = "ExactPredicates", path = "E/ExactPredicates" }
42b7a45b-8021-5b99-aff5-7432580bee1c = { name = "StrEntities", path = "S/StrEntities" }
42bdb5c4-78fb-11e9-2233-215979c148c4 = { name = "Theta", path = "T/Theta" }
42d2dcc6-99eb-4e98-b66c-637b7d73030e = { name = "Referenceables", path = "R/Referenceables" }
42dc638b-f25b-5678-89be-0040dfb9a435 = { name = "Watcher", path = "W/Watcher" }
42ed035d-9ad9-5097-b4a3-321d9b0dde85 = { name = "ArrayAllez", path = "A/ArrayAllez" }
42fd0dbc-a981-5370-80f2-aaf504508153 = { name = "IterativeSolvers", path = "I/IterativeSolvers" }
4345ca2d-374a-55d4-8d30-97f9976e7612 = { name = "Loess", path = "L/Loess" }
43497bb0-e9f8-5dff-b622-a6beb2ad517b = { name = "RouletteWheels", path = "R/RouletteWheels" }
434fa67a-6ada-5e8f-9662-b52a532874d7 = { name = "FixedSizeDictionaries", path = "F/FixedSizeDictionaries" }
4354e1ec-8290-11e9-2b91-b56df8a56508 = { name = "BlockDiagonalFactors", path = "B/BlockDiagonalFactors" }
435c3d8c-e5f4-5f7f-83ee-d96dcc9b5a11 = { name = "GaussianMixtureTest", path = "G/GaussianMixtureTest" }
435f3bbf-55e0-5b39-8871-97c6cb0d7309 = { name = "SimpleStructs", path = "S/SimpleStructs" }
43612063-7f17-5691-a524-c0463e87d2c7 = { name = "Rainflow", path = "R/Rainflow" }
436ed74b-f7b6-57fe-bd82-efdbd6c0ab0c = { name = "AtlasRobot", path = "A/AtlasRobot" }
437b6fc4-8e8e-11e9-3fa1-ad391e66c018 = { name = "ProtoStructs", path = "P/ProtoStructs" }
4381153b-2b60-58ae-a1ba-fd683676385f = { name = "ImageDraw", path = "I/ImageDraw" }
43843433-91eb-5384-8a0e-cbb992997742 = { name = "FinancialDerivatives", path = "F/FinancialDerivatives" }
438e738f-606a-5dbb-bf0a-cddfbfd45ab0 = { name = "PyCall", path = "P/PyCall" }
438ff524-9f0e-576b-9874-0fc608798f85 = { name = "PolynomialAmoebas", path = "P/PolynomialAmoebas" }
43dc94dd-f011-5c5d-8ab2-5073432dc0ba = { name = "SteamTables", path = "S/SteamTables" }
43dcc890-d446-5863-8d1a-14597580bb8d = { name = "GaussianDistributions", path = "G/GaussianDistributions" }
43ec2cc1-0e50-5406-a854-b7ff8fdb8dad = { name = "ToStruct", path = "T/ToStruct" }
43edad99-fa64-5e4f-9937-1c09a410b73f = { name = "InstantiateFromURL", path = "I/InstantiateFromURL" }
44063525-382a-5b84-b7ca-976d099b8647 = { name = "NODAL", path = "N/NODAL" }
44135caf-e1e6-5817-8029-ae977229455d = { name = "Yelp", path = "Y/Yelp" }
4418983a-e44d-11e8-3aec-9789530b3b3e = { name = "Registrator", path = "R/Registrator" }
441973f2-b9df-5c96-8592-43ab4ae4df82 = { name = "XMLconvert", path = "X/XMLconvert" }
442a2c76-b920-505d-bb47-c5924d526838 = { name = "FastGaussQuadrature", path = "F/FastGaussQuadrature" }
442b4e1a-8b9d-11e9-03b0-f14b31742153 = { name = "BackwardsLinalg", path = "B/BackwardsLinalg" }
442fdcdd-2543-5da2-b0f3-8c86c306513e = { name = "Measures", path = "M/Measures" }
446ba1aa-1196-5145-b9bf-af2f15fe4dda = { name = "FWF", path = "F/FWF" }
4491297b-8966-5840-8cb9-b189d60f3398 = { name = "RealNeuralNetworks", path = "R/RealNeuralNetworks" }
44b605c4-b955-5f2b-9b6d-d2bd01d3d205 = { name = "CRC", path = "C/CRC" }
44d3d7a6-8a23-5bf8-98c5-b353f8df5ec9 = { name = "Weave", path = "W/Weave" }
44e12807-9a19-5591-91cf-c1b4fb89ce64 = { name = "AcceleratedArrays", path = "A/AcceleratedArrays" }
44e31299-2c53-5a9b-9141-82aa45d7972f = { name = "DayCounts", path = "D/DayCounts" }
44eb87bc-f37b-45e8-9f53-3bcb453a652d = { name = "RepoSnapshots", path = "R/RepoSnapshots" }
44ee3b1c-bc02-53fa-8355-8e347616e15e = { name = "GeophysicalFlows", path = "G/GeophysicalFlows" }
451eba6f-1be1-5dbe-8902-f773bf8b6763 = { name = "HigherOrderKernels", path = "H/HigherOrderKernels" }
45408861-6e75-55ae-b01d-c0d3f903bc50 = { name = "DirichletProcessMixtures", path = "D/DirichletProcessMixtures" }
4552ee2b-11da-5aef-8e78-0d48532001f1 = { name = "BlackBoxOptimizationBenchmarking", path = "B/BlackBoxOptimizationBenchmarking" }
459566f4-90b8-5000-8ac3-15dfb0a30def = { name = "DiffEqCallbacks", path = "D/DiffEqCallbacks" }
459fdd68-db75-56b8-8c15-d717a790f88e = { name = "ComputedFieldTypes", path = "C/ComputedFieldTypes" }
45d23951-e9a5-545c-8049-e4c4887f5525 = { name = "IntArrays", path = "I/IntArrays" }
45d946b0-08fb-586b-921f-9097f984cf64 = { name = "Chipmunk", path = "C/Chipmunk" }
4607b0f0-06f3-5cda-b6b1-a6196a1729e9 = { name = "SuiteSparse", path = "S/SuiteSparse" }
460dee8a-b2b3-5fdf-897c-8d28408122d5 = { name = "CoinOptServices", path = "C/CoinOptServices" }
4610876b-9b01-57c8-9ad9-06315f1a66a5 = { name = "GslibIO", path = "G/GslibIO" }
46757867-2c16-5918-afeb-47bfcb05e46a = { name = "NetworkLayout", path = "N/NetworkLayout" }
46823bd8-5fb3-5f92-9aa0-96921f3dd015 = { name = "Chemfiles", path = "C/Chemfiles" }
4696fa5f-36f0-5b18-99a6-fef83351280f = { name = "SimpleTools", path = "S/SimpleTools" }
46a55296-af5a-53b0-aaa0-97023b66127f = { name = "ParquetFiles", path = "P/ParquetFiles" }
46ada45e-f475-11e8-01d0-f70cc89e6671 = { name = "Agents", path = "A/Agents" }
46b6dc52-43c1-5dc0-9d43-b3fa04378dc4 = { name = "Lexicon", path = "L/Lexicon" }
46c19be6-bce2-539c-96b6-a48c64de3b10 = { name = "EntropicCone", path = "E/EntropicCone" }
46cd3e9d-64ff-517d-a929-236bc1a1fc9d = { name = "StructuredOptimization", path = "S/StructuredOptimization" }
46d2c3a1-f734-5fdb-9937-b9b9aeba4221 = { name = "MuladdMacro", path = "M/MuladdMacro" }
46d747a0-b9e1-11e9-14b5-615c73e45078 = { name = "BridgeSDEInference", path = "B/BridgeSDEInference" }
46dd5b70-b6fb-5a00-ae2d-e8fea33afaf2 = { name = "Pardiso", path = "P/Pardiso" }
47737169-82b5-5dea-8d33-5707f53e1c0c = { name = "MicrostructureNoise", path = "M/MicrostructureNoise" }
4777d015-ed27-555f-9f85-cd11107278d6 = { name = "TypeCheck", path = "T/TypeCheck" }
4780e19d-04b9-53dc-86c2-9e9aa59b5a12 = { name = "MortalityTables", path = "M/MortalityTables" }
47a9eef4-7e08-11e9-0b38-333d64bd3804 = { name = "SparseDiffTools", path = "S/SparseDiffTools" }
47aef6b3-ad0c-573a-a1e2-d07658019622 = { name = "SimpleWeightedGraphs", path = "S/SimpleWeightedGraphs" }
47be7bcc-f1a6-5447-8b36-7eeeff7534fd = { name = "ORCA", path = "O/ORCA" }
47bf582d-267e-5eba-99a4-ad788df502a8 = { name = "NURBS", path = "N/NURBS" }
47d2ed2b-36de-50cf-bf87-49c2cf4b8b91 = { name = "Hyperscript", path = "H/Hyperscript" }
480116ec-64ea-5dec-baca-db6b11e96e37 = { name = "JuliaWebAPI", path = "J/JuliaWebAPI" }
48062228-2e41-5def-b9a4-89aafe57970f = { name = "FilePathsBase", path = "F/FilePathsBase" }
480c51c8-11cd-5857-ba64-2c3c1abd9c7c = { name = "FProfile", path = "F/FProfile" }
48487f09-f8e4-5c49-9452-2a9c2dd48540 = { name = "Rifraf", path = "R/Rifraf" }
484db1fa-5b09-57e4-b4aa-3b3c8d692513 = { name = "CQL", path = "C/CQL" }
4854310b-de5a-5eb6-a2a5-c1dee2bd17f9 = { name = "MINPACK", path = "M/MINPACK" }
4858937d-0d70-526a-a4dd-2d5cb5dd786c = { name = "InfiniteArrays", path = "I/InfiniteArrays" }
4886b29c-78c9-11e9-0a6e-41e1f4161f7b = { name = "MonteCarloIntegration", path = "M/MonteCarloIntegration" }
48a634ad-e948-5137-8d70-aa71f2a747f4 = { name = "Tensors", path = "T/Tensors" }
491a7021-2a71-5fe9-8857-4768b8bc34b9 = { name = "EcologicalNetwork", path = "E/EcologicalNetwork" }
4937dc1f-c7a3-5772-9d42-4a8277f2eb51 = { name = "ConsistencyResampling", path = "C/ConsistencyResampling" }
49426c49-986f-5969-8844-d5cc96441cfc = { name = "FieldDefaults", path = "F/FieldDefaults" }
49441bc9-da82-574f-b07c-a0d10dd4ac13 = { name = "MetadataArrays", path = "M/MetadataArrays" }
494afd89-becb-516b-aafa-70d2670c0337 = { name = "JavaCall", path = "J/JavaCall" }
49554e26-8ce4-56b6-9569-b76b8eb63da1 = { name = "EAGODomainReduction", path = "E/EAGODomainReduction" }
496038af-b016-571c-b31e-8262695ac102 = { name = "Lens", path = "L/Lens" }
497a8b3b-efae-58df-a0af-a86822472b78 = { name = "DoubleFloats", path = "D/DoubleFloats" }
49802e3a-d2f1-5c88-81d8-b72133a6f568 = { name = "ProgressBars", path = "P/ProgressBars" }
4986ee89-4ee5-5cef-b6b8-e49ba721d7a5 = { name = "DynamicalBilliards", path = "D/DynamicalBilliards" }
498c179e-6d39-5d99-a5ec-710f95d458bc = { name = "RobotDescriptions", path = "R/RobotDescriptions" }
49c7015b-b8db-5bc5-841b-fcb31c578176 = { name = "DrakeVisualizer", path = "D/DrakeVisualizer" }
49c96f43-aa6d-5a04-a506-44c7070ebe78 = { name = "Nabla", path = "N/Nabla" }
49d1aae2-ae6b-5d26-a063-7cf6630cf99c = { name = "ApproximateComputations", path = "A/ApproximateComputations" }
49dc2e85-a5d0-5ad3-a950-438e2897f1b9 = { name = "Calculus", path = "C/Calculus" }
49dea1ee-f6fa-5aa6-9a11-8816cee7d4b9 = { name = "Nettle", path = "N/Nettle" }
4a05ff16-5f95-55f4-bb53-bb3f467c689a = { name = "Hadamard", path = "H/Hadamard" }
4a446bee-a8a1-53bd-a908-d1601923a297 = { name = "Monads", path = "M/Monads" }
4aa82a78-ed18-41f9-aee6-9d73ba3a0b42 = { name = "RAFF", path = "R/RAFF" }
4aceb6fc-b794-5e89-b0ac-b6eba507a4bd = { name = "ValueOrientedRiskManagementInsurance", path = "V/ValueOrientedRiskManagementInsurance" }
4ad6d227-cdcc-5a24-88a2-850b583613d7 = { name = "JellyFish", path = "J/JellyFish" }
4af8ee2a-afa9-11e9-10dc-fb1b37f8f4b5 = { name = "LinearCovarianceModels", path = "L/LinearCovarianceModels" }
4afe4657-7149-58ef-9a68-bf97da7d889b = { name = "Phylogenetics", path = "P/Phylogenetics" }
4b0a1bd3-4a5d-5152-a79b-f00e95e62c14 = { name = "ISPC", path = "I/ISPC" }
4b11ee91-296f-5714-9832-002c20994614 = { name = "Gaston", path = "G/Gaston" }
4b9e565b-77fc-50a5-a571-1244f986bda1 = { name = "SumOfSquares", path = "S/SumOfSquares" }
4bab44a2-5ff2-5a6b-8e10-825fb9ac126a = { name = "ImagineFormat", path = "I/ImagineFormat" }
4bb1df8b-5095-5c78-a48e-41b8fd09eb95 = { name = "SimpleTropical", path = "S/SimpleTropical" }
4c0c90bd-38f7-5fa4-a4e7-860b1bef477d = { name = "Polyglot", path = "P/Polyglot" }
4c0ca9eb-093a-5379-98c5-f87ac0bbbf44 = { name = "Gtk", path = "G/Gtk" }
4c47b132-0681-5a5d-b498-3afcf53fd314 = { name = "PhyloTrees", path = "P/PhyloTrees" }
4c526841-e1e8-562c-bfa9-9f39d642e243 = { name = "PolynomialTestSystems", path = "P/PolynomialTestSystems" }
4c5cd976-4938-5223-a900-acc20a7c8507 = { name = "EchogramColorSchemes", path = "E/EchogramColorSchemes" }
4c63d2b9-4356-54db-8cca-17b64c39e42c = { name = "StatsFuns", path = "S/StatsFuns" }
4c6ed407-134f-591c-93fa-e0f7c164a0ec = { name = "BayesianOptimization", path = "B/BayesianOptimization" }
4c728ea3-d9ee-5c9a-9642-b6f7d7dc04fa = { name = "Flatten", path = "F/Flatten" }
4c8104a3-dd10-56ac-8d5f-2af7ade365f0 = { name = "Bokeh", path = "B/Bokeh" }
4c88cf16-eb10-579e-8560-4a9242c79595 = { name = "Aqua", path = "A/Aqua" }
4c8beaf5-199b-59a0-a7f2-21d17de635b6 = { name = "StaticGraphs", path = "S/StaticGraphs" }
4ca9428c-4c75-11e9-2efb-bf5cb6c1e8f8 = { name = "JuDoc", path = "J/JuDoc" }
4ccfa06b-4be2-56f5-9ddb-d0d9d9a8678c = { name = "LibHealpix", path = "L/LibHealpix" }
4cd9e25d-7d31-56af-a12e-9449bc3c16f8 = { name = "Miniball", path = "M/Miniball" }
4cefb923-2b6f-58c4-9e65-6821f26b7b51 = { name = "Munkres", path = "M/Munkres" }
4d00f742-c7ba-57c2-abde-4428a4b178cb = { name = "GeometryTypes", path = "G/GeometryTypes" }
4d03fd4d-39a1-545a-9bf0-a2e993faffdf = { name = "Autologistic", path = "A/Autologistic" }
4d0d745f-9d9a-592e-8d18-1ad8a0f42b92 = { name = "PDFIO", path = "P/PDFIO" }
4d1e1d77-625e-5b40-9113-a560ec7a8ecd = { name = "Nullables", path = "N/Nullables" }
4d2f22df-77d7-5622-8d7f-1db4ec2bcc3a = { name = "GARCH", path = "G/GARCH" }
4d4711f2-db25-561a-b6b3-d35e7d4047d3 = { name = "MatrixMarket", path = "M/MatrixMarket" }
4d4a7207-8c2e-595d-b6a1-0355eeb1e38c = { name = "ReactiveBasics", path = "R/ReactiveBasics" }
4d6a76a9-bfbc-5492-8924-cf6ed7875f06 = { name = "Econometrics", path = "E/Econometrics" }
4dc1fcf4-5e3b-5448-94ab-0c38ec0385c1 = { name = "DotEnv", path = "D/DotEnv" }
4df31cd9-4c27-5bea-88d0-e6a7146666d8 = { name = "Grassmann", path = "G/Grassmann" }
4e197955-816a-5ef8-9ecd-699b0ea6e4bb = { name = "Helpme", path = "H/Helpme" }
4e3cecfd-b093-5904-9786-8bbb286a6a31 = { name = "ImageShow", path = "I/ImageShow" }
4e41d8b6-e438-5f9c-8b78-0c738ca8d379 = { name = "RSCG", path = "R/RSCG" }
4e8a8231-0ba9-591b-8620-81c6740d7791 = { name = "LearningStrategies", path = "L/LearningStrategies" }
4eec09b6-37c8-513a-a01b-84ce271f0312 = { name = "JeszenszkiBasis", path = "J/JeszenszkiBasis" }
4ef67f76-e0de-5105-ac01-03b6482fb4f8 = { name = "FLANN", path = "F/FLANN" }
4f18b42c-503e-5345-9536-bb0f25fc7038 = { name = "BusinessDays", path = "B/BusinessDays" }
4f1ea46c-232b-54a6-9b17-cc2d0f3e6598 = { name = "AWSCore", path = "A/AWSCore" }
4f207c7e-01da-51d7-a1a0-c8c06dd1d883 = { name = "RadiationSpectra", path = "R/RadiationSpectra" }
4f36922e-b395-5139-af69-051d0331eef0 = { name = "PhilipsHue", path = "P/PhilipsHue" }
4f449596-a032-5618-b826-5a251cb6dc11 = { name = "MatrixNetworks", path = "M/MatrixNetworks" }
4f4ee721-4970-5af2-8560-6c1d960e3231 = { name = "ClimateTools", path = "C/ClimateTools" }
4f61f5a4-77b1-5117-aa51-3ab5ef4ef0cd = { name = "FFTViews", path = "F/FFTViews" }
4f6a8bda-f411-5b8a-a202-ad6453283b07 = { name = "UnivariateDensityEstimate", path = "U/UnivariateDensityEstimate" }
4f6c22ed-8407-5d7c-965b-da23e1d23af6 = { name = "ClusterDicts", path = "C/ClusterDicts" }
4f6df8df-4739-5653-a877-cf57ee625c27 = { name = "WebAssembly", path = "W/WebAssembly" }
4f8a0a0a-376d-5ac0-ab14-e88793df67f0 = { name = "GenomicAnnotations", path = "G/GenomicAnnotations" }
4f8c86c6-9e40-5506-9807-98571cb48bc8 = { name = "MarketTechnicals", path = "M/MarketTechnicals" }
4f8fbe5d-35a6-506b-99b3-b5866748635b = { name = "BoltzmannMachines", path = "B/BoltzmannMachines" }
4fba245c-0d91-5ea0-9b3e-6abc04ee57a9 = { name = "ArrayInterface", path = "A/ArrayInterface" }
4fe2ecd4-b952-581a-b4b6-a532675a646e = { name = "CDCS", path = "C/CDCS" }
4fe8b98c-fc19-5c23-8ec2-168ff83495f2 = { name = "Mongoc", path = "M/Mongoc" }
5036cc39-ae6e-5f00-bcd6-dacb213bf05a = { name = "MomentOpt", path = "M/MomentOpt" }
5049e819-d29b-5fba-b941-0eee7e64c1c6 = { name = "OptimizationProblems", path = "O/OptimizationProblems" }
505f98c9-085e-5b2c-8e89-488be7bf1f34 = { name = "InplaceOps", path = "I/InplaceOps" }
5078a376-72f3-5289-bfd5-ec5146d43c02 = { name = "LazyArrays", path = "L/LazyArrays" }
5087d2c0-5ad2-51de-b1ef-eaf82f0743fd = { name = "IncGammaBeta", path = "I/IncGammaBeta" }
509eaf56-8f8f-530b-95ce-37fd3147b88c = { name = "NaturalSelection", path = "N/NaturalSelection" }
50ad52dc-2428-5a14-b1be-4c0d2fa9448f = { name = "DiffEqApproxFun", path = "D/DiffEqApproxFun" }
50ba71b6-fa0f-514d-ae9a-0916efc90dcf = { name = "BitBasis", path = "B/BitBasis" }
50ceba7f-c3ee-5a84-a6e8-3ad40456ec97 = { name = "HyperDualNumbers", path = "H/HyperDualNumbers" }
50d2b5c4-7a5e-59d5-8109-a42b560f39c0 = { name = "Lazy", path = "L/Lazy" }
5100927d-02aa-593a-b4f9-7235df19f0db = { name = "ClusterTrees", path = "C/ClusterTrees" }
510215fc-4207-5dde-b226-833fc4488ee2 = { name = "Observables", path = "O/Observables" }
510c283e-d355-5058-8c7d-fdd18bab9dd3 = { name = "Promisables", path = "P/Promisables" }
511708b7-8d90-5a63-9f8b-8993ab87fa77 = { name = "ActuarialScience", path = "A/ActuarialScience" }
512c2d17-f861-5de4-b642-bc357ef61061 = { name = "ThingSpeak", path = "T/ThingSpeak" }
51556ac3-7006-55f5-8cb3-34580c88182d = { name = "ImageDistances", path = "I/ImageDistances" }
515b7ef8-bac0-55e1-a220-237e90591ccc = { name = "HilbertSpaceFillingCurve", path = "H/HilbertSpaceFillingCurve" }
5160dea5-cc57-53b0-be5f-ac191989508a = { name = "EarCut", path = "E/EarCut" }
5169e8c5-36db-5963-a2c8-6f78e2062fe5 = { name = "FastArrayOps", path = "F/FastArrayOps" }
517a45fd-765d-5fd8-b3d2-92ebc25828d3 = { name = "PrivateModules", path = "P/PrivateModules" }
51861067-9906-5706-8bbd-ed9205bf4d56 = { name = "IProfile", path = "I/IProfile" }
5193907d-d586-5f94-a3e6-8b6fe67f210a = { name = "Catsay", path = "C/Catsay" }
51948d2b-02eb-5b28-9840-c902cc6821c9 = { name = "TimeFrames", path = "T/TimeFrames" }
51974c44-a7ed-5088-b8be-3e78c8ba416c = { name = "ASE", path = "A/ASE" }
51bafb47-8a16-5ded-8b04-24ef4eede0b5 = { name = "MIToS", path = "M/MIToS" }
51c06dcf-91d3-5c9e-a52e-02df4e7cbcf5 = { name = "LispSyntax", path = "L/LispSyntax" }
51c5b0a9-f0d9-5f18-9346-75c2d7aca4db = { name = "LibArchive", path = "L/LibArchive" }
51fcb6bd-ecd8-522c-95bc-4099d1d03463 = { name = "NamedColors", path = "N/NamedColors" }
522f3ed2-3f36-55e3-b6df-e94fee9b0c07 = { name = "LibExpat", path = "L/LibExpat" }
5231157d-7ae6-5dec-b9aa-3f65828037ac = { name = "Wells", path = "W/Wells" }
523d8e89-b243-5607-941c-87d699ea6713 = { name = "Gillespie", path = "G/Gillespie" }