pixi 0.15.2

A package management and workflow tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
version: 4
environments:
  build:
    channels:
    - url: https://conda.anaconda.org/conda-forge/
    packages:
      linux-64:
      - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hbdbef99_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.26.0-hd590300_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.5.2-h0b41bf4_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.11.17-hbcca054_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.26.4-hcfe8598_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.5.2-hf52228f_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-11.4.0-h7baecda_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-11.4.0-h7aa1c59_4.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-11.4.0-hfd045f2_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-11.4.0-h7baecda_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-11.4.0-h7aa1c59_4.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-11.4.0-hfc1ae95_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.69-h0f662aa_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.5.0-hca28451_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_4.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.3-hd590300_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.78.3-h783c2da_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_4.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.47-h71f35ed_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-11.4.0-h4dcbe23_4.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_4.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-255-h3516f8a_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.46.0-hd590300_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.4-h59595ed_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-h59595ed_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.1-h924138e_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.0-hd590300_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.42-hcad00b1_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_5.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.3-hd590300_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.26.5-h949db6a_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.7-h8ee46fc_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_16.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-11.4.0-h922705a_104.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-11.4.0-h922705a_104.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_16.conda
      osx-64:
      - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-14.0.6-hab78ec2_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.26.0-h10d778d_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.5.2-hbf74d83_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.11.17-h8857fd0_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-973.0.1-h76f1dac_13.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-973.0.1-hcc6d90d_13.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-14-14.0.6-default_hdb78580_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-14.0.6-h694c41f_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-14.0.6-h3113cd8_6.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-14.0.6-default_hdb78580_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-14.0.6-h6f97653_6.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.26.4-hf40c264_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-14.0.6-h613da45_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.5.2-hb8565cd_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-609-hc6ad406_13.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-609-hfd63004_13.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp14-14.0.6-default_hdb78580_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.5.0-h726d00d_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm14-14.0.6-hc8e404f_4.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.46.0-h0c2f820_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-17.0.6-hb6ac08f_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-14.0.6-hc8e404f_4.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-h93d8f39_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.11.1-hb8565cd_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.0-hd75f5a5_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.3-h0dc2134_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/sdl2-2.26.5-hf0c8a7f_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda
      osx-arm64:
      - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-14.0.6-h48302dc_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.26.0-h93a5062_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.5.2-h5008568_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.11.17-hf0a4a13_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-973.0.1-hcbb26d4_13.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-973.0.1-hef52d2f_13.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-14-14.0.6-default_h5dc8d65_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-14.0.6-hce30654_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-14.0.6-h15773ab_6.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-14.0.6-default_h610c423_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-14.0.6-he29aa18_6.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.26.4-hc0af03a_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-14.0.6-h30b49de_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.5.2-hffc8910_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h619f069_13.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-609-h7167370_13.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp14-14.0.6-default_h5dc8d65_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.5.0-h2d989ff_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm14-14.0.6-hd1a9a77_4.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.46.0-hb547adb_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-17.0.6-hcd81f8e_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-14.0.6-hd1a9a77_4.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h463b476_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.11.1-hffc8910_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.0-h0d3ecfb_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.3-hb547adb_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2-2.26.5-hb7217d7_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda
      win-64:
      - conda: https://conda.anaconda.org/conda-forge/win-64/cmake-3.26.4-h1537add_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/cxx-compiler-1.5.2-h91493d7_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/ninja-1.11.1-h91493d7_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/sdl2-2.26.5-h63175ca_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hcf57466_18.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33130-h82b7239_18.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33130-hcb4865c_18.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-he1865b1_18.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vswhere-3.1.4-h57928b3_0.conda
  default:
    channels:
    - url: https://conda.anaconda.org/conda-forge/
    packages:
      linux-64:
      - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.69-h0f662aa_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_4.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.3-hd590300_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.78.3-h783c2da_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_4.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.47-h71f35ed_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_4.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-255-h3516f8a_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.4-h59595ed_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.42-hcad00b1_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_5.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.26.5-h949db6a_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.7-h8ee46fc_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda
      osx-64:
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/sdl2-2.26.5-hf0c8a7f_0.conda
      osx-arm64:
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2-2.26.5-hb7217d7_0.conda
      win-64:
      - conda: https://conda.anaconda.org/conda-forge/win-64/sdl2-2.26.5-h63175ca_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hcf57466_18.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33130-h82b7239_18.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33130-hcb4865c_18.conda
packages:
- kind: conda
  name: _libgcc_mutex
  version: '0.1'
  build: conda_forge
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
  sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
  md5: d7c89558ba9fa0495403155b64376d81
  license: None
  size: 2562
  timestamp: 1578324546067
- kind: conda
  name: _openmp_mutex
  version: '4.5'
  build: 2_gnu
  build_number: 16
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
  sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
  md5: 73aaf86a425cc6e73fcf236a5a46396d
  depends:
  - _libgcc_mutex 0.1 conda_forge
  - libgomp >=7.5.0
  constrains:
  - openmp_impl 9999
  license: BSD-3-Clause
  license_family: BSD
  size: 23621
  timestamp: 1650670423406
- kind: conda
  name: attr
  version: 2.5.1
  build: h166bdaf_1
  build_number: 1
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2
  sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324
  md5: d9c69a24ad678ffce24c6543a0176b00
  depends:
  - libgcc-ng >=12
  license: GPL-2.0-or-later
  license_family: GPL
  size: 71042
  timestamp: 1660065501192
- kind: conda
  name: binutils
  version: '2.40'
  build: hdd6e379_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda
  sha256: 35f3b042f295fd7387de11cf426ca8ee5257e5c98b88560c6c5ad4ef3c85d38c
  md5: ccc940fddbc3fcd3d79cd4c654c4b5c4
  depends:
  - binutils_impl_linux-64 >=2.40,<2.41.0a0
  license: GPL-3.0-only
  license_family: GPL
  size: 30469
  timestamp: 1674833987166
- kind: conda
  name: binutils_impl_linux-64
  version: '2.40'
  build: hf600244_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda
  sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d
  md5: 33084421a8c0af6aef1b439707f7662a
  depends:
  - ld_impl_linux-64 2.40 h41732ed_0
  - sysroot_linux-64
  license: GPL-3.0-only
  license_family: GPL
  size: 5414922
  timestamp: 1674833958334
- kind: conda
  name: binutils_linux-64
  version: '2.40'
  build: hbdbef99_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hbdbef99_2.conda
  sha256: 333f3339d94c93bcc02a723e3e460cb6ff6075e05f5247e15bef5dcdcec541a3
  md5: adfebae9fdc63a598495dfe3b006973a
  depends:
  - binutils_impl_linux-64 2.40.*
  - sysroot_linux-64
  license: BSD-3-Clause
  license_family: BSD
  size: 28178
  timestamp: 1694604071236
- kind: conda
  name: bzip2
  version: 1.0.8
  build: h10d778d_5
  build_number: 5
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda
  sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242
  md5: 6097a6ca9ada32699b5fc4312dd6ef18
  license: bzip2-1.0.6
  license_family: BSD
  size: 127885
  timestamp: 1699280178474
- kind: conda
  name: bzip2
  version: 1.0.8
  build: h93a5062_5
  build_number: 5
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda
  sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f
  md5: 1bbc659ca658bfd49a481b5ef7a0f40f
  license: bzip2-1.0.6
  license_family: BSD
  size: 122325
  timestamp: 1699280294368
- kind: conda
  name: bzip2
  version: 1.0.8
  build: hd590300_5
  build_number: 5
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
  sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8
  md5: 69b8b6202a07720f448be700e300ccf4
  depends:
  - libgcc-ng >=12
  license: bzip2-1.0.6
  license_family: BSD
  size: 254228
  timestamp: 1699279927352
- kind: conda
  name: c-ares
  version: 1.26.0
  build: h10d778d_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.26.0-h10d778d_0.conda
  sha256: 4b01708ed02f3e2cf9e8919a6fc1d3116cdf84c1a771294031e880f54235f47c
  md5: 04a8ab3d4f9a9446b286c4a90f665148
  license: MIT
  license_family: MIT
  size: 147816
  timestamp: 1706300301840
- kind: conda
  name: c-ares
  version: 1.26.0
  build: h93a5062_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.26.0-h93a5062_0.conda
  sha256: 1dfdbac985a74a905f2bcf62f13ce758a8356e50d4b28ddbc2027df8580717d8
  md5: 58b9187431de0a2ffebc907f4590e2e5
  license: MIT
  license_family: MIT
  size: 145325
  timestamp: 1706300196534
- kind: conda
  name: c-ares
  version: 1.26.0
  build: hd590300_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.26.0-hd590300_0.conda
  sha256: 3771589a91303710a59d1d40bbcdca43743969fe993ea576538ba375ac8ab0fa
  md5: a86d90025198fd411845fc245ebc06c8
  depends:
  - libgcc-ng >=12
  license: MIT
  license_family: MIT
  size: 162725
  timestamp: 1706299899438
- kind: conda
  name: c-compiler
  version: 1.5.2
  build: h0b41bf4_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.5.2-h0b41bf4_0.conda
  sha256: fe4c0080648c3448939919ddc49339cd8e250124b69a518e66ef6989794fa58a
  md5: 69afb4e35be6366c2c1f9ed7f49bc3e6
  depends:
  - binutils
  - gcc
  - gcc_linux-64 11.*
  license: BSD
  size: 5812
  timestamp: 1670951514202
- kind: conda
  name: c-compiler
  version: 1.5.2
  build: h5008568_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.5.2-h5008568_0.conda
  sha256: 54fabbef178e857a639a9c7a302cdab072ca5c2b94052ac939a7ebcf9dad32e4
  md5: 56a88306583601d05b6eeded173d73d9
  depends:
  - cctools >=949.0.1
  - clang_osx-arm64 14.*
  - ld64 >=530
  - llvm-openmp
  license: BSD
  size: 5667
  timestamp: 1670951842052
- kind: conda
  name: c-compiler
  version: 1.5.2
  build: hbf74d83_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.5.2-hbf74d83_0.conda
  sha256: 0f97b6cc2215f0789ffa2781eb8a6304efaf5c4592c4c619d6e0a63c23f2b877
  md5: c1413ef5a20d658923e12dd3b566d8f3
  depends:
  - cctools >=949.0.1
  - clang_osx-64 14.*
  - ld64 >=530
  - llvm-openmp
  license: BSD
  size: 5660
  timestamp: 1670951603925
- kind: conda
  name: ca-certificates
  version: 2023.11.17
  build: h8857fd0_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.11.17-h8857fd0_0.conda
  sha256: 7e05d80a97beb7cb7492fae38584a68d51f338a5eddf73a14b5bd266597db90e
  md5: c687e9d14c49e3d3946d50a413cdbf16
  license: ISC
  size: 154404
  timestamp: 1700280995538
- kind: conda
  name: ca-certificates
  version: 2023.11.17
  build: hbcca054_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.11.17-hbcca054_0.conda
  sha256: fb4b9f4b7d885002db0b93e22f44b5b03791ef3d4efdc9d0662185a0faafd6b6
  md5: 01ffc8d36f9eba0ce0b3c1955fa780ee
  license: ISC
  size: 154117
  timestamp: 1700280881924
- kind: conda
  name: ca-certificates
  version: 2023.11.17
  build: hf0a4a13_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.11.17-hf0a4a13_0.conda
  sha256: 75f4762a55f7e9453a603c967d549bfa0a7a9669d502d103cb6fbf8c86d993c6
  md5: c01da7c77cfcba2107174e25c1d47384
  license: ISC
  size: 154444
  timestamp: 1700280972188
- kind: conda
  name: cctools
  version: 973.0.1
  build: h76f1dac_13
  build_number: 13
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/cctools-973.0.1-h76f1dac_13.conda
  sha256: f36d2b5eccd494f0ade668bd1a63e09b78427d0abb8066c6041e8776d9582114
  md5: 802cae917abdc5a7cdfa699ff02da42d
  depends:
  - cctools_osx-64 973.0.1 hcc6d90d_13
  - ld64 609 hc6ad406_13
  - libllvm14 >=14.0.6,<14.1.0a0
  license: APSL-2.0
  license_family: Other
  size: 21657
  timestamp: 1679505516215
- kind: conda
  name: cctools
  version: 973.0.1
  build: hcbb26d4_13
  build_number: 13
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-973.0.1-hcbb26d4_13.conda
  sha256: a7c66e9d8a353e5996dc63dc1f179a7dda40a4133d056dcbca90855b9157e199
  md5: 0f89fe3819b672b09d7e6cadc8932cea
  depends:
  - cctools_osx-arm64 973.0.1 hef52d2f_13
  - ld64 609 h619f069_13
  - libllvm14 >=14.0.6,<14.1.0a0
  license: APSL-2.0
  license_family: Other
  size: 21680
  timestamp: 1679508607015
- kind: conda
  name: cctools_osx-64
  version: 973.0.1
  build: hcc6d90d_13
  build_number: 13
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-973.0.1-hcc6d90d_13.conda
  sha256: 468bc6d052fd57928049fa05efc42e2a197026cf817942de833f9f526fdc39c0
  md5: 76e5fa849e2042cd657d9eec96095680
  depends:
  - ld64_osx-64 >=609,<610.0a0
  - libcxx
  - libllvm14 >=14.0.6,<14.1.0a0
  - libzlib >=1.2.13,<1.3.0a0
  - sigtool
  constrains:
  - cctools 973.0.1.*
  - clang 14.0.*
  - ld64 609.*
  license: APSL-2.0
  license_family: Other
  size: 1114891
  timestamp: 1679505481476
- kind: conda
  name: cctools_osx-arm64
  version: 973.0.1
  build: hef52d2f_13
  build_number: 13
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-973.0.1-hef52d2f_13.conda
  sha256: 1fbb33b31de5a1a31f7658cdb540f76aaf43f52c81e53f83761486820f653610
  md5: ec8f13409a2be66371f6d1022ce4fe9a
  depends:
  - ld64_osx-arm64 >=609,<610.0a0
  - libcxx
  - libllvm14 >=14.0.6,<14.1.0a0
  - libzlib >=1.2.13,<1.3.0a0
  - sigtool
  constrains:
  - cctools 973.0.1.*
  - ld64 609.*
  - clang 14.0.*
  license: APSL-2.0
  license_family: Other
  size: 1125905
  timestamp: 1679508483899
- kind: conda
  name: clang
  version: 14.0.6
  build: h694c41f_1
  build_number: 1
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/clang-14.0.6-h694c41f_1.conda
  sha256: f757328f9924d93b09aa16423160b6ebbe28dac7508cce76d50795db4d1d39c9
  md5: 1305da4c85c7eaa2e90fa14efc35f591
  depends:
  - clang-14 14.0.6 default_hdb78580_1
  constrains:
  - clang-tools 14.0.6.*
  - llvm 14.0.6.*
  - llvm-tools 14.0.6.*
  - llvmdev 14.0.6.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 133085
  timestamp: 1684412402322
- kind: conda
  name: clang
  version: 14.0.6
  build: hce30654_1
  build_number: 1
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-14.0.6-hce30654_1.conda
  sha256: da28397f5ab383d9cdcc0d3ed9b3e51a6b2a73edbb1867e13120e2f137eeb69e
  md5: 74394af220230cb88970984c086d2cba
  depends:
  - clang-14 14.0.6 default_h5dc8d65_1
  constrains:
  - clang-tools 14.0.6.*
  - llvm 14.0.6.*
  - llvm-tools 14.0.6.*
  - llvmdev 14.0.6.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 133297
  timestamp: 1684413800824
- kind: conda
  name: clang-14
  version: 14.0.6
  build: default_h5dc8d65_1
  build_number: 1
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-14-14.0.6-default_h5dc8d65_1.conda
  sha256: b674c9ff31b9bbf225b6c62e0b8a2ca45fe70ef78ad5ca22a79f6c8e41f37306
  md5: aafcdf5d9f0b5a00540469242d7ab67b
  depends:
  - libclang-cpp14 14.0.6 default_h5dc8d65_1
  - libcxx >=15.0.7
  - libllvm14 >=14.0.6,<14.1.0a0
  constrains:
  - clangxx 14.0.6
  - llvm-tools 14.0.6
  - clang-tools 14.0.6
  - clangdev 14.0.6
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 1028007
  timestamp: 1684413668339
- kind: conda
  name: clang-14
  version: 14.0.6
  build: default_hdb78580_1
  build_number: 1
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/clang-14-14.0.6-default_hdb78580_1.conda
  sha256: a8ef6982c0da903e31215425219693a45e39b47189018cf479b03290764793cd
  md5: ce19ccaee311132f299ffd0eec9c4581
  depends:
  - libclang-cpp14 14.0.6 default_hdb78580_1
  - libcxx >=15.0.7
  - libllvm14 >=14.0.6,<14.1.0a0
  constrains:
  - clangxx 14.0.6
  - llvm-tools 14.0.6
  - clangdev 14.0.6
  - clang-tools 14.0.6
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 1029529
  timestamp: 1684412293094
- kind: conda
  name: clang_osx-64
  version: 14.0.6
  build: h3113cd8_6
  build_number: 6
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-14.0.6-h3113cd8_6.conda
  sha256: 26092a2c8f9d87c1113e3a20cf0700df4df388c58eba04fabe33fafc0e62190d
  md5: 1b191288877fac1564184b28ce07de84
  depends:
  - cctools_osx-64
  - clang 14.0.6.*
  - compiler-rt 14.0.6.*
  - ld64_osx-64
  - llvm-tools 14.0.6.*
  license: BSD-3-Clause
  license_family: BSD
  size: 20488
  timestamp: 1679865229912
- kind: conda
  name: clang_osx-arm64
  version: 14.0.6
  build: h15773ab_6
  build_number: 6
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-14.0.6-h15773ab_6.conda
  sha256: 4b9c93f2a13c8329db93c6acd3cdb6a4bace7848357943e3f2f8097153e71262
  md5: d8f3900d91a67bc95856b297b1fbd4ae
  depends:
  - cctools_osx-arm64
  - clang 14.0.6.*
  - compiler-rt 14.0.6.*
  - ld64_osx-arm64
  - llvm-tools 14.0.6.*
  license: BSD-3-Clause
  license_family: BSD
  size: 20547
  timestamp: 1679865317135
- kind: conda
  name: clangxx
  version: 14.0.6
  build: default_h610c423_1
  build_number: 1
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-14.0.6-default_h610c423_1.conda
  sha256: abf47478baa7c0d183b43150ca600630dd5ce6762890e0bca925e05bd3247c6b
  md5: a9b37a157fdc4a3584aa7f5fb69d3a1a
  depends:
  - clang 14.0.6 hce30654_1
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 133461
  timestamp: 1684413825082
- kind: conda
  name: clangxx
  version: 14.0.6
  build: default_hdb78580_1
  build_number: 1
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-14.0.6-default_hdb78580_1.conda
  sha256: 6c5ed5942dc9627926741e001a042f2a8dc31e221c0a7e4bcbbe35cd0e6681b8
  md5: cc2ac1c5c838cb0edd65258da7c38294
  depends:
  - clang 14.0.6 h694c41f_1
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 133262
  timestamp: 1684412419561
- kind: conda
  name: clangxx_osx-64
  version: 14.0.6
  build: h6f97653_6
  build_number: 6
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-14.0.6-h6f97653_6.conda
  sha256: 185f9ccec322cfee2303ba0129ad37c0803492e535978f9e5432e23973004d50
  md5: 3989d08f74e7d987e94d9003cea30080
  depends:
  - clang_osx-64 14.0.6 h3113cd8_6
  - clangxx 14.0.6.*
  - libcxx >=14.0.6
  - libllvm14 >=14.0.6,<14.1.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 19289
  timestamp: 1679865245043
- kind: conda
  name: clangxx_osx-arm64
  version: 14.0.6
  build: he29aa18_6
  build_number: 6
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-14.0.6-he29aa18_6.conda
  sha256: 175291d3e349829dc1f03d598815f70b11e978b9e286828c88b9d08a74eb1927
  md5: 7a6be3e4c92a1cedf333f44d77fd732f
  depends:
  - clang_osx-arm64 14.0.6 h15773ab_6
  - clangxx 14.0.6.*
  - libcxx >=14.0.6
  - libllvm14 >=14.0.6,<14.1.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 19398
  timestamp: 1679865337838
- kind: conda
  name: cmake
  version: 3.26.4
  build: h1537add_0
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/cmake-3.26.4-h1537add_0.conda
  sha256: c114c7fb3de04329620b715c0677d6dc943954be3877ee5a232ef0dc09f202d9
  md5: d208c156437ff251e83a1061fa082064
  depends:
  - ucrt >=10.0.20348.0
  - vc14_runtime >=14.29.30139
  - vs2015_runtime
  license: BSD-3-Clause
  license_family: BSD
  size: 15107993
  timestamp: 1684462053404
- kind: conda
  name: cmake
  version: 3.26.4
  build: hc0af03a_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-3.26.4-hc0af03a_0.conda
  sha256: cba596b6bba58e347bd8be51fce82583f16c5707f6c98b22a7e7ba1ecdb09783
  md5: 84c170713e88c74f45fd87ce2a065cd3
  depends:
  - bzip2 >=1.0.8,<2.0a0
  - expat
  - libcurl >=8.1.0,<9.0a0
  - libcxx >=15.0.7
  - libexpat >=2.5.0,<3.0a0
  - libuv
  - libzlib >=1.2.13,<1.3.0a0
  - ncurses >=6.3,<7.0a0
  - rhash <=1.4.3
  - xz >=5.2.6,<6.0a0
  - zlib
  - zstd >=1.5.2,<1.6.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 13748747
  timestamp: 1684461655168
- kind: conda
  name: cmake
  version: 3.26.4
  build: hcfe8598_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.26.4-hcfe8598_0.conda
  sha256: 37533b572a676017704c989c392998c344e889010786d6555dccdfc524a8e238
  md5: 1714cf0f0facaeb609a0846e4270aff2
  depends:
  - bzip2 >=1.0.8,<2.0a0
  - expat
  - libcurl >=8.1.0,<9.0a0
  - libexpat >=2.5.0,<3.0a0
  - libgcc-ng >=12
  - libstdcxx-ng >=12
  - libuv
  - libzlib >=1.2.13,<1.3.0a0
  - ncurses >=6.3,<7.0a0
  - rhash <=1.4.3
  - xz >=5.2.6,<6.0a0
  - zlib
  - zstd >=1.5.2,<1.6.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 16343060
  timestamp: 1684460894541
- kind: conda
  name: cmake
  version: 3.26.4
  build: hf40c264_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/cmake-3.26.4-hf40c264_0.conda
  sha256: a13eb9e0a7f6b46c1035af0830324ba458315ed973022a21e0473f5d5090bfc9
  md5: 24d42ac02d1968f731740c14e30d72b9
  depends:
  - bzip2 >=1.0.8,<2.0a0
  - expat
  - libcurl >=8.1.0,<9.0a0
  - libcxx >=15.0.7
  - libexpat >=2.5.0,<3.0a0
  - libuv
  - libzlib >=1.2.13,<1.3.0a0
  - ncurses >=6.3,<7.0a0
  - rhash <=1.4.3
  - xz >=5.2.6,<6.0a0
  - zlib
  - zstd >=1.5.2,<1.6.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 14420122
  timestamp: 1684462885897
- kind: conda
  name: compiler-rt
  version: 14.0.6
  build: h30b49de_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-14.0.6-h30b49de_0.tar.bz2
  sha256: 266578ae49450e6b4a778b454f8e7fd988676dd9146bb186093066ab1589ba06
  md5: b88a5457fa7def557e5902046ab56b6e
  depends:
  - clang 14.0.6.*
  - clangxx 14.0.6.*
  - compiler-rt_osx-arm64 14.0.6.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 85467
  timestamp: 1667980555472
- kind: conda
  name: compiler-rt
  version: 14.0.6
  build: h613da45_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-14.0.6-h613da45_0.tar.bz2
  sha256: 2dea3b5efea587329320c70a335fa5666c3a814e70e76464734b90a40b70e8a8
  md5: b44e0625319f9933e584dc3b96f5baf7
  depends:
  - clang 14.0.6.*
  - clangxx 14.0.6.*
  - compiler-rt_osx-64 14.0.6.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 85454
  timestamp: 1667980424247
- kind: conda
  name: compiler-rt_osx-64
  version: 14.0.6
  build: hab78ec2_0
  subdir: noarch
  noarch: generic
  url: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-14.0.6-hab78ec2_0.tar.bz2
  sha256: a8351d6a47a8a2cd8267862d36ad5a06f16955c68111140b8b147ee126433712
  md5: 4fdde3f4ed31722a1c811723f5db82f0
  depends:
  - clang 14.0.6.*
  - clangxx 14.0.6.*
  constrains:
  - compiler-rt 14.0.6
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 15896681
  timestamp: 1667980403834
- kind: conda
  name: compiler-rt_osx-arm64
  version: 14.0.6
  build: h48302dc_0
  subdir: noarch
  noarch: generic
  url: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-14.0.6-h48302dc_0.tar.bz2
  sha256: f9f63e8779ff31368cc92ee668308c8e7e974f68457f62148c5663aa0136a42d
  md5: ebcb473032038866101b70f9f270a9a2
  depends:
  - clang 14.0.6.*
  - clangxx 14.0.6.*
  constrains:
  - compiler-rt 14.0.6
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 15828315
  timestamp: 1667980533329
- kind: conda
  name: cxx-compiler
  version: 1.5.2
  build: h91493d7_0
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/cxx-compiler-1.5.2-h91493d7_0.conda
  sha256: 2f8178bc97fff699ae54dd90b96ffa980ec148136e18fe3351a13741a55cc755
  md5: 96a8cc05d246f92e122e0affa390cba6
  depends:
  - vs2019_win-64
  license: BSD
  size: 6078
  timestamp: 1670951778972
- kind: conda
  name: cxx-compiler
  version: 1.5.2
  build: hb8565cd_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.5.2-hb8565cd_0.conda
  sha256: 91193c9029594d102217457ce8b4fe1cfd4a1e13e652451e94f851e91b45a147
  md5: 349ae14723b98f76ea0fcb8e532b2ead
  depends:
  - c-compiler 1.5.2 hbf74d83_0
  - clangxx_osx-64 14.*
  license: BSD
  size: 5674
  timestamp: 1670951614642
- kind: conda
  name: cxx-compiler
  version: 1.5.2
  build: hf52228f_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.5.2-hf52228f_0.conda
  sha256: c6916082ea28b905dd59d4b6b5b07be413a3a5a814193df43c28101e4d29a7fc
  md5: 6b3b19e359824b97df7145c8c878c8be
  depends:
  - c-compiler 1.5.2 h0b41bf4_0
  - gxx
  - gxx_linux-64 11.*
  license: BSD
  size: 5782
  timestamp: 1670951518183
- kind: conda
  name: cxx-compiler
  version: 1.5.2
  build: hffc8910_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.5.2-hffc8910_0.conda
  sha256: 84f23671f8b18aeabcfd4b5315383442c3bdff3c9194b85c30ec5690d14e721a
  md5: 3dd2dd956573a59e32711e2e08bb5d8b
  depends:
  - c-compiler 1.5.2 h5008568_0
  - clangxx_osx-arm64 14.*
  license: BSD
  size: 5689
  timestamp: 1670951872433
- kind: conda
  name: dbus
  version: 1.13.6
  build: h5008d03_3
  build_number: 3
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
  sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5
  md5: ecfff944ba3960ecb334b9a2663d708d
  depends:
  - expat >=2.4.2,<3.0a0
  - libgcc-ng >=9.4.0
  - libglib >=2.70.2,<3.0a0
  license: GPL-2.0-or-later
  license_family: GPL
  size: 618596
  timestamp: 1640112124844
- kind: conda
  name: expat
  version: 2.5.0
  build: hb7217d7_1
  build_number: 1
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda
  sha256: 9f06afbe4604decf6a2e8e7e87f5ca218a3e9049d57d5b3fcd538ca6240d21a0
  md5: 624fa0dd6fdeaa650b71a62296fdfedf
  depends:
  - libexpat 2.5.0 hb7217d7_1
  license: MIT
  license_family: MIT
  size: 117851
  timestamp: 1680190940654
- kind: conda
  name: expat
  version: 2.5.0
  build: hcb278e6_1
  build_number: 1
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda
  sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f
  md5: 8b9b5aca60558d02ddaa09d599e55920
  depends:
  - libexpat 2.5.0 hcb278e6_1
  - libgcc-ng >=12
  license: MIT
  license_family: MIT
  size: 136778
  timestamp: 1680190541750
- kind: conda
  name: expat
  version: 2.5.0
  build: hf0c8a7f_1
  build_number: 1
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_1.conda
  sha256: 15c04a5a690b337b50fb7550cce057d843cf94dd0109d576ec9bc3448a8571d0
  md5: e12630038077877cbb6c7851e139c17c
  depends:
  - libexpat 2.5.0 hf0c8a7f_1
  license: MIT
  license_family: MIT
  size: 120323
  timestamp: 1680191057827
- kind: conda
  name: gcc
  version: 11.4.0
  build: h7baecda_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/gcc-11.4.0-h7baecda_2.conda
  sha256: b515e9222a8af974024b02c7265bed8e4edf912707a5a8fc207cbc8bc2ac0bff
  md5: 0c8d100583c5fd6d20cd5307aaedaf0d
  depends:
  - gcc_impl_linux-64 11.4.0.*
  license: BSD-3-Clause
  license_family: BSD
  size: 27046
  timestamp: 1694604141277
- kind: conda
  name: gcc_impl_linux-64
  version: 11.4.0
  build: h7aa1c59_4
  build_number: 4
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-11.4.0-h7aa1c59_4.conda
  sha256: 44b0d4b59223b5d65397f26923192efc2444ec95f7be95a497336d1201fd46ae
  md5: 7fd1afe9128c73b46698a990a10532b7
  depends:
  - binutils_impl_linux-64 >=2.39
  - libgcc-devel_linux-64 11.4.0 h922705a_104
  - libgcc-ng >=11.4.0
  - libgomp >=11.4.0
  - libsanitizer 11.4.0 h4dcbe23_4
  - libstdcxx-ng >=11.4.0
  - sysroot_linux-64
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 45508644
  timestamp: 1706339011525
- kind: conda
  name: gcc_linux-64
  version: 11.4.0
  build: hfd045f2_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-11.4.0-hfd045f2_2.conda
  sha256: 4b1f65a2e9db4ef03f2a635268578062b6a557d0b5f5a56df08302a310872250
  md5: b9e4d6b905c7cac8b11f9b38634e3e2e
  depends:
  - binutils_linux-64 2.40 hbdbef99_2
  - gcc_impl_linux-64 11.4.0.*
  - sysroot_linux-64
  license: BSD-3-Clause
  license_family: BSD
  size: 30312
  timestamp: 1694604403569
- kind: conda
  name: gettext
  version: 0.21.1
  build: h27087fc_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2
  sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a
  md5: 14947d8770185e5153fdd04d4673ed37
  depends:
  - libgcc-ng >=12
  license: LGPL-2.1-or-later AND GPL-3.0-or-later
  size: 4320628
  timestamp: 1665673494324
- kind: conda
  name: gxx
  version: 11.4.0
  build: h7baecda_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/gxx-11.4.0-h7baecda_2.conda
  sha256: e07c2da262b374fc9aad422a4927660ef96aec6d1445c7673a6ba58a445523a5
  md5: 4821dd86fa505a0d5b6aacd28ed8291f
  depends:
  - gcc 11.4.0.*
  - gxx_impl_linux-64 11.4.0.*
  license: BSD-3-Clause
  license_family: BSD
  size: 26514
  timestamp: 1694604427173
- kind: conda
  name: gxx_impl_linux-64
  version: 11.4.0
  build: h7aa1c59_4
  build_number: 4
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-11.4.0-h7aa1c59_4.conda
  sha256: 0e7d7fde21834ee1684cda597b7fd2d630f04552b31c2d2488e72fa0aa9567b6
  md5: 7816a3d6019d1b8f402b095d7dab8596
  depends:
  - gcc_impl_linux-64 11.4.0 h7aa1c59_4
  - libstdcxx-devel_linux-64 11.4.0 h922705a_104
  - sysroot_linux-64
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 11250570
  timestamp: 1706339239543
- kind: conda
  name: gxx_linux-64
  version: 11.4.0
  build: hfc1ae95_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-11.4.0-hfc1ae95_2.conda
  sha256: 5a2dcc435a521f6189daeb68ac28a891ec6b9ff1294c0136002c0685702c68e5
  md5: c94d7401aeb94089d220bb4ef7024478
  depends:
  - binutils_linux-64 2.40 hbdbef99_2
  - gcc_linux-64 11.4.0 hfd045f2_2
  - gxx_impl_linux-64 11.4.0.*
  - sysroot_linux-64
  license: BSD-3-Clause
  license_family: BSD
  size: 28603
  timestamp: 1694604450609
- kind: conda
  name: kernel-headers_linux-64
  version: 2.6.32
  build: he073ed8_16
  build_number: 16
  subdir: noarch
  noarch: generic
  url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_16.conda
  sha256: aaa8aa6dc776d734a6702032588ff3c496721da905366d91162e3654c082aef0
  md5: 7ca122655873935e02c91279c5b03c8c
  constrains:
  - sysroot_linux-64 ==2.12
  license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
  license_family: GPL
  size: 709007
  timestamp: 1689214970644
- kind: conda
  name: keyutils
  version: 1.6.1
  build: h166bdaf_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
  sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb
  md5: 30186d27e2c9fa62b45fb1476b7200e3
  depends:
  - libgcc-ng >=10.3.0
  license: LGPL-2.1-or-later
  size: 117831
  timestamp: 1646151697040
- kind: conda
  name: krb5
  version: 1.21.2
  build: h659d440_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda
  sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4
  md5: cd95826dbd331ed1be26bdf401432844
  depends:
  - keyutils >=1.6.1,<2.0a0
  - libedit >=3.1.20191231,<3.2.0a0
  - libedit >=3.1.20191231,<4.0a0
  - libgcc-ng >=12
  - libstdcxx-ng >=12
  - openssl >=3.1.2,<4.0a0
  license: MIT
  license_family: MIT
  size: 1371181
  timestamp: 1692097755782
- kind: conda
  name: krb5
  version: 1.21.2
  build: h92f50d5_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda
  sha256: 70bdb9b4589ec7c7d440e485ae22b5a352335ffeb91a771d4c162996c3070875
  md5: 92f1cff174a538e0722bf2efb16fc0b2
  depends:
  - libcxx >=15.0.7
  - libedit >=3.1.20191231,<3.2.0a0
  - libedit >=3.1.20191231,<4.0a0
  - openssl >=3.1.2,<4.0a0
  license: MIT
  license_family: MIT
  size: 1195575
  timestamp: 1692098070699
- kind: conda
  name: krb5
  version: 1.21.2
  build: hb884880_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda
  sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6
  md5: 80505a68783f01dc8d7308c075261b2f
  depends:
  - libcxx >=15.0.7
  - libedit >=3.1.20191231,<3.2.0a0
  - libedit >=3.1.20191231,<4.0a0
  - openssl >=3.1.2,<4.0a0
  license: MIT
  license_family: MIT
  size: 1183568
  timestamp: 1692098004387
- kind: conda
  name: lame
  version: '3.100'
  build: h166bdaf_1003
  build_number: 1003
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
  sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab
  md5: a8832b479f93521a9e7b5b743803be51
  depends:
  - libgcc-ng >=12
  license: LGPL-2.0-only
  license_family: LGPL
  size: 508258
  timestamp: 1664996250081
- kind: conda
  name: ld64
  version: '609'
  build: h619f069_13
  build_number: 13
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h619f069_13.conda
  sha256: f39fdd5b8bfacc811d812370c26b5bd7a95551c130775664ed7eb259c509c9da
  md5: c771ebc91a8088d5078332c83758e774
  depends:
  - ld64_osx-arm64 609 h7167370_13
  - libllvm14 >=14.0.6,<14.1.0a0
  constrains:
  - cctools 973.0.1.*
  - cctools_osx-arm64 973.0.1.*
  license: APSL-2.0
  license_family: Other
  size: 18839
  timestamp: 1679508545094
- kind: conda
  name: ld64
  version: '609'
  build: hc6ad406_13
  build_number: 13
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/ld64-609-hc6ad406_13.conda
  sha256: cc7d0de073179de57763c5cf9ee7c2bc9855d362c13245427cccbd517fe794fe
  md5: 5d7676eee44dfa3e48bf21700e044aa9
  depends:
  - ld64_osx-64 609 hfd63004_13
  - libllvm14 >=14.0.6,<14.1.0a0
  constrains:
  - cctools_osx-64 973.0.1.*
  - cctools 973.0.1.*
  license: APSL-2.0
  license_family: Other
  size: 18850
  timestamp: 1679505500085
- kind: conda
  name: ld64_osx-64
  version: '609'
  build: hfd63004_13
  build_number: 13
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-609-hfd63004_13.conda
  sha256: 97c752c2b4518c394adf6db1538d8dff233a4a3072964fb4d834f3993f988e43
  md5: 58fcda6a84fb42f51c6c2d6d175b435d
  depends:
  - libcxx
  - libllvm14 >=14.0.6,<14.1.0a0
  - sigtool
  - tapi >=1100.0.11,<1101.0a0
  constrains:
  - cctools_osx-64 973.0.1.*
  - cctools 973.0.1.*
  - ld 609.*
  - clang >=14.0.6,<15.0a0
  license: APSL-2.0
  license_family: Other
  size: 1061393
  timestamp: 1679505296948
- kind: conda
  name: ld64_osx-arm64
  version: '609'
  build: h7167370_13
  build_number: 13
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-609-h7167370_13.conda
  sha256: baed60a74f3fa1e3158240ca0562fecb9398e7568d4b6126e494771323995b5c
  md5: 95b0f14e103c5a2c27f5d53609e60643
  depends:
  - libcxx
  - libllvm14 >=14.0.6,<14.1.0a0
  - sigtool
  - tapi >=1100.0.11,<1101.0a0
  constrains:
  - cctools 973.0.1.*
  - clang >=14.0.6,<15.0a0
  - ld 609.*
  - cctools_osx-arm64 973.0.1.*
  license: APSL-2.0
  license_family: Other
  size: 1041975
  timestamp: 1679507658652
- kind: conda
  name: ld_impl_linux-64
  version: '2.40'
  build: h41732ed_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
  sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd
  md5: 7aca3059a1729aa76c597603f10b0dd3
  constrains:
  - binutils_impl_linux-64 2.40
  license: GPL-3.0-only
  license_family: GPL
  size: 704696
  timestamp: 1674833944779
- kind: conda
  name: libcap
  version: '2.69'
  build: h0f662aa_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.69-h0f662aa_0.conda
  sha256: 942f9564b4228609f017b6617425d29a74c43b8a030e12239fa4458e5cb6323c
  md5: 25cb5999faa414e5ccb2c1388f62d3d5
  depends:
  - attr >=2.5.1,<2.6.0a0
  - libgcc-ng >=12
  license: BSD-3-Clause
  license_family: BSD
  size: 100582
  timestamp: 1684162447012
- kind: conda
  name: libclang-cpp14
  version: 14.0.6
  build: default_h5dc8d65_1
  build_number: 1
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp14-14.0.6-default_h5dc8d65_1.conda
  sha256: 9cb083dae695cda715e280c2cadd08b625ecc5842f99fb575901990b0e60bf7c
  md5: 7caa562f3551c16cd82d0147640091f8
  depends:
  - libcxx >=15.0.7
  - libllvm14 >=14.0.6,<14.1.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 10930694
  timestamp: 1684413524265
- kind: conda
  name: libclang-cpp14
  version: 14.0.6
  build: default_hdb78580_1
  build_number: 1
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp14-14.0.6-default_hdb78580_1.conda
  sha256: 5720d4662bd032a1dc07d0ae1368fa5e454c938545bdd93f78dacd25b9f597d3
  md5: 9a235664bf087994aa3acc1a60614964
  depends:
  - libcxx >=15.0.7
  - libllvm14 >=14.0.6,<14.1.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 11897758
  timestamp: 1684412176370
- kind: conda
  name: libcurl
  version: 8.5.0
  build: h2d989ff_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.5.0-h2d989ff_0.conda
  sha256: f1c04be217aaf161ce3c99a8d618871295b5dc1eae2f7ff7b32078af50303f5b
  md5: f1211ed00947a84e15a964a8f459f620
  depends:
  - krb5 >=1.21.2,<1.22.0a0
  - libnghttp2 >=1.58.0,<2.0a0
  - libssh2 >=1.11.0,<2.0a0
  - libzlib >=1.2.13,<1.3.0a0
  - openssl >=3.2.0,<4.0a0
  - zstd >=1.5.5,<1.6.0a0
  license: curl
  license_family: MIT
  size: 350298
  timestamp: 1701860532373
- kind: conda
  name: libcurl
  version: 8.5.0
  build: h726d00d_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.5.0-h726d00d_0.conda
  sha256: 7ec7e026be90da0965dfa6b92bbc905c852c13b27f3f83c47156db66ed0668f0
  md5: 86d749e27fe00fa6b7d790a6feaa22a2
  depends:
  - krb5 >=1.21.2,<1.22.0a0
  - libnghttp2 >=1.58.0,<2.0a0
  - libssh2 >=1.11.0,<2.0a0
  - libzlib >=1.2.13,<1.3.0a0
  - openssl >=3.2.0,<4.0a0
  - zstd >=1.5.5,<1.6.0a0
  license: curl
  license_family: MIT
  size: 367821
  timestamp: 1701860630644
- kind: conda
  name: libcurl
  version: 8.5.0
  build: hca28451_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.5.0-hca28451_0.conda
  sha256: 00a6bea5ff90ca58eeb15ebc98e08ffb88bddaff27396bb62640064f59d29cf0
  md5: 7144d5a828e2cae218e0e3c98d8a0aeb
  depends:
  - krb5 >=1.21.2,<1.22.0a0
  - libgcc-ng >=12
  - libnghttp2 >=1.58.0,<2.0a0
  - libssh2 >=1.11.0,<2.0a0
  - libzlib >=1.2.13,<1.3.0a0
  - openssl >=3.2.0,<4.0a0
  - zstd >=1.5.5,<1.6.0a0
  license: curl
  license_family: MIT
  size: 389164
  timestamp: 1701860147844
- kind: conda
  name: libcxx
  version: 16.0.6
  build: h4653b0c_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda
  sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355
  md5: 9d7d724faf0413bf1dbc5a85935700c8
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 1160232
  timestamp: 1686896993785
- kind: conda
  name: libcxx
  version: 16.0.6
  build: hd57cbcb_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda
  sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549
  md5: 7d6972792161077908b62971802f289a
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 1142172
  timestamp: 1686896907750
- kind: conda
  name: libedit
  version: 3.1.20191231
  build: h0678c8f_2
  build_number: 2
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2
  sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095
  md5: 6016a8a1d0e63cac3de2c352cd40208b
  depends:
  - ncurses >=6.2,<7.0.0a0
  license: BSD-2-Clause
  license_family: BSD
  size: 105382
  timestamp: 1597616576726
- kind: conda
  name: libedit
  version: 3.1.20191231
  build: hc8eb9b7_2
  build_number: 2
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
  sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca
  md5: 30e4362988a2623e9eb34337b83e01f9
  depends:
  - ncurses >=6.2,<7.0.0a0
  license: BSD-2-Clause
  license_family: BSD
  size: 96607
  timestamp: 1597616630749
- kind: conda
  name: libedit
  version: 3.1.20191231
  build: he28a2e2_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
  sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
  md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
  depends:
  - libgcc-ng >=7.5.0
  - ncurses >=6.2,<7.0.0a0
  license: BSD-2-Clause
  license_family: BSD
  size: 123878
  timestamp: 1597616541093
- kind: conda
  name: libev
  version: '4.33'
  build: h10d778d_2
  build_number: 2
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda
  sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43
  md5: 899db79329439820b7e8f8de41bca902
  license: BSD-2-Clause
  license_family: BSD
  size: 106663
  timestamp: 1702146352558
- kind: conda
  name: libev
  version: '4.33'
  build: h93a5062_2
  build_number: 2
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
  sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f
  md5: 36d33e440c31857372a72137f78bacf5
  license: BSD-2-Clause
  license_family: BSD
  size: 107458
  timestamp: 1702146414478
- kind: conda
  name: libev
  version: '4.33'
  build: hd590300_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
  sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
  md5: 172bf1cd1ff8629f2b1179945ed45055
  depends:
  - libgcc-ng >=12
  license: BSD-2-Clause
  license_family: BSD
  size: 112766
  timestamp: 1702146165126
- kind: conda
  name: libexpat
  version: 2.5.0
  build: hb7217d7_1
  build_number: 1
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda
  sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381
  md5: 5a097ad3d17e42c148c9566280481317
  constrains:
  - expat 2.5.0.*
  license: MIT
  license_family: MIT
  size: 63442
  timestamp: 1680190916539
- kind: conda
  name: libexpat
  version: 2.5.0
  build: hcb278e6_1
  build_number: 1
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
  sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3
  md5: 6305a3dd2752c76335295da4e581f2fd
  depends:
  - libgcc-ng >=12
  constrains:
  - expat 2.5.0.*
  license: MIT
  license_family: MIT
  size: 77980
  timestamp: 1680190528313
- kind: conda
  name: libexpat
  version: 2.5.0
  build: hf0c8a7f_1
  build_number: 1
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda
  sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96
  md5: 6c81cb022780ee33435cca0127dd43c9
  constrains:
  - expat 2.5.0.*
  license: MIT
  license_family: MIT
  size: 69602
  timestamp: 1680191040160
- kind: conda
  name: libffi
  version: 3.4.2
  build: h7f98852_5
  build_number: 5
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
  sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
  md5: d645c6d2ac96843a2bfaccd2d62b3ac3
  depends:
  - libgcc-ng >=9.4.0
  license: MIT
  license_family: MIT
  size: 58292
  timestamp: 1636488182923
- kind: conda
  name: libflac
  version: 1.4.3
  build: h59595ed_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda
  sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d
  md5: ee48bf17cc83a00f59ca1494d5646869
  depends:
  - gettext >=0.21.1,<1.0a0
  - libgcc-ng >=12
  - libogg 1.3.*
  - libogg >=1.3.4,<1.4.0a0
  - libstdcxx-ng >=12
  license: BSD-3-Clause
  license_family: BSD
  size: 394383
  timestamp: 1687765514062
- kind: conda
  name: libgcc-devel_linux-64
  version: 11.4.0
  build: h922705a_104
  build_number: 104
  subdir: noarch
  noarch: generic
  url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-11.4.0-h922705a_104.conda
  sha256: 34c0e2a15db6dc7805f8a8e538d705a3078579571525cbfce96ecbd5681571a0
  md5: 4a0cb337850f8cdaef48170cf5b89155
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 2428482
  timestamp: 1706338791051
- kind: conda
  name: libgcc-ng
  version: 13.2.0
  build: h807b86a_4
  build_number: 4
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_4.conda
  sha256: 827c0326a88a042a4b50399c60971a882663c769afcbdfcf64850a9d3f48aaff
  md5: e0dee4121cc9d961b3740e3759b02d13
  depends:
  - _libgcc_mutex 0.1 conda_forge
  - _openmp_mutex >=4.5
  constrains:
  - libgomp 13.2.0 h807b86a_4
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 773838
  timestamp: 1706339399229
- kind: conda
  name: libgcrypt
  version: 1.10.3
  build: hd590300_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.3-hd590300_0.conda
  sha256: d1bd47faa29fec7288c7b212198432b07f890d3d6f646078da93b059c2e9daff
  md5: 32d16ad533c59bb0a3c5ffaf16110829
  depends:
  - libgcc-ng >=12
  - libgpg-error >=1.47,<2.0a0
  license: LGPL-2.1-or-later AND GPL-2.0-or-later
  license_family: GPL
  size: 634887
  timestamp: 1701383493365
- kind: conda
  name: libglib
  version: 2.78.3
  build: h783c2da_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.78.3-h783c2da_0.conda
  sha256: b1b594294a0fe4c9a51596ef027efed9268d60827e8ae61fb7545c521a631e33
  md5: 9bd06b12bbfa6fd1740fd23af4b0f0c7
  depends:
  - gettext >=0.21.1,<1.0a0
  - libffi >=3.4,<4.0a0
  - libgcc-ng >=12
  - libiconv >=1.17,<2.0a0
  - libstdcxx-ng >=12
  - libzlib >=1.2.13,<1.3.0a0
  - pcre2 >=10.42,<10.43.0a0
  constrains:
  - glib 2.78.3 *_0
  license: LGPL-2.1-or-later
  size: 2696351
  timestamp: 1702003069863
- kind: conda
  name: libgomp
  version: 13.2.0
  build: h807b86a_4
  build_number: 4
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_4.conda
  sha256: f0c29623b471dfe97f7d77addad6bcbfcd6407e2e0041a5f474c5b3891ef04d5
  md5: cd6ae9659d3cd53207efa8e0ed3ab15d
  depends:
  - _libgcc_mutex 0.1 conda_forge
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 422115
  timestamp: 1706339311614
- kind: conda
  name: libgpg-error
  version: '1.47'
  build: h71f35ed_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.47-h71f35ed_0.conda
  sha256: 0306b3c2d65863048983a50bd8b86f6f26e457ef55d1da745a5796af25093f5a
  md5: c2097d0b46367996f09b4e8e4920384a
  depends:
  - gettext >=0.21.1,<1.0a0
  - libgcc-ng >=12
  - libstdcxx-ng >=12
  license: GPL-2.0-only
  license_family: GPL
  size: 260794
  timestamp: 1686979818648
- kind: conda
  name: libiconv
  version: '1.17'
  build: hd590300_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
  sha256: 8ac2f6a9f186e76539439e50505d98581472fedb347a20e7d1f36429849f05c9
  md5: d66573916ffcf376178462f1b61c941e
  depends:
  - libgcc-ng >=12
  license: LGPL-2.1-only
  size: 705775
  timestamp: 1702682170569
- kind: conda
  name: libllvm14
  version: 14.0.6
  build: hc8e404f_4
  build_number: 4
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libllvm14-14.0.6-hc8e404f_4.conda
  sha256: 0df3902a300cfe092425f86144d5e00ef67be3cd1cc89fd63084d45262a772ad
  md5: ed06753e2ba7c66ed0ca7f19578fcb68
  depends:
  - libcxx >=15
  - libzlib >=1.2.13,<1.3.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 22467131
  timestamp: 1690563140552
- kind: conda
  name: libllvm14
  version: 14.0.6
  build: hd1a9a77_4
  build_number: 4
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm14-14.0.6-hd1a9a77_4.conda
  sha256: 6f603914fe8633a615f0d2f1383978eb279eeb552079a78449c9fbb43f22a349
  md5: 9f3dce5d26ea56a9000cd74c034582bd
  depends:
  - libcxx >=15
  - libzlib >=1.2.13,<1.3.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 20571387
  timestamp: 1690559110016
- kind: conda
  name: libnghttp2
  version: 1.58.0
  build: h47da74e_1
  build_number: 1
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda
  sha256: 1910c5306c6aa5bcbd623c3c930c440e9c77a5a019008e1487810e3c1d3716cb
  md5: 700ac6ea6d53d5510591c4344d5c989a
  depends:
  - c-ares >=1.23.0,<2.0a0
  - libev >=4.33,<4.34.0a0
  - libev >=4.33,<5.0a0
  - libgcc-ng >=12
  - libstdcxx-ng >=12
  - libzlib >=1.2.13,<1.3.0a0
  - openssl >=3.2.0,<4.0a0
  license: MIT
  license_family: MIT
  size: 631936
  timestamp: 1702130036271
- kind: conda
  name: libnghttp2
  version: 1.58.0
  build: h64cf6d3_1
  build_number: 1
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda
  sha256: 412fd768e787e586602f8e9ea52bf089f3460fc630f6987f0cbd89b70e9a4380
  md5: faecc55c2a8155d9ff1c0ff9a0fef64f
  depends:
  - __osx >=10.9
  - c-ares >=1.23.0,<2.0a0
  - libcxx >=16.0.6
  - libev >=4.33,<4.34.0a0
  - libev >=4.33,<5.0a0
  - libzlib >=1.2.13,<1.3.0a0
  - openssl >=3.2.0,<4.0a0
  license: MIT
  license_family: MIT
  size: 599736
  timestamp: 1702130398536
- kind: conda
  name: libnghttp2
  version: 1.58.0
  build: ha4dd798_1
  build_number: 1
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda
  sha256: fc97aaaf0c6d0f508be313d86c2705b490998d382560df24be918b8e977802cd
  md5: 1813e066bfcef82de579a0be8a766df4
  depends:
  - __osx >=10.9
  - c-ares >=1.23.0,<2.0a0
  - libcxx >=16.0.6
  - libev >=4.33,<4.34.0a0
  - libev >=4.33,<5.0a0
  - libzlib >=1.2.13,<1.3.0a0
  - openssl >=3.2.0,<4.0a0
  license: MIT
  license_family: MIT
  size: 565451
  timestamp: 1702130473930
- kind: conda
  name: libogg
  version: 1.3.4
  build: h7f98852_1
  build_number: 1
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2
  sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25
  md5: 6e8cc2173440d77708196c5b93771680
  depends:
  - libgcc-ng >=9.3.0
  license: BSD-3-Clause
  license_family: BSD
  size: 210550
  timestamp: 1610382007814
- kind: conda
  name: libopus
  version: 1.3.1
  build: h7f98852_1
  build_number: 1
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2
  sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f
  md5: 15345e56d527b330e1cacbdf58676e8f
  depends:
  - libgcc-ng >=9.3.0
  license: BSD-3-Clause
  license_family: BSD
  size: 260658
  timestamp: 1606823578035
- kind: conda
  name: libsanitizer
  version: 11.4.0
  build: h4dcbe23_4
  build_number: 4
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-11.4.0-h4dcbe23_4.conda
  sha256: 4f81810cc42238129d4b37051766cf2691a38eb661520befda58be6874947a28
  md5: 5979cf18a146c48b778c066c2cf2fc0a
  depends:
  - libgcc-ng >=11.4.0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 3745554
  timestamp: 1706338925842
- kind: conda
  name: libsndfile
  version: 1.2.2
  build: hc60ed4a_1
  build_number: 1
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda
  sha256: f709cbede3d4f3aee4e2f8d60bd9e256057f410bd60b8964cb8cf82ec1457573
  md5: ef1910918dd895516a769ed36b5b3a4e
  depends:
  - lame >=3.100,<3.101.0a0
  - libflac >=1.4.3,<1.5.0a0
  - libgcc-ng >=12
  - libogg >=1.3.4,<1.4.0a0
  - libopus >=1.3.1,<2.0a0
  - libstdcxx-ng >=12
  - libvorbis >=1.3.7,<1.4.0a0
  - mpg123 >=1.32.1,<1.33.0a0
  license: LGPL-2.1-or-later
  license_family: LGPL
  size: 354372
  timestamp: 1695747735668
- kind: conda
  name: libssh2
  version: 1.11.0
  build: h0841786_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda
  sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d
  md5: 1f5a58e686b13bcfde88b93f547d23fe
  depends:
  - libgcc-ng >=12
  - libzlib >=1.2.13,<1.3.0a0
  - openssl >=3.1.1,<4.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 271133
  timestamp: 1685837707056
- kind: conda
  name: libssh2
  version: 1.11.0
  build: h7a5bd25_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda
  sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015
  md5: 029f7dc931a3b626b94823bc77830b01
  depends:
  - libzlib >=1.2.13,<1.3.0a0
  - openssl >=3.1.1,<4.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 255610
  timestamp: 1685837894256
- kind: conda
  name: libssh2
  version: 1.11.0
  build: hd019ec5_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda
  sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515
  md5: ca3a72efba692c59a90d4b9fc0dfe774
  depends:
  - libzlib >=1.2.13,<1.3.0a0
  - openssl >=3.1.1,<4.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 259556
  timestamp: 1685837820566
- kind: conda
  name: libstdcxx-devel_linux-64
  version: 11.4.0
  build: h922705a_104
  build_number: 104
  subdir: noarch
  noarch: generic
  url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-11.4.0-h922705a_104.conda
  sha256: a55fbbc8950a4edcef6ab0216e441859791c18d3f1665bbbdd8e671ca96eeacd
  md5: db7fd09d7f852d8df33eaeaf775f9b5b
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 11704204
  timestamp: 1706338832424
- kind: conda
  name: libstdcxx-ng
  version: 13.2.0
  build: h7e041cc_4
  build_number: 4
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_4.conda
  sha256: a93f6e0ccffadea286ba8fd0cac04708b9389425ae39c760dd5e501ac8bf8f76
  md5: f6a3a9c67eb8030555d04066bcd65320
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 3838135
  timestamp: 1706339462090
- kind: conda
  name: libsystemd0
  version: '255'
  build: h3516f8a_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-255-h3516f8a_0.conda
  sha256: 9306eafe761a758e0c2efa92025bfc0684c66ef500efdea4fbe4687b59e8099e
  md5: 24e2649ebd432e652aa72cfd05f23a8e
  depends:
  - __glibc >=2.17,<3.0.a0
  - libcap >=2.69,<2.70.0a0
  - libgcc-ng >=12
  - libgcrypt >=1.10.3,<2.0a0
  - lz4-c >=1.9.3,<1.10.0a0
  - xz >=5.2.6,<6.0a0
  - zstd >=1.5.5,<1.6.0a0
  license: LGPL-2.1-or-later
  size: 404326
  timestamp: 1701982703751
- kind: conda
  name: libuv
  version: 1.46.0
  build: h0c2f820_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.46.0-h0c2f820_0.conda
  sha256: e51667c756f15580d3ce131d6157f0238d931c05af118c89f019854f2a7c125e
  md5: 27664a5d39d9c32ae38880fec2b33b36
  license: MIT
  license_family: MIT
  size: 396101
  timestamp: 1693539567563
- kind: conda
  name: libuv
  version: 1.46.0
  build: hb547adb_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.46.0-hb547adb_0.conda
  sha256: f2fe8e22a99f91761c16dc7b00408bff0f5c30d4cccc6ea562db00a4041c5579
  md5: 5f1d535f82e8210ac80d191610b92325
  license: MIT
  license_family: MIT
  size: 402723
  timestamp: 1693539587068
- kind: conda
  name: libuv
  version: 1.46.0
  build: hd590300_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.46.0-hd590300_0.conda
  sha256: 4bc4c946e9a532c066442714eeeeb1ffbd03cd89789c4047293f5e782b5fedd7
  md5: d23c76f7e6dcd6243d1b6ef5e62d17d2
  depends:
  - libgcc-ng >=12
  license: MIT
  license_family: MIT
  size: 893348
  timestamp: 1693539405436
- kind: conda
  name: libvorbis
  version: 1.3.7
  build: h9c3ff4c_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
  sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33
  md5: 309dec04b70a3cc0f1e84a4013683bc0
  depends:
  - libgcc-ng >=9.3.0
  - libogg >=1.3.4,<1.4.0a0
  - libstdcxx-ng >=9.3.0
  license: BSD-3-Clause
  license_family: BSD
  size: 286280
  timestamp: 1610609811627
- kind: conda
  name: libxcb
  version: '1.15'
  build: h0b41bf4_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda
  sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485
  md5: 33277193f5b92bad9fdd230eb700929c
  depends:
  - libgcc-ng >=12
  - pthread-stubs
  - xorg-libxau
  - xorg-libxdmcp
  license: MIT
  license_family: MIT
  size: 384238
  timestamp: 1682082368177
- kind: conda
  name: libzlib
  version: 1.2.13
  build: h53f4e23_5
  build_number: 5
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda
  sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a
  md5: 1a47f5236db2e06a320ffa0392f81bd8
  constrains:
  - zlib 1.2.13 *_5
  license: Zlib
  license_family: Other
  size: 48102
  timestamp: 1686575426584
- kind: conda
  name: libzlib
  version: 1.2.13
  build: h8a1eda9_5
  build_number: 5
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda
  sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867
  md5: 4a3ad23f6e16f99c04e166767193d700
  constrains:
  - zlib 1.2.13 *_5
  license: Zlib
  license_family: Other
  size: 59404
  timestamp: 1686575566695
- kind: conda
  name: libzlib
  version: 1.2.13
  build: hd590300_5
  build_number: 5
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda
  sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4
  md5: f36c115f1ee199da648e0597ec2047ad
  depends:
  - libgcc-ng >=12
  constrains:
  - zlib 1.2.13 *_5
  license: Zlib
  license_family: Other
  size: 61588
  timestamp: 1686575217516
- kind: conda
  name: llvm-openmp
  version: 17.0.6
  build: hb6ac08f_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-17.0.6-hb6ac08f_0.conda
  sha256: 9ea2f7018f335fdc55bc9b21a388eb94ea47a243d9cbf6ec3d8862d4df9fb49b
  md5: f260ab897df05f729fc3e65dbb0850ef
  constrains:
  - openmp 17.0.6|17.0.6.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 299706
  timestamp: 1701222810938
- kind: conda
  name: llvm-openmp
  version: 17.0.6
  build: hcd81f8e_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-17.0.6-hcd81f8e_0.conda
  sha256: 0c217326c5931c1416b82f98169b8a8a52139f6f5f299dbb2efa7b21f65f225a
  md5: 52019d2fa0eddbbc4e6dcd30fae0c0a4
  constrains:
  - openmp 17.0.6|17.0.6.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 274631
  timestamp: 1701222947083
- kind: conda
  name: llvm-tools
  version: 14.0.6
  build: hc8e404f_4
  build_number: 4
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-14.0.6-hc8e404f_4.conda
  sha256: bbd455bb43d23a2daaa20d6805b4764b97c7a79ca8dfa80dc95c3a0b2155cbbc
  md5: a55c7b960756f104bcbf5bfcd5c8890a
  depends:
  - libllvm14 14.0.6 hc8e404f_4
  - libzlib >=1.2.13,<1.3.0a0
  constrains:
  - llvmdev   14.0.6
  - clang 14.0.6.*
  - clang-tools 14.0.6.*
  - llvm 14.0.6.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 11207189
  timestamp: 1690563328190
- kind: conda
  name: llvm-tools
  version: 14.0.6
  build: hd1a9a77_4
  build_number: 4
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-14.0.6-hd1a9a77_4.conda
  sha256: a15fd9113f3ef412c4eb99363b517d1347ae771271571565ac573e3959151749
  md5: fd0a3b0a22ba6f5ace86ce5b5e26c4c5
  depends:
  - libllvm14 14.0.6 hd1a9a77_4
  - libzlib >=1.2.13,<1.3.0a0
  constrains:
  - llvmdev   14.0.6
  - clang 14.0.6.*
  - clang-tools 14.0.6.*
  - llvm 14.0.6.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 9776772
  timestamp: 1690559269462
- kind: conda
  name: lz4-c
  version: 1.9.4
  build: hcb278e6_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda
  sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f
  md5: 318b08df404f9c9be5712aaa5a6f0bb0
  depends:
  - libgcc-ng >=12
  - libstdcxx-ng >=12
  license: BSD-2-Clause
  license_family: BSD
  size: 143402
  timestamp: 1674727076728
- kind: conda
  name: mpg123
  version: 1.32.4
  build: h59595ed_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.4-h59595ed_0.conda
  sha256: 512f4ad7eda3b2c9a1cc9f7931932aefa6e79567e35b76de03895e769cb3b43c
  md5: 3f1017b4141e943d9bc8739237f749e8
  depends:
  - libgcc-ng >=12
  - libstdcxx-ng >=12
  license: LGPL-2.1-only
  license_family: LGPL
  size: 491061
  timestamp: 1704980200966
- kind: conda
  name: ncurses
  version: '6.4'
  build: h463b476_2
  build_number: 2
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h463b476_2.conda
  sha256: f6890634f815e8408d08f36503353f8dfd7b055e4c3b9ea2ee52180255cf4b0a
  md5: 52b6f254a7b9663e854f44b6570ed982
  depends:
  - __osx >=10.9
  license: X11 AND BSD-3-Clause
  size: 794741
  timestamp: 1698751574074
- kind: conda
  name: ncurses
  version: '6.4'
  build: h59595ed_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-h59595ed_2.conda
  sha256: 91cc03f14caf96243cead96c76fe91ab5925a695d892e83285461fb927dece5e
  md5: 7dbaa197d7ba6032caf7ae7f32c1efa0
  depends:
  - libgcc-ng >=12
  license: X11 AND BSD-3-Clause
  size: 884434
  timestamp: 1698751260967
- kind: conda
  name: ncurses
  version: '6.4'
  build: h93d8f39_2
  build_number: 2
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-h93d8f39_2.conda
  sha256: ea0fca66bbb52a1ef0687d466518fe120b5f279684effd6fd336a7b0dddc423a
  md5: e58f366bd4d767e9ab97ab8b272e7670
  depends:
  - __osx >=10.9
  license: X11 AND BSD-3-Clause
  size: 822031
  timestamp: 1698751567986
- kind: conda
  name: ninja
  version: 1.11.1
  build: h91493d7_0
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/ninja-1.11.1-h91493d7_0.conda
  sha256: 0ffb1912768af8354a930f482368ef170bf3d8217db328dfea1c8b09772c8c71
  md5: 44a99ef26178ea98626ff8e027702795
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vs2015_runtime >=14.29.30139
  license: Apache-2.0
  license_family: Apache
  size: 279200
  timestamp: 1676838681615
- kind: conda
  name: ninja
  version: 1.11.1
  build: h924138e_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.11.1-h924138e_0.conda
  sha256: b555247ac8859b4ff311e3d708a0640f1bfe9fae7125c485b444072474a84c41
  md5: 73a4953a2d9c115bdc10ff30a52f675f
  depends:
  - libgcc-ng >=12
  - libstdcxx-ng >=12
  license: Apache-2.0
  license_family: Apache
  size: 2251263
  timestamp: 1676837602636
- kind: conda
  name: ninja
  version: 1.11.1
  build: hb8565cd_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.11.1-hb8565cd_0.conda
  sha256: 6f738d9a26fa275317b95b2b96832daab9059ef64af9a338f904a3cb684ae426
  md5: 49ad513efe39447aa51affd47e3aa68f
  depends:
  - libcxx >=14.0.6
  license: Apache-2.0
  license_family: Apache
  size: 121284
  timestamp: 1676837793132
- kind: conda
  name: ninja
  version: 1.11.1
  build: hffc8910_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.11.1-hffc8910_0.conda
  sha256: a594e90b0ed8202c280fff4a008f6a355d0db54a62b17067dc4a950370ddffc0
  md5: fdecec4002f41cf6ea1eea5b52947ee0
  depends:
  - libcxx >=14.0.6
  license: Apache-2.0
  license_family: Apache
  size: 107047
  timestamp: 1676837935565
- kind: conda
  name: openssl
  version: 3.2.0
  build: h0d3ecfb_1
  build_number: 1
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.2.0-h0d3ecfb_1.conda
  sha256: a53e1c6c058b621fd1d13cca6f9cccd534d2b3f4b4ac789fe26f7902031d6c41
  md5: 47d16d26100f19ca495882882b7bc93b
  depends:
  - ca-certificates
  constrains:
  - pyopenssl >=22.1
  license: Apache-2.0
  license_family: Apache
  size: 2856233
  timestamp: 1701162541844
- kind: conda
  name: openssl
  version: 3.2.0
  build: hd590300_1
  build_number: 1
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.0-hd590300_1.conda
  sha256: 80efc6f429bd8e622d999652e5cba2ca56fcdb9c16a439d2ce9b4313116e4a87
  md5: 603827b39ea2b835268adb8c821b8570
  depends:
  - ca-certificates
  - libgcc-ng >=12
  constrains:
  - pyopenssl >=22.1
  license: Apache-2.0
  license_family: Apache
  size: 2854103
  timestamp: 1701162437033
- kind: conda
  name: openssl
  version: 3.2.0
  build: hd75f5a5_1
  build_number: 1
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.0-hd75f5a5_1.conda
  sha256: 99161bf349f5dc80322f2a2c188588d11efa662566e4e19f2ac0a36d9fa3de25
  md5: 06cb561619487c88891839b9beb5244c
  depends:
  - ca-certificates
  constrains:
  - pyopenssl >=22.1
  license: Apache-2.0
  license_family: Apache
  size: 2508164
  timestamp: 1701163123673
- kind: conda
  name: pcre2
  version: '10.42'
  build: hcad00b1_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.42-hcad00b1_0.conda
  sha256: 3ca54ff0abcda964af7d4724d389ae20d931159ae1881cfe57ad4b0ab9e6a380
  md5: 679c8961826aa4b50653bce17ee52abe
  depends:
  - bzip2 >=1.0.8,<2.0a0
  - libgcc-ng >=12
  - libzlib >=1.2.13,<1.3.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 1017235
  timestamp: 1698610864983
- kind: conda
  name: pthread-stubs
  version: '0.4'
  build: h36c2ea0_1001
  build_number: 1001
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2
  sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff
  md5: 22dad4df6e8630e8dff2428f6f6a7036
  depends:
  - libgcc-ng >=7.5.0
  license: MIT
  license_family: MIT
  size: 5625
  timestamp: 1606147468727
- kind: conda
  name: pulseaudio-client
  version: '16.1'
  build: hb77b528_5
  build_number: 5
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_5.conda
  sha256: 9981c70893d95c8cac02e7edd1a9af87f2c8745b772d529f08b7f9dafbe98606
  md5: ac902ff3c1c6d750dd0dfc93a974ab74
  depends:
  - dbus >=1.13.6,<2.0a0
  - libgcc-ng >=12
  - libglib >=2.76.4,<3.0a0
  - libsndfile >=1.2.2,<1.3.0a0
  - libsystemd0 >=254
  constrains:
  - pulseaudio 16.1 *_5
  license: LGPL-2.1-or-later
  license_family: LGPL
  size: 754844
  timestamp: 1693928953742
- kind: conda
  name: rhash
  version: 1.4.3
  build: h0dc2134_2
  build_number: 2
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.3-h0dc2134_2.conda
  sha256: 33af1f1ca0fcbda09a52604ff195195722cf9e26ffff4ed37ba761a890264b5c
  md5: 2769cf2da9a1502417cb839b693e3006
  license: MIT
  license_family: MIT
  size: 176493
  timestamp: 1693427666172
- kind: conda
  name: rhash
  version: 1.4.3
  build: hb547adb_2
  build_number: 2
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/rhash-1.4.3-hb547adb_2.conda
  sha256: f20c9765768d0c61bbbb462dc83b55372328498a746f60e1e93c985e3436ef73
  md5: 24308c7e0949c572688900b8b2f2a3ba
  license: MIT
  license_family: MIT
  size: 176444
  timestamp: 1693427792263
- kind: conda
  name: rhash
  version: 1.4.3
  build: hd590300_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/rhash-1.4.3-hd590300_2.conda
  sha256: 475f68cac8981ff2b10c56e53c2f376fc3c805fbc7ec30d22f870cd88f1479ba
  md5: 4cabe3858a856bff08d9a0992e413084
  depends:
  - libgcc-ng >=12
  license: MIT
  license_family: MIT
  size: 184509
  timestamp: 1693427593121
- kind: conda
  name: sdl2
  version: 2.26.5
  build: h63175ca_0
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/sdl2-2.26.5-h63175ca_0.conda
  sha256: 4ebc9b29b04b2087dfff77ecbe6d7fc7e95c7223ed0447966f3a0aa1f007e8af
  md5: 620fcad9da41516d395411099908bb3b
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vs2015_runtime >=14.29.30139
  license: Zlib
  size: 2211251
  timestamp: 1680736427464
- kind: conda
  name: sdl2
  version: 2.26.5
  build: h949db6a_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.26.5-h949db6a_0.conda
  sha256: d61329f63735a871b620316b7115358a693bc856709f34cf8f9b241b37261ca4
  md5: 062142393e7fe4bc8e20a4eea9b639e6
  depends:
  - libgcc-ng >=12
  - libstdcxx-ng >=12
  - pulseaudio-client >=16.1,<16.2.0a0
  - xorg-libx11 >=1.8.4,<2.0a0
  - xorg-libxext >=1.3.4,<2.0a0
  license: Zlib
  size: 1334948
  timestamp: 1680735969345
- kind: conda
  name: sdl2
  version: 2.26.5
  build: hb7217d7_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2-2.26.5-hb7217d7_0.conda
  sha256: f71c5bcc3f462e2bf8df9f7e9aa4ee58a82f631a230eb33d47618f19153cb8d4
  md5: e2c2df7276617a8afff97b81f3ac847f
  depends:
  - libcxx >=14.0.6
  license: Zlib
  size: 1219085
  timestamp: 1680736651870
- kind: conda
  name: sdl2
  version: 2.26.5
  build: hf0c8a7f_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/sdl2-2.26.5-hf0c8a7f_0.conda
  sha256: 63a616aa3997c58dacbb0f6b721f629bb32c454042b6e0f786b17cd4ff80966f
  md5: cd1f00dcd5e7922e9d57cfbaf1115bd0
  depends:
  - libcxx >=14.0.6
  license: Zlib
  size: 1180736
  timestamp: 1680736409923
- kind: conda
  name: sigtool
  version: 0.1.3
  build: h44b9a77_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
  sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff
  md5: 4a2cac04f86a4540b8c9b8d8f597848f
  depends:
  - openssl >=3.0.0,<4.0a0
  license: MIT
  license_family: MIT
  size: 210264
  timestamp: 1643442231687
- kind: conda
  name: sigtool
  version: 0.1.3
  build: h88f4db0_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
  sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf
  md5: fbfb84b9de9a6939cb165c02c69b1865
  depends:
  - openssl >=3.0.0,<4.0a0
  license: MIT
  license_family: MIT
  size: 213817
  timestamp: 1643442169866
- kind: conda
  name: sysroot_linux-64
  version: '2.12'
  build: he073ed8_16
  build_number: 16
  subdir: noarch
  noarch: generic
  url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_16.conda
  sha256: 4c024b2eee24c6da7d3e08723111ec02665c578844c5b3e9e6b38f89000bec41
  md5: 071ea8dceff4d30ac511f4a2f8437cd1
  depends:
  - kernel-headers_linux-64 2.6.32 he073ed8_16
  license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
  license_family: GPL
  size: 15277813
  timestamp: 1689214980563
- kind: conda
  name: tapi
  version: 1100.0.11
  build: h9ce4665_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2
  sha256: 34b18ce8d1518b67e333ca1d3af733c3976ecbdf3a36b727f9b4dedddcc588fa
  md5: f9ff42ccf809a21ba6f8607f8de36108
  depends:
  - libcxx >=10.0.0.a0
  license: NCSA
  license_family: MIT
  size: 201044
  timestamp: 1602664232074
- kind: conda
  name: tapi
  version: 1100.0.11
  build: he4954df_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2
  sha256: 1709265fbee693a9e8b4126b0a3e68a6c4718b05821c659279c1af051f2d40f3
  md5: d83362e7d0513f35f454bc50b0ca591d
  depends:
  - libcxx >=11.0.0.a0
  license: NCSA
  license_family: MIT
  size: 191416
  timestamp: 1602687595316
- kind: conda
  name: ucrt
  version: 10.0.22621.0
  build: h57928b3_0
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2
  sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6
  md5: 72608f6cd3e5898229c3ea16deb1ac43
  constrains:
  - vs2015_runtime >=14.29.30037
  license: LicenseRef-Proprietary
  license_family: PROPRIETARY
  size: 1283972
  timestamp: 1666630199266
- kind: conda
  name: vc
  version: '14.3'
  build: hcf57466_18
  build_number: 18
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hcf57466_18.conda
  sha256: 447a8d8292a7b2107dcc18afb67f046824711a652725fc0f522c368e7a7b8318
  md5: 20e1e652a4c740fa719002a8449994a2
  depends:
  - vc14_runtime >=14.38.33130
  track_features:
  - vc14
  license: BSD-3-Clause
  license_family: BSD
  size: 16977
  timestamp: 1702511255313
- kind: conda
  name: vc14_runtime
  version: 14.38.33130
  build: h82b7239_18
  build_number: 18
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33130-h82b7239_18.conda
  sha256: bf94c9af4b2e9cba88207001197e695934eadc96a5c5e4cd7597e950aae3d8ff
  md5: 8be79fdd2725ddf7bbf8a27a4c1f79ba
  depends:
  - ucrt >=10.0.20348.0
  constrains:
  - vs2015_runtime 14.38.33130.* *_18
  license: LicenseRef-ProprietaryMicrosoft
  license_family: Proprietary
  size: 749868
  timestamp: 1702511239004
- kind: conda
  name: vs2015_runtime
  version: 14.38.33130
  build: hcb4865c_18
  build_number: 18
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33130-hcb4865c_18.conda
  sha256: a2fec221f361d6263c117f4ea6d772b21c90a2f8edc6f3eb0eadec6bfe8843db
  md5: 10d42885e3ed84e575b454db30f1aa93
  depends:
  - vc14_runtime >=14.38.33130
  license: BSD-3-Clause
  license_family: BSD
  size: 16988
  timestamp: 1702511261442
- kind: conda
  name: vs2019_win-64
  version: 19.29.30139
  build: he1865b1_18
  build_number: 18
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-he1865b1_18.conda
  sha256: b8f5128fc767fc04b48ec10df7ac6eea5d07df0efa2d91fff6d872e3dcde9029
  md5: 6d9d317010ece223fc46a69360d0eb84
  depends:
  - vswhere
  track_features:
  - vc14
  license: BSD-3-Clause
  license_family: BSD
  size: 19488
  timestamp: 1702511289992
- kind: conda
  name: vswhere
  version: 3.1.4
  build: h57928b3_0
  subdir: win-64
  url: https://conda.anaconda.org/conda-forge/win-64/vswhere-3.1.4-h57928b3_0.conda
  sha256: 553c41fc1a883415a39444313f8d99236685529776fdd04e8d97288b73496002
  md5: b1d1d6a1f874d8c93a57b5efece52f03
  license: MIT
  license_family: MIT
  size: 218421
  timestamp: 1682376911339
- kind: conda
  name: xorg-kbproto
  version: 1.0.7
  build: h7f98852_1002
  build_number: 1002
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2
  sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1
  md5: 4b230e8381279d76131116660f5a241a
  depends:
  - libgcc-ng >=9.3.0
  license: MIT
  license_family: MIT
  size: 27338
  timestamp: 1610027759842
- kind: conda
  name: xorg-libx11
  version: 1.8.7
  build: h8ee46fc_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.7-h8ee46fc_0.conda
  sha256: 7a02a7beac472ae2759498550b5fc5261bf5be7a9a2b4648a3f67818a7bfefcf
  md5: 49e482d882669206653b095f5206c05b
  depends:
  - libgcc-ng >=12
  - libxcb >=1.15,<1.16.0a0
  - xorg-kbproto
  - xorg-xextproto >=7.3.0,<8.0a0
  - xorg-xproto
  license: MIT
  license_family: MIT
  size: 828692
  timestamp: 1697056910935
- kind: conda
  name: xorg-libxau
  version: 1.0.11
  build: hd590300_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda
  sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4
  md5: 2c80dc38fface310c9bd81b17037fee5
  depends:
  - libgcc-ng >=12
  license: MIT
  license_family: MIT
  size: 14468
  timestamp: 1684637984591
- kind: conda
  name: xorg-libxdmcp
  version: 1.1.3
  build: h7f98852_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2
  sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77
  md5: be93aabceefa2fac576e971aef407908
  depends:
  - libgcc-ng >=9.3.0
  license: MIT
  license_family: MIT
  size: 19126
  timestamp: 1610071769228
- kind: conda
  name: xorg-libxext
  version: 1.3.4
  build: h0b41bf4_2
  build_number: 2
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda
  sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249
  md5: 82b6df12252e6f32402b96dacc656fec
  depends:
  - libgcc-ng >=12
  - xorg-libx11 >=1.7.2,<2.0a0
  - xorg-xextproto
  license: MIT
  license_family: MIT
  size: 50143
  timestamp: 1677036907815
- kind: conda
  name: xorg-xextproto
  version: 7.3.0
  build: h0b41bf4_1003
  build_number: 1003
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda
  sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743
  md5: bce9f945da8ad2ae9b1d7165a64d0f87
  depends:
  - libgcc-ng >=12
  license: MIT
  license_family: MIT
  size: 30270
  timestamp: 1677036833037
- kind: conda
  name: xorg-xproto
  version: 7.0.31
  build: h7f98852_1007
  build_number: 1007
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2
  sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d
  md5: b4a4381d54784606820704f7b5f05a15
  depends:
  - libgcc-ng >=9.3.0
  license: MIT
  license_family: MIT
  size: 74922
  timestamp: 1607291557628
- kind: conda
  name: xz
  version: 5.2.6
  build: h166bdaf_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
  sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
  md5: 2161070d867d1b1204ea749c8eec4ef0
  depends:
  - libgcc-ng >=12
  license: LGPL-2.1 and GPL-2.0
  size: 418368
  timestamp: 1660346797927
- kind: conda
  name: xz
  version: 5.2.6
  build: h57fd34a_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2
  sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec
  md5: 39c6b54e94014701dd157f4f576ed211
  license: LGPL-2.1 and GPL-2.0
  size: 235693
  timestamp: 1660346961024
- kind: conda
  name: xz
  version: 5.2.6
  build: h775f41a_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2
  sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8
  md5: a72f9d4ea13d55d745ff1ed594747f10
  license: LGPL-2.1 and GPL-2.0
  size: 238119
  timestamp: 1660346964847
- kind: conda
  name: zlib
  version: 1.2.13
  build: h53f4e23_5
  build_number: 5
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda
  sha256: de0ee1e24aa6867058d3b852a15c8d7f49f262f5828772700c647186d4a96bbe
  md5: a08383f223b10b71492d27566fafbf6c
  depends:
  - libzlib 1.2.13 h53f4e23_5
  license: Zlib
  license_family: Other
  size: 79577
  timestamp: 1686575471024
- kind: conda
  name: zlib
  version: 1.2.13
  build: h8a1eda9_5
  build_number: 5
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda
  sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35
  md5: 75a8a98b1c4671c5d2897975731da42d
  depends:
  - libzlib 1.2.13 h8a1eda9_5
  license: Zlib
  license_family: Other
  size: 90764
  timestamp: 1686575574678
- kind: conda
  name: zlib
  version: 1.2.13
  build: hd590300_5
  build_number: 5
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda
  sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b
  md5: 68c34ec6149623be41a1933ab996a209
  depends:
  - libgcc-ng >=12
  - libzlib 1.2.13 hd590300_5
  license: Zlib
  license_family: Other
  size: 92825
  timestamp: 1686575231103
- kind: conda
  name: zstd
  version: 1.5.5
  build: h4f39d0f_0
  subdir: osx-arm64
  url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda
  sha256: 7e1fe6057628bbb56849a6741455bbb88705bae6d6646257e57904ac5ee5a481
  md5: 5b212cfb7f9d71d603ad891879dc7933
  depends:
  - libzlib >=1.2.13,<1.3.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 400508
  timestamp: 1693151393180
- kind: conda
  name: zstd
  version: 1.5.5
  build: h829000d_0
  subdir: osx-64
  url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda
  sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c
  md5: 80abc41d0c48b82fe0f04e7f42f5cb7e
  depends:
  - libzlib >=1.2.13,<1.3.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 499383
  timestamp: 1693151312586
- kind: conda
  name: zstd
  version: 1.5.5
  build: hfc55251_0
  subdir: linux-64
  url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda
  sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609
  md5: 04b88013080254850d6c01ed54810589
  depends:
  - libgcc-ng >=12
  - libstdcxx-ng >=12
  - libzlib >=1.2.13,<1.3.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 545199
  timestamp: 1693151163452