Tcl Library Source Code

Check-in [f8dd6bc0eb]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Moved the tool.shed manifest to the new customary spot. Added a makefile directive to rebuild the makefile
Timelines: family | ancestors | descendants | both | odie
Files: files | file ages | folders
SHA1: f8dd6bc0eb57c1cb4d64a0bc554214e05ed00f57
User & Date: hypnotoad 2015-09-24 19:29:51
Context
2015-09-24
19:31
Updated the url for fossil check-in: 32858c14c6 user: hypnotoad tags: odie
19:29
Moved the tool.shed manifest to the new customary spot. Added a makefile directive to rebuild the makefile check-in: f8dd6bc0eb user: hypnotoad tags: odie
00:34
Added a new mechanism to designate certain parties in the cluster to act as repositories. When a DISCOVERY request goes out that parrot back everything they have seen, not just its own services check-in: 64d9695c87 user: hypnotoad tags: odie
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to Makefile.in.

124
125
126
127
128
129
130


131
132
133
134
135
136

check:
	$(TCLSH_PROG) `$(CYGPATH) $(srcdir)/sak.tcl` validate

sak-help:
	$(TCLSH_PROG) `$(CYGPATH) $(srcdir)/sak.tcl` help




.PHONY: all binaries clean depend distclean doc install installdirs libraries test

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:







>
>






124
125
126
127
128
129
130
131
132
133
134
135
136
137
138

check:
	$(TCLSH_PROG) `$(CYGPATH) $(srcdir)/sak.tcl` validate

sak-help:
	$(TCLSH_PROG) `$(CYGPATH) $(srcdir)/sak.tcl` help

shed:
	$(TCLSH_PROG) `$(CYGPATH) $(srcdir)/../sherpa/sherpa.tcl` shed generate `pwd` tool/tool.tcl

.PHONY: all binaries clean depend distclean doc install installdirs libraries test

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

Name change from tool/tool.shed to tool.shed.

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




2927
2928
2929
2930

2931
2932
2933
2934
2935
2936

2937
2938

2939
2940
2941
2942

2943
2944






2945
2946
2947
2948

2949
2950

2951
2952
2953
2954

2955
2956

2957
2958
2959
2960

2961




2962



2963
2964
2965







2966

2967
2968




2969

2970
2971
2972
2973
2974

2975
2976
2977
2978

2979
2980

2981
2982
2983
2984
2985
2986

2987
2988

2989
2990




2991



2992


2993





2994

2995
2996
2997
2998






2999

3000




3001
3002
3003
3004
3005
3006
3007
3008
3009

3010
3011

3012
3013
3014
3015

3016





3017



3018


3019
3020
3021
3022
3023
3024
3025
3026




3027



3028






3029



3030

3031


3032


3033










3034




3035
3036
3037
3038
3039

3040
3041
3042
3043
3044







3045

3046






3047

3048




3049


3050


3051
3052

3053
3054
3055
3056

3057






3058


3059



3060
3061
3062
3063
3064

3065
3066
3067
3068

3069
3070
3071
3072
3073
3074

3075
3076

3077
3078







3079







3080

3081
3082

3083
3084
3085
3086

3087
3088
3089
3090
3091
3092

3093





3094


3095
3096
3097














3098

3099





3100


3101
3102
3103
3104

3105
3106
3107
3108
3109
3110

3111
3112
3113
3114
3115
3116

3117
3118
3119
3120





3121







3122

3123

3124





3125
3126
3127
3128

3129
3130
3131
3132
3133
3134

3135
3136
3137
3138
3139
3140

3141






3142



3143


3144
3145
3146
3147
3148
3149
3150







3151
3152

3153
3154
3155
3156
3157
3158

3159
3160
3161
3162
3163
3164

3165
3166
3167
3168
3169







3170

3171
3172
3173
3174
3175
3176

3177

3178






3179






3180
3181
3182

3183
3184
3185
3186
3187
3188

3189
3190

3191
3192
3193
3194

3195
3196
3197
3198
3199
3200

3201





3202


3203
3204














3205
3206

3207

3208
3209

3210




3211
3212


3213
3214

3215
3216
3217
3218

3219
3220

3221
3222






3223
3224


3225
3226
3227
3228
3229
3230

3231
3232
3233
3234






3235







3236

3237






3238




3239

3240

3241



3242
3243

3244
3245
3246
3247
3248

3249
3250
3251
3252
3253







3254

3255

3256






3257







3258
3259
3260

3261
3262



3263

3264
3265
3266
3267
3268

3269
3270
3271
3272

3273
3274

3275
3276
3277
3278

3279
3280
3281
3282
3283
3284

3285







3286
3287
3288
3289
3290








3291
3292
3293
3294
3295
3296

3297







3298
3299
3300
3301
3302

3303
3304







3305







3306
3307
3308

3309
3310
3311
3312
3313
3314

3315
3316
3317
3318
3319







3320

3321







3322
3323
3324
3325
3326

3327
3328
3329














3330
3331
3332

3333
3334
3335
3336







3337
3338

3339
3340



3341


3342
3343
3344
3345
3346

3347
3348
3349
3350

3351
3352



3353


3354




3355
3356

3357
3358
3359
3360
3361
3362

3363






3364



3365


3366



3367

3368


3369


3370



3371

3372
3373

3374
3375

3376



























3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391

3392
3393
3394
3395
3396
3397

3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409

###
# SHED Description File
# Auto generated by the shed package
###
      
tool sherpa {
  name: sherpa
  description: {
The reference implementation for the TOOL and SHED description languages.
}

  distribution: fossil

  class: tool



  mirror: {http://core.tcl.tk/tcllib http://fossil.etoyoc.com/fossil/tcllib}



  branch {




    trunk {




      version: 1.18












































      release: beta


    }










    tcllib-1-17-rc {





      version: 1.17




      release: final


    }
    tcllib-1-16-rc {










      version: 1.16




      release: final


    }




  }





















  application {
    dtplite {
      name: dtplite
      file: apps/dtplite
      class: script

      require: {{dtplite 1.0.5}}


      description:: {This application is a simple processor
for documents written in the doctools
markup language. It covers the most
common use cases, but is not as
configurable as its big brother dtp.
}





    }
    nns {
      name: nns
      file: apps/nns
      class: script
      require: {{nameserv::auto 0.3} struct::matrix}
      package {
        nns {
          file: nns
          name: nns
          version: 1.2
        }
      }


      description:: {This application connects to a name service demon
and either registers a name with associated data
(until exit) or searches for entries matching a
glob pattern. Operations to identify client and
server are made available as well. It will survive
the loss of the nameserver and automatically reconnect
and continue when it comes back (bind and search).

}





    }
    nnsd {
      name: nnsd
      file: apps/nnsd
      class: script
      require: nameserv::server
      package {
        nnsd {
          file: nnsd
          name: nnsd
          version: 1.0.1
        }
      }


      description:: {This application is a simple demon on top
of the nano name service facilities
}





    }
    nnslog {
      name: nnslog
      file: apps/nnslog
      class: script
      require: {{nameserv::auto 0.3}}
      package {
        nnslog {
          file: nnslog
          name: nnslog
          version: 1.0
        }
      }


      description:: {This application connects to a name service demon
and then continuously logs all changes (new/removed
definitions) to the standard output. It will survive
the loss of the nameserver and automatically reconnect
and continue when it comes back.
}





    }
    page {
      name: page
      file: apps/page
      class: script
      require: {page::pluginmgr logger struct::matrix}
      package {
        page {
          file: page
          name: page
          version: 1.0
        }
      }


      description:: {While the name is an allusion to parser
generation, the modular plugin-based
nature of this application allows for
any type of text transformation which
can be put into a plugin. Still, the
plugins coming with Tcllib all deal
with parser generation.
}






    }
    pt {
      name: pt
      file: apps/pt
      class: script
      require: {{Tcl 8.5} {pt::pgen 1.0.3} pt::util fileutil try}
    }
    tcldocstrip {
      name: tcldocstrip
      file: apps/tcldocstrip
      class: script
      require: docstrip
      package {
        tcldocstrip {
          file: tcldocstrip
          name: tcldocstrip
          version: 1.0.1
        }
      }


      description:: {This application is an implementation
of TeX's docstrip application in Tcl.
It provides commands to convert a docstrip
weave according to a set of guards, to
assemble an output based on several sets
guards and input files, i.e. of a document
spread over several inputs and/or guards,
and to extract and list all unique guard
expressions found in a document.
}
    }
  }
  module {
    aes {
      path: modules/aes
      package {
        aes {
          file: aes.tcl
          require: {{Tcl 8.5}}
          name: aes
          version: 1.2.1
        }
      }
      class: tcl
    }
    amazon-s3 {
      path: modules/amazon-s3
      package {
        S3 {
          file: S3.tcl
          require: {{Tcl 8.5} xsxp sha1 md5 base64}
          name: S3
          version: 1.0.3
        }
        xsxp {
          file: xsxp.tcl
          require: xml
          name: xsxp
          version: 1.0
        }
      }
      class: tcl
    }
    asn {
      path: modules/asn
      package {
        asn {
          file: asn.tcl
          require: {{Tcl 8.4}}
          name: asn
          version: 0.8.4
        }
      }
      class: tcl
    }
    base32 {
      path: modules/base32
      package {
        base32 {
          file: base32.tcl
          require: {{Tcl 8.4}}
          name: base32
          version: 0.1
        }
        base32::core {
          file: base32core.tcl
          name: base32::core
          version: 0.1
        }
        base32::hex {
          file: base32hex.tcl
          require: {{Tcl 8.4}}
          name: base32::hex
          version: 0.1
        }
      }
      require: {critcl {Tcl 8.4} base32::core critcl {Tcl 8.4} base32::core}
      class: tcl
    }
    base64 {
      path: modules/base64
      package {
        ascii85 {
          file: ascii85.tcl
          require: {{Tcl 8.4}}
          name: ascii85
          version: 1.0
        }
        base64 {
          file: base64.tcl
          require: {{Tcl 8.2}}
          name: base64
          version: 2.4.2
        }
        base64c {
          file: base64c.tcl
          require: critcl
          name: base64c

          version: 0.1.0
        }
        uuencode {
          file: uuencode.tcl
          require: {{Tcl 8.2}}
          name: uuencode
          version: 1.1.5
        }
        yencode {
          file: yencode.tcl
          require: {{Tcl 8.2}}
          name: yencode
          version: 1.1.3
        }
      }
      class: tcl
    }
    bee {
      path: modules/bee
      package {
        bee {
          file: bee.tcl
          require: {{Tcl 8.4}}
          name: bee
          version: 0.1
        }
      }
      class: tcl
    }
    bench {
      path: modules/bench


      package {
        bench {
          file: bench.tcl
          require: {{Tcl 8.2} logger csv struct::matrix report}
          name: bench
          version: 0.4
        }
        bench::in {
          file: bench_read.tcl
          require: {{Tcl 8.2} csv}
          name: bench::in
          version: 0.1
        }
        bench::out::csv {
          file: bench_wcsv.tcl
          require: {{Tcl 8.2} csv}
          name: bench::out::csv
          version: 0.1.2
        }
        bench::out::text {
          file: bench_wtext.tcl
          require: {{Tcl 8.2} struct::matrix report}
          name: bench::out::text
          version: 0.1.2
        }
      }
      class: tcl


    }
    bibtex {
      path: modules/bibtex
      package {
        bibtex {
          file: bibtex.tcl
          require: {{Tcl 8.4} cmdline}
          name: bibtex
          version: 0.6
        }
      }
      class: tcl


    }
    blowfish {
      path: modules/blowfish
      package {
        blowfish {
          file: blowfish.tcl
          require: {{Tcl 8.2}}
          name: blowfish
          version: 1.0.4
        }
      }
      class: tcl
    }
    cache {
      path: modules/cache
      package {
        cache::async {
          file: async.tcl
          require: {{Tcl 8.4} snit}
          name: cache::async
          version: 0.3
        }
      }
      class: tcl


    }
    calendar {

      path: modules/calendar
      require: {{Tcl 8.2} {Tcl 8.2}}
      class: tcl
    }
    clock {
      path: modules/clock
      package {
        clock::iso8601 {
          file: iso8601.tcl
          require: {{Tcl 8.5}}
          name: clock::iso8601
          version: 0.1
        }
        clock::rfc2822 {
          file: rfc2822.tcl
          require: {{Tcl 8.5}}
          name: clock::rfc2822
          version: 0.1
        }
      }

      class: tcl
    }
    cmdline {
      path: modules/cmdline
      package {
        cmdline {
          file: cmdline.tcl
          require: {{Tcl 8.2}}
          name: cmdline
          version: 1.5
        }
      }
      class: tcllib
      origin: http://core.tcl.tk/tcllib
    }
    codebale {
      path: modules/codebale
      package {
        codebale::autodoc {
          file: autodoc.tcl
          name: codebale::autodoc
          version: 0.1
        }
        codebale {
          file: index.tcl
          name: codebale
          version: 0.2
          require: {odie fileutil}
        }
      }
      class: tcl
    }
    comm {
      path: modules/comm
      package {
        comm {
          file: comm.tcl
          require: {{Tcl 8.3} snit}
          name: comm
          version: 4.6.3.1
        }
      }
      class: tcl
    }
    common-text {
      path: modules/common-text
      class: tcl
    }
    control {
      path: modules/control
      require: {{Tcl 8.2}}
      class: tcl
    }
    coroutine {
      path: modules/coroutine
      package {
        coroutine::auto {
          file: coro_auto.tcl
          require: {{Tcl 8.6} coroutine}
          name: coroutine::auto
          version: 1.1.3
        }
        coroutine {
          file: coroutine.tcl
          require: {{Tcl 8.6}}
          name: coroutine
          version: 1.1.3
        }
      }
      class: tcl
    }
    counter {
      path: modules/counter
      package {
        counter {
          file: counter.tcl
          require: {{Tcl 8.2}}
          name: counter
          version: 2.0.4
        }
      }
      class: tcl
    }
    crc {
      path: modules/crc
      package {
        cksum {
          file: cksum.tcl
          require: {{Tcl 8.2}}
          name: cksum
          version: 1.1.4
        }
        crc16 {
          file: crc16.tcl
          require: {{Tcl 8.2}}
          name: crc16
          version: 1.1.2
        }
        crc32 {
          file: crc32.tcl
          require: {{Tcl 8.2}}
          name: crc32
          version: 1.3.2
        }
        crcc {
          file: crcc.tcl
          require: critcl
          name: crcc
          version: 1.0.0
        }
        sum {
          file: sum.tcl
          require: {{Tcl 8.2}}
          name: sum
          version: 1.1.2
        }
      }
      class: tcl


    }
    cron {
      path: modules/cron
      package {
        cron {
          file: cron.tcl
          name: cron
          version: 1.1
        }
      }
      class: tcl
    }
    csv {
      path: modules/csv
      package {
        csv {
          file: csv.tcl
          require: {{Tcl 8.4}}
          name: csv
          version: 0.8
        }
      }
      class: tcl
    }
    debug {

      path: modules/debug


      package {
        debug::caller {
          file: caller.tcl
          require: {{Tcl 8.5} debug}
          name: debug::caller
          version: 1
        }
        debug {
          file: debug.tcl
          require: {{Tcl 8.5}}
          name: debug

          version: 1.0.5
        }
        debug::heartbeat {
          file: heartbeat.tcl
          require: {{Tcl 8.5} debug}
          name: debug::heartbeat
          version: 1
        }
        debug::timestamp {
          file: timestamp.tcl
          require: {{Tcl 8.5} debug}

          name: debug::timestamp
          version: 1
        }
      }
      class: tcl

    }
    des {
      path: modules/des
      package {
        des {
          file: des.tcl
          require: {{Tcl 8.2}}
          name: des
          version: 1.1.0
        }
        tclDES {
          file: tcldes.tcl
          name: tclDES
          version: 1.0.0

        }
        tclDESjr {
          file: tcldesjr.tcl
          name: tclDESjr
          version: 1.0.0
        }
      }
      class: tcl
    }
    devtools {
      path: modules/devtools
      require: comm

      package {
        tcllib::testutils {
          file: testutilities.tcl
          name: tcllib::testutils
          version: 1.2
        }
      }



      class: tcl
    }
    dns {
      path: modules/dns
      package {
        dns {
          file: dns.tcl
          require: {{Tcl 8.2} logger uri uri::urn ip}
          name: dns
          version: 1.3.5
        }
        ip {
          file: ip.tcl
          require: {{Tcl 8.2}}
          name: ip
          version: 1.3
        }
        ipMorec {
          file: ipMoreC.tcl
          require: critcl
          name: ipMorec
          version: 1.0
        }
        resolv {
          file: resolv.tcl
          require: {{dns 1.0}}
          name: resolv
          version: 1.0.3

        }
        spf {
          file: spf.tcl
          require: {{Tcl 8.2} dns logger ip struct::list uri::urn}
          name: spf
          version: 1.1.1
        }
      }
      require: msgcat
      class: tcl
    }
    docstrip {
      path: modules/docstrip
      package {
        docstrip {
          file: docstrip.tcl
          require: {{Tcl 8.4}}
          name: docstrip
          version: 1.2
        }
        docstrip::util {
          file: docstrip_util.tcl
          require: {{Tcl 8.4} {docstrip 1.2}}
          name: docstrip::util
          version: 1.3
        }
      }
      class: tcl
    }
    doctools {
      path: modules/doctools
      package {
        doctools::changelog {
          file: changelog.tcl
          require: {{Tcl 8.2} textutil}
          name: doctools::changelog
          version: 1.1
        }
        doctools::cvs {
          file: cvs.tcl
          require: {{Tcl 8.2} textutil}
          name: doctools::cvs

          version: 1


        }
        doctools::idx {
          file: docidx.tcl
          require: {{Tcl 8.2} textutil::expander}
          name: doctools::idx
          version: 1.0.5
        }
        doctools::toc {
          file: doctoc.tcl
          require: {{Tcl 8.2} textutil::expander}
          name: doctools::toc
          version: 1.1.4
        }
        doctools {
          file: doctools.tcl
          require: {{Tcl 8.2} textutil::expander}
          name: doctools
          version: 1.4.19
        }
      }
      require: {msgcat msgcat msgcat}
      class: tcl
    }
    doctools2base {
      path: modules/doctools2base
      package {
        doctools::config {
          file: config.tcl
          require: {{Tcl 8.4} snit}
          name: doctools::config
          version: 0.1
        }
        doctools::html {
          file: html.tcl
          require: {{Tcl 8.4} doctools::text}
          name: doctools::html
          version: 0.1
        }
        doctools::html::cssdefaults {
          file: html_cssdefaults.tcl
          require: {{Tcl 8.4}}
          name: doctools::html::cssdefaults
          version: 0.1
        }
        doctools::msgcat {
          file: msgcat.tcl
          require: {{Tcl 8.4} msgcat}
          name: doctools::msgcat
          version: 0.1
        }
        doctools::nroff::man_macros {
          file: nroff_manmacros.tcl
          require: {{Tcl 8.4}}
          name: doctools::nroff::man_macros
          version: 0.1
        }
        doctools::paths {
          file: paths.tcl
          require: {{Tcl 8.4} snit}
          name: doctools::paths
          version: 0.1
        }
        doctools::tcl::parse {
          file: tcl_parse.tcl
          require: {{Tcl 8.4} snit fileutil logger struct::list struct::stack struct::set treeql}
          name: doctools::tcl::parse
          version: 0.1
        }
        doctools::text {
          file: text.tcl
          require: {{Tcl 8.4}}
          name: doctools::text
          version: 0.1
        }
      }
      class: tcl
    }
    doctools2idx {
      path: modules/doctools2idx
      package {
        doctools::idx {
          file: container.tcl
          require: {{Tcl 8.4} doctools::idx::structure snit}
          name: doctools::idx
          version: 2
        }
        doctools::idx::export {
          file: export.tcl
          require: {{Tcl 8.4} doctools::config doctools::idx::structure pluginmgr snit}
          name: doctools::idx::export
          version: 0.1
        }
        doctools::idx::export::docidx {
          file: export_docidx.tcl
          require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure}
          name: doctools::idx::export::docidx
          version: 0.1
        }
        doctools::idx::export::html {
          file: export_html.tcl
          require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure doctools::html doctools::html::cssdefaults}
          name: doctools::idx::export::html
          version: 0.2
        }
        doctools::idx::export::json {
          file: export_json.tcl
          require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure textutil::adjust}
          name: doctools::idx::export::json
          version: 0.1
        }
        doctools::idx::export::nroff {
          file: export_nroff.tcl
          require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure doctools::text doctools::nroff::man_macros}
          name: doctools::idx::export::nroff
          version: 0.3

        }
        doctools::idx::export::text {
          file: export_text.tcl
          require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure doctools::text}
          name: doctools::idx::export::text
          version: 0.2
        }
        doctools::idx::export::wiki {
          file: export_wiki.tcl
          require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure doctools::text}
          name: doctools::idx::export::wiki
          version: 0.2

        }
        doctools::idx::import {
          file: import.tcl
          require: {{Tcl 8.4} doctools::config doctools::idx::structure doctools::paths pluginmgr snit}
          name: doctools::idx::import
          version: 0.1
        }
        doctools::idx::import::docidx {
          file: import_docidx.tcl
          require: {{Tcl 8.4} doctools::idx::import::plugin doctools::idx::parse}
          name: doctools::idx::import::docidx
          version: 0.1
        }
        doctools::idx::import::json {
          file: import_json.tcl
          require: {{Tcl 8.4} doctools::idx::import::plugin doctools::idx::structure json}
          name: doctools::idx::import::json
          version: 0.1
        }
        doctools::msgcat::idx::c {
          file: msgcat_c.tcl
          require: msgcat
          name: doctools::msgcat::idx::c
          version: 0.1
        }
        doctools::msgcat::idx::de {
          file: msgcat_de.tcl
          require: msgcat
          name: doctools::msgcat::idx::de
          version: 0.1
        }
        doctools::msgcat::idx::en {
          file: msgcat_en.tcl
          require: msgcat
          name: doctools::msgcat::idx::en
          version: 0.1
        }

        doctools::msgcat::idx::fr {
          file: msgcat_fr.tcl
          require: msgcat
          name: doctools::msgcat::idx::fr
          version: 0.1
        }
        doctools::idx::parse {
          file: parse.tcl
          require: {{Tcl 8.4} doctools::idx::structure doctools::msgcat doctools::tcl::parse fileutil logger snit struct::list struct::tree}
          name: doctools::idx::parse
          version: 0.1
        }
        doctools::idx::structure {
          file: structure.tcl
          require: {{Tcl 8.4} snit}
          name: doctools::idx::structure
          version: 0.1


        }
      }
      class: tcl
    }
    doctools2toc {
      path: modules/doctools2toc
      package {
        doctools::toc {
          file: container.tcl
          require: {{Tcl 8.4} doctools::toc::structure snit struct::tree}
          name: doctools::toc
          version: 2
        }
        doctools::toc::export {
          file: export.tcl
          require: {{Tcl 8.4} doctools::config doctools::toc::structure pluginmgr snit}
          name: doctools::toc::export
          version: 0.1


        }
        doctools::toc::export::doctoc {
          file: export_doctoc.tcl
          require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure}
          name: doctools::toc::export::doctoc
          version: 0.1
        }
        doctools::toc::export::html {
          file: export_html.tcl
          require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure doctools::html doctools::html::cssdefaults}
          name: doctools::toc::export::html
          version: 0.1
        }
        doctools::toc::export::json {
          file: export_json.tcl
          require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure textutil::adjust}
          name: doctools::toc::export::json
          version: 0.1
        }
        doctools::toc::export::nroff {
          file: export_nroff.tcl
          require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure doctools::text doctools::nroff::man_macros}
          name: doctools::toc::export::nroff
          version: 0.2
        }
        doctools::toc::export::text {
          file: export_text.tcl
          require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure doctools::text}
          name: doctools::toc::export::text
          version: 0.1
        }
        doctools::toc::export::wiki {
          file: export_wiki.tcl
          require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure doctools::text}
          name: doctools::toc::export::wiki
          version: 0.1
        }
        doctools::toc::import {
          file: import.tcl
          require: {{Tcl 8.4} doctools::config doctools::toc::structure doctools::paths pluginmgr snit}
          name: doctools::toc::import
          version: 0.1
        }
        doctools::toc::import::doctoc {
          file: import_doctoc.tcl
          require: {{Tcl 8.4} doctools::toc::import::plugin doctools::toc::parse}
          name: doctools::toc::import::doctoc
          version: 0.1
        }
        doctools::toc::import::json {
          file: import_json.tcl
          require: {{Tcl 8.4} doctools::toc::import::plugin doctools::toc::structure json}
          name: doctools::toc::import::json
          version: 0.1
        }
        doctools::msgcat::toc::c {
          file: msgcat_c.tcl
          require: msgcat
          name: doctools::msgcat::toc::c
          version: 0.1
        }
        doctools::msgcat::toc::de {
          file: msgcat_de.tcl
          require: msgcat
          name: doctools::msgcat::toc::de
          version: 0.1
        }
        doctools::msgcat::toc::en {
          file: msgcat_en.tcl
          require: msgcat
          name: doctools::msgcat::toc::en
          version: 0.1
        }
        doctools::msgcat::toc::fr {
          file: msgcat_fr.tcl
          require: msgcat
          name: doctools::msgcat::toc::fr
          version: 0.1
        }
        doctools::toc::parse {
          file: parse.tcl
          require: {{Tcl 8.4} doctools::toc::structure doctools::msgcat doctools::tcl::parse fileutil logger snit struct::list struct::tree}
          name: doctools::toc::parse
          version: 0.1

        }
        doctools::toc::structure {
          file: structure.tcl
          require: {{Tcl 8.4} snit}
          name: doctools::toc::structure
          version: 0.1
        }
      }
      class: tcl


    }
    dtplite {
      path: modules/dtplite
      package {
        dtplite {
          file: dtplite.tcl
          name: dtplite
          version: 1.2
          require: {{doctools 1.4.11} {doctools::idx 1.0.4} {doctools::toc 1.1.3} fileutil textutil::repeat}
        }
      }
      class: tcl
    }
    exif {
      path: modules/exif
      package {
        exif {
          file: exif.tcl
          require: {{Tcl 8.3}}
          name: exif
          version: 1.1.2
        }
      }
      class: tcl
    }
    fileutil {
      path: modules/fileutil
      package {
        fileutil::decode {
          file: decode.tcl
          require: {{Tcl 8.4}}
          name: fileutil::decode
          version: 0.2
        }
        fileutil {
          file: fileutil.tcl
          require: {{Tcl 8.2} cmdline}
          name: fileutil
          version: 1.15
        }
        fileutil::multi {
          file: multi.tcl
          require: fileutil::multi::op
          name: fileutil::multi
          version: 0.1
        }
        fileutil::multi::op {
          file: multiop.tcl
          require: {fileutil snit struct::stack wip}
          name: fileutil::multi::op
          version: 0.5.3
        }
        fileutil::traverse {
          file: traverse.tcl
          require: {{Tcl 8.3} control fileutil}
          name: fileutil::traverse
          version: 0.5
        }
      }
      class: tcl
    }
    ftp {
      path: modules/ftp
      package {
        ftp {
          file: ftp.tcl
          require: {{Tcl 8.2} log}
          name: ftp
          version: {[lindex}
        }
        ftp::geturl {
          file: ftp_geturl.tcl
          require: {ftp uri}
          name: ftp::geturl
          version: {[lindex}
        }
      }
      class: tcl


    }
    ftpd {
      path: modules/ftpd
      package {
        ftpd {
          file: ftpd.tcl
          require: {{Tcl 8.2}}
          name: ftpd
          version: 1.2.6
        }
      }
      class: tcl
    }
    fumagic {
      path: modules/fumagic
      package {
        fileutil::magic::cfront {
          file: cfront.tcl
          require: {{Tcl 8.4} fileutil fileutil::magic::cgen fileutil::magic::rt struct::list}
          name: fileutil::magic::cfront
          version: 1.0
        }
        fileutil::magic::cgen {
          file: cgen.tcl
          require: {{Tcl 8.4} fileutil::magic::rt struct::list struct::tree}
          name: fileutil::magic::cgen
          version: 1.0
        }
        fileutil::magic::filetype {
          file: filetypes.tcl
          require: {{Tcl 8.4} fileutil::magic::rt fileutil::magic::rt}
          name: fileutil::magic::filetype
          version: 1.0.2
        }
        fileutil::magic::mimetype {
          file: mimetypes.tcl
          require: {{Tcl 8.4} fileutil::magic::rt fileutil::magic::rt}
          name: fileutil::magic::mimetype
          version: 1.0.2
        }
        fileutil::magic::rt {
          file: rtcore.tcl
          require: {{Tcl 8.4}}
          name: fileutil::magic::rt
          version: 1.0
        }
      }
      class: tcl
    }
    generator {
      path: modules/generator
      package {
        generator {
          file: generator.tcl
          require: {{Tcl 8.6}}
          name: generator
          version: 0.1
        }
      }
      class: tcl
    }
    gpx {

      path: modules/gpx
      package {
        gpx {
          file: gpx.tcl
          require: {{Tcl 8.5} tdom}
          name: gpx
          version: 1
        }
      }
      class: tcl
    }
    grammar_aycock {

      path: modules/grammar_aycock
      package {
        grammar::aycock {
          file: aycock-build.tcl
          name: grammar::aycock
          version: 1.0
          require: {{Tcl 8.4} {grammar::aycock::debug 1.0}}
        }
        grammar::aycock::debug {
          file: aycock-debug.tcl
          name: grammar::aycock::debug
          version: 1.0
          require: {{Tcl 8.4} {grammar::aycock::runtime 1.0}}
        }
        grammar::aycock::runtime {
          file: aycock-runtime.tcl
          name: grammar::aycock::runtime
          version: 1.0
          require: {{Tcl 8.5}}
        }
      }
      class: tcl
    }
    grammar_fa {
      path: modules/grammar_fa
      package {
        grammar::fa::dacceptor {
          file: dacceptor.tcl
          require: {snit struct::set}
          name: grammar::fa::dacceptor
          version: 0.1.1
        }
        grammar::fa::dexec {
          file: dexec.tcl
          require: snit
          name: grammar::fa::dexec

          version: 0.2


        }
        grammar::fa {
          file: fa.tcl
          require: {{Tcl 8.4} grammar::fa::op struct::list struct::set}
          name: grammar::fa
          version: 0.5
        }
        grammar::fa::op {
          file: faop.tcl
          require: {struct::list struct::set}
          name: grammar::fa::op
          version: 0.4.1
        }
      }
      class: tcl


    }
    grammar_me {

      path: modules/grammar_me


      package {
        grammar::me::cpu::gasm {
          file: gasm.tcl
          name: grammar::me::cpu::gasm
          version: 0.1
        }
        grammar::me::cpu {
          file: me_cpu.tcl
          require: {snit grammar::me::cpu::core}
          name: grammar::me::cpu
          version: 0.2
        }
        grammar::me::cpu::core {
          file: me_cpucore.tcl
          name: grammar::me::cpu::core
          version: 0.2
        }
        grammar::me::tcl {
          file: me_tcl.tcl
          name: grammar::me::tcl
          version: 0.1
        }
        grammar::me::util {
          file: me_util.tcl
          name: grammar::me::util
          version: 0.1
        }
      }
      class: tcl
    }
    grammar_peg {
      path: modules/grammar_peg
      package {
        grammar::peg {
          file: peg.tcl
          require: snit
          name: grammar::peg
          version: 0.2
        }
        grammar::peg::interp {
          file: peg_interp.tcl
          require: grammar::me::tcl
          name: grammar::peg::interp
          version: 0.1.1
        }
      }
      class: tcl
    }
    hook {
      path: modules/hook
      package {
        hook {
          file: hook.tcl
          name: hook
          version: 0.1
        }
      }
      class: tcl


    }
    html {
      path: modules/html
      package {
        html {
          file: html.tcl
          require: {{Tcl 8.2} ncgi}
          name: html
          version: 1.4.4
        }
      }
      class: tcl
    }
    htmlparse {
      path: modules/htmlparse
      package {
        htmlparse {
          file: htmlparse.tcl
          require: {{Tcl 8.2} struct::stack {cmdline 1.1}}
          name: htmlparse
          version: 1.2.1
        }
      }
      class: tcl
    }
    http {
      path: modules/http
      package {
        autoproxy {
          file: autoproxy.tcl
          require: {http uri base64}
          name: autoproxy
          version: 1.5.3
        }
      }
      class: tcl
    }
    httpd {
      path: modules/httpd
      package {
        httpd {
          file: httpd.tcl
          require: {uri oo::meta nettool cron}
          name: httpd
          version: 0.1
        }
      }
      class: tcl
    }
    ident {
      path: modules/ident
      package {
        ident {
          file: ident.tcl
          name: ident
          version: 0.42
        }
      }
      class: tcl
    }
    imap4 {
      path: modules/imap4
      package {
        imap4 {
          file: imap4.tcl
          require: {{Tcl 8.5}}
          name: imap4
          version: 0.5.2
        }
      }
      class: tcl


    }
    inifile {
      path: modules/inifile
      package {
        inifile {
          file: ini.tcl
          name: inifile
          version: 0.3
        }
      }
      class: tcl


    }
    interp {
      path: modules/interp
      package {
        interp::delegate::method {
          file: deleg_method.tcl
          require: {{Tcl 8.3} snit}
          name: interp::delegate::method
          version: 0.2
        }
        interp::delegate::proc {
          file: deleg_proc.tcl
          require: {{Tcl 8.3}}
          name: interp::delegate::proc
          version: 0.2
        }
        interp {
          file: interp.tcl
          require: {{Tcl 8.3}}
          name: interp
          version: 0.1.2
        }
      }
      class: tcl


    }
    irc {
      path: modules/irc
      package {
        irc {
          file: irc.tcl
          require: {{Tcl 8.3}}
          name: irc
          version: 0.6.1
        }
        picoirc {
          file: picoirc.tcl
          name: picoirc
          version: 0.5.1
        }
      }
      class: tcl
    }
    javascript {
      path: modules/javascript
      package {
        javascript {
          file: javascript.tcl
          require: {{Tcl 8} {ncgi 1}}
          name: javascript
          version: 1.0.2
        }
      }



      class: tcl


    }
    jpeg {
      path: modules/jpeg
      package {
        jpeg {
          file: jpeg.tcl
          name: jpeg
          version: 0.5
        }
      }
      class: tcl
    }
    json {
      path: modules/json
      package {
        json {
          file: json.tcl
          require: {{Tcl 8.4}}
          name: json
          version: 1.3.3
        }
        json::write {
          file: json_write.tcl
          require: {{Tcl 8.5}}
          name: json::write
          version: 1.0.3
        }
        jsonc {
          file: jsonc.tcl
          require: {critcl {Tcl 8.4}}
          name: jsonc
          version: 1.1.2
        }
      }
      class: tcl
    }
    lambda {
      path: modules/lambda
      package {
        lambda {
          file: lambda.tcl
          require: {{Tcl 8.5}}
          name: lambda
          version: 1
        }
      }
      class: tcl
    }
    ldap {
      path: modules/ldap


      package {
        ldap {
          file: ldap.tcl
          require: {{Tcl 8.4} {asn 0.7}}
          name: ldap
          version: 1.8
        }
        ldapx {
          file: ldapx.tcl
          require: {{Tcl 8.4} snit {uri 1.1.5} base64 {ldap 1.6}}
          name: ldapx
          version: 1.0
        }
      }
      class: tcl


    }
    log {

      path: modules/log
      package {
        log {
          file: log.tcl
          require: {{Tcl 8}}
          name: log
          version: 1.3
        }
        logger {
          file: logger.tcl
          require: {{Tcl 8.2}}
          name: logger
          version: 0.9.4
        }
        logger::appender {
          file: loggerAppender.tcl
          require: md5
          name: logger::appender
          version: 1.3
        }
        logger::utils {
          file: loggerUtils.tcl
          require: {{Tcl 8.4} logger logger::appender msgcat}
          name: logger::utils
          version: 1.3
        }
      }
      class: tcl


    }
    map {

      path: modules/map
      package {

        map::geocode::nominatim {
          file: map_geocode_nominatim.tcl
          require: {{Tcl 8.5} http json uri snit}
          name: map::geocode::nominatim
          version: 0.1
        }
        map::slippy {
          file: map_slippy.tcl
          require: {{Tcl 8.4} snit math::constants}
          name: map::slippy
          version: 0.5
        }
        map::slippy::cache {
          file: map_slippy_cache.tcl
          require: {{Tcl 8.4} Tk map::slippy fileutil img::png snit}
          name: map::slippy::cache
          version: 0.2
        }
        map::slippy::fetcher {
          file: map_slippy_fetcher.tcl
          require: {{Tcl 8.4} Tk img::png map::slippy http snit}
          name: map::slippy::fetcher
          version: 0.3
        }
      }
      class: tcl
    }
    mapproj {
      path: modules/mapproj
      package {
        mapproj {
          file: mapproj.tcl
          require: {{Tcl 8.4} {math::interpolate 1.0} {math::special 0.2.1}}
          name: mapproj
          version: 1.0
        }
      }
      class: tcl
    }
    markdown {

      path: modules/markdown
      package {
        Markdown {
          file: markdown.tcl
          require: textutil
          name: Markdown
          version: 1.0
        }
      }
      class: tcl
    }
    math {

      path: modules/math
      package {
        math::bigfloat {
          file: bigfloat2.tcl
          require: {{Tcl 8.5}}

          name: math::bigfloat
          version: 2.0.2
        }
        math::bignum {
          file: bignum.tcl
          require: {{Tcl 8.4}}
          name: math::bignum
          version: 3.1.1
        }
        math::calculus {
          file: calculus.tcl
          require: {{Tcl 8.4} math::interpolate}
          name: math::calculus
          version: 0.8.1
        }
        math::constants {
          file: constants.tcl
          require: {{Tcl 8.2}}
          name: math::constants
          version: 1.0.1
        }
        math::decimal {
          file: decimal.tcl
          require: {{Tcl 8.5}}
          name: math::decimal
          version: 1.0.3
        }
        math::fourier {
          file: fourier.tcl
          name: math::fourier
          version: 1.0.2
        }
        math::fuzzy {
          file: fuzzy.tcl
          name: math::fuzzy
          version: 0.2.1
        }
        math::geometry {
          file: geometry.tcl
          require: math
          name: math::geometry
          version: 1.1.3
        }
        math::interpolate {
          file: interpolate.tcl
          require: {{Tcl 8.4} struct::matrix}
          name: math::interpolate
          version: 1.1
        }
        math::linearalgebra {
          file: linalg.tcl
          require: {{Tcl 8.4}}
          name: math::linearalgebra
          version: 1.1.5
        }
        math::machineparameters {
          file: machineparameters.tcl
          require: snit
          name: math::machineparameters
          version: 0.1
        }
        math::numtheory {
          file: numtheory.tcl
          require: {{Tcl 8.5}}
          name: math::numtheory
          version: 1.0
        }
        math::optimize {
          file: optimize.tcl
          require: {{Tcl 8.4}}
          name: math::optimize
          version: 1.0.1
        }
        math::polynomials {
          file: polynomials.tcl
          name: math::polynomials
          version: 1.0.1
        }
        math::complexnumbers {
          file: qcomplex.tcl
          name: math::complexnumbers
          version: 1.0.2
        }
        math::rationalfunctions {
          file: rational_funcs.tcl
          require: math::polynomials
          name: math::rationalfunctions
          version: 1.0.1
        }
        math::roman {
          file: romannumerals.tcl
          name: math::roman
          version: 1.0
        }
        math::special {
          file: special.tcl
          require: {math math::constants math::statistics}
          name: math::special
          version: 0.3.0
        }
        math::statistics {
          file: statistics.tcl
          require: {{Tcl 8.4} math}
          name: math::statistics
          version: 1.0
        }
        math::calculus::symdiff {
          file: symdiff.tcl
          require: {{Tcl 8.4} {grammar::aycock 1.0}}
          name: math::calculus::symdiff
          version: 1.0
        }
      }
      require: {math::polynomials {Tcl 8.0} {Tcl 8.2} {Tcl 8.2} {math::linearalgebra 1.0}}
      class: tcl


    }
    md4 {

      path: modules/md4
      package {
        md4 {
          file: md4.tcl
          require: {{Tcl 8.2}}
          name: md4
          version: 1.0.6
        }
        md4c {
          file: md4c.tcl
          require: critcl
          name: md4c
          version: 1.1.0
        }
      }
      class: tcl
    }
    md5 {
      path: modules/md5
      package {
        md5 {
          file: md5x.tcl
          require: {{Tcl 8.2}}
          name: md5
          version: 2.0.7
        }
        md5c {
          file: md5c.tcl
          require: critcl
          name: md5c
          version: 0.12
        }
      }


      class: tcl
    }
    md5crypt {
      path: modules/md5crypt
      package {
        md5crypt {
          file: md5crypt.tcl
          require: {{Tcl 8.2} {md5 2}}
          name: md5crypt
          version: 1.1.0
        }
        md5cryptc {
          file: md5cryptc.tcl
          require: critcl

          name: md5cryptc
          version: 1.0
        }
      }
      class: tcl
    }
    mime {
      path: modules/mime
      package {
        mime {
          file: mime.tcl
          require: {{Tcl 8.5}}
          name: mime
          version: 1.6
        }
        smtp {
          file: smtp.tcl
          require: {{Tcl 8.3} {mime 1.4.1}}
          name: smtp
          version: 1.4.5
        }
      }
      class: tcl
    }
    multiplexer {
      path: modules/multiplexer
      package {
        multiplexer {
          file: multiplexer.tcl
          name: multiplexer
          version: 0.2
          require: logger
        }
      }
      class: tcl
    }
    namespacex {
      path: modules/namespacex
      package {
        namespacex {
          file: namespacex.tcl
          require: {{Tcl 8.5}}
          name: namespacex
          version: 0.1
        }
      }
      class: tcl
    }
    ncgi {
      path: modules/ncgi
      package {
        ncgi {
          file: ncgi.tcl
          require: {{Tcl 8.4} fileutil uri}
          name: ncgi
          version: 1.4.3
        }
      }
      class: tcl
    }
    nettool {
      path: modules/nettool
      package {
        nettool {
          file: nettool.tcl
          require: {platform ip}
          name: nettool
          version: 0.5
        }
        nettool::platform::windows {
          file: platform_windows.tcl
          require: twapi
          name: nettool::platform::windows
          version: 0.2
        }
      }
      class: tcl


    }
    nmea {

      path: modules/nmea
      package {
        nmea {
          file: nmea.tcl
          require: {{Tcl 8.4}}
          name: nmea
          version: 1.0.0
        }
      }
      class: tcl
    }
    nns {

      path: modules/nns
      package {
        nameserv::common {
          file: common.tcl
          name: nameserv::common
          version: 0.1
        }
        nameserv {
          file: nns.tcl
          require: {{Tcl 8.4} comm interp logger nameserv::common snit uevent}
          name: nameserv
          version: 0.4.2
        }
        nameserv::auto {
          file: nns_auto.tcl
          require: {{nameserv 0.4.1} uevent}
          name: nameserv::auto
          version: 0.3
        }
        nameserv::cluster {
          file: nns_cluster.tcl
          require: {{Tcl 8.5} comm interp logger uuid cron {nettool 0.4} udp}
          name: nameserv::cluster
          version: 0.2.3
        }
        nameserv::server {
          file: server.tcl
          require: {{Tcl 8.4} comm interp logger nameserv::common}
          name: nameserv::server
          version: 0.3.2
        }
      }
      class: tcl


    }
    nntp {
      path: modules/nntp
      package {
        nntp {
          file: nntp.tcl
          require: {{Tcl 8.2}}
          name: nntp
          version: 0.2.1
        }
      }
      class: tcl


    }
    ntp {

      path: modules/ntp
      package {
        time {
          file: time.tcl
          require: {{Tcl 8.0} log}


          name: time

          version: 1.2.1


        }






      }



      class: tcl


    }
    oauth {

      path: modules/oauth


      package {

        oauth {
          file: oauth.tcl
          require: {{Tcl 8.5} http tls base64 sha1}
          name: oauth

          version: 1


        }






      }










      class: tcl


    }
    odie {















      path: modules/odie


      package {

        odie {
          file: index.tcl
          name: odie

          version: 0.2


        }
        listutil {
          file: listutil.tcl
          name: listutil

          version: 1.7


        }
        http::wget {
          file: urlget.tcl
          name: http::wget
          version: 0.1
          require: http
        }
      }
      class: tcl



    }
    oohtml {

      path: modules/oohtml


      package {

        oo::html {
          file: oohtml.tcl



          require: {{Tcl 8.5} TclOO}


          name: oo::html

          version: 0.1


        }






      }



      class: tcl


    }
    ooutil {

      path: modules/ooutil


      package {

        oo::meta {
          file: oometa.tcl
          name: oo::meta

          version: 0.3


        }
        oo::option {



          file: oooption.tcl
          require: oo::meta
          name: oo::option
          version: 0.2
        }
        oo::properties {
          file: ooproperties.tcl
          name: oo::properties

          version: 0.1


        }
        oo::util {
          file: ooutil.tcl
          require: {{Tcl 8.5} TclOO}
          name: oo::util

          version: 1.2.2

        }
      }



      class: tcl


    }
    otp {

      path: modules/otp


      package {

        otp {
          file: otp.tcl






          require: {{Tcl 8.2}}













          name: otp

          version: 1.0.0



        }






      }



      class: tcl

    }
    page {

      path: modules/page


      package {
        page::analysis::peg::emodes {
          file: analysis_peg_emodes.tcl
          require: {page::plugin page::util::flow page::util::peg treeql}
          name: page::analysis::peg::emodes
          version: 0.1
        }
        page::analysis::peg::minimize {
          file: analysis_peg_minimize.tcl
          require: {page::plugin page::analysis::peg::reachable page::analysis::peg::realizable}





          name: page::analysis::peg::minimize

          version: 0.1


        }
        page::analysis::peg::reachable {
          file: analysis_peg_reachable.tcl
          require: {page::plugin page::util::flow page::util::peg}
          name: page::analysis::peg::reachable

          version: 0.1


        }

        page::analysis::peg::realizable {


          file: analysis_peg_realizable.tcl
          require: {page::plugin page::util::flow page::util::peg treeql}


          name: page::analysis::peg::realizable

          version: 0.1


        }
        page::compiler::peg::mecpu {
          file: compiler_peg_mecpu.tcl
          require: {page::plugin grammar::me::cpu::gasm textutil struct::graph page::analysis::peg::emodes page::util::quote page::util::peg}

          name: page::compiler::peg::mecpu

          version: 0.1.1



        }
        page::gen::peg::canon {
          file: gen_peg_canon.tcl

          require: textutil




          name: page::gen::peg::canon

          version: 0.1


        }

        page::gen::peg::cpkg {
          file: gen_peg_cpkg.tcl
          require: page::util::peg




          name: page::gen::peg::cpkg

          version: 0.1


        }
        page::gen::peg::hb {
          file: gen_peg_hb.tcl
          require: page::util::peg
          name: page::gen::peg::hb

          version: 0.1


        }
        page::gen::peg::me {
          file: gen_peg_me.tcl
          require: {page::plugin textutil page::analysis::peg::emodes page::util::quote page::util::peg}





          name: page::gen::peg::me

          version: 0.1


        }
        page::gen::peg::mecpu {
          file: gen_peg_mecpu.tcl
          require: {page::plugin grammar::me::cpu::core textutil}
          name: page::gen::peg::mecpu

          version: 0.1


        }
        page::gen::peg::ser {



          file: gen_peg_ser.tcl

          require: {grammar::peg page::util::quote page::util::peg}


          name: page::gen::peg::ser

          version: 0.1


        }
        page::gen::tree::text {
          file: gen_tree_text.tcl
          require: page::util::quote

          name: page::gen::tree::text

          version: 0.1


        }

        page::parse::lemon {

          file: parse_lemon.tcl
          require: grammar::me::tcl



          name: page::parse::lemon










          version: 0.1

        }
        page::parse::peg {

          file: parse_peg.tcl
          require: grammar::me::tcl
          name: page::parse::peg
          version: 0.1

        }






        page::parse::peghb {
          file: parse_peghb.tcl
          name: page::parse::peghb
          version: 0.1

        }



        page::parse::pegser {



          file: parse_pegser.tcl
          require: grammar::peg
          name: page::parse::pegser
          version: 0.1

        }
        pg::peg::grammar {

          file: peg_grammar.tcl
          require: grammar::peg
          name: pg::peg::grammar
          version: 0.1

        }
        page::pluginmgr {

          file: pluginmgr.tcl
          require: {fileutil pluginmgr}
          name: page::pluginmgr
          version: 0.2

        }
        page::util::flow {

          file: util_flow.tcl
          require: snit
          name: page::util::flow







          version: 0.1

        }



        page::util::norm::lemon {



          file: util_norm_lemon.tcl
          require: {page::plugin treeql page::util::quote page::util::peg}
          name: page::util::norm::lemon
          version: 0.1

        }



        page::util::norm::peg {




          file: util_norm_peg.tcl







          require: {page::plugin treeql page::util::quote}
          name: page::util::norm::peg
          version: 0.1

        }
        page::util::peg {

          file: util_peg.tcl
          require: page::util::quote
          name: page::util::peg
          version: 0.1

        }
        page::util::quote {
          file: util_quote.tcl

          name: page::util::quote
          version: 0.1

        }






      }



      class: tcl


    }
    pki {
      path: modules/pki
      package {
        pki {
          file: pki.tcl
          require: {{Tcl 8.5} {asn 0.8.4} aes des math::bignum {md5 2} sha1 sha256}
          name: pki
          version: 0.6

        }






      }





      class: tcl
    }


    pluginmgr {


      path: modules/pluginmgr
      package {

        pluginmgr {
          file: pluginmgr.tcl
          require: {{Tcl 8.4} snit}
          name: pluginmgr
          version: 0.3

        }






      }




      class: tcl

    }
    png {
      path: modules/png
      package {
        png {
          file: png.tcl

          name: png
          version: 0.2

        }






      }



      class: tcl

    }




    pop3 {
      path: modules/pop3
      package {
        pop3 {


          file: pop3.tcl
          require: {{Tcl 8.4} cmdline log}
          name: pop3
          version: 1.9

        }






      }



      class: tcl


    }


    pop3d {


      path: modules/pop3d

      package {
        pop3d {
          file: pop3d.tcl
          require: {md5 mime log}
          name: pop3d
          version: 1.1.0

        }
        pop3d::dbox {

          file: pop3d_dbox.tcl
          require: {mime log}
          name: pop3d::dbox
          version: 1.0.2

        }


        pop3d::udb {





          file: pop3d_udb.tcl

          name: pop3d::udb







          version: 1.1

        }
      }

      class: tcl


    }
    processman {
      path: modules/processman
      package {
        processman {
          file: processman.tcl
          require: {{cron 1.1}}
          name: processman
          version: 0.3

        }






      }
      class: tcl
    }
    profiler {
      path: modules/profiler
      package {
        profiler {
          file: profiler.tcl
          require: {{Tcl 8.3}}
          name: profiler
          version: 0.3

        }






      }

      class: tcl




    }


    pt {


      path: modules/pt



      package {



        char {












          file: char.tcl
          require: {{Tcl 8.5}}
          name: char
          version: 1.0.1

        }
        configuration {

          file: configuration.tcl
          require: {{Tcl 8.5} snit}
          name: configuration
          version: 1

        }




        paths {



          file: paths.tcl
          require: {{Tcl 8.5} snit}
          name: paths
          version: 1

        }



        pt::ast {




          file: pt_astree.tcl
          require: {{Tcl 8.5} char}
          name: pt::ast
          version: 1.1

        }




        pt::cparam::configuration::critcl {



          file: pt_cparam_config_critcl.tcl
          require: {{Tcl 8.5}}
          name: pt::cparam::configuration::critcl
          version: 1.0.2

        }
        pt::cparam::configuration::tea {
          file: pt_cparam_config_tea.tcl
          require: {{Tcl 8.5}}
          name: pt::cparam::configuration::tea
          version: 0.1

        }
        pt::parse::peg {
          file: pt_parse_peg.tcl
          require: {{Tcl 8.5}}
          name: pt::parse::peg
          version: 1.0.1

        }




        pt_parse_peg_c {










          file: pt_parse_peg_c.tcl
          require: {{Tcl 8.4} critcl}
          name: pt_parse_peg_c
          version: 1.0.1

        }
        pt::parse::peg_tcl {
          file: pt_parse_peg_tcl.tcl







          require: {{Tcl 8.5} snit pt::rde}
          name: pt::parse::peg_tcl
          version: 1.0.1

        }
        pt::peg::container {

          file: pt_peg_container.tcl
          require: {{Tcl 8.5} snit pt::pe pt::peg}







          name: pt::peg::container
          version: 1

        }
        pt::peg::container::peg {
          file: pt_peg_container_peg.tcl
          require: {{Tcl 8.5} snit pt::peg::container}
          name: pt::peg::container::peg
          version: 1

        }



        pt::peg::export {




          file: pt_peg_export.tcl
          require: {{Tcl 8.5} configuration pt::peg pluginmgr snit}
          name: pt::peg::export
          version: 1

        }
        pt::peg::export::container {
          file: pt_peg_export_container.tcl
          require: pt::peg::to::container
          name: pt::peg::export::container
          version: 1

        }





















        pt::peg::export::json {
          file: pt_peg_export_json.tcl
          require: {{Tcl 8.5} pt::peg::export::plugin pt::peg::to::json}
          name: pt::peg::export::json
          version: 1

        }
        pt::peg::export::peg {
          file: pt_peg_export_peg.tcl
          require: pt::peg::to::peg




          name: pt::peg::export::peg



          version: 1

        }
        pt::peg::from::json {
          file: pt_peg_from_json.tcl
          require: {{Tcl 8.5} pt::peg json}
          name: pt::peg::from::json
          version: 1

        }
        pt::peg::from::peg {

          file: pt_peg_from_peg.tcl
          require: {{Tcl 8.5} pt::peg pt::parse::peg pt::ast pt::pe pt::pe::op}
          name: pt::peg::from::peg
          version: 1.0.3

        }

        pt::peg::import {






          file: pt_peg_import.tcl
          require: {{Tcl 8.5} paths pt::peg pluginmgr snit}







          name: pt::peg::import
          version: 1

        }




        pt::peg::import::json {



          file: pt_peg_import_json.tcl
          require: {{Tcl 8.5} pt::peg::import::plugin pt::peg::from::json}
          name: pt::peg::import::json
          version: 1

        }
        pt::peg::import::peg {
          file: pt_peg_import_peg.tcl
          require: {{Tcl 8.5} pt::peg::import::plugin pt::peg::from::peg}
          name: pt::peg::import::peg
          version: 1

        }
        pt::peg::interp {
          file: pt_peg_interp.tcl







          require: {{Tcl 8.5} pt::rde snit}
          name: pt::peg::interp
          version: 1.0.1

        }
        pt::peg::op {
          file: pt_peg_op.tcl
          require: {{Tcl 8.5} pt::pe pt::pe::op struct::set}
          name: pt::peg::op







          version: 1.0.1

        }
        pt::peg::to::container {
          file: pt_peg_to_container.tcl
          require: {{Tcl 8.5} pt::peg pt::pe text::write char}
          name: pt::peg::to::container
          version: 1

        }
        pt::peg::to::cparam {
          file: pt_peg_to_cparam.tcl

          name: pt::peg::to::cparam
          version: 1.1.3

        }
        pt::peg::to::json {
          file: pt_peg_to_json.tcl
          require: {{Tcl 8.5} pt::peg json::write}







          name: pt::peg::to::json
          version: 1

        }














        pt::peg::to::param {
          file: pt_peg_to_param.tcl

          name: pt::peg::to::param
          version: 1.0.1

        }
        pt::peg::to::peg {
          file: pt_peg_to_peg.tcl

          name: pt::peg::to::peg
          version: 1.0.2

        }
        pt::peg::to::tclparam {
          file: pt_peg_to_tclparam.tcl

          name: pt::peg::to::tclparam
          version: 1.0.3

        }
        pt::peg {
          file: pt_pegrammar.tcl
          require: {{Tcl 8.5} pt::pe}
          name: pt::peg
          version: 1

        }









        pt::pe::op {












          file: pt_pexpr_op.tcl







          require: {{Tcl 8.5} pt::pe struct::set}






          name: pt::pe::op
          version: 1


        }
        pt::pe {

          file: pt_pexpression.tcl
          require: {{Tcl 8.5} char}
          name: pt::pe
          version: 1.0.2

        }
        pt::pgen {
          file: pt_pgen.tcl
          require: {{Tcl 8.5} fileutil pt::peg::from::json pt::peg::from::peg pt::peg::to::container pt::peg::to::json pt::peg::to::peg pt::peg::to::param pt::peg::to::tclparam pt::peg::to::cparam {pt::tclparam::configuration::snit 1.0.2} {pt::tclparam::configuration::tcloo 1.0.4} {pt::cparam::configuration::critcl 1.0.2} pt::cparam::configuration::tea}
          name: pt::pgen
          version: 1.0.3

        }
        pt::rde {

          file: pt_rdengine.tcl
          require: {{Tcl 8.5} debug}
          name: pt::rde
          version: 1.1

        }
        pt::rde::critcl {
          file: pt_rdengine_c.tcl
          require: {{Tcl 8.4} critcl}
          name: pt::rde::critcl
          version: 1.3.3

        }
        pt::rde::oo {
          file: pt_rdengine_oo.tcl
          require: {{Tcl 8.5} TclOO {struct::stack 1.5} pt::ast pt::pe debug}
          name: pt::rde::oo
          version: 1.1

        }




        pt::tclparam::configuration::snit {



          file: pt_tclparam_config_snit.tcl
          require: {{Tcl 8.5}}
          name: pt::tclparam::configuration::snit
          version: 1.0.2

        }




        pt::tclparam::configuration::tcloo {



          file: pt_tclparam_config_tcloo.tcl
          require: {{Tcl 8.5}}
          name: pt::tclparam::configuration::tcloo
          version: 1.0.4

        }



        pt::util {




          file: pt_util.tcl
          require: {{Tcl 8.5} char}
          name: pt::util
          version: 1

        }
        text::write {

          file: text_write.tcl
          require: {{Tcl 8.5} textutil::adjust}
          name: text::write
          version: 1

        }













      }


      require: {{Tcl 8.5} snit {struct::stack 1.5} pt::ast pt::pe debug}

      class: tcl

    }
    rc4 {
      path: modules/rc4
      package {
        rc4 {
          file: rc4.tcl
          require: {{Tcl 8.2}}
          name: rc4






          version: 1.1.0


        }



        rc4c {

          file: rc4c.tcl


          require: critcl
          name: rc4c
          version: 1.1.0


        }






      }


      class: tcl



    }
    rcs {
      path: modules/rcs
      package {
        rcs {

          file: rcs.tcl
          require: {{Tcl 8.4}}
          name: rcs
          version: 0.1

        }






      }



      class: tcl

    }




    report {
      path: modules/report

      package {
        report {
          file: report.tcl
          require: {{Tcl 8.2}}
          name: report
          version: 0.3.2

        }





      }



      class: tcl

    }


    rest {


      path: modules/rest








      package {

        rest {




          file: rest.tcl
          require: {{Tcl 8.5} {http 2.7} json tdom base64}








































          name: rest
          version: 1.0.1
        }
      }
      class: tcl
    }
    ripemd {
      path: modules/ripemd
      package {
        ripemd128 {
          file: ripemd128.tcl
          require: {{Tcl 8.2}}
          name: ripemd128
          version: 1.0.5

        }
        ripemd160 {

          file: ripemd160.tcl
          require: {{Tcl 8.2}}
          name: ripemd160
          version: 1.0.5
        }
      }
      class: tcl
    }
    sasl {
      path: modules/sasl
      package {
        SASL::XGoogleToken {

          file: gtoken.tcl
          require: {{Tcl 8.2} SASL http tls}
          name: SASL::XGoogleToken
          version: 1.0.1
        }
        SASL::NTLM {
          file: ntlm.tcl
          require: {{Tcl 8.2} {SASL 1.0} {des 1.0} md4}
          name: SASL::NTLM
          version: 1.1.2
        }
        SASL {
          file: sasl.tcl
          require: {{Tcl 8.2}}






          name: SASL
          version: 1.3.3

        }
        SASL::SCRAM {

          file: scram.tcl
          require: {{Tcl 8.2} SASL sha1 base64}
          name: SASL::SCRAM
          version: 0.1

        }





      }



      class: tcl


    }


    scgi {


      path: modules/scgi
      package {
        scgi::app {


          file: scgi-app.tcl
          require: {html TclOO oo::meta}
          name: scgi::app
          version: 0.1

        }




        scgi::server {



          file: scgi-server.tcl

          name: scgi::server
          version: 0.1

        }






      }



      class: tcl


    }
    sha1 {
      path: modules/sha1
      package {
        sha1 {
          file: sha1v1.tcl
          require: {{Tcl 8.2}}
          name: sha1
          version: 1.1.1

        }
        sha1c {
          file: sha1c.tcl
          require: critcl
          name: sha1c
          version: 2.0.3

        }




        sha256 {
          file: sha256.tcl



          require: {{Tcl 8.2}}
          name: sha256
          version: 1.0.3

        }




        sha256c {
          file: sha256c.tcl



          require: critcl
          name: sha256c
          version: 1.0.2

        }






      }



      class: tcl


    }
    simulation {
      path: modules/simulation
      package {
        simulation::annealing {
          file: annealing.tcl
          require: {{Tcl 8.4}}
          name: simulation::annealing
          version: 0.2

        }




        simulation::montecarlo {
          file: montecarlo.tcl



          require: {{Tcl 8.4} simulation::random math::statistics}
          name: simulation::montecarlo
          version: 0.1

        }




        simulation::random {



          file: random.tcl
          require: {{Tcl 8.4}}
          name: simulation::random
          version: 0.3.1

        }






      }





      class: tcl
    }




    smtpd {





      path: modules/smtpd

      package {
        smtpd {
          file: smtpd.tcl
          require: {{Tcl 8.3} logger mime}
          name: smtpd
          version: 1.5

        }






      }





      class: tcl
    }
    snit {
      path: modules/snit
      package {
        snit {

          file: snit2.tcl






          require: {{Tcl 8.5}}
          name: snit
          version: 2.3.2

        }






      }




      class: tcl
    }
    soundex {




      path: modules/soundex
      package {

        soundex {
          file: soundex.tcl
          require: {{Tcl 8.2}}
          name: soundex
          version: 1.0

        }





      }





      class: tcl
    }
    stooop {
      path: modules/stooop
      package {
        stooop {
          file: stooop.tcl
          require: {{Tcl 8.3}}
          name: stooop
          version: 4.4.1

        }

        switched {






          file: switched.tcl
          require: stooop
          name: switched
          version: 2.2.1

        }
      }


      class: tcl


    }
    string {
      path: modules/string
      package {
        string::token {
          file: token.tcl
          require: {{Tcl 8.5} fileutil}
          name: string::token
          version: 1

        }
        string::token::shell {

          file: token_shell.tcl
          require: {{Tcl 8.5} string::token}
          name: string::token::shell
          version: 1.2

        }
      }


      class: tcl


    }


    stringprep {


      path: modules/stringprep
      package {

        stringprep {
          file: stringprep.tcl
          require: {{stringprep::data 1.0} {unicode 1.0}}
          name: stringprep
          version: 1.0.1

        }
        stringprep::data {

          file: stringprep_data.tcl

          name: stringprep::data
          version: 1.0.1

        }
        unicode {

          file: unicode.tcl
          require: {{unicode::data 1.0}}
          name: unicode






          version: 1.0.0


        }
        unicode::data {

          file: unicode_data.tcl

          name: unicode::data
          version: 1.0.0

        }






      }



      class: tcl


    }
    struct {
      path: modules/struct
      package {
        struct::disjointset {








          file: disjointset.tcl
          require: {{Tcl 8.2} struct::set}
          name: struct::disjointset
          version: 1.0

        }


        struct::graph {




          file: graph1.tcl

          name: struct::graph
          version: 1.2.1

        }








        struct_graphc {






          file: graph_c.tcl
          require: {critcl {Tcl 8.2}}
          name: struct_graphc
          version: 2.1

        }
        struct::graph::op {
          file: graphops.tcl
          require: {{Tcl 8.5} struct::disjointset struct::prioqueue struct::queue struct::stack struct::graph struct::tree}
          name: struct::graph::op
          version: 0.11.3

        }
        struct::list {
          file: list.tcl
          require: {{Tcl 8.4} cmdline}
          name: struct::list
          version: 1.8.3

        }
        struct::matrix {

          file: matrix1.tcl
          require: {{Tcl 8.2}}
          name: struct::matrix






          version: 1.2.1







        }
        struct::pool {
          file: pool.tcl


          require: cmdline





          name: struct::pool
          version: 1.2.3

        }
        struct::prioqueue {
          file: prioqueue.tcl






          require: {{Tcl 8.2}}
          name: struct::prioqueue
          version: 1.4

        }


        struct::queue {




          file: queue.tcl
          require: {{Tcl 8.4}}
          name: struct::queue
          version: 1.4.5

        }
        struct_queuec {

          file: queue_c.tcl
          require: {critcl {Tcl 8.4}}
          name: struct_queuec
          version: 1.3.1

        }
        struct::record {





          file: record.tcl




          name: struct::record
          version: 1.2.1

        }
        struct::set {

          file: sets.tcl
          require: {{Tcl 8.2}}
          name: struct::set
          version: 2.2.3

        }
        struct_setc {

          file: sets_c.tcl
          require: {critcl {Tcl 8.4}}







          name: struct_setc
          version: 2.1.1

        }
        struct::skiplist {

          file: skiplist.tcl

          name: struct::skiplist
          version: 1.3

        }
        struct::stack {







          file: stack.tcl
          require: {{Tcl 8.4}}
          name: struct::stack
          version: 1.5.3

        }
        struct_stackc {

          file: stack_c.tcl
          require: {critcl {Tcl 8.4}}
          name: struct_stackc
          version: 1.3.1

        }




        struct {



          file: struct1.tcl
          require: {{Tcl 8.2} {struct::graph 1.2.1} {struct::queue 1.2.1} {struct::stack 1.2.1} {struct::tree 1.2.1} {struct::matrix 1.2.1} {struct::pool 1.2.1} {struct::record 1.2.1} {struct::list 1.4} {struct::prioqueue 1.3} {struct::skiplist 1.3}}

          name: struct
          version: 1.4

        }

        struct::tree {






          file: tree1.tcl
          require: {{Tcl 8.2}}
          name: struct::tree
          version: 1.2.2

        }
        struct_treec {

          file: tree_c.tcl
          require: {critcl {Tcl 8.2}}
          name: struct_treec
          version: 2.1.1

        }





      }


      require: {{Tcl 8.4} struct::list struct::set {Tcl 8.5} {TclOO 0.6.1-} {Tcl 8.0} {Tcl 8.5} {TclOO 0.6.1-} {Tcl 8.2} struct::list}

      class: tcl

    }
    tar {




      path: modules/tar

      package {
        tar {
          file: tar.tcl
          require: {{Tcl 8.4}}
          name: tar
          version: 0.10

        }






      }




      class: tcl

    }








    tcllibc.tcl {



      path: modules/tcllibc.tcl




      class: tcl

    }



    tepam {

      path: modules/tepam
      package {

        tepam {
          file: tepam.tcl
          require: {{Tcl 8.3}}
          name: tepam
          version: 0.5

        }
        tepam::doc_gen {

          file: tepam_doc_gen.tcl
          require: {{Tcl 8.3} {tepam 0.5}}
          name: tepam::doc_gen
          version: 0.1.1

        }
      }


      class: tcl


    }




    term {
      path: modules/term
      package {

        term::receive::bind {
          file: bind.tcl
          require: {snit term::receive}
          name: term::receive::bind
          version: 0.1

        }



        term::interact::menu {



          file: imenu.tcl
          require: {snit textutil::repeat textutil::tabify term::ansi::send term::receive::bind term::ansi::code::ctrl}
          name: term::interact::menu
          version: 0.1

        }
        term::interact::pager {
          file: ipager.tcl
          require: {snit textutil::repeat textutil::tabify term::ansi::send term::receive::bind term::ansi::code::ctrl}
          name: term::interact::pager
          version: 0.1

        }
        term::receive {

          file: receive.tcl

          name: term::receive
          version: 0.1

        }




        term::send {



          file: send.tcl

          name: term::send
          version: 0.1

        }
        term {
          file: term.tcl

          name: term
          version: 0.1

        }






      }





      class: tcl
    }


    textutil {


      path: modules/textutil

      package {
        textutil::adjust {
          file: adjust.tcl
          require: {{Tcl 8.2} textutil::repeat textutil::string}
          name: textutil::adjust
          version: 0.7.3

        }
        textutil::expander {

          file: expander.tcl

          name: textutil::expander
          version: 1.3.1

        }
        textutil::repeat {
          file: repeat.tcl
          require: {{Tcl 8.2}}
          name: textutil::repeat
          version: 0.7








        }
        textutil::split {
          file: split.tcl
          require: {{Tcl 8.2}}
          name: textutil::split
          version: 0.7

        }
        textutil::string {





          file: string.tcl



          require: {{Tcl 8.2}}
          name: textutil::string
          version: 0.8

        }


        textutil::tabify {


          file: tabify.tcl



          require: {{Tcl 8.2} textutil::repeat}
          name: textutil::tabify
          version: 0.7

        }

        textutil {






          file: textutil.tcl
          require: {{Tcl 8.2} textutil::string textutil::repeat textutil::adjust textutil::split textutil::tabify textutil::trim}







          name: textutil
          version: 0.8

        }
        textutil::trim {




          file: trim.tcl



          require: {{Tcl 8.2}}







          name: textutil::trim
          version: 0.7

        }






      }




      class: tcl
    }




    tie {
      path: modules/tie


      package {

        tie {
          file: tie.tcl


          require: {snit cmdline}
          name: tie
          version: 1.1

        }




        tie::std::array {


          file: tie_array.tcl
          require: {snit tie}
          name: tie::std::array
          version: 1.0

        }
        tie::std::dsource {
          file: tie_dsource.tcl







          require: {snit tie}
          name: tie::std::dsource
          version: 1.0

        }

        tie::std::file {






          file: tie_file.tcl
          require: {snit tie}
          name: tie::std::file
          version: 1.0.4

        }
        tie::std::growfile {
          file: tie_growfile.tcl
          require: {snit tie}
          name: tie::std::growfile
          version: 1.0

        }
        tie::std::log {




          file: tie_log.tcl



          require: {snit log tie snit}
          name: tie::std::log
          version: 1.0

        }





        tie::std::rarray {


          file: tie_rarray.tcl
          require: {snit tie}
          name: tie::std::rarray
          version: 1.0

        }






      }



      class: tcl


    }









    tiff {


      path: modules/tiff



      package {
        tiff {




          file: tiff.tcl

          name: tiff
          version: 0.2.1

        }






      }



      class: tcl


    }




    transfer {
      path: modules/transfer
      package {




        transfer::connect {




          file: connect.tcl
          require: snit
          name: transfer::connect
          version: 0.2

        }
        transfer::copy {
          file: copyops.tcl
          require: {{Tcl 8.4}}
          name: transfer::copy
          version: 0.3

        }
        transfer::data::destination {

          file: ddest.tcl
          require: snit
          name: transfer::data::destination
          version: 0.2

        }
        transfer::data::source {






          file: dsource.tcl
          require: {transfer::copy snit}
          name: transfer::data::source
          version: 0.2

        }
        transfer::receiver {

          file: receiver.tcl
          require: {snit transfer::data::destination transfer::connect}
          name: transfer::receiver
          version: 0.2

        }
        transfer::copy::queue {

          file: tqueue.tcl
          require: {transfer::copy struct::queue snit {Tcl 8.4}}
          name: transfer::copy::queue
          version: 0.1

        }




        transfer::transmitter {



          file: transmitter.tcl
          require: {snit transfer::data::source transfer::connect}
          name: transfer::transmitter







          version: 0.2

        }
      }




      class: tcl

    }
    treeql {
      path: modules/treeql
      package {
        treeql {

          file: treeql.tcl
          require: {{Tcl 8.4}}
          name: treeql
          version: 1.3.1

        }
      }

      require: {{Tcl 8.4} snit struct::list struct::set {Tcl 8.5} snit struct::list struct::set}
      class: tcl
    }
    try {
      path: modules/try
      package {

        throw {
          file: throw.tcl

          name: throw
          version: 1




          require: {{Tcl 8.5}}



        }


        try {





          file: try.tcl

          name: try
          version: 1
          require: {{Tcl 8.5}}
        }






      }

      class: tcl




    }
    uev {
      path: modules/uev
      package {
        uevent {
          file: uevent.tcl
          require: {{Tcl 8.4} logger}
          name: uevent
          version: 0.3.1

        }
        uevent::onidle {

          file: uevent_onidle.tcl
          require: {{Tcl 8.4} snit}
          name: uevent::onidle
          version: 0.1

        }





      }



      class: tcl


    }
    units {
      path: modules/units
      package {
        units {
          file: units.tcl
          name: units
          version: 2.1.1




          require: {{Tcl 8.1}}



        }






      }



      class: tcl

    }


    uri {


      path: modules/uri










      package {




        uri {
          file: uri.tcl
          require: {{Tcl 8.2}}
          name: uri
          version: 1.2.5

        }
        uri::urn {
          file: urn-scheme.tcl
          require: {{uri 1.1.2}}
          name: uri::urn







          version: 1.0.3

        }






      }

      class: tcl




    }


    uuid {


      path: modules/uuid
      package {

        uuid {
          file: uuid.tcl
          name: uuid
          version: 1.0.5

        }






      }


      class: tcl



    }
    valtype {
      path: modules/valtype
      package {
        valtype::creditcard::amex {

          file: cc_amex.tcl
          require: {{Tcl 8.5} snit valtype::luhn valtype::common}
          name: valtype::creditcard::amex
          version: 1

        }
        valtype::creditcard::discover {
          file: cc_discover.tcl
          require: {{Tcl 8.5} snit valtype::luhn valtype::common}
          name: valtype::creditcard::discover
          version: 1

        }
        valtype::creditcard::mastercard {

          file: cc_mastercard.tcl
          require: {{Tcl 8.5} snit valtype::luhn valtype::common}







          name: valtype::creditcard::mastercard







          version: 1

        }
        valtype::creditcard::visa {

          file: cc_visa.tcl
          require: {{Tcl 8.5} snit valtype::luhn valtype::common}
          name: valtype::creditcard::visa
          version: 1

        }
        valtype::gs1::ean13 {
          file: ean13.tcl
          require: {{Tcl 8.5} snit valtype::common}
          name: valtype::gs1::ean13
          version: 1

        }





        valtype::iban {


          file: iban.tcl
          require: {{Tcl 8.5} snit valtype::common}
          name: valtype::iban














          version: 1.5

        }





        valtype::imei {


          file: imei.tcl
          require: {{Tcl 8.5} snit valtype::luhn valtype::common}
          name: valtype::imei
          version: 1

        }
        valtype::isbn {
          file: isbn.tcl
          require: {{Tcl 8.5} snit valtype::common}
          name: valtype::isbn
          version: 1

        }
        valtype::luhn {
          file: luhn.tcl
          require: {{Tcl 8.5} snit valtype::common}
          name: valtype::luhn
          version: 1

        }
        valtype::luhn5 {
          file: luhn5.tcl
          require: {{Tcl 8.5} snit valtype::common}





          name: valtype::luhn5







          version: 1

        }

        valtype::usnpi {





          file: usnpi.tcl
          require: {{Tcl 8.5} snit valtype::luhn valtype::common}
          name: valtype::usnpi
          version: 1

        }
        valtype::common {
          file: valtype.tcl
          require: {{Tcl 8.5}}
          name: valtype::common
          version: 1

        }
        valtype::verhoeff {
          file: verhoeff.tcl
          require: {{Tcl 8.5} snit valtype::common}
          name: valtype::verhoeff
          version: 1

        }






      }



      class: tcl


    }
    virtchannel_base {
      path: modules/virtchannel_base
      package {
        tcl::chan::cat {
          file: cat.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::core}







          name: tcl::chan::cat
          version: 1.0.2

        }
        tcl::chan::facade {
          file: facade.tcl
          require: {{Tcl 8.5} TclOO logger tcl::chan::core}
          name: tcl::chan::facade
          version: 1.0.1

        }
        tcl::chan::fifo {
          file: fifo.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::events}
          name: tcl::chan::fifo
          version: 1

        }
        tcl::chan::fifo2 {
          file: fifo2.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::halfpipe}
          name: tcl::chan::fifo2







          version: 1

        }
        tcl::chan::halfpipe {
          file: halfpipe.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::events}
          name: tcl::chan::halfpipe
          version: 1

        }

        tcl::chan::memchan {






          file: memchan.tcl






          require: {{Tcl 8.5} TclOO tcl::chan::events}
          name: tcl::chan::memchan
          version: 1.0.3

        }
        tcl::chan::null {
          file: null.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::events}
          name: tcl::chan::null
          version: 1

        }
        tcl::chan::nullzero {

          file: nullzero.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::events}
          name: tcl::chan::nullzero
          version: 1

        }
        tcl::chan::random {
          file: random.tcl
          require: {tcl::chan::events {Tcl 8.5} TclOO}
          name: tcl::chan::random
          version: 1

        }





        tcl::randomseed {


          file: randseed.tcl
          require: {{Tcl 8.5}}














          name: tcl::randomseed
          version: 1

        }

        tcl::chan::std {
          file: std.tcl

          require: {{Tcl 8.5} TclOO tcl::chan::core}




          name: tcl::chan::std
          version: 1.0.1


        }
        tcl::chan::string {

          file: string.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::events}
          name: tcl::chan::string
          version: 1.0.2

        }
        tcl::chan::textwindow {

          file: textwindow.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::events}






          name: tcl::chan::textwindow
          version: 1


        }
        tcl::chan::variable {
          file: variable.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::events}
          name: tcl::chan::variable
          version: 1.0.3

        }
        tcl::chan::zero {
          file: zero.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::events}






          name: tcl::chan::zero







          version: 1

        }






      }




      class: tcl

    }

    virtchannel_core {



      path: modules/virtchannel_core
      package {

        tcl::chan::core {
          file: core.tcl
          require: {{Tcl 8.5} TclOO}
          name: tcl::chan::core
          version: 1

        }
        tcl::chan::events {
          file: events.tcl
          require: {{Tcl 8.5} TclOO tcl::chan::core}
          name: tcl::chan::events







          version: 1

        }

        tcl::transform::core {






          file: transformcore.tcl







          require: {{Tcl 8.6}}
          name: tcl::transform::core
          version: 1

        }
      }



      class: tcl

    }
    virtchannel_transform {
      path: modules/virtchannel_transform
      package {
        tcl::transform::adler32 {

          file: adler32.tcl
          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::adler32
          version: 1

        }
        tcl::transform::base64 {

          file: base64.tcl
          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::base64
          version: 1

        }
        tcl::transform::counter {
          file: counter.tcl
          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::counter
          version: 1

        }







        tcl::transform::crc32 {
          file: crc32.tcl
          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::crc32
          version: 1








        }
        tcl::transform::hex {
          file: hex.tcl
          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::hex
          version: 1

        }







        tcl::transform::identity {
          file: identity.tcl
          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::identity
          version: 1

        }
        tcl::transform::limitsize {







          file: limitsize.tcl







          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::limitsize
          version: 1

        }
        tcl::transform::observe {
          file: observe.tcl
          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::observe
          version: 1

        }
        tcl::transform::otp {
          file: otp.tcl
          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::otp







          version: 1

        }







        tcl::transform::rot {
          file: rot.tcl
          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::rot
          version: 1

        }
        tcl::transform::spacer {
          file: spacer.tcl














          require: {{Tcl 8.6} tcl::transform::core}
          name: tcl::transform::spacer
          version: 1

        }
        tcl::transform::zlib {
          file: zlib.tcl
          require: {{Tcl 8.6} tcl::transform::core}







          name: tcl::transform::zlib
          version: 1.0.1

        }
      }



      class: tcl


    }
    websocket {
      path: modules/websocket
      package {
        websocket {

          file: websocket.tcl
          require: {{Tcl 8.5} {http 2.7} logger sha1 base64}
          name: websocket
          version: 1.4

        }
      }



      class: tcl


    }




    wip {
      path: modules/wip

      package {
        wip {
          file: wip2.tcl
          require: {{Tcl 8.5} {snit 1.3-} struct::set}
          name: wip
          version: 2.2

        }






      }



      class: tcl


    }



    yaml {

      path: modules/yaml


      package {


        huddle {



          file: huddle.tcl

          name: huddle
          version: 0.1.5

        }
        yaml {

          file: yaml.tcl



























          name: yaml
          version: 0.3.7
          require: {cmdline huddle}
        }
      }
      class: tcl
    }
    zip {
      path: modules/zip
      package {
        zipfile::decode {
          file: decode.tcl
          require: {{Tcl 8.4} fileutil::magic::mimetype {fileutil::decode 0.2}}
          name: zipfile::decode
          version: 0.7

        }
        zipfile::encode {
          file: encode.tcl
          require: {{Tcl 8.4} logger Trf crc32 snit zlibtcl fileutil}
          name: zipfile::encode
          version: 0.3

        }
        zipfile::mkzip {
          file: mkzip.tcl
          require: {{Tcl 8.6}}
          name: zipfile::mkzip
          version: 1.2
        }
      }
      class: tcl
    }
  }
}

<
<
|
<
|
<
|
<
<
<
>
|
>
|
>
>
>
|
>
>
>
|
>
>
>
>

>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>

>
>
>
>
>
>
>
>
>
>
|
>
>
>
>
>
|
>
>
>
>
|
>
>

|
>
>
>
>
>
>
>
>
>
>
|
>
>
>
>
|
>
>

>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|




>
|
>
>
|





>
>
>
>
>





<
<
<
|
<
|
<
<
>
>
|








>
>
>
>
>





<
<
<
|
<
|
<
<
>
>
|


>
>
>
>
>





<
<
<
|
<
|
<
<
>
>
|





>
>
>
>
>





<
<
<
|
<
|
<
<
>
>
|







>
>
>
>
>
>





|





|
<
<
<
<
|
<
<
>
>
|









<
<
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
<
|
|
|
|
|
<
<
<
<
|
|
<
<
<
|
|
<
|
|
|
<
<
|
|
|
|
|
>
|
|
<
<
|
|
|
<
|
|
|
<
<
|
<
|
<
|
|
<
<
<
<
<
<
<
<

<
<
<
>
>
|
<
<
<
<
<
|
|
<
<
|
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<

>
>

<
<
|
<
<
<
|
|
<
<

>
>

|
<
<
<
<
<
|
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<

>
>

|
>
|
<

<
<
|
|
<
<
<
<
<
<
<
<
<
<
<
<
|
>
|
<
<
|
<
<
<
<
<
<
<
<
|
|
<
<
<
|
<
<
<
<
|
|
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<

<
|
<
|
<
<
<
<
<
|
<
|
<
|
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<

<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
<
<
<
|
<
<
<
|
|
<
<
|
|
<
<

>
>

<
<
|
<
<
<
<
<
<
|
<
<
|
|
|
|
<
|
<
<
<
|

|
>
|
>
>
|
<
<
<
<
<
|
|
<
<
|
>
|
<
<
|
|
<
<
|
<
<
<
>
|
|
<
<

>

|
<
<
<
<
<
|
|
<
<
<
|
|
>
|
|
<
|
|
<
<

<
<
<
<
>
|
<
<
<
<
|
<
>
>
>

<
<
|
|
<
<
<
<
<
|
|
<
<
|
|
<
<
<
<
|
<
<
<
|
<
<
<
>
|
|
<
<
|
<
<
<
|

<
<
|
|
<
<
<
<
<
|
|
<
<
|
|
<
<

<
<
|
|
<
<
<
<
<
|
<
|
<
|
>
|
>
>
|
|
<
<
|
|
<
|
|
<
<
|
|
|
<
<
|
|
<
<
<

<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
<
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
<
<
<
<
|
<
|
<
|
|
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
|
<
<
<
<
|
<
<
<
>
|
|
<
<
|
|
<
|
|
<
<
<
>
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
<
|
<
<
|
<
<
<
|
<
<
<
|
<
<
<
>
|
<
<
<
<
|
|
<
<
|
<
<
|
<
<
<
|
>
>
|
<
<
<
|
<
<
<
<
<
|
<
<
|
<
<
<
|
>
>
|
<
<
<
<
<
<
|
<
<
|
<
<
|
<
<
<
|
<
<
|
<
|
<
|
<
|
<
|
|
<
<
<
<
<
|
<
<
|
<
<
|
|
<
<
<
<
|
<
<
<
<
|
<
<
<
<
|
<
|
<
<
|
<
<
|
|
<
|
<
|
<
<
<
|
<
<
|
<
<
|
<
<
<
>
|
<
<
|
|
|
<
<

>
>

|
<
<
<
<
|
<
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<

<
<
|
|
<
<
<
<
<
|
|
<
<
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<

>
>

<
<
|
<
<
<
|
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<

<
<
<
<
<
|
<
|
<
|
<
<
<

>

<
|
|
<
<
<
<
<
|


>

<
<
<
<
|
<
<
<
|
<
<
|
|
|
<
|
|
<
<
<

<
<
<
<
<
|
<
|
<
|
|
<
<
|
>
|
>
>
|
|
<
<
<
<
<
<
<
<
|
|
<
<

>
>

|
>
|
>
>
|
<
<
<
<
|
<
<
<
<
|
<
<
<
|
|
<
|
|
<
|
|
|
<
|
|
<
<

<
|
<
|
<
<
<
<
<
|
|
<
<
|
<
<
<
<
<
<
|
<
<
<
<
<
<
<

>
>

|
<
<
<
<
<
|
|
<
<

<
|
<
|
<
<
<
<
<
|
<
<
<
|
<
<
<
<
<
|
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<

<
|
<
|
<
<
<
<
|
<
<
<

<
<
<
<
<
|
|
<
<

>
>


<
<
<
<
|
|
<
<

>
>


<
<
<
<
<
<
<
<
<
<
<
|
<
<
|
<
<
<
<
<
<

>
>


<
<
<
<
<
|
<
<
|
<
<
<
<
<

<
|
<
|
<
<
<
<
<
<
|
>
>
>

>
>


<
<
<
<
|
|
<
<

<
|
<
|
<
<
<
<
<
|
<
<
<
<
<
<
|
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
>
>
|
<
<
<
<
<
|
|
<
<
|
|
<
<

>
>

|
>
|
<
|
|
|
<
<
|
|
<
<
<
<
<
<
<
<
|
<
<
|
<
<
<
<
<
<

>
>


>

|
>
|
<
<
<
<
|
|
<
<
|
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<

<
|
<
|
<
<
<
<
<
|
<
<
<

>

|
<
|
<
|
<
|
<
<
<

>

<
<
|
|
>
|
<
|
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
<
|
<
<
|
<
<
|
<
|
|
<
<
<
<
|
<
<
<
|
<
<
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<

>
>

|
>
|
<
|
|
|
<
<
|
|
<
<
|
|
<
<

<
|
<
|
<
<
<
<
<
|
<
<
<
<
|
<
<
>
>

<
<
|
|
<
<
<
<
<
|
<
<
<
>
|
|
<
<

<
|
<
|
<
<
<
<
<
|
|
<
<
|
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<

<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
|
<
<
<
<
<
|
<
<
<

<
<
<
<
<
|
<
<
|
<
<
<
<
<
<

>
>


>

<
|
|
<
<
|
|
<
<
<

>

<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<

>
>


<
<
<
<
<
|
|
<
<

>
>


>

<
|
|
|
>
>
|
>
|
>
>
|
>
>
>
>
>
>
|
>
>
>

>
>

|
>
|
>
>
|
>
|
<
<
|
>
|
>
>
|
>
>
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>

>
>

|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
|
>
|
<
|
>
|
>
>
|
<
|
|
>
|
>
>
|
|
<
|
|
<
<
<

>
>
>

|
>
|
>
>
|
>
|
|
>
>
>
|
>
>
|
>
|
>
>
|
>
>
>
>
>
>
|
>
>
>

>
>

|
>
|
>
>
|
>
|
<
|
>
|
>
>
|
|
>
>
>
|
|
<
<
|
|
<
|
>
|
>
>
|
|
<
<
|
>
|
>
|
|
>
>
>

>
>

|
>
|
>
>
|
>
|
|
>
>
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
|
>
>
>
|
>
>
>
>
>
>
|
>
>
>

>

|
>
|
>
>
|
<
<
<
<
<
|
|
|
|
>
>
>
>
>
|
>
|
>
>
|
|
<
<
|
>
|
>
>
|
>
|
>
>
|
|
>
>
|
>
|
>
>
|
<
<
<
>
|
>
|
>
>
>
|
|
|
>
|
>
>
>
>
|
>
|
>
>
|
>
|
|
|
>
>
>
>
|
>
|
>
>
|
|
<
<
|
>
|
>
>
|
|
|
|
>
>
>
>
>
|
>
|
>
>
|
<
<
|
|
>
|
>
>
|
<
>
>
>
|
>
|
>
>
|
>
|
>
>
|
<
<
<
>
|
>
|
>
>
|
>
|
>
|
|
>
>
>
|
>
>
>
>
>
>
>
>
>
>
|
>
|
<
>
|
<
|
|
>
|
>
>
>
>
>
>
|
|
|
|
>
|
>
>
>
|
>
>
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
<
>
|
|
|
>
>
>
>
>
>
>
|
>
|
>
>
>
|
>
>
>
|
|
|
|
>
|
>
>
>
|
>
>
>
>
|
>
>
>
>
>
>
>
|
|
|
>
|
<
>
|
|
|
|
>
|
|
|
>
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>
>

<
|
<
<
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
>
>
|

>
>
|
>
>
|
<
>
|
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
>
|
>

<
<
|
<
|
>
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>

>
>
>
>
|
|
<
<
>
>
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>
>

>
>
|
>
>
|
>
|
<
|
|
|
|
>
|
<
>
|
|
|
|
>
|
>
>
|
>
>
>
>
>
|
>
|
>
>
>
>
>
>
>
|
>
|
|
>
|
>
>

<
<
|
<
|
|
|
|
>
|
>
>
>
>
>
>
|
<
|
<
<
<
<
|
|
|
|
>
|
>
>
>
>
>
>
|
>
|
>
>
>
>

>
>
|
>
>
|
>
>
>
|
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
>
>
>
>
|
>
>
>
|
|
|
|
>
|
>
>
>
|
>
>
>
>
|
|
|
|
>
|
>
>
>
>
|
>
>
>
|
|
|
|
>
|
|
|
|
|
|
>
|
|
|
|
|
|
>
|
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
|
|
|
|
>
|
|
|
>
>
>
>
>
>
>
|
|
|
>
|
<
>
|
|
>
>
>
>
>
>
>
|
|
>
|
|
|
|
|
|
>
|
>
>
>
|
>
>
>
>
|
|
|
|
>
|
|
|
|
|
|
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
|
|
|
>
|
|
|
|
>
>
>
>
|
>
>
>
|
>
|
|
|
|
|
|
>
|
<
>
|
|
|
|
>
|
>
|
>
>
>
>
>
>
|
|
>
>
>
>
>
>
>
|
|
>
|
>
>
>
>
|
>
>
>
|
|
|
|
>
|
|
|
|
|
|
>
|
|
|
>
>
>
>
>
>
>
|
|
|
>
|
|
|
|
|
>
>
>
>
>
>
>
|
>
|
|
|
|
|
|
>
|
|
|
>
|
|
>
|
|
|
|
>
>
>
>
>
>
>
|
|
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
>
|
|
>
|
|
|
>
|
|
>
|
|
|
>
|
|
>
|
|
|
|
|
|
>
|
>
>
>
>
>
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
>
>
>
>
>
|
>
>
>
>
>
>
|
|
>
>
|
<
>
|
|
|
|
>
|
|
|
|
|
|
>
|
<
>
|
|
|
|
>
|
|
|
|
|
|
>
|
|
|
|
|
|
>
|
>
>
>
>
|
>
>
>
|
|
|
|
>
|
>
>
>
>
|
>
>
>
|
|
|
|
>
|
>
>
>
|
>
>
>
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
|
>
|
>

|
<
<
<
|
|
|
>
>
>
>
>
>
|
>
>
|
>
>
>
|
>
|
>
>
|
|
|
>
>
|
>
>
>
>
>
>
|
>
>
|
>
>
>

<
<
<
<
>
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>

>
>
>
>
|
|
>
|
<
|
<
|
|
>
|
>
>
>
>
>
|
>
>
>
|
>

>
>
|
>
>
|
>
>
>
>
>
>
>
>
|
>
|
>
>
>
>
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
<
<
|

|
<
<
<
|
|
|
|
>
|
<
>
|
|
|
|
<
<
|

<
<
<
<
>
|
|
|
|
<
<
|
<
<
<
|
|
|
|
>
>
>
>
>
>
|
|
>
|
<
>
|
|
|
|
>
|
>
>
>
>
>
|
>
>
>
|
>
>

>
>
|
>
>
|
<
<
>
>
|
|
|
|
>
|
>
>
>
>
|
>
>
>
|
>
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>
>

<
<
|
<
|
|
|
|
>
|
|
|
|
|
|
>
|
>
>
>
>
|
|
>
>
>
|
|
|
>
|
>
>
>
>
|
|
>
>
>
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>
>

|
<
<
<
|
|
|
|
>
|
>
>
>
>
|
|
>
>
>
|
|
|
>
|
>
>
>
>
|
>
>
>
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
>
>
|

>
>
>
>
|
>
>
>
>
>
|
>
|
<
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
>
>
|

<
|
<
<
>
|
>
>
>
>
>
>
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
>
|

<
>
>
>
>
|
<
>
|
|
|
|
|
>
|
>
>
>
>
>
|
>
>
>
>
>
|

<
|
<
<
|
|
|
|
>
|
>
|
>
>
>
>
>
>
|
|
|
|
>
|
|
>
>
|
>
>

|
<
<
<
|
|
|
|
>
|
<
>
|
|
|
|
>
|
|
>
>
|
>
>

>
>
|
>
>
|
<
>
|
|
|
|
|
>
|
<
>
|
>
|
|
>
|
<
>
|
|
|
>
>
>
>
>
>
|
>
>
|
<
>
|
>
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>
>

<
<
<
<
>
>
>
>
>
>
>
>
|
|
|
|
>
|
>
>
|
>
>
>
>
|
>
|
|
>
|
>
>
>
>
>
>
>
>
|
>
>
>
>
>
>
|
|
|
|
>
|
|
|
|
|
|
>
|
|
|
|
|
|
>
|
<
>
|
|
|
>
>
>
>
>
>
|
>
>
>
>
>
>
>
|
|
|
>
>
|
>
>
>
>
>
|
|
>
|
|
|
>
>
>
>
>
>
|
|
|
>
|
>
>
|
>
>
>
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
<
>
>
>
>
>
|
>
>
>
>
|
|
>
|
<
>
|
|
|
|
>
|
<
>
|
|
>
>
>
>
>
>
>
|
|
>
|
<
>
|
>
|
|
>
|
|
>
>
>
>
>
>
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
>
>
>
>
|
>
>
>
|
<
>
|
|
>
|
>
|
>
>
>
>
>
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
>
>
>
>
>
|
>
>
|
>
|
>

|
>
>
>
>
|
>
|
<
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
>
|
>

>
>
>
>
>
>
>
>
|
>
>
>
|
>
>
>
>
|
>

>
>
>
|
>
|
<
>
|
|
|
|
|
>
|
<
>
|
<
|
|
>
|
|
>
>
|
>
>

>
>
>
>
|
|
<
>
|
|
|
|
|
>
|
>
>
>
|
>
>
>
|
|
|
|
>
|
|
|
|
|
|
>
|
<
>
|
>
|
|
>
|
>
>
>
>
|
>
>
>
|
>
|
|
>
|
|
|
>
|
|
>
|
>
>
>
>
>
>
|
>
>
>
>
>
|

>
>
|
>
>
|
>
|
<
|
|
|
|
>
|
<
>
|
>
|
|
>
|
|
|
|
|
|
>
>
>
>
>
>
>
>
|
|
|
|
|
|
>
|
<
>
>
>
>
>
|
>
>
>
|
|
|
>
|
>
>
|
>
>
|
>
>
>
|
|
|
>
|
>
|
>
>
>
>
>
>
|
|
>
>
>
>
>
>
>
|
|
>
|
|
>
>
>
>
|
>
>
>
|
>
>
>
>
>
>
>
|
|
>
|
>
>
>
>
>
>
|
>
>
>
>
|

>
>
>
>
|
|
>
>
|
>
|
|
>
>
|
|
|
>
|
>
>
>
>
|
>
>
|
|
|
|
>
|
|
|
>
>
>
>
>
>
>
|
|
|
>
|
>
|
>
>
>
>
>
>
|
|
|
|
>
|
|
|
|
|
|
>
|
|
>
>
>
>
|
>
>
>
|
|
|
>
|
>
>
>
>
>
|
>
>
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>
>

>
>
>
>
>
>
>
>
>
|
>
>
|
>
>
>
|
|
>
>
>
>
|
>
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>
>

>
>
>
>
|
|
<
>
>
>
>
|
>
>
>
>
|
|
|
|
>
|
|
|
|
|
|
>
|
<
>
|
|
|
|
>
|
|
>
>
>
>
>
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
>
>
>
>
|
>
>
>
|
|
|
>
>
>
>
>
>
>
|
>
|
<
>
>
>
>
|
>

<
<
<
<
>
|
|
|
|
>
|
|
>
|
|
<
|
|
<
>
|
|
>
|
|
>
>
>
>
|
>
>
>
|
>
>
|
>
>
>
>
>
|
>
|
|
|
|
>
>
>
>
>
>
|
>
|
>
>
>
>

<
<
<
|
|
|
|
|
>
|
<
>
|
|
|
|
>
|
>
>
>
>
>
|
>
>
>
|
>
>

|
<
<
<
|
|
|
>
>
>
>
|
>
>
>
|
>
>
>
>
>
>
|
>
>
>
|
>

>
>
|
>
>
|
>
>
>
>
>
>
>
>
>
>
|
>
>
>
>
|
|
|
|
|
>
|
|
|
|
|
>
>
>
>
>
>
>
|
>
|
>
>
>
>
>
>
|
>
|
>
>
>
>

>
>
|
>
>
|
<
>
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
|
>
>
>

<
<
<
<
>
|
<
|
|
>
|
|
|
|
|
|
>
|
<
>
|
|
>
>
>
>
>
>
>
|
>
>
>
>
>
>
>
|
>
|
<
>
|
|
|
|
>
|
|
|
|
|
|
>
|
>
>
>
>
>
|
>
>
|
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
|
>
>
>
>
>
|
>
>
|
|
|
|
>
|
|
|
|
|
|
>
|
|
|
<
|
|
>
|
|
|
|
>
>
>
>
>
|
>
>
>
>
>
>
>
|
>
|
>
|
>
>
>
>
>
|
|
|
|
>
|
|
|
|
|
|
>
|
|
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>
>

<
<
<
|
|
|
>
>
>
>
>
>
>
|
|
>
|
|
|
|
|
|
>
|
|
|
|
|
|
>
|
|
|
|
|
>
>
>
>
>
>
>
|
>
|
|
|
|
|
|
>
|
>
|
>
>
>
>
>
>
|
>
>
>
>
>
>
|
|
|
>
|
|
|
|
|
|
>
|
<
>
|
|
|
|
>
|
|
|
|
|
|
>
|
>
>
>
>
>
|
>
>
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
>
|
>
|
|
>
|
>
>
>
>
|
|
>
>
|
<
>
|
|
|
|
>
|
<
>
|
|
>
>
>
>
>
>
|
|
>
>
|
|
|
|
|
|
>
|
|
|
|
>
>
>
>
>
>
|
>
>
>
>
>
>
>
|
>
|
>
>
>
>
>
>
|
>
>
>
>
|
>

>
|
>
>
>
|
<
>
|
|
|
|
|
>
|
|
|
|
|
>
>
>
>
>
>
>
|
>
|
>
|
>
>
>
>
>
>
|
>
>
>
>
>
>
>
|
|
|
>
|
|
>
>
>
|
>

<
<
<
<
>
|
|
|
|
>
|
<
>
|
|
|
|
>
|
|
|
|
|
|
>
|
>
>
>
>
>
>
>
|
|
|
|
|
>
>
>
>
>
>
>
>
|
|
|
|
|
|
>
|
>
>
>
>
>
>
>
|
|
|
|
|
>
|
|
>
>
>
>
>
>
>
|
>
>
>
>
>
>
>
|
|
|
>
|
|
|
|
|
|
>
|
|
|
|
|
>
>
>
>
>
>
>
|
>
|
>
>
>
>
>
>
>
|
|
|
|
|
>
|
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
|
>
|
|
|
|
>
>
>
>
>
>
>
|
|
>
|
<
>
>
>
|
>
>

<
<
<
<
>
|
|
|
|
>
|
<
>
>
>
|
>
>

>
>
>
>
|
|
>
|
<
|
|
|
|
>
|
>
>
>
>
>
>
|
>
>
>
|
>
>

>
>
>
|
>
|
>
>
|
>
>
|
>
>
>
|
>
|
|
>
|
<
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
|
<
<
|

<
<
<
|
|
|
|
|
>
|
|
|
|
|
|
>
|
|
|
|
|
|
<
<
|


<
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
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947

2948
2949
2950
2951
2952
2953

2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981

2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221

3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243

3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263

3264
3265
3266
3267
3268
3269
3270

3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298

3299
3300
3301
3302
3303
3304
3305




3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316

3317
3318

3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361



3362
3363
3364
3365
3366
3367
3368

3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389



3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476

3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497




3498
3499

3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510

3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531

3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596

3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660



3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736

3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792

3793
3794
3795
3796
3797
3798
3799

3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860

3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910




3911
3912
3913
3914
3915
3916
3917

3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064

4065
4066
4067
4068
4069
4070
4071




4072
4073
4074
4075
4076
4077
4078

4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093

4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134

4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166


4167
4168



4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187


4188
4189
4190




  generated: {2015-09-24 00:34:26 UTC}

  description: {The Tcl Library is a kitchen sink of packages across a broad spectrum of things.}

  name: Tcl



  uuid: 05391902863193f286cc4eeb0b0cd8a8d16b4ec9
  distribution/ {
    official {
      class: fossil
      project-name: Tcl
      project-code: 05391902863193f286cc4eeb0b0cd8a8d16b4ec9
      release: odie
      url: http://fossil.etoyoc.com/fossil/tcllib
    }
  }
  release/ {
    odie {
      distribution: official
      checkout: odie
      timestamp: {2015-09-24 00:34:26 UTC}
    }
    trunk {
      distribution: official
      checkout: trunk
    }
    tcllib-1-17 {
      version: 1.17
      checkout: tcllib-1-17
      distribution: official
    }
    tcllib-1-16 {
      version: 1.16
      checkout: tcllib-1-16
      distribution: official
    }
    tcllib-1-15 {
      version: 1.15
      checkout: tcllib-1-15
      distribution: official
    }
    tcllib-1-14 {
      version: 1.14
      checkout: tcllib-1-14
      distribution: official
    }
    tcllib-1-13 {
      version: 1.13
      checkout: tcllib-1-13
      distribution: official
    }
    tcllib-1-12 {
      version: 1.12
      checkout: tcllib-1-12
      distribution: official
    }
    tcllib-1-11-1 {
      version: 1.11.1
      checkout: tcllib-1-11-1
      distribution: official
    }
    tcllib-1-11 {
      version: 1.11
      checkout: tcllib-1-11
      distribution: official
    }
    tcllib-1-10 {
      version: 1.10
      checkout: tcllib-1-10
      distribution: official
    }
    tcllib-1-9 {
      version: 1.9
      checkout: tcllib-1-9
      distribution: official
    }
    tcllib-1-8 {
      version: 1.8
      checkout: tcllib-1-8
      distribution: official
    }
    tcllib-1-7 {
      version: 1.7
      checkout: tcllib-1-7
      distribution: official
    }
    tcllib-1-6-1 {
      version: 1.6.1
      checkout: tcllib-1-6-1
      distribution: official
    }
    tcllib-1-4 {
      version: 1.4
      checkout: tcllib-1-4
      distribution: official
    }
    tcllib-1-3 {
      version: 1.3
      checkout: tcllib-1-3
      distribution: official
    }
    tcllib-1-2-0 {
      version: 1.2.0
      checkout: tcllib-1-2-0
      distribution: official
    }
    tcllib-1-2 {
      version: 1.2
      checkout: tcllib-1-2
      distribution: official
    }
    tcllib-1-1 {
      version: 1.1
      checkout: tcllib-1-1
      distribution: official
    }
    tcllib-1-0 {
      version: 1.0
      checkout: tcllib-1-0
      distribution: official
    }
    tcllib-0-8 {
      version: 0.8
      checkout: tcllib-0-8
      distribution: official
    }
    tcllib-0-6-1 {
      version: 0.6.1
      checkout: tcllib-0-6-1
      distribution: official
    }
    tcllib-0-6 {
      version: 0.6
      checkout: tcllib-0-6
      distribution: official
    }
    tcllib-0-5 {
      version: 0.5
      checkout: tcllib-0-5
      distribution: official
    }
    tcllib-0-4 {
      version: 0.4
      checkout: tcllib-0-4
      distribution: official
    }
  }
  application/ {
    dtplite {
      name: dtplite
      file: apps/dtplite
      class: script
      teacup_type: Application
      version: 1.0.5
      platform: tcl
      summary: {Lightweight DocTools Processor}
      description: {This application is a simple processor
for documents written in the doctools
markup language. It covers the most
common use cases, but is not as
configurable as its big brother dtp.
}
      category: {Processing doctools documents}
      subject: {doctools doctoc docidx}
      require: {{dtplite 1.0.5}}
      author: {Andreas Kupries}
      license: BSD
    }
    nns {
      name: nns
      file: apps/nns
      class: script



      teacup_type: Application

      version: 1.2


      platform: tcl
      summary: {Nano Name Service Client}
      description: {This application connects to a name service demon
and either registers a name with associated data
(until exit) or searches for entries matching a
glob pattern. Operations to identify client and
server are made available as well. It will survive
the loss of the nameserver and automatically reconnect
and continue when it comes back (bind and search).

}
      subject: {{name service} client}
      require: {logger nameserv::auto {nameserv::auto 0.3} struct::matrix {Tcl 8.4}}
      author: {Andreas Kupries}
      license: BSD
      packages: nns
    }
    nnsd {
      name: nnsd
      file: apps/nnsd
      class: script



      teacup_type: Application

      version: 1.0.1


      platform: tcl
      summary: {Nano Name Service Demon}
      description: {This application is a simple demon on top
of the nano name service facilities
}
      subject: {{name service} server demon}
      require: {comm interp logger nameserv::common nameserv::server {Tcl 8.4}}
      author: {Andreas Kupries}
      license: BSD
      packages: nnsd
    }
    nnslog {
      name: nnslog
      file: apps/nnslog
      class: script



      teacup_type: Application

      version: 1.1


      platform: tcl
      summary: {Nano Name Service Logger}
      description: {This application connects to a name service demon
and then continuously logs all changes (new/removed
definitions) to the standard output. It will survive
the loss of the nameserver and automatically reconnect
and continue when it comes back.
}
      subject: {{name service} client log}
      require: {logger nameserv::auto {nameserv::auto 0.3} {Tcl 8.4}}
      author: {Andreas Kupries}
      license: BSD
      packages: nnslog
    }
    page {
      name: page
      file: apps/page
      class: script



      teacup_type: Application

      version: 1.0


      platform: tcl
      summary: {Tool for general text transformation}
      description: {While the name is an allusion to parser
generation, the modular plugin-based
nature of this application allows for
any type of text transformation which
can be put into a plugin. Still, the
plugins coming with Tcllib all deal
with parser generation.
}
      category: {Processing text files}
      subject: {{parser generation} {text transformation}}
      require: {logger page::pluginmgr struct::matrix}
      author: {Andreas Kupries}
      license: BSD
      packages: page
    }
    pt {
      name: pt
      file: apps/pt
      class: script
      require: {fileutil {pt::pgen 1.0.3} pt::util {Tcl 8.5} try}
    }
    tcldocstrip {
      name: tcldocstrip
      file: apps/tcldocstrip
      class: script
      teacup_type: Application




      version: 1.0.1


      platform: tcl
      summary: {TeX's docstrip written in Tcl}
      description: {This application is an implementation
of TeX's docstrip application in Tcl.
It provides commands to convert a docstrip
weave according to a set of guards, to
assemble an output based on several sets
guards and input files, i.e. of a document
spread over several inputs and/or guards,
and to extract and list all unique guard
expressions found in a document.
}








      category: {Processing docstrip documents}









      subject: {docstrip TeX LaTeX}































      require: docstrip










      author: {Andreas Kupries}
      license: BSD
      packages: tcldocstrip
    }
  }




  module/ {
    aes {



      name: aes
      path: modules/aes

      class: tcl
      sources: aes.tcl
      packages: {{aes 1.2.1}}


    }
    amazon-s3 {
      name: amazon-s3
      path: modules/amazon-s3
      class: tcl
      sources: {S3.tcl xsxp.tcl}
      packages: {{S3 1.0.3} {xsxp 1.0}}
    }


    asn {
      name: asn
      path: modules/asn

      class: tcl
      sources: asn.tcl
      packages: {{asn 0.8.4}}


    }

    base32 {

      name: base32
      path: modules/base32








      class: tcl



      require: {critcl {Tcl 8.4} base32::core critcl {Tcl 8.4} base32::core}
      sources: {base32.tcl base32_c.tcl base32_tcl.tcl base32core.tcl base32hex.tcl base32hex_c.tcl base32hex_tcl.tcl}
      packages: {{base32 0.1} {base32::core 0.1} {base32::hex 0.1}}





    }
    base64 {


      name: base64
      path: modules/base64














      class: tcl
      sources: {ascii85.tcl base64.tcl base64c.tcl uuencode.tcl yencode.tcl}
      packages: {{ascii85 1.0} {base64 2.4.2} {base64c 0.1.0} {uuencode 1.1.5} {yencode 1.1.3}}
    }


    bee {



      name: bee
      path: modules/bee


      class: tcl
      sources: bee.tcl
      packages: {{bee 0.1}}
    }
    bench {





      name: bench






      path: modules/bench








      class: tcl
      sources: {bench.tcl bench_read.tcl bench_wcsv.tcl bench_wtext.tcl libbench.tcl}
      packages: {{bench 0.4} {bench::in 0.1} {bench::out::csv 0.1.2} {bench::out::text 0.1.2}}
    }
    bibtex {
      name: bibtex
      path: modules/bibtex

      class: tcl


      sources: bibtex.tcl
      packages: {{bibtex 0.6}}












    }
    blowfish {
      name: blowfish


      path: modules/blowfish








      class: tcl
      sources: blowfish.tcl



      packages: {{blowfish 1.0.4}}




    }
    cache {

      name: cache























      path: modules/cache

      class: tcl

      sources: async.tcl

      packages: {{cache::async 0.3}}





    }

    calendar {

      name: calendar






      path: modules/calendar








      class: tcl


















      require: {{Tcl 8.2} {Tcl 8.2}}




      sources: {calendar.tcl gregorian.tcl}



    }
    clock {


      name: clock
      path: modules/clock


      class: tcl
      sources: {iso8601.tcl rfc2822.tcl}
      packages: {{clock::iso8601 0.1} {clock::rfc2822 0.1}}
    }


    cmdline {






      name: cmdline


      path: modules/cmdline
      module class:
      tcllib module
      origin: http://core.tcl.tk/tcllib

      sources: cmdline.tcl



      packages: {{cmdline 1.5}}
    }
    codebale {
      name: codebale
      path: modules/codebale
      class: tcl
      sources: {autobuild.tcl autodoc.tcl buildtools.tcl codebale.tcl index.tcl parser.tcl project.tcl}
      packages: {{codebale::autodoc 0.1} {codebale 0.2}}





    }
    comm {


      name: comm
      path: modules/comm
      class: tcl


      sources: comm.tcl
      packages: {{comm 4.6.3.1}}


    }



    common-text {
      name: common-text
      path: modules/common-text


      class: tcl
      sources: {}
    }
    control {





      name: control
      path: modules/control



      class: tcl
      require: {{Tcl 8.2}}
      sources: {ascaller.tcl assert.tcl control.tcl do.tcl no-op.tcl}
    }
    coroutine {

      name: coroutine
      path: modules/coroutine


      class: tcl




      sources: {coro_auto.tcl coroutine.tcl}
      packages: {{coroutine::auto 1.1.3} {coroutine 1.1.3}}




    }

    counter {
      name: counter
      path: modules/counter
      class: tcl


      sources: counter.tcl
      packages: {{counter 2.0.4}}





    }
    crc {


      name: crc
      path: modules/crc




      class: tcl



      sources: {cksum.tcl crc16.tcl crc32.tcl crcc.tcl sum.tcl}



      packages: {{cksum 1.1.4} {crc16 1.1.2} {crc32 1.3.2} {crcc 1.0.0} {sum 1.1.2}}
    }
    cron {


      name: cron



      path: modules/cron
      class: tcl


      sources: cron.tcl
      packages: {{cron 1.1}}





    }
    csv {


      name: csv
      path: modules/csv


      class: tcl


      sources: csv.tcl
      packages: {{csv 0.8}}





    }

    debug {

      name: debug
      path: modules/debug
      class: tcl
      sources: {caller.tcl debug.tcl heartbeat.tcl timestamp.tcl}
      packages: {{debug::caller 1} {debug 1.0.5} {debug::heartbeat 1} {debug::timestamp 1}}
    }
    des {


      name: des
      path: modules/des

      class: tcl
      sources: {des.tcl tcldes.tcl tcldesjr.tcl}


      packages: {{des 1.1.0} {tclDES 1.0.0} {tclDESjr 1.0.0}}
    }
    devtools {


      name: devtools
      path: modules/devtools



      class: tcl


















      require: comm




      sources: {coserv.tcl dialog.tcl testutilities.tcl}

































      packages: {{tcllib::testutils 1.2}}





    }

    dns {

      name: dns
      path: modules/dns





      class: tcl









      require: msgcat




      sources: {dns.tcl ip.tcl ipMore.tcl ipMoreC.tcl resolv.tcl spf.tcl}



      packages: {{dns 1.3.5} {ip 1.3} {ipMorec 1.0} {resolv 1.0.3} {spf 1.1.1}}
    }
    docstrip {


      name: docstrip
      path: modules/docstrip

      class: tcl
      sources: {docstrip.tcl docstrip_util.tcl}



      packages: {{docstrip 1.2} {docstrip::util 1.3}}
    }


















    doctools {


      name: doctools


      path: modules/doctools



      class: tcl



      require: {msgcat msgcat msgcat}



      sources: {api.tcl api_idx.tcl api_toc.tcl changelog.tcl checker.tcl checker_idx.tcl checker_toc.tcl cvs.tcl docidx.tcl doctoc.tcl doctools.tcl}
      packages: {{doctools::changelog 1.1} {doctools::cvs 1} {doctools::idx 1.0.5} {doctools::toc 1.1.4} {doctools 1.4.19}}




    }
    doctools2base {


      name: doctools2base


      path: modules/doctools2base



      class: tcl
      sources: {config.tcl html.tcl html_cssdefaults.tcl msgcat.tcl nroff_manmacros.tcl paths.tcl tcl_parse.tcl text.tcl}
      packages: {{doctools::config 0.1} {doctools::html 0.1} {doctools::html::cssdefaults 0.1} {doctools::msgcat 0.1} {doctools::nroff::man_macros 0.1} {doctools::paths 0.1} {doctools::tcl::parse 0.1} {doctools::text 0.1}}
    }



    doctools2idx {





      name: doctools2idx


      path: modules/doctools2idx



      class: tcl
      sources: {container.tcl export.tcl export_docidx.tcl export_html.tcl export_json.tcl export_nroff.tcl export_text.tcl export_wiki.tcl import.tcl import_docidx.tcl import_json.tcl msgcat_c.tcl msgcat_de.tcl msgcat_en.tcl msgcat_fr.tcl parse.tcl structure.tcl}
      packages: {{doctools::idx 2} {doctools::idx::export 0.1} {doctools::idx::export::docidx 0.1} {doctools::idx::export::html 0.2} {doctools::idx::export::json 0.1} {doctools::idx::export::nroff 0.3} {doctools::idx::export::text 0.2} {doctools::idx::export::wiki 0.2} {doctools::idx::import 0.1} {doctools::idx::import::docidx 0.1} {doctools::idx::import::json 0.1} {doctools::msgcat::idx::c 0.1} {doctools::msgcat::idx::de 0.1} {doctools::msgcat::idx::en 0.1} {doctools::msgcat::idx::fr 0.1} {doctools::idx::parse 0.1} {doctools::idx::structure 0.1}}
    }






    doctools2toc {


      name: doctools2toc


      path: modules/doctools2toc



      class: tcl


      sources: {container.tcl export.tcl export_doctoc.tcl export_html.tcl export_json.tcl export_nroff.tcl export_text.tcl export_wiki.tcl import.tcl import_doctoc.tcl import_json.tcl msgcat_c.tcl msgcat_de.tcl msgcat_en.tcl msgcat_fr.tcl parse.tcl structure.tcl}

      packages: {{doctools::toc 2} {doctools::toc::export 0.1} {doctools::toc::export::doctoc 0.1} {doctools::toc::export::html 0.1} {doctools::toc::export::json 0.1} {doctools::toc::export::nroff 0.2} {doctools::toc::export::text 0.1} {doctools::toc::export::wiki 0.1} {doctools::toc::import 0.1} {doctools::toc::import::doctoc 0.1} {doctools::toc::import::json 0.1} {doctools::msgcat::toc::c 0.1} {doctools::msgcat::toc::de 0.1} {doctools::msgcat::toc::en 0.1} {doctools::msgcat::toc::fr 0.1} {doctools::toc::parse 0.1} {doctools::toc::structure 0.1}}

    }

    dtplite {

      name: dtplite
      path: modules/dtplite





      class: tcl


      sources: dtplite.tcl


      packages: {{dtplite 1.2}}
    }




    exif {




      name: exif




      path: modules/exif

      class: tcl


      sources: exif.tcl


      packages: {{exif 1.1.2}}
    }

    fileutil {

      name: fileutil



      path: modules/fileutil


      class: tcl


      sources: {decode.tcl fileutil.tcl multi.tcl multiop.tcl traverse.tcl}



      packages: {{fileutil::decode 0.2} {fileutil 1.15} {fileutil::multi 0.1} {fileutil::multi::op 0.5.3} {fileutil::traverse 0.5}}
    }


    ftp {
      name: ftp
      path: modules/ftp


      class: tcl
      sources: {ftp.tcl ftp_geturl.tcl}
      packages: {{ftp {[lindex}} {ftp::geturl {[lindex}}}
    }
    ftpd {




      name: ftpd







      path: modules/ftpd








      class: tcl


      sources: ftpd.tcl
      packages: {{ftpd 1.2.6}}





    }
    fumagic {








      name: fumagic


















      path: modules/fumagic














      class: tcl
      sources: {cfront.tcl cgen.tcl filetypes.tcl mimetypes.tcl rtcore.tcl}
      packages: {{fileutil::magic::cfront 1.0} {fileutil::magic::cgen 1.0} {fileutil::magic::filetype 1.0.2} {fileutil::magic::mimetype 1.0.2} {fileutil::magic::rt 1.0}}
    }


    generator {



      name: generator






      path: modules/generator
































      class: tcl





      sources: generator.tcl

      packages: {{generator 0.1}}

    }



    gpx {
      name: gpx
      path: modules/gpx

      class: tcl
      sources: gpx.tcl





      packages: {{gpx 1}}
    }
    grammar_aycock {
      name: grammar_aycock
      path: modules/grammar_aycock




      class: tcl



      sources: {aycock-build.tcl aycock-debug.tcl aycock-runtime.tcl}


      packages: {{grammar::aycock 1.0} {grammar::aycock::debug 1.0} {grammar::aycock::runtime 1.0}}
    }
    grammar_fa {

      name: grammar_fa
      path: modules/grammar_fa



      class: tcl





      sources: {dacceptor.tcl dexec.tcl fa.tcl faop.tcl}

      packages: {{grammar::fa::dacceptor 0.1.1} {grammar::fa::dexec 0.2} {grammar::fa 0.5} {grammar::fa::op 0.4.1}}

    }
    grammar_me {


      name: grammar_me
      path: modules/grammar_me
      class: tcl
      sources: {gasm.tcl me_cpu.tcl me_cpucore.tcl me_tcl.tcl me_util.tcl}
      packages: {{grammar::me::cpu::gasm 0.1} {grammar::me::cpu 0.2} {grammar::me::cpu::core 0.2} {grammar::me::tcl 0.1} {grammar::me::util 0.1}}
    }
    grammar_peg {








      name: grammar_peg
      path: modules/grammar_peg


      class: tcl
      sources: {peg.tcl peg_interp.tcl}
      packages: {{grammar::peg 0.2} {grammar::peg::interp 0.1.1}}
    }
    hook {
      name: hook
      path: modules/hook
      class: tcl
      sources: hook.tcl
      packages: {{hook 0.1}}




    }




    html {



      name: html
      path: modules/html

      class: tcl
      sources: html.tcl

      packages: {{html 1.4.4}}
    }
    htmlparse {

      name: htmlparse
      path: modules/htmlparse


      class: tcl

      sources: htmlparse.tcl

      packages: {{htmlparse 1.2.1}}





    }
    http {


      name: http






      path: modules/http







      class: tcl
      sources: autoproxy.tcl
      packages: {{autoproxy 1.5.3}}
    }
    httpd {





      name: httpd
      path: modules/httpd


      class: tcl

      sources: httpd.tcl

      packages: {{httpd 0.1}}





    }



    ident {





      name: ident






      path: modules/ident








      class: tcl

      sources: ident.tcl

      packages: {{ident 0.42}}




    }



    imap4 {





      name: imap4
      path: modules/imap4


      class: tcl
      sources: imap4.tcl
      packages: {{imap4 0.5.2}}
    }
    inifile {




      name: inifile
      path: modules/inifile


      class: tcl
      sources: ini.tcl
      packages: {{inifile 0.3}}
    }
    interp {











      name: interp


      path: modules/interp






      class: tcl
      sources: {deleg_method.tcl deleg_proc.tcl interp.tcl}
      packages: {{interp::delegate::method 0.2} {interp::delegate::proc 0.2} {interp 0.1.2}}
    }
    irc {





      name: irc


      path: modules/irc





      class: tcl

      sources: {irc.tcl picoirc.tcl}

      packages: {{irc 0.6.1} {picoirc 0.5.1}}






    }
    javascript {
      name: javascript
      path: modules/javascript
      class: tcl
      sources: javascript.tcl
      packages: {{javascript 1.0.2}}
    }
    jpeg {




      name: jpeg
      path: modules/jpeg


      class: tcl

      sources: jpeg.tcl

      packages: {{jpeg 0.5}}





    }






    json {


      name: json


















      path: modules/json
      class: tcl
      sources: {json.tcl json_tcl.tcl json_write.tcl jsonc.tcl}
      packages: {{json 1.3.3} {json::write 1.0.3} {jsonc 1.1.2}}





    }
    lambda {


      name: lambda
      path: modules/lambda


      class: tcl
      sources: lambda.tcl
      packages: {{lambda 1}}
    }
    ldap {
      name: ldap
      path: modules/ldap

      class: tcl
      sources: {ldap.tcl ldapx.tcl}
      packages: {{ldap 1.8} {ldapx 1.0}}


    }
    log {








      name: log


      path: modules/log






      class: tcl
      sources: {log.tcl logger.tcl loggerAppender.tcl loggerUtils.tcl}
      packages: {{log 1.3} {logger 0.9.4} {logger::appender 1.3} {logger::utils 1.3}}
    }
    map {
      name: map
      path: modules/map
      class: tcl
      sources: {map_geocode_nominatim.tcl map_slippy.tcl map_slippy_cache.tcl map_slippy_fetcher.tcl}
      packages: {{map::geocode::nominatim 0.1} {map::slippy 0.5} {map::slippy::cache 0.2} {map::slippy::fetcher 0.3}}




    }
    mapproj {


      name: mapproj


      path: modules/mapproj












      class: tcl

      sources: mapproj.tcl

      packages: {{mapproj 1.0}}





    }



    markdown {
      name: markdown
      path: modules/markdown
      class: tcl

      sources: markdown.tcl

      packages: {{Markdown 1.0}}

    }



    math {
      name: math
      path: modules/math


      class: tcl
      require: {math::polynomials {Tcl 8.0} {Tcl 8.2} {Tcl 8.2} {math::linearalgebra 1.0}}
      sources: {bessel.tcl bigfloat.tcl bigfloat2.tcl bignum.tcl calculus.tcl classic_polyns.tcl combinatorics.tcl constants.tcl decimal.tcl elliptic.tcl exponential.tcl fourier.tcl fuzzy.tcl geometry.tcl interpolate.tcl kruskal.tcl linalg.tcl liststat.tcl machineparameters.tcl math.tcl misc.tcl mvlinreg.tcl numtheory.tcl optimize.tcl pdf_stat.tcl plotstat.tcl polynomials.tcl qcomplex.tcl rational_funcs.tcl romannumerals.tcl special.tcl stat_kernel.tcl statistics.tcl symdiff.tcl wilcoxon.tcl}
      packages: {{math::bigfloat 1.2.2} {math::bigfloat 2.0.2} {math::bignum 3.1.1} {math::calculus 0.8.1} {math::constants 1.0.1} {math::decimal 1.0.3} {math::fourier 1.0.2} {math::fuzzy 0.2.1} {math::geometry 1.1.3} {math::interpolate 1.1} {math::linearalgebra 1.1.5} {math::machineparameters 0.1} {math::numtheory 1.0} {math::optimize 1.0.1} {math::polynomials 1.0.1} {math::complexnumbers 1.0.2} {math::rationalfunctions 1.0.1} {math::roman 1.0} {math::special 0.3.0} {math::statistics 1.0} {math::calculus::symdiff 1.0}}

    }


    md4 {
































































      name: md4


      path: modules/md4


      class: tcl


      sources: {md4.tcl md4c.tcl}

      packages: {{md4 1.0.6} {md4c 1.1.0}}
    }




    md5 {



      name: md5








      path: modules/md5













      class: tcl
      sources: {md5.tcl md5c.tcl md5x.tcl}
      packages: {{md5 1.4.4} {md5c 0.12} {md5 2.0.7}}
    }
    md5crypt {
      name: md5crypt
      path: modules/md5crypt

      class: tcl
      sources: {md5crypt.tcl md5cryptc.tcl}
      packages: {{md5crypt 1.1.0} {md5cryptc 1.0}}


    }
    mime {


      name: mime
      path: modules/mime


      class: tcl

      sources: {mime.tcl smtp.tcl}

      packages: {{mime 1.6} {smtp 1.4.5}}





    }




    multiplexer {


      name: multiplexer
      path: modules/multiplexer
      class: tcl


      sources: multiplexer.tcl
      packages: {{multiplexer 0.2}}





    }



    namespacex {
      name: namespacex
      path: modules/namespacex


      class: tcl

      sources: namespacex.tcl

      packages: {{namespacex 0.1}}





    }
    ncgi {


      name: ncgi






      path: modules/ncgi








      class: tcl













      sources: ncgi.tcl

      packages: {{ncgi 1.4.3}}





    }



    nettool {





      name: nettool


      path: modules/nettool






      class: tcl
      sources: {available_ports.tcl generic.tcl locateport.tcl nettool.tcl platform_unix.tcl platform_unix_linux.tcl platform_unix_macosx.tcl platform_windows.tcl}
      packages: {{nettool 0.5} {nettool::platform::windows 0.2}}
    }
    nmea {
      name: nmea
      path: modules/nmea

      class: tcl
      sources: nmea.tcl


      packages: {{nmea 1.0.0}}
    }



    nns {
      name: nns
      path: modules/nns































      class: tcl
      sources: {common.tcl nns.tcl nns_auto.tcl nns_cluster.tcl server.tcl}
      packages: {{nameserv::common 0.1} {nameserv 0.4.2} {nameserv::auto 0.3} {nameserv::cluster 0.2.3} {nameserv::server 0.3.2}}
    }
    nntp {





      name: nntp
      path: modules/nntp


      class: tcl
      sources: nntp.tcl
      packages: {{nntp 0.2.1}}
    }
    ntp {
      name: ntp
      path: modules/ntp

      class: tcl
      sources: time.tcl
      packages: {{time 1.2.1}}
    }
    oauth {
      name: oauth
      path: modules/oauth
      class: tcl
      sources: oauth.tcl
      packages: {{oauth 1}}
    }
    odie {
      name: odie
      path: modules/odie
      class: tcl
      sources: {global.tcl index.tcl listutil.tcl logicset.tcl queue.tcl stack.tcl urlget.tcl}
      packages: {{odie 0.2} {listutil 1.7} {http::wget 0.1}}
    }
    oohtml {
      name: oohtml
      path: modules/oohtml
      class: tcl
      sources: oohtml.tcl
      packages: {{oo::html 0.1}}
    }
    ooutil {
      name: ooutil
      path: modules/ooutil
      class: tcl
      sources: {oometa.tcl oooption.tcl ooproperties.tcl ooutil.tcl temptest.tcl}
      packages: {{oo::meta 0.3} {oo::option 0.2} {oo::properties 0.1} {oo::util 1.2.2}}
    }
    otp {


      name: otp
      path: modules/otp
      class: tcl
      sources: otp.tcl
      packages: {{otp 1.0.0}}
    }
    page {
      name: page
      path: modules/page
      class: tcl
      sources: {analysis_peg_emodes.tcl analysis_peg_minimize.tcl analysis_peg_reachable.tcl analysis_peg_realizable.tcl compiler_peg_mecpu.tcl gen_peg_canon.tcl gen_peg_cpkg.tcl gen_peg_hb.tcl gen_peg_me.tcl gen_peg_mecpu.tcl gen_peg_ser.tcl gen_tree_text.tcl parse_lemon.tcl parse_peg.tcl parse_peghb.tcl parse_pegser.tcl peg_grammar.tcl pluginmgr.tcl util_flow.tcl util_norm_lemon.tcl util_norm_peg.tcl util_peg.tcl util_quote.tcl}
      packages: {{page::analysis::peg::emodes 0.1} {page::analysis::peg::minimize 0.1} {page::analysis::peg::reachable 0.1} {page::analysis::peg::realizable 0.1} {page::compiler::peg::mecpu 0.1.1} {page::gen::peg::canon 0.1} {page::gen::peg::cpkg 0.1} {page::gen::peg::hb 0.1} {page::gen::peg::me 0.1} {page::gen::peg::mecpu 0.1} {page::gen::peg::ser 0.1} {page::gen::tree::text 0.1} {page::parse::lemon 0.1} {page::parse::peg 0.1} {page::parse::peghb 0.1} {page::parse::pegser 0.1} {pg::peg::grammar 0.1} {page::pluginmgr 0.2} {page::util::flow 0.1} {page::util::norm::lemon 0.1} {page::util::norm::peg 0.1} {page::util::peg 0.1} {page::util::quote 0.1}}
    }
    pki {
      name: pki
      path: modules/pki
      class: tcl
      sources: pki.tcl
      packages: {{pki 0.6}}
    }
    pluginmgr {
      name: pluginmgr
      path: modules/pluginmgr
      class: tcl
      sources: pluginmgr.tcl
      packages: {{pluginmgr 0.3}}
    }
    png {
      name: png
      path: modules/png
      class: tcl
      sources: png.tcl
      packages: {{png 0.2}}
    }
    pop3 {
      name: pop3
      path: modules/pop3
      class: tcl
      sources: pop3.tcl
      packages: {{pop3 1.9}}
    }
    pop3d {
      name: pop3d
      path: modules/pop3d
      class: tcl
      sources: {pop3d.tcl pop3d_dbox.tcl pop3d_udb.tcl}
      packages: {{pop3d 1.1.0} {pop3d::dbox 1.0.2} {pop3d::udb 1.1}}
    }
    processman {

      name: processman
      path: modules/processman
      class: tcl
      sources: processman.tcl
      packages: {{processman 0.3}}
    }

    profiler {
      name: profiler
      path: modules/profiler
      class: tcl
      sources: profiler.tcl
      packages: {{profiler 0.3}}
    }
    pt {

      name: pt
      path: modules/pt



      class: tcl
      require: {{Tcl 8.5} snit {struct::stack 1.5} pt::ast pt::pe debug}
      sources: {char.tcl configuration.tcl paths.tcl pt_astree.tcl pt_cparam_config_critcl.tcl pt_cparam_config_tea.tcl pt_parse_peg.tcl pt_parse_peg_c.tcl pt_parse_peg_tcl.tcl pt_peg_container.tcl pt_peg_container_peg.tcl pt_peg_export.tcl pt_peg_export_container.tcl pt_peg_export_json.tcl pt_peg_export_peg.tcl pt_peg_from_json.tcl pt_peg_from_peg.tcl pt_peg_import.tcl pt_peg_import_json.tcl pt_peg_import_peg.tcl pt_peg_interp.tcl pt_peg_op.tcl pt_peg_to_container.tcl pt_peg_to_cparam.tcl pt_peg_to_json.tcl pt_peg_to_param.tcl pt_peg_to_peg.tcl pt_peg_to_tclparam.tcl pt_pegrammar.tcl pt_pexpr_op.tcl pt_pexpression.tcl pt_pgen.tcl pt_rdengine.tcl pt_rdengine_c.tcl pt_rdengine_oo.tcl pt_rdengine_tcl.tcl pt_tclparam_config_snit.tcl pt_tclparam_config_tcloo.tcl pt_util.tcl text_write.tcl}
      packages: {{char 1.0.1} {configuration 1} {paths 1} {pt::ast 1.1} {pt::cparam::configuration::critcl 1.0.2} {pt::cparam::configuration::tea 0.1} {pt::parse::peg 1.0.1} {pt_parse_peg_c 1.0.1} {pt::parse::peg_tcl 1.0.1} {pt::peg::container 1} {pt::peg::container::peg 1} {pt::peg::export 1} {pt::peg::export::container 1} {pt::peg::export::json 1} {pt::peg::export::peg 1} {pt::peg::from::json 1} {pt::peg::from::peg 1.0.3} {pt::peg::import 1} {pt::peg::import::json 1} {pt::peg::import::peg 1} {pt::peg::interp 1.0.1} {pt::peg::op 1.0.1} {pt::peg::to::container 1} {pt::peg::to::cparam 1.1.3} {pt::peg::to::json 1} {pt::peg::to::param 1.0.1} {pt::peg::to::peg 1.0.2} {pt::peg::to::tclparam 1.0.3} {pt::peg 1} {pt::pe::op 1} {pt::pe 1.0.2} {pt::pgen 1.0.3} {pt::rde 1.1} {pt::rde::critcl 1.3.3} {pt::rde::oo 1.1} {pt::tclparam::configuration::snit 1.0.2} {pt::tclparam::configuration::tcloo 1.0.4} {pt::util 1} {text::write 1}}
    }
    rc4 {
      name: rc4
      path: modules/rc4
      class: tcl
      sources: {rc4.tcl rc4c.tcl}
      packages: {{rc4 1.1.0} {rc4c 1.1.0}}
    }
    rcs {
      name: rcs
      path: modules/rcs
      class: tcl
      sources: rcs.tcl
      packages: {{rcs 0.1}}
    }
    report {
      name: report
      path: modules/report
      class: tcl
      sources: report.tcl
      packages: {{report 0.3.2}}
    }
    rest {
      name: rest
      path: modules/rest
      class: tcl
      sources: rest.tcl
      packages: {{rest 1.0.1}}
    }
    ripemd {
      name: ripemd
      path: modules/ripemd
      class: tcl
      sources: {ripemd128.tcl ripemd160.tcl}
      packages: {{ripemd128 1.0.5} {ripemd160 1.0.5}}
    }
    sasl {
      name: sasl
      path: modules/sasl
      class: tcl
      sources: {gtoken.tcl ntlm.tcl sasl.tcl scram.tcl}
      packages: {{SASL::XGoogleToken 1.0.1} {SASL::NTLM 1.1.2} {SASL 1.3.3} {SASL::SCRAM 0.1}}
    }
    scgi {

      name: scgi
      path: modules/scgi
      class: tcl
      sources: {scgi-app.tcl scgi-server.tcl}
      packages: {{scgi::app 0.1} {scgi::server 0.1}}
    }
    sha1 {
      name: sha1
      path: modules/sha1
      class: tcl
      sources: {sha1.tcl sha1c.tcl sha1v1.tcl sha256.tcl sha256c.tcl}
      packages: {{sha1 2.0.3} {sha1c 2.0.3} {sha1 1.1.1} {sha256 1.0.3} {sha256c 1.0.2}}


    }
    simulation {

      name: simulation
      path: modules/simulation
      class: tcl
      sources: {annealing.tcl montecarlo.tcl random.tcl}
      packages: {{simulation::annealing 0.2} {simulation::montecarlo 0.1} {simulation::random 0.3.1}}
    }
    smtpd {


      name: smtpd
      path: modules/smtpd
      class: tcl
      sources: smtpd.tcl
      packages: {{smtpd 1.5}}
    }
    snit {
      name: snit
      path: modules/snit
      class: tcl
      sources: {main1.tcl main1_83.tcl main2.tcl snit.tcl snit2.tcl snit_tcl83_utils.tcl validate.tcl}
      packages: {{snit 1.4.2} {snit 2.3.2}}
    }
    soundex {
      name: soundex
      path: modules/soundex
      class: tcl
      sources: soundex.tcl
      packages: {{soundex 1.0}}
    }
    stooop {
      name: stooop
      path: modules/stooop
      class: tcl
      sources: {mkpkgidx.tcl stooop.tcl switched.tcl xifo.tcl}
      packages: {{stooop 4.4.1} {switched 2.2.1}}
    }
    string {
      name: string
      path: modules/string
      class: tcl
      sources: {token.tcl token_shell.tcl}
      packages: {{string::token 1} {string::token::shell 1.2}}
    }
    stringprep {
      name: stringprep
      path: modules/stringprep
      class: tcl
      sources: {stringprep.tcl stringprep_data.tcl unicode.tcl unicode_data.tcl}
      packages: {{stringprep 1.0.1} {stringprep::data 1.0.1} {unicode 1.0.0} {unicode::data 1.0.0}}
    }
    struct {
      name: struct
      path: modules/struct
      class: tcl
      require: {{Tcl 8.4} struct::list struct::set {Tcl 8.5} {TclOO 0.6.1-} {Tcl 8.0} {Tcl 8.5} {TclOO 0.6.1-} {Tcl 8.2} struct::list}
      sources: {disjointset.tcl graph.tcl graph1.tcl graph_c.tcl graph_tcl.tcl graphops.tcl list.tcl matrix.tcl matrix1.tcl pool.tcl prioqueue.tcl queue.tcl queue_c.tcl queue_oo.tcl queue_tcl.tcl record.tcl sets.tcl sets_c.tcl sets_tcl.tcl skiplist.tcl stack.tcl stack_c.tcl stack_oo.tcl stack_tcl.tcl struct.tcl struct1.tcl tree.tcl tree1.tcl tree_c.tcl tree_tcl.tcl}
      packages: {{struct::disjointset 1.0} {struct::graph 2.4} {struct::graph 1.2.1} {struct_graphc 2.1} {struct::graph::op 0.11.3} {struct::list 1.8.3} {struct::matrix 2.0.3} {struct::matrix 1.2.1} {struct::pool 1.2.3} {struct::prioqueue 1.4} {struct::queue 1.4.5} {struct_queuec 1.3.1} {struct::record 1.2.1} {struct::set 2.2.3} {struct_setc 2.1.1} {struct::skiplist 1.3} {struct::stack 1.5.3} {struct_stackc 1.3.1} {struct 2.1} {struct 1.4} {struct::tree 2.1.2} {struct::tree 1.2.2} {struct_treec 2.1.1}}
    }
    tar {
      name: tar
      path: modules/tar
      class: tcl
      sources: tar.tcl
      packages: {{tar 0.10}}
    }
    tcllibc.tcl {
      name: tcllibc.tcl
      path: modules/tcllibc.tcl
      class: tcl
      sources: {}
    }
    tepam {
      name: tepam
      path: modules/tepam
      class: tcl
      sources: {tepam.tcl tepam_doc_gen.tcl}
      packages: {{tepam 0.5} {tepam::doc_gen 0.1.1}}





    }
    term {
      name: term
      path: modules/term
      class: tcl
      sources: {bind.tcl imenu.tcl ipager.tcl receive.tcl send.tcl term.tcl}
      packages: {{term::receive::bind 0.1} {term::interact::menu 0.1} {term::interact::pager 0.1} {term::receive 0.1} {term::send 0.1} {term 0.1}}
    }
    textutil {
      name: textutil
      path: modules/textutil
      class: tcl
      sources: {adjust.tcl expander.tcl repeat.tcl split.tcl string.tcl tabify.tcl textutil.tcl trim.tcl}
      packages: {{textutil::adjust 0.7.3} {textutil::expander 1.3.1} {textutil::repeat 0.7} {textutil::split 0.7} {textutil::string 0.8} {textutil::tabify 0.7} {textutil 0.8} {textutil::trim 0.7}}
    }
    tie {


      name: tie
      path: modules/tie
      class: tcl
      sources: {tie.tcl tie_array.tcl tie_dsource.tcl tie_file.tcl tie_growfile.tcl tie_log.tcl tie_rarray.tcl}
      packages: {{tie 1.1} {tie::std::array 1.0} {tie::std::dsource 1.0} {tie::std::file 1.0.4} {tie::std::growfile 1.0} {tie::std::log 1.0} {tie::std::rarray 1.0}}
    }
    tiff {
      name: tiff
      path: modules/tiff
      class: tcl
      sources: tiff.tcl
      packages: {{tiff 0.2.1}}
    }
    transfer {
      name: transfer
      path: modules/transfer
      class: tcl
      sources: {connect.tcl copyops.tcl ddest.tcl dsource.tcl receiver.tcl tqueue.tcl transmitter.tcl}
      packages: {{transfer::connect 0.2} {transfer::copy 0.3} {transfer::data::destination 0.2} {transfer::data::source 0.2} {transfer::receiver 0.2} {transfer::copy::queue 0.1} {transfer::transmitter 0.2}}
    }



    treeql {
      name: treeql
      path: modules/treeql
      class: tcl
      require: {{Tcl 8.4} snit struct::list struct::set {Tcl 8.5} snit struct::list struct::set}
      sources: {treeql.tcl treeql84.tcl treeql85.tcl}
      packages: {{treeql 1.3.1}}
    }
    try {
      name: try
      path: modules/try
      class: tcl
      sources: {throw.tcl try.tcl}
      packages: {{throw 1} {try 1}}
    }
    uev {
      name: uev
      path: modules/uev
      class: tcl
      sources: {uevent.tcl uevent_onidle.tcl}
      packages: {{uevent 0.3.1} {uevent::onidle 0.1}}
    }
    units {
      name: units
      path: modules/units
      class: tcl
      sources: units.tcl
      packages: {{units 2.1.1}}
    }
    uri {
      name: uri
      path: modules/uri
      class: tcl
      sources: {uri.tcl urn-scheme.tcl}
      packages: {{uri 1.2.5} {uri::urn 1.0.3}}
    }
    uuid {


      name: uuid
      path: modules/uuid
      class: tcl
      sources: uuid.tcl
      packages: {{uuid 1.0.5}}
    }
    valtype {
      name: valtype
      path: modules/valtype
      class: tcl
      sources: {cc_amex.tcl cc_discover.tcl cc_mastercard.tcl cc_visa.tcl ean13.tcl iban.tcl imei.tcl isbn.tcl luhn.tcl luhn5.tcl usnpi.tcl valtype.tcl verhoeff.tcl}
      packages: {{valtype::creditcard::amex 1} {valtype::creditcard::discover 1} {valtype::creditcard::mastercard 1} {valtype::creditcard::visa 1} {valtype::gs1::ean13 1} {valtype::iban 1.5} {valtype::imei 1} {valtype::isbn 1} {valtype::luhn 1} {valtype::luhn5 1} {valtype::usnpi 1} {valtype::common 1} {valtype::verhoeff 1}}
    }
    virtchannel_base {
      name: virtchannel_base
      path: modules/virtchannel_base
      class: tcl
      sources: {cat.tcl facade.tcl fifo.tcl fifo2.tcl halfpipe.tcl memchan.tcl null.tcl nullzero.tcl random.tcl randseed.tcl std.tcl string.tcl textwindow.tcl variable.tcl zero.tcl}
      packages: {{tcl::chan::cat 1.0.2} {tcl::chan::facade 1.0.1} {tcl::chan::fifo 1} {tcl::chan::fifo2 1} {tcl::chan::halfpipe 1} {tcl::chan::memchan 1.0.3} {tcl::chan::null 1} {tcl::chan::nullzero 1} {tcl::chan::random 1} {tcl::randomseed 1} {tcl::chan::std 1.0.1} {tcl::chan::string 1.0.2} {tcl::chan::textwindow 1} {tcl::chan::variable 1.0.3} {tcl::chan::zero 1}}
    }


    virtchannel_core {
      name: virtchannel_core
      path: modules/virtchannel_core
      class: tcl
      sources: {core.tcl events.tcl transformcore.tcl}
      packages: {{tcl::chan::core 1} {tcl::chan::events 1} {tcl::transform::core 1}}
    }

    virtchannel_transform {
      name: virtchannel_transform
      path: modules/virtchannel_transform
      class: tcl
      sources: {adler32.tcl base64.tcl counter.tcl crc32.tcl hex.tcl identity.tcl limitsize.tcl observe.tcl otp.tcl rot.tcl spacer.tcl zlib.tcl}
      packages: {{tcl::transform::adler32 1} {tcl::transform::base64 1} {tcl::transform::counter 1} {tcl::transform::crc32 1} {tcl::transform::hex 1} {tcl::transform::identity 1} {tcl::transform::limitsize 1} {tcl::transform::observe 1} {tcl::transform::otp 1} {tcl::transform::rot 1} {tcl::transform::spacer 1} {tcl::transform::zlib 1.0.1}}
    }
    websocket {
      name: websocket
      path: modules/websocket
      class: tcl
      sources: websocket.tcl
      packages: {{websocket 1.4}}
    }



    wip {
      name: wip
      path: modules/wip
      class: tcl
      sources: {wip.tcl wip2.tcl}
      packages: {{wip 1.2} {wip 2.2}}
    }
    yaml {
      name: yaml
      path: modules/yaml
      class: tcl
      sources: {huddle.tcl yaml.tcl}
      packages: {{huddle 0.1.5} {yaml 0.3.7}}
    }
    zip {
      name: zip
      path: modules/zip
      class: tcl
      sources: {decode.tcl encode.tcl mkzip.tcl}
      packages: {{zipfile::decode 0.7} {zipfile::encode 0.3} {zipfile::mkzip 1.2}}
    }
  }
  package/ {
    {nns 1.2} {
      file: nns
      name: nns
      version: 1.2
      application: nns
    }

    {nnsd 1.0.1} {
      file: nnsd

      name: nnsd
      version: 1.0.1
      application: nnsd
    }
    {nnslog 1.0} {
      file: nnslog
      name: nnslog
      version: 1.0
      application: nnslog
    }
    {page 1.0} {
      file: page
      name: page
      version: 1.0
      application: page
    }
    {tcldocstrip 1.0.1} {
      file: tcldocstrip
      name: tcldocstrip
      version: 1.0.1
      application: tcldocstrip
    }
    {aes 1.2.1} {
      file: aes.tcl
      require: {{Tcl 8.5}}
      name: aes
      version: 1.2.1
      module: aes
    }

    {S3 1.0.3} {
      file: S3.tcl
      require: {{Tcl 8.5} xsxp sha1 md5 base64}
      name: S3
      version: 1.0.3
      module: amazon-s3
    }

    {xsxp 1.0} {
      file: xsxp.tcl
      require: xml
      name: xsxp
      version: 1.0
      module: amazon-s3
    }

    {asn 0.8.4} {
      file: asn.tcl
      require: {{Tcl 8.4}}
      name: asn
      version: 0.8.4
      module: asn
    }
    {base32 0.1} {
      file: base32.tcl
      require: {{Tcl 8.4}}
      name: base32
      version: 0.1
      module: base32
    }
    {base32::core 0.1} {
      file: base32core.tcl
      name: base32::core
      version: 0.1
      module: base32
    }
    {base32::hex 0.1} {
      file: base32hex.tcl
      require: {{Tcl 8.4}}
      name: base32::hex
      version: 0.1
      module: base32
    }
    {ascii85 1.0} {
      file: ascii85.tcl
      require: {{Tcl 8.4}}
      name: ascii85
      version: 1.0
      module: base64
    }
    {base64 2.4.2} {
      file: base64.tcl
      require: {{Tcl 8.2}}
      name: base64
      version: 2.4.2
      module: base64
    }
    {base64c 0.1.0} {
      file: base64c.tcl
      require: critcl
      name: base64c
      version: 0.1.0
      module: base64
    }

    {uuencode 1.1.5} {
      file: uuencode.tcl
      require: {{Tcl 8.2}}
      name: uuencode
      version: 1.1.5
      module: base64
    }
    {yencode 1.1.3} {
      file: yencode.tcl
      require: {{Tcl 8.2}}
      name: yencode
      version: 1.1.3
      module: base64
    }
    {bee 0.1} {
      file: bee.tcl
      require: {{Tcl 8.4}}
      name: bee
      version: 0.1
      module: bee
    }
    {bench 0.4} {
      file: bench.tcl
      require: {{Tcl 8.2} logger csv struct::matrix report}
      name: bench
      version: 0.4
      module: bench
    }

    {bench::in 0.1} {


      file: bench_read.tcl
      require: {{Tcl 8.2} csv}
      name: bench::in
      version: 0.1
      module: bench
    }
    {bench::out::csv 0.1.2} {
      file: bench_wcsv.tcl
      require: {{Tcl 8.2} csv}
      name: bench::out::csv
      version: 0.1.2
      module: bench
    }
    {bench::out::text 0.1.2} {
      file: bench_wtext.tcl
      require: {{Tcl 8.2} struct::matrix report}
      name: bench::out::text
      version: 0.1.2
      module: bench
    }
    {bibtex 0.6} {
      file: bibtex.tcl
      require: {{Tcl 8.4} cmdline}
      name: bibtex
      version: 0.6
      module: bibtex

    }
    {blowfish 1.0.4} {
      file: blowfish.tcl
      require: {{Tcl 8.2}}
      name: blowfish
      version: 1.0.4
      module: blowfish
    }
    {cache::async 0.3} {
      file: async.tcl
      require: {{Tcl 8.4} snit}
      name: cache::async
      version: 0.3
      module: cache
    }
    {clock::iso8601 0.1} {
      file: iso8601.tcl
      require: {{Tcl 8.5}}
      name: clock::iso8601
      version: 0.1
      module: clock
    }


    {clock::rfc2822 0.1} {

      file: rfc2822.tcl
      require: {{Tcl 8.5}}
      name: clock::rfc2822
      version: 0.1
      module: clock
    }
    {cmdline 1.5} {
      file: cmdline.tcl
      require: {{Tcl 8.2}}
      name: cmdline
      version: 1.5
      module: cmdline
    }
    {codebale::autodoc 0.1} {
      file: autodoc.tcl
      name: codebale::autodoc
      version: 0.1
      module: codebale
    }
    {codebale 0.2} {
      file: index.tcl
      name: codebale
      version: 0.2
      require: {odie fileutil}
      module: codebale


    }
    {comm 4.6.3.1} {
      file: comm.tcl
      require: {{Tcl 8.3} snit}
      name: comm
      version: 4.6.3.1
      module: comm
    }
    {coroutine::auto 1.1.3} {
      file: coro_auto.tcl
      require: {{Tcl 8.6} coroutine}
      name: coroutine::auto
      version: 1.1.3
      module: coroutine
    }
    {coroutine 1.1.3} {
      file: coroutine.tcl
      require: {{Tcl 8.6}}
      name: coroutine
      version: 1.1.3
      module: coroutine
    }
    {counter 2.0.4} {
      file: counter.tcl
      require: {{Tcl 8.2}}
      name: counter
      version: 2.0.4
      module: counter
    }
    {cksum 1.1.4} {

      file: cksum.tcl
      require: {{Tcl 8.2}}
      name: cksum
      version: 1.1.4
      module: crc
    }

    {crc16 1.1.2} {
      file: crc16.tcl
      require: {{Tcl 8.2}}
      name: crc16
      version: 1.1.2
      module: crc
    }
    {crc32 1.3.2} {
      file: crc32.tcl
      require: {{Tcl 8.2}}
      name: crc32
      version: 1.3.2
      module: crc
    }
    {crcc 1.0.0} {
      file: crcc.tcl
      require: critcl
      name: crcc
      version: 1.0.0
      module: crc
    }
    {sum 1.1.2} {
      file: sum.tcl
      require: {{Tcl 8.2}}
      name: sum
      version: 1.1.2
      module: crc
    }
    {cron 1.1} {
      file: cron.tcl
      name: cron
      version: 1.1
      module: cron
    }


    {csv 0.8} {

      file: csv.tcl
      require: {{Tcl 8.4}}
      name: csv
      version: 0.8
      module: csv
    }
    {debug::caller 1} {
      file: caller.tcl
      require: {{Tcl 8.5} debug}
      name: debug::caller
      version: 1
      module: debug
    }

    {debug 1.0.5} {




      file: debug.tcl
      require: {{Tcl 8.5}}
      name: debug
      version: 1.0.5
      module: debug
    }
    {debug::heartbeat 1} {
      file: heartbeat.tcl
      require: {{Tcl 8.5} debug}
      name: debug::heartbeat
      version: 1
      module: debug
    }
    {debug::timestamp 1} {
      file: timestamp.tcl
      require: {{Tcl 8.5} debug}
      name: debug::timestamp
      version: 1
      module: debug
    }
    {des 1.1.0} {
      file: des.tcl
      require: {{Tcl 8.2}}
      name: des
      version: 1.1.0
      module: des
    }
    {tclDES 1.0.0} {
      file: tcldes.tcl
      name: tclDES
      version: 1.0.0
      module: des
    }
    {tclDESjr 1.0.0} {
      file: tcldesjr.tcl
      name: tclDESjr
      version: 1.0.0
      module: des
    }
    {tcllib::testutils 1.2} {
      file: testutilities.tcl
      name: tcllib::testutils
      version: 1.2
      module: devtools
    }
    {dns 1.3.5} {
      file: dns.tcl
      require: {{Tcl 8.2} logger uri uri::urn ip}
      name: dns
      version: 1.3.5
      module: dns
    }

    {ip 1.3} {
      file: ip.tcl
      require: {{Tcl 8.2}}
      name: ip
      version: 1.3
      module: dns
    }
    {ipMorec 1.0} {
      file: ipMoreC.tcl
      require: critcl
      name: ipMorec
      version: 1.0
      module: dns
    }
    {resolv 1.0.3} {
      file: resolv.tcl
      require: {{dns 1.0}}
      name: resolv
      version: 1.0.3
      module: dns
    }
    {spf 1.1.1} {
      file: spf.tcl
      require: {{Tcl 8.2} dns logger ip struct::list uri::urn}
      name: spf
      version: 1.1.1
      module: dns
    }
    {docstrip 1.2} {
      file: docstrip.tcl
      require: {{Tcl 8.4}}
      name: docstrip
      version: 1.2
      module: docstrip
    }
    {docstrip::util 1.3} {
      file: docstrip_util.tcl
      require: {{Tcl 8.4} {docstrip 1.2}}
      name: docstrip::util
      version: 1.3
      module: docstrip
    }
    {doctools::changelog 1.1} {
      file: changelog.tcl
      require: {{Tcl 8.2} textutil}
      name: doctools::changelog
      version: 1.1
      module: doctools
    }
    {doctools::cvs 1} {
      file: cvs.tcl
      require: {{Tcl 8.2} textutil}
      name: doctools::cvs
      version: 1
      module: doctools
    }
    {doctools::idx 1.0.5} {
      file: docidx.tcl
      require: {{Tcl 8.2} textutil::expander}
      name: doctools::idx
      version: 1.0.5
      module: doctools
    }
    {doctools::toc 1.1.4} {
      file: doctoc.tcl
      require: {{Tcl 8.2} textutil::expander}
      name: doctools::toc
      version: 1.1.4
      module: doctools
    }
    {doctools 1.4.19} {
      file: doctools.tcl
      require: {{Tcl 8.2} textutil::expander}
      name: doctools
      version: 1.4.19
      module: doctools
    }
    {doctools::config 0.1} {
      file: config.tcl
      require: {{Tcl 8.4} snit}
      name: doctools::config
      version: 0.1
      module: doctools2base
    }
    {doctools::html 0.1} {
      file: html.tcl
      require: {{Tcl 8.4} doctools::text}
      name: doctools::html
      version: 0.1
      module: doctools2base
    }
    {doctools::html::cssdefaults 0.1} {
      file: html_cssdefaults.tcl
      require: {{Tcl 8.4}}
      name: doctools::html::cssdefaults
      version: 0.1
      module: doctools2base
    }

    {doctools::msgcat 0.1} {
      file: msgcat.tcl
      require: {{Tcl 8.4} msgcat}
      name: doctools::msgcat
      version: 0.1
      module: doctools2base
    }
    {doctools::nroff::man_macros 0.1} {
      file: nroff_manmacros.tcl
      require: {{Tcl 8.4}}
      name: doctools::nroff::man_macros
      version: 0.1
      module: doctools2base
    }
    {doctools::paths 0.1} {
      file: paths.tcl
      require: {{Tcl 8.4} snit}
      name: doctools::paths
      version: 0.1
      module: doctools2base
    }
    {doctools::tcl::parse 0.1} {
      file: tcl_parse.tcl
      require: {{Tcl 8.4} snit fileutil logger struct::list struct::stack struct::set treeql}
      name: doctools::tcl::parse
      version: 0.1
      module: doctools2base
    }
    {doctools::text 0.1} {
      file: text.tcl
      require: {{Tcl 8.4}}
      name: doctools::text
      version: 0.1
      module: doctools2base
    }
    {doctools::idx 2} {
      file: container.tcl
      require: {{Tcl 8.4} doctools::idx::structure snit}
      name: doctools::idx
      version: 2
      module: doctools2idx
    }
    {doctools::idx::export 0.1} {
      file: export.tcl
      require: {{Tcl 8.4} doctools::config doctools::idx::structure pluginmgr snit}
      name: doctools::idx::export
      version: 0.1
      module: doctools2idx
    }
    {doctools::idx::export::docidx 0.1} {
      file: export_docidx.tcl
      require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure}
      name: doctools::idx::export::docidx
      version: 0.1
      module: doctools2idx
    }
    {doctools::idx::export::html 0.2} {
      file: export_html.tcl
      require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure doctools::html doctools::html::cssdefaults}
      name: doctools::idx::export::html
      version: 0.2
      module: doctools2idx
    }
    {doctools::idx::export::json 0.1} {
      file: export_json.tcl
      require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure textutil::adjust}
      name: doctools::idx::export::json
      version: 0.1
      module: doctools2idx
    }
    {doctools::idx::export::nroff 0.3} {
      file: export_nroff.tcl
      require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure doctools::text doctools::nroff::man_macros}
      name: doctools::idx::export::nroff
      version: 0.3
      module: doctools2idx
    }
    {doctools::idx::export::text 0.2} {
      file: export_text.tcl
      require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure doctools::text}
      name: doctools::idx::export::text
      version: 0.2
      module: doctools2idx
    }
    {doctools::idx::export::wiki 0.2} {
      file: export_wiki.tcl
      require: {{Tcl 8.4} doctools::idx::export::plugin doctools::idx::structure doctools::text}
      name: doctools::idx::export::wiki
      version: 0.2
      module: doctools2idx
    }

    {doctools::idx::import 0.1} {
      file: import.tcl
      require: {{Tcl 8.4} doctools::config doctools::idx::structure doctools::paths pluginmgr snit}
      name: doctools::idx::import
      version: 0.1
      module: doctools2idx
    }
    {doctools::idx::import::docidx 0.1} {
      file: import_docidx.tcl
      require: {{Tcl 8.4} doctools::idx::import::plugin doctools::idx::parse}
      name: doctools::idx::import::docidx
      version: 0.1
      module: doctools2idx
    }
    {doctools::idx::import::json 0.1} {
      file: import_json.tcl
      require: {{Tcl 8.4} doctools::idx::import::plugin doctools::idx::structure json}
      name: doctools::idx::import::json
      version: 0.1
      module: doctools2idx
    }
    {doctools::msgcat::idx::c 0.1} {
      file: msgcat_c.tcl
      require: msgcat
      name: doctools::msgcat::idx::c
      version: 0.1
      module: doctools2idx
    }
    {doctools::msgcat::idx::de 0.1} {
      file: msgcat_de.tcl
      require: msgcat
      name: doctools::msgcat::idx::de
      version: 0.1
      module: doctools2idx
    }
    {doctools::msgcat::idx::en 0.1} {
      file: msgcat_en.tcl
      require: msgcat
      name: doctools::msgcat::idx::en
      version: 0.1
      module: doctools2idx
    }
    {doctools::msgcat::idx::fr 0.1} {
      file: msgcat_fr.tcl
      require: msgcat
      name: doctools::msgcat::idx::fr
      version: 0.1
      module: doctools2idx
    }
    {doctools::idx::parse 0.1} {
      file: parse.tcl
      require: {{Tcl 8.4} doctools::idx::structure doctools::msgcat doctools::tcl::parse fileutil logger snit struct::list struct::tree}
      name: doctools::idx::parse
      version: 0.1
      module: doctools2idx
    }
    {doctools::idx::structure 0.1} {
      file: structure.tcl
      require: {{Tcl 8.4} snit}
      name: doctools::idx::structure
      version: 0.1
      module: doctools2idx
    }
    {doctools::toc 2} {
      file: container.tcl
      require: {{Tcl 8.4} doctools::toc::structure snit struct::tree}
      name: doctools::toc
      version: 2
      module: doctools2toc
    }
    {doctools::toc::export 0.1} {
      file: export.tcl
      require: {{Tcl 8.4} doctools::config doctools::toc::structure pluginmgr snit}
      name: doctools::toc::export
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::export::doctoc 0.1} {
      file: export_doctoc.tcl
      require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure}
      name: doctools::toc::export::doctoc
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::export::html 0.1} {
      file: export_html.tcl
      require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure doctools::html doctools::html::cssdefaults}
      name: doctools::toc::export::html
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::export::json 0.1} {
      file: export_json.tcl
      require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure textutil::adjust}
      name: doctools::toc::export::json
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::export::nroff 0.2} {
      file: export_nroff.tcl
      require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure doctools::text doctools::nroff::man_macros}
      name: doctools::toc::export::nroff
      version: 0.2
      module: doctools2toc
    }
    {doctools::toc::export::text 0.1} {
      file: export_text.tcl
      require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure doctools::text}
      name: doctools::toc::export::text
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::export::wiki 0.1} {
      file: export_wiki.tcl
      require: {{Tcl 8.4} doctools::toc::export::plugin doctools::toc::structure doctools::text}
      name: doctools::toc::export::wiki
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::import 0.1} {
      file: import.tcl
      require: {{Tcl 8.4} doctools::config doctools::toc::structure doctools::paths pluginmgr snit}
      name: doctools::toc::import
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::import::doctoc 0.1} {
      file: import_doctoc.tcl
      require: {{Tcl 8.4} doctools::toc::import::plugin doctools::toc::parse}
      name: doctools::toc::import::doctoc
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::import::json 0.1} {
      file: import_json.tcl
      require: {{Tcl 8.4} doctools::toc::import::plugin doctools::toc::structure json}
      name: doctools::toc::import::json
      version: 0.1
      module: doctools2toc
    }
    {doctools::msgcat::toc::c 0.1} {
      file: msgcat_c.tcl
      require: msgcat
      name: doctools::msgcat::toc::c
      version: 0.1
      module: doctools2toc
    }
    {doctools::msgcat::toc::de 0.1} {
      file: msgcat_de.tcl
      require: msgcat
      name: doctools::msgcat::toc::de
      version: 0.1
      module: doctools2toc
    }
    {doctools::msgcat::toc::en 0.1} {
      file: msgcat_en.tcl
      require: msgcat
      name: doctools::msgcat::toc::en
      version: 0.1
      module: doctools2toc
    }
    {doctools::msgcat::toc::fr 0.1} {
      file: msgcat_fr.tcl
      require: msgcat
      name: doctools::msgcat::toc::fr
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::parse 0.1} {
      file: parse.tcl
      require: {{Tcl 8.4} doctools::toc::structure doctools::msgcat doctools::tcl::parse fileutil logger snit struct::list struct::tree}
      name: doctools::toc::parse
      version: 0.1
      module: doctools2toc
    }
    {doctools::toc::structure 0.1} {
      file: structure.tcl
      require: {{Tcl 8.4} snit}
      name: doctools::toc::structure
      version: 0.1
      module: doctools2toc
    }
    {dtplite 1.2} {
      file: dtplite.tcl
      name: dtplite
      version: 1.2
      require: {{doctools 1.4.11} {doctools::idx 1.0.4} {doctools::toc 1.1.3} fileutil textutil::repeat}
      module: dtplite
    }

    {exif 1.1.2} {
      file: exif.tcl
      require: {{Tcl 8.3}}
      name: exif
      version: 1.1.2
      module: exif
    }
    {fileutil::decode 0.2} {
      file: decode.tcl
      require: {{Tcl 8.4}}
      name: fileutil::decode
      version: 0.2
      module: fileutil
    }

    {fileutil 1.15} {
      file: fileutil.tcl
      require: {{Tcl 8.2} cmdline}
      name: fileutil
      version: 1.15
      module: fileutil
    }
    {fileutil::multi 0.1} {
      file: multi.tcl
      require: fileutil::multi::op
      name: fileutil::multi
      version: 0.1
      module: fileutil
    }
    {fileutil::multi::op 0.5.3} {
      file: multiop.tcl
      require: {fileutil snit struct::stack wip}
      name: fileutil::multi::op
      version: 0.5.3
      module: fileutil
    }
    {fileutil::traverse 0.5} {
      file: traverse.tcl
      require: {{Tcl 8.3} control fileutil}
      name: fileutil::traverse
      version: 0.5
      module: fileutil
    }
    {ftp {[lindex}} {
      file: ftp.tcl
      require: {{Tcl 8.2} log}
      name: ftp
      version: {[lindex}
      module: ftp
    }
    {ftp::geturl {[lindex}} {
      file: ftp_geturl.tcl
      require: {ftp uri}
      name: ftp::geturl
      version: {[lindex}
      module: ftp
    }
    {ftpd 1.2.6} {
      file: ftpd.tcl
      require: {{Tcl 8.2}}
      name: ftpd
      version: 1.2.6
      module: ftpd
    }
    {fileutil::magic::cfront 1.0} {
      file: cfront.tcl
      require: {{Tcl 8.4} fileutil fileutil::magic::cgen fileutil::magic::rt struct::list}
      name: fileutil::magic::cfront
      version: 1.0
      module: fumagic
    }
    {fileutil::magic::cgen 1.0} {
      file: cgen.tcl
      require: {{Tcl 8.4} fileutil::magic::rt struct::list struct::tree}
      name: fileutil::magic::cgen
      version: 1.0
      module: fumagic
    }

    {fileutil::magic::filetype 1.0.2} {
      file: filetypes.tcl
      require: {{Tcl 8.4} fileutil::magic::rt fileutil::magic::rt}
      name: fileutil::magic::filetype
      version: 1.0.2
      module: fumagic
    }
    {fileutil::magic::mimetype 1.0.2} {
      file: mimetypes.tcl
      require: {{Tcl 8.4} fileutil::magic::rt fileutil::magic::rt}
      name: fileutil::magic::mimetype
      version: 1.0.2
      module: fumagic
    }
    {fileutil::magic::rt 1.0} {
      file: rtcore.tcl
      require: {{Tcl 8.4}}
      name: fileutil::magic::rt
      version: 1.0
      module: fumagic
    }
    {generator 0.1} {
      file: generator.tcl
      require: {{Tcl 8.6}}
      name: generator
      version: 0.1
      module: generator
    }
    {gpx 1} {



      file: gpx.tcl
      require: {{Tcl 8.5} tdom}
      name: gpx
      version: 1
      module: gpx
    }
    {grammar::aycock 1.0} {
      file: aycock-build.tcl
      name: grammar::aycock
      version: 1.0
      require: {{Tcl 8.4} {grammar::aycock::debug 1.0}}
      module: grammar_aycock
    }
    {grammar::aycock::debug 1.0} {
      file: aycock-debug.tcl
      name: grammar::aycock::debug
      version: 1.0
      require: {{Tcl 8.4} {grammar::aycock::runtime 1.0}}
      module: grammar_aycock
    }
    {grammar::aycock::runtime 1.0} {
      file: aycock-runtime.tcl
      name: grammar::aycock::runtime
      version: 1.0
      require: {{Tcl 8.5}}
      module: grammar_aycock
    }
    {grammar::fa::dacceptor 0.1.1} {
      file: dacceptor.tcl
      require: {snit struct::set}
      name: grammar::fa::dacceptor
      version: 0.1.1
      module: grammar_fa
    }
    {grammar::fa::dexec 0.2} {
      file: dexec.tcl
      require: snit
      name: grammar::fa::dexec
      version: 0.2
      module: grammar_fa
    }




    {grammar::fa 0.5} {
      file: fa.tcl
      require: {{Tcl 8.4} grammar::fa::op struct::list struct::set}
      name: grammar::fa
      version: 0.5
      module: grammar_fa
    }
    {grammar::fa::op 0.4.1} {
      file: faop.tcl
      require: {struct::list struct::set}
      name: grammar::fa::op
      version: 0.4.1
      module: grammar_fa
    }
    {grammar::me::cpu::gasm 0.1} {
      file: gasm.tcl
      name: grammar::me::cpu::gasm
      version: 0.1
      module: grammar_me
    }
    {grammar::me::cpu 0.2} {
      file: me_cpu.tcl
      require: {snit grammar::me::cpu::core}
      name: grammar::me::cpu
      version: 0.2
      module: grammar_me
    }
    {grammar::me::cpu::core 0.2} {

      file: me_cpucore.tcl

      name: grammar::me::cpu::core
      version: 0.2
      module: grammar_me
    }
    {grammar::me::tcl 0.1} {
      file: me_tcl.tcl
      name: grammar::me::tcl
      version: 0.1
      module: grammar_me
    }
    {grammar::me::util 0.1} {
      file: me_util.tcl
      name: grammar::me::util
      version: 0.1
      module: grammar_me
    }
    {grammar::peg 0.2} {
      file: peg.tcl
      require: snit
      name: grammar::peg
      version: 0.2
      module: grammar_peg
    }
    {grammar::peg::interp 0.1.1} {
      file: peg_interp.tcl
      require: grammar::me::tcl
      name: grammar::peg::interp
      version: 0.1.1
      module: grammar_peg
    }
    {hook 0.1} {
      file: hook.tcl
      name: hook
      version: 0.1
      module: hook
    }
    {html 1.4.4} {
      file: html.tcl
      require: {{Tcl 8.2} ncgi}
      name: html
      version: 1.4.4
      module: html
    }
    {htmlparse 1.2.1} {
      file: htmlparse.tcl
      require: {{Tcl 8.2} struct::stack {cmdline 1.1}}
      name: htmlparse
      version: 1.2.1
      module: htmlparse
    }
    {autoproxy 1.5.3} {
      file: autoproxy.tcl
      require: {http uri base64}
      name: autoproxy
      version: 1.5.3
      module: http
    }
    {httpd 0.1} {
      file: httpd.tcl
      require: {uri oo::meta nettool cron}
      name: httpd
      version: 0.1
      module: httpd
    }
    {ident 0.42} {
      file: ident.tcl
      name: ident
      version: 0.42
      module: ident
    }
    {imap4 0.5.2} {
      file: imap4.tcl
      require: {{Tcl 8.5}}
      name: imap4
      version: 0.5.2
      module: imap4
    }
    {inifile 0.3} {
      file: ini.tcl
      name: inifile
      version: 0.3


      module: inifile
    }
    {interp::delegate::method 0.2} {



      file: deleg_method.tcl
      require: {{Tcl 8.3} snit}
      name: interp::delegate::method
      version: 0.2
      module: interp
    }

    {interp::delegate::proc 0.2} {
      file: deleg_proc.tcl
      require: {{Tcl 8.3}}
      name: interp::delegate::proc
      version: 0.2


      module: interp
    }




    {interp 0.1.2} {
      file: interp.tcl
      require: {{Tcl 8.3}}
      name: interp
      version: 0.1.2


      module: interp



    }
    {irc 0.6.1} {
      file: irc.tcl
      require: {{Tcl 8.3}}
      name: irc
      version: 0.6.1
      module: irc
    }
    {picoirc 0.5.1} {
      file: picoirc.tcl
      name: picoirc
      version: 0.5.1
      module: irc
    }

    {javascript 1.0.2} {
      file: javascript.tcl
      require: {{Tcl 8} {ncgi 1}}
      name: javascript
      version: 1.0.2
      module: javascript
    }
    {jpeg 0.5} {
      file: jpeg.tcl
      name: jpeg
      version: 0.5
      module: jpeg
    }
    {json 1.3.3} {
      file: json.tcl
      require: {{Tcl 8.4}}
      name: json
      version: 1.3.3
      module: json
    }
    {json::write 1.0.3} {
      file: json_write.tcl
      require: {{Tcl 8.5}}
      name: json::write
      version: 1.0.3
      module: json


    }
    {jsonc 1.1.2} {
      file: jsonc.tcl
      require: {critcl {Tcl 8.4}}
      name: jsonc
      version: 1.1.2
      module: json
    }
    {lambda 1} {
      file: lambda.tcl
      require: {{Tcl 8.5}}
      name: lambda
      version: 1
      module: lambda
    }
    {ldap 1.8} {
      file: ldap.tcl
      require: {{Tcl 8.4} {asn 0.7}}
      name: ldap
      version: 1.8
      module: ldap
    }
    {ldapx 1.0} {
      file: ldapx.tcl
      require: {{Tcl 8.4} snit {uri 1.1.5} base64 {ldap 1.6}}
      name: ldapx
      version: 1.0
      module: ldap
    }
    {log 1.3} {
      file: log.tcl
      require: {{Tcl 8}}
      name: log
      version: 1.3
      module: log
    }


    {logger 0.9.4} {

      file: logger.tcl
      require: {{Tcl 8.2}}
      name: logger
      version: 0.9.4
      module: log
    }
    {logger::appender 1.3} {
      file: loggerAppender.tcl
      require: md5
      name: logger::appender
      version: 1.3
      module: log
    }
    {logger::utils 1.3} {
      file: loggerUtils.tcl
      require: {{Tcl 8.4} logger logger::appender msgcat}
      name: logger::utils
      version: 1.3
      module: log
    }
    {map::geocode::nominatim 0.1} {
      file: map_geocode_nominatim.tcl
      require: {{Tcl 8.5} http json uri snit}
      name: map::geocode::nominatim
      version: 0.1
      module: map
    }
    {map::slippy 0.5} {
      file: map_slippy.tcl
      require: {{Tcl 8.4} snit math::constants}
      name: map::slippy
      version: 0.5
      module: map
    }
    {map::slippy::cache 0.2} {
      file: map_slippy_cache.tcl
      require: {{Tcl 8.4} Tk map::slippy fileutil img::png snit}
      name: map::slippy::cache
      version: 0.2
      module: map
    }
    {map::slippy::fetcher 0.3} {
      file: map_slippy_fetcher.tcl
      require: {{Tcl 8.4} Tk img::png map::slippy http snit}
      name: map::slippy::fetcher
      version: 0.3
      module: map
    }
    {mapproj 1.0} {
      file: mapproj.tcl
      require: {{Tcl 8.4} {math::interpolate 1.0} {math::special 0.2.1}}
      name: mapproj
      version: 1.0
      module: mapproj
    }
    {Markdown 1.0} {



      file: markdown.tcl
      require: textutil
      name: Markdown
      version: 1.0
      module: markdown
    }
    {math::bigfloat 1.2.2} {
      file: bigfloat.tcl
      require: {{Tcl 8.4} math::bignum}
      name: math::bigfloat
      version: 1.2.2
      module: math
    }
    {math::bigfloat 2.0.2} {
      file: bigfloat2.tcl
      require: {{Tcl 8.5}}
      name: math::bigfloat
      version: 2.0.2
      module: math
    }
    {math::bignum 3.1.1} {
      file: bignum.tcl
      require: {{Tcl 8.4}}
      name: math::bignum
      version: 3.1.1
      module: math
    }
    {math::calculus 0.8.1} {
      file: calculus.tcl
      require: {{Tcl 8.4} math::interpolate}
      name: math::calculus
      version: 0.8.1
      module: math
    }
    {math::constants 1.0.1} {
      file: constants.tcl
      require: {{Tcl 8.2}}
      name: math::constants
      version: 1.0.1
      module: math
    }
    {math::decimal 1.0.3} {
      file: decimal.tcl
      require: {{Tcl 8.5}}
      name: math::decimal
      version: 1.0.3
      module: math
    }
    {math::fourier 1.0.2} {
      file: fourier.tcl
      name: math::fourier
      version: 1.0.2
      module: math
    }
    {math::fuzzy 0.2.1} {
      file: fuzzy.tcl
      name: math::fuzzy
      version: 0.2.1
      module: math
    }
    {math::geometry 1.1.3} {

      file: geometry.tcl
      require: math
      name: math::geometry
      version: 1.1.3
      module: math
    }
    {math::interpolate 1.1} {
      file: interpolate.tcl
      require: {{Tcl 8.4} struct::matrix}
      name: math::interpolate
      version: 1.1
      module: math
    }
    {math::linearalgebra 1.1.5} {
      file: linalg.tcl
      require: {{Tcl 8.4}}
      name: math::linearalgebra
      version: 1.1.5
      module: math
    }

    {math::machineparameters 0.1} {


      file: machineparameters.tcl
      require: snit
      name: math::machineparameters
      version: 0.1
      module: math
    }
    {math::numtheory 1.0} {
      file: numtheory.tcl
      require: {{Tcl 8.5}}
      name: math::numtheory
      version: 1.0
      module: math
    }
    {math::optimize 1.0.1} {
      file: optimize.tcl
      require: {{Tcl 8.4}}
      name: math::optimize
      version: 1.0.1
      module: math
    }
    {math::polynomials 1.0.1} {
      file: polynomials.tcl
      name: math::polynomials
      version: 1.0.1
      module: math
    }

    {math::complexnumbers 1.0.2} {
      file: qcomplex.tcl
      name: math::complexnumbers
      version: 1.0.2
      module: math

    }
    {math::rationalfunctions 1.0.1} {
      file: rational_funcs.tcl
      require: math::polynomials
      name: math::rationalfunctions
      version: 1.0.1
      module: math
    }
    {math::roman 1.0} {
      file: romannumerals.tcl
      name: math::roman
      version: 1.0
      module: math
    }
    {math::special 0.3.0} {
      file: special.tcl
      require: {math math::constants math::statistics}
      name: math::special
      version: 0.3.0
      module: math
    }

    {math::statistics 1.0} {


      file: statistics.tcl
      require: {{Tcl 8.4} math}
      name: math::statistics
      version: 1.0
      module: math
    }
    {math::calculus::symdiff 1.0} {
      file: symdiff.tcl
      require: {{Tcl 8.4} {grammar::aycock 1.0}}
      name: math::calculus::symdiff
      version: 1.0
      module: math
    }
    {md4 1.0.6} {
      file: md4.tcl
      require: {{Tcl 8.2}}
      name: md4
      version: 1.0.6
      module: md4
    }
    {md4c 1.1.0} {
      file: md4c.tcl
      require: critcl
      name: md4c
      version: 1.1.0
      module: md4
    }
    {md5 1.4.4} {



      file: md5.tcl
      require: {{Tcl 8.2}}
      name: md5
      version: 1.4.4
      module: md5
    }

    {md5c 0.12} {
      file: md5c.tcl
      require: critcl
      name: md5c
      version: 0.12
      module: md5
    }
    {md5 2.0.7} {
      file: md5x.tcl
      require: {{Tcl 8.2}}
      name: md5
      version: 2.0.7
      module: md5
    }
    {md5crypt 1.1.0} {
      file: md5crypt.tcl
      require: {{Tcl 8.2} {md5 2}}
      name: md5crypt
      version: 1.1.0
      module: md5crypt

    }
    {md5cryptc 1.0} {
      file: md5cryptc.tcl
      require: critcl
      name: md5cryptc
      version: 1.0
      module: md5crypt
    }

    {mime 1.6} {
      file: mime.tcl
      require: {{Tcl 8.5}}
      name: mime
      version: 1.6
      module: mime
    }

    {smtp 1.4.5} {
      file: smtp.tcl
      require: {{Tcl 8.3} {mime 1.4.1}}
      name: smtp
      version: 1.4.5
      module: mime
    }
    {multiplexer 0.2} {
      file: multiplexer.tcl
      name: multiplexer
      version: 0.2
      require: logger
      module: multiplexer
    }

    {namespacex 0.1} {
      file: namespacex.tcl
      require: {{Tcl 8.5}}
      name: namespacex
      version: 0.1
      module: namespacex
    }
    {ncgi 1.4.3} {
      file: ncgi.tcl
      require: {{Tcl 8.4} fileutil uri}
      name: ncgi
      version: 1.4.3
      module: ncgi
    }
    {nettool 0.5} {
      file: nettool.tcl
      require: {platform ip}
      name: nettool
      version: 0.5
      module: nettool
    }




    {nettool::platform::windows 0.2} {
      file: platform_windows.tcl
      require: twapi
      name: nettool::platform::windows
      version: 0.2
      module: nettool
    }
    {nmea 1.0.0} {
      file: nmea.tcl
      require: {{Tcl 8.4}}
      name: nmea
      version: 1.0.0
      module: nmea
    }
    {nameserv::common 0.1} {
      file: common.tcl
      name: nameserv::common
      version: 0.1
      module: nns
    }
    {nameserv 0.4.2} {
      file: nns.tcl
      require: {{Tcl 8.4} comm interp logger nameserv::common snit uevent}
      name: nameserv
      version: 0.4.2
      module: nns
    }
    {nameserv::auto 0.3} {
      file: nns_auto.tcl
      require: {{nameserv 0.4.1} uevent}
      name: nameserv::auto
      version: 0.3
      module: nns
    }
    {nameserv::cluster 0.2.3} {
      file: nns_cluster.tcl
      require: {{Tcl 8.5} comm interp logger uuid cron {nettool 0.4} udp}
      name: nameserv::cluster
      version: 0.2.3
      module: nns
    }
    {nameserv::server 0.3.2} {
      file: server.tcl
      require: {{Tcl 8.4} comm interp logger nameserv::common}
      name: nameserv::server
      version: 0.3.2
      module: nns
    }
    {nntp 0.2.1} {
      file: nntp.tcl
      require: {{Tcl 8.2}}
      name: nntp
      version: 0.2.1
      module: nntp
    }
    {time 1.2.1} {
      file: time.tcl
      require: {{Tcl 8.0} log}
      name: time
      version: 1.2.1
      module: ntp
    }

    {oauth 1} {
      file: oauth.tcl
      require: {{Tcl 8.5} http tls base64 sha1}
      name: oauth
      version: 1
      module: oauth
    }
    {odie 0.2} {
      file: index.tcl
      name: odie
      version: 0.2
      module: odie
    }
    {listutil 1.7} {
      file: listutil.tcl
      name: listutil
      version: 1.7
      module: odie
    }
    {http::wget 0.1} {
      file: urlget.tcl
      name: http::wget
      version: 0.1
      require: http
      module: odie
    }
    {oo::html 0.1} {
      file: oohtml.tcl
      require: {{Tcl 8.5} TclOO}
      name: oo::html
      version: 0.1
      module: oohtml
    }
    {oo::meta 0.3} {
      file: oometa.tcl
      name: oo::meta
      version: 0.3
      module: ooutil
    }
    {oo::option 0.2} {
      file: oooption.tcl
      require: oo::meta
      name: oo::option
      version: 0.2
      module: ooutil
    }
    {oo::properties 0.1} {
      file: ooproperties.tcl
      name: oo::properties
      version: 0.1
      module: ooutil
    }
    {oo::util 1.2.2} {
      file: ooutil.tcl
      require: {{Tcl 8.5} TclOO}
      name: oo::util
      version: 1.2.2
      module: ooutil
    }

    {otp 1.0.0} {
      file: otp.tcl
      require: {{Tcl 8.2}}
      name: otp
      version: 1.0.0
      module: otp
    }

    {page::analysis::peg::emodes 0.1} {
      file: analysis_peg_emodes.tcl
      require: {page::plugin page::util::flow page::util::peg treeql}
      name: page::analysis::peg::emodes
      version: 0.1
      module: page
    }
    {page::analysis::peg::minimize 0.1} {
      file: analysis_peg_minimize.tcl
      require: {page::plugin page::analysis::peg::reachable page::analysis::peg::realizable}
      name: page::analysis::peg::minimize
      version: 0.1
      module: page
    }

    {page::analysis::peg::reachable 0.1} {
      file: analysis_peg_reachable.tcl
      require: {page::plugin page::util::flow page::util::peg}
      name: page::analysis::peg::reachable
      version: 0.1
      module: page
    }

    {page::analysis::peg::realizable 0.1} {
      file: analysis_peg_realizable.tcl
      require: {page::plugin page::util::flow page::util::peg treeql}
      name: page::analysis::peg::realizable
      version: 0.1
      module: page
    }
    {page::compiler::peg::mecpu 0.1.1} {
      file: compiler_peg_mecpu.tcl
      require: {page::plugin grammar::me::cpu::gasm textutil struct::graph page::analysis::peg::emodes page::util::quote page::util::peg}
      name: page::compiler::peg::mecpu
      version: 0.1.1
      module: page
    }

    {page::gen::peg::canon 0.1} {
      file: gen_peg_canon.tcl
      require: textutil
      name: page::gen::peg::canon
      version: 0.1
      module: page
    }
    {page::gen::peg::cpkg 0.1} {
      file: gen_peg_cpkg.tcl
      require: page::util::peg
      name: page::gen::peg::cpkg
      version: 0.1
      module: page
    }
    {page::gen::peg::hb 0.1} {
      file: gen_peg_hb.tcl
      require: page::util::peg
      name: page::gen::peg::hb
      version: 0.1
      module: page
    }

    {page::gen::peg::me 0.1} {
      file: gen_peg_me.tcl
      require: {page::plugin textutil page::analysis::peg::emodes page::util::quote page::util::peg}
      name: page::gen::peg::me
      version: 0.1
      module: page
    }
    {page::gen::peg::mecpu 0.1} {
      file: gen_peg_mecpu.tcl
      require: {page::plugin grammar::me::cpu::core textutil}
      name: page::gen::peg::mecpu
      version: 0.1
      module: page
    }
    {page::gen::peg::ser 0.1} {
      file: gen_peg_ser.tcl

      require: {grammar::peg page::util::quote page::util::peg}
      name: page::gen::peg::ser
      version: 0.1
      module: page
    }
    {page::gen::tree::text 0.1} {
      file: gen_tree_text.tcl
      require: page::util::quote
      name: page::gen::tree::text
      version: 0.1
      module: page
    }
    {page::parse::lemon 0.1} {
      file: parse_lemon.tcl
      require: grammar::me::tcl
      name: page::parse::lemon
      version: 0.1
      module: page
    }

    {page::parse::peg 0.1} {
      file: parse_peg.tcl
      require: grammar::me::tcl
      name: page::parse::peg
      version: 0.1
      module: page
    }
    {page::parse::peghb 0.1} {
      file: parse_peghb.tcl
      name: page::parse::peghb
      version: 0.1
      module: page
    }
    {page::parse::pegser 0.1} {
      file: parse_pegser.tcl
      require: grammar::peg
      name: page::parse::pegser
      version: 0.1
      module: page
    }
    {pg::peg::grammar 0.1} {
      file: peg_grammar.tcl
      require: grammar::peg
      name: pg::peg::grammar
      version: 0.1
      module: page
    }
    {page::pluginmgr 0.2} {

      file: pluginmgr.tcl
      require: {fileutil pluginmgr}
      name: page::pluginmgr
      version: 0.2
      module: page
    }
    {page::util::flow 0.1} {
      file: util_flow.tcl
      require: snit
      name: page::util::flow
      version: 0.1
      module: page
    }
    {page::util::norm::lemon 0.1} {
      file: util_norm_lemon.tcl
      require: {page::plugin treeql page::util::quote page::util::peg}
      name: page::util::norm::lemon
      version: 0.1
      module: page
    }
    {page::util::norm::peg 0.1} {
      file: util_norm_peg.tcl
      require: {page::plugin treeql page::util::quote}
      name: page::util::norm::peg
      version: 0.1
      module: page
    }
    {page::util::peg 0.1} {
      file: util_peg.tcl
      require: page::util::quote
      name: page::util::peg
      version: 0.1
      module: page
    }
    {page::util::quote 0.1} {
      file: util_quote.tcl
      name: page::util::quote
      version: 0.1
      module: page
    }
    {pki 0.6} {
      file: pki.tcl
      require: {{Tcl 8.5} {asn 0.8.4} aes des math::bignum {md5 2} sha1 sha256}
      name: pki
      version: 0.6
      module: pki

    }
    {pluginmgr 0.3} {
      file: pluginmgr.tcl
      require: {{Tcl 8.4} snit}
      name: pluginmgr
      version: 0.3
      module: pluginmgr
    }

    {png 0.2} {
      file: png.tcl

      name: png
      version: 0.2
      module: png
    }
    {pop3 1.9} {
      file: pop3.tcl
      require: {{Tcl 8.4} cmdline log}
      name: pop3
      version: 1.9
      module: pop3
    }
    {pop3d 1.1.0} {
      file: pop3d.tcl
      require: {md5 mime log}
      name: pop3d
      version: 1.1.0
      module: pop3d

    }
    {pop3d::dbox 1.0.2} {
      file: pop3d_dbox.tcl
      require: {mime log}
      name: pop3d::dbox
      version: 1.0.2
      module: pop3d
    }
    {pop3d::udb 1.1} {
      file: pop3d_udb.tcl
      name: pop3d::udb
      version: 1.1
      module: pop3d
    }
    {processman 0.3} {
      file: processman.tcl
      require: {{cron 1.1}}
      name: processman
      version: 0.3
      module: processman
    }
    {profiler 0.3} {
      file: profiler.tcl
      require: {{Tcl 8.3}}
      name: profiler
      version: 0.3
      module: profiler
    }

    {char 1.0.1} {
      file: char.tcl
      require: {{Tcl 8.5}}
      name: char
      version: 1.0.1
      module: pt
    }
    {configuration 1} {
      file: configuration.tcl
      require: {{Tcl 8.5} snit}
      name: configuration
      version: 1
      module: pt
    }
    {paths 1} {
      file: paths.tcl
      require: {{Tcl 8.5} snit}
      name: paths
      version: 1
      module: pt
    }
    {pt::ast 1.1} {
      file: pt_astree.tcl
      require: {{Tcl 8.5} char}
      name: pt::ast
      version: 1.1
      module: pt
    }
    {pt::cparam::configuration::critcl 1.0.2} {
      file: pt_cparam_config_critcl.tcl
      require: {{Tcl 8.5}}
      name: pt::cparam::configuration::critcl
      version: 1.0.2
      module: pt
    }
    {pt::cparam::configuration::tea 0.1} {
      file: pt_cparam_config_tea.tcl
      require: {{Tcl 8.5}}
      name: pt::cparam::configuration::tea
      version: 0.1
      module: pt
    }
    {pt::parse::peg 1.0.1} {
      file: pt_parse_peg.tcl
      require: {{Tcl 8.5}}
      name: pt::parse::peg
      version: 1.0.1
      module: pt
    }
    {pt_parse_peg_c 1.0.1} {

      file: pt_parse_peg_c.tcl
      require: {{Tcl 8.4} critcl}
      name: pt_parse_peg_c
      version: 1.0.1
      module: pt
    }

    {pt::parse::peg_tcl 1.0.1} {
      file: pt_parse_peg_tcl.tcl
      require: {{Tcl 8.5} snit pt::rde}
      name: pt::parse::peg_tcl
      version: 1.0.1
      module: pt
    }
    {pt::peg::container 1} {
      file: pt_peg_container.tcl
      require: {{Tcl 8.5} snit pt::pe pt::peg}
      name: pt::peg::container
      version: 1
      module: pt
    }
    {pt::peg::container::peg 1} {
      file: pt_peg_container_peg.tcl
      require: {{Tcl 8.5} snit pt::peg::container}
      name: pt::peg::container::peg
      version: 1
      module: pt
    }
    {pt::peg::export 1} {
      file: pt_peg_export.tcl
      require: {{Tcl 8.5} configuration pt::peg pluginmgr snit}
      name: pt::peg::export
      version: 1
      module: pt
    }

    {pt::peg::export::container 1} {
      file: pt_peg_export_container.tcl
      require: pt::peg::to::container
      name: pt::peg::export::container
      version: 1
      module: pt
    }
    {pt::peg::export::json 1} {
      file: pt_peg_export_json.tcl
      require: {{Tcl 8.5} pt::peg::export::plugin pt::peg::to::json}
      name: pt::peg::export::json
      version: 1
      module: pt
    }
    {pt::peg::export::peg 1} {
      file: pt_peg_export_peg.tcl
      require: pt::peg::to::peg
      name: pt::peg::export::peg
      version: 1
      module: pt
    }
    {pt::peg::from::json 1} {
      file: pt_peg_from_json.tcl
      require: {{Tcl 8.5} pt::peg json}
      name: pt::peg::from::json
      version: 1
      module: pt
    }
    {pt::peg::from::peg 1.0.3} {
      file: pt_peg_from_peg.tcl
      require: {{Tcl 8.5} pt::peg pt::parse::peg pt::ast pt::pe pt::pe::op}
      name: pt::peg::from::peg
      version: 1.0.3
      module: pt
    }
    {pt::peg::import 1} {
      file: pt_peg_import.tcl
      require: {{Tcl 8.5} paths pt::peg pluginmgr snit}
      name: pt::peg::import
      version: 1
      module: pt
    }
    {pt::peg::import::json 1} {
      file: pt_peg_import_json.tcl
      require: {{Tcl 8.5} pt::peg::import::plugin pt::peg::from::json}
      name: pt::peg::import::json
      version: 1
      module: pt
    }
    {pt::peg::import::peg 1} {
      file: pt_peg_import_peg.tcl
      require: {{Tcl 8.5} pt::peg::import::plugin pt::peg::from::peg}
      name: pt::peg::import::peg
      version: 1
      module: pt
    }
    {pt::peg::interp 1.0.1} {
      file: pt_peg_interp.tcl
      require: {{Tcl 8.5} pt::rde snit}
      name: pt::peg::interp
      version: 1.0.1
      module: pt
    }
    {pt::peg::op 1.0.1} {
      file: pt_peg_op.tcl
      require: {{Tcl 8.5} pt::pe pt::pe::op struct::set}
      name: pt::peg::op
      version: 1.0.1
      module: pt
    }
    {pt::peg::to::container 1} {
      file: pt_peg_to_container.tcl
      require: {{Tcl 8.5} pt::peg pt::pe text::write char}
      name: pt::peg::to::container
      version: 1
      module: pt
    }
    {pt::peg::to::cparam 1.1.3} {
      file: pt_peg_to_cparam.tcl
      name: pt::peg::to::cparam
      version: 1.1.3
      module: pt
    }
    {pt::peg::to::json 1} {
      file: pt_peg_to_json.tcl
      require: {{Tcl 8.5} pt::peg json::write}
      name: pt::peg::to::json
      version: 1
      module: pt
    }
    {pt::peg::to::param 1.0.1} {
      file: pt_peg_to_param.tcl
      name: pt::peg::to::param
      version: 1.0.1
      module: pt
    }
    {pt::peg::to::peg 1.0.2} {
      file: pt_peg_to_peg.tcl
      name: pt::peg::to::peg
      version: 1.0.2
      module: pt
    }
    {pt::peg::to::tclparam 1.0.3} {
      file: pt_peg_to_tclparam.tcl
      name: pt::peg::to::tclparam
      version: 1.0.3
      module: pt
    }
    {pt::peg 1} {
      file: pt_pegrammar.tcl
      require: {{Tcl 8.5} pt::pe}
      name: pt::peg
      version: 1
      module: pt
    }
    {pt::pe::op 1} {
      file: pt_pexpr_op.tcl
      require: {{Tcl 8.5} pt::pe struct::set}
      name: pt::pe::op
      version: 1
      module: pt
    }
    {pt::pe 1.0.2} {
      file: pt_pexpression.tcl
      require: {{Tcl 8.5} char}
      name: pt::pe
      version: 1.0.2
      module: pt
    }
    {pt::pgen 1.0.3} {
      file: pt_pgen.tcl
      require: {{Tcl 8.5} fileutil pt::peg::from::json pt::peg::from::peg pt::peg::to::container pt::peg::to::json pt::peg::to::peg pt::peg::to::param pt::peg::to::tclparam pt::peg::to::cparam {pt::tclparam::configuration::snit 1.0.2} {pt::tclparam::configuration::tcloo 1.0.4} {pt::cparam::configuration::critcl 1.0.2} pt::cparam::configuration::tea}
      name: pt::pgen
      version: 1.0.3
      module: pt
    }
    {pt::rde 1.1} {
      file: pt_rdengine.tcl
      require: {{Tcl 8.5} debug}
      name: pt::rde
      version: 1.1
      module: pt
    }
    {pt::rde::critcl 1.3.3} {
      file: pt_rdengine_c.tcl
      require: {{Tcl 8.4} critcl}
      name: pt::rde::critcl
      version: 1.3.3
      module: pt
    }
    {pt::rde::oo 1.1} {
      file: pt_rdengine_oo.tcl
      require: {{Tcl 8.5} TclOO {struct::stack 1.5} pt::ast pt::pe debug}
      name: pt::rde::oo
      version: 1.1
      module: pt
    }
    {pt::tclparam::configuration::snit 1.0.2} {
      file: pt_tclparam_config_snit.tcl
      require: {{Tcl 8.5}}
      name: pt::tclparam::configuration::snit
      version: 1.0.2
      module: pt
    }
    {pt::tclparam::configuration::tcloo 1.0.4} {
      file: pt_tclparam_config_tcloo.tcl
      require: {{Tcl 8.5}}
      name: pt::tclparam::configuration::tcloo
      version: 1.0.4
      module: pt
    }
    {pt::util 1} {
      file: pt_util.tcl
      require: {{Tcl 8.5} char}
      name: pt::util
      version: 1
      module: pt
    }
    {text::write 1} {
      file: text_write.tcl
      require: {{Tcl 8.5} textutil::adjust}
      name: text::write
      version: 1
      module: pt
    }
    {rc4 1.1.0} {
      file: rc4.tcl
      require: {{Tcl 8.2}}
      name: rc4
      version: 1.1.0
      module: rc4
    }
    {rc4c 1.1.0} {
      file: rc4c.tcl
      require: critcl
      name: rc4c
      version: 1.1.0
      module: rc4
    }
    {rcs 0.1} {
      file: rcs.tcl
      require: {{Tcl 8.4}}
      name: rcs
      version: 0.1
      module: rcs
    }
    {report 0.3.2} {
      file: report.tcl
      require: {{Tcl 8.2}}
      name: report
      version: 0.3.2
      module: report
    }
    {rest 1.0.1} {
      file: rest.tcl
      require: {{Tcl 8.5} {http 2.7} json tdom base64}
      name: rest
      version: 1.0.1
      module: rest
    }
    {ripemd128 1.0.5} {
      file: ripemd128.tcl
      require: {{Tcl 8.2}}
      name: ripemd128
      version: 1.0.5
      module: ripemd
    }
    {ripemd160 1.0.5} {
      file: ripemd160.tcl
      require: {{Tcl 8.2}}
      name: ripemd160
      version: 1.0.5
      module: ripemd
    }
    {SASL::XGoogleToken 1.0.1} {
      file: gtoken.tcl
      require: {{Tcl 8.2} SASL http tls}
      name: SASL::XGoogleToken
      version: 1.0.1
      module: sasl

    }
    {SASL::NTLM 1.1.2} {
      file: ntlm.tcl
      require: {{Tcl 8.2} {SASL 1.0} {des 1.0} md4}
      name: SASL::NTLM
      version: 1.1.2
      module: sasl
    }
    {SASL 1.3.3} {
      file: sasl.tcl
      require: {{Tcl 8.2}}
      name: SASL
      version: 1.3.3
      module: sasl
    }
    {SASL::SCRAM 0.1} {
      file: scram.tcl
      require: {{Tcl 8.2} SASL sha1 base64}
      name: SASL::SCRAM
      version: 0.1
      module: sasl
    }

    {scgi::app 0.1} {
      file: scgi-app.tcl
      require: {html TclOO oo::meta}
      name: scgi::app
      version: 0.1
      module: scgi
    }
    {scgi::server 0.1} {
      file: scgi-server.tcl
      name: scgi::server
      version: 0.1
      module: scgi
    }
    {sha1 2.0.3} {
      file: sha1.tcl
      require: {{Tcl 8.2}}
      name: sha1
      version: 2.0.3
      module: sha1
    }

    {sha1c 2.0.3} {
      file: sha1c.tcl
      require: critcl
      name: sha1c
      version: 2.0.3
      module: sha1
    }

    {sha1 1.1.1} {
      file: sha1v1.tcl
      require: {{Tcl 8.2}}
      name: sha1
      version: 1.1.1
      module: sha1
    }
    {sha256 1.0.3} {
      file: sha256.tcl
      require: {{Tcl 8.2}}
      name: sha256
      version: 1.0.3
      module: sha1
    }
    {sha256c 1.0.2} {
      file: sha256c.tcl
      require: critcl
      name: sha256c
      version: 1.0.2
      module: sha1
    }
    {simulation::annealing 0.2} {
      file: annealing.tcl
      require: {{Tcl 8.4}}
      name: simulation::annealing
      version: 0.2
      module: simulation
    }

    {simulation::montecarlo 0.1} {
      file: montecarlo.tcl
      require: {{Tcl 8.4} simulation::random math::statistics}
      name: simulation::montecarlo
      version: 0.1
      module: simulation
    }




    {simulation::random 0.3.1} {
      file: random.tcl
      require: {{Tcl 8.4}}
      name: simulation::random
      version: 0.3.1
      module: simulation
    }
    {smtpd 1.5} {
      file: smtpd.tcl
      require: {{Tcl 8.3} logger mime}
      name: smtpd

      version: 1.5
      module: smtpd

    }
    {snit 1.4.2} {
      file: snit.tcl
      require: {{Tcl 8.3}}
      name: snit
      version: 1.4.2
      module: snit
    }
    {snit 2.3.2} {
      file: snit2.tcl
      require: {{Tcl 8.5}}
      name: snit
      version: 2.3.2
      module: snit
    }
    {soundex 1.0} {
      file: soundex.tcl
      require: {{Tcl 8.2}}
      name: soundex
      version: 1.0
      module: soundex
    }
    {stooop 4.4.1} {
      file: stooop.tcl
      require: {{Tcl 8.3}}
      name: stooop
      version: 4.4.1
      module: stooop
    }
    {switched 2.2.1} {
      file: switched.tcl
      require: stooop
      name: switched
      version: 2.2.1
      module: stooop
    }
    {string::token 1} {
      file: token.tcl
      require: {{Tcl 8.5} fileutil}
      name: string::token
      version: 1
      module: string
    }



    {string::token::shell 1.2} {
      file: token_shell.tcl
      require: {{Tcl 8.5} string::token}
      name: string::token::shell
      version: 1.2
      module: string
    }

    {stringprep 1.0.1} {
      file: stringprep.tcl
      require: {{stringprep::data 1.0} {unicode 1.0}}
      name: stringprep
      version: 1.0.1
      module: stringprep
    }
    {stringprep::data 1.0.1} {
      file: stringprep_data.tcl
      name: stringprep::data
      version: 1.0.1
      module: stringprep
    }
    {unicode 1.0.0} {
      file: unicode.tcl
      require: {{unicode::data 1.0}}
      name: unicode
      version: 1.0.0
      module: stringprep
    }
    {unicode::data 1.0.0} {



      file: unicode_data.tcl
      name: unicode::data
      version: 1.0.0
      module: stringprep
    }
    {struct::disjointset 1.0} {
      file: disjointset.tcl
      require: {{Tcl 8.2} struct::set}
      name: struct::disjointset
      version: 1.0
      module: struct
    }
    {struct::graph 2.4} {
      file: graph.tcl
      require: {{Tcl 8.4}}
      name: struct::graph
      version: 2.4
      module: struct
    }
    {struct::graph 1.2.1} {
      file: graph1.tcl
      name: struct::graph
      version: 1.2.1
      module: struct
    }
    {struct_graphc 2.1} {
      file: graph_c.tcl
      require: {critcl {Tcl 8.2}}
      name: struct_graphc
      version: 2.1
      module: struct
    }
    {struct::graph::op 0.11.3} {
      file: graphops.tcl
      require: {{Tcl 8.5} struct::disjointset struct::prioqueue struct::queue struct::stack struct::graph struct::tree}
      name: struct::graph::op
      version: 0.11.3
      module: struct
    }
    {struct::list 1.8.3} {
      file: list.tcl
      require: {{Tcl 8.4} cmdline}
      name: struct::list
      version: 1.8.3
      module: struct
    }
    {struct::matrix 2.0.3} {
      file: matrix.tcl
      require: {{Tcl 8.2}}
      name: struct::matrix
      version: 2.0.3
      module: struct
    }
    {struct::matrix 1.2.1} {
      file: matrix1.tcl
      require: {{Tcl 8.2}}
      name: struct::matrix
      version: 1.2.1
      module: struct
    }
    {struct::pool 1.2.3} {
      file: pool.tcl
      require: cmdline
      name: struct::pool
      version: 1.2.3
      module: struct
    }
    {struct::prioqueue 1.4} {
      file: prioqueue.tcl
      require: {{Tcl 8.2}}
      name: struct::prioqueue
      version: 1.4
      module: struct
    }
    {struct::queue 1.4.5} {
      file: queue.tcl
      require: {{Tcl 8.4}}
      name: struct::queue
      version: 1.4.5
      module: struct
    }
    {struct_queuec 1.3.1} {
      file: queue_c.tcl
      require: {critcl {Tcl 8.4}}
      name: struct_queuec
      version: 1.3.1
      module: struct

    }
    {struct::record 1.2.1} {
      file: record.tcl
      name: struct::record
      version: 1.2.1
      module: struct
    }
    {struct::set 2.2.3} {
      file: sets.tcl
      require: {{Tcl 8.2}}
      name: struct::set
      version: 2.2.3
      module: struct
    }
    {struct_setc 2.1.1} {
      file: sets_c.tcl
      require: {critcl {Tcl 8.4}}
      name: struct_setc
      version: 2.1.1
      module: struct
    }




    {struct::skiplist 1.3} {
      file: skiplist.tcl

      name: struct::skiplist
      version: 1.3
      module: struct
    }
    {struct::stack 1.5.3} {
      file: stack.tcl
      require: {{Tcl 8.4}}
      name: struct::stack
      version: 1.5.3
      module: struct
    }

    {struct_stackc 1.3.1} {
      file: stack_c.tcl
      require: {critcl {Tcl 8.4}}
      name: struct_stackc
      version: 1.3.1
      module: struct
    }
    {struct 2.1} {
      file: struct.tcl
      require: {{Tcl 8.2} {struct::graph 2.0} {struct::queue 1.2.1} {struct::stack 1.2.1} {struct::tree 2.0} {struct::matrix 2.0} {struct::pool 1.2.1} {struct::record 1.2.1} {struct::list 1.4} {struct::set 2.1} {struct::prioqueue 1.3} {struct::skiplist 1.3}}
      name: struct
      version: 2.1
      module: struct
    }
    {struct 1.4} {
      file: struct1.tcl
      require: {{Tcl 8.2} {struct::graph 1.2.1} {struct::queue 1.2.1} {struct::stack 1.2.1} {struct::tree 1.2.1} {struct::matrix 1.2.1} {struct::pool 1.2.1} {struct::record 1.2.1} {struct::list 1.4} {struct::prioqueue 1.3} {struct::skiplist 1.3}}
      name: struct
      version: 1.4
      module: struct
    }

    {struct::tree 2.1.2} {
      file: tree.tcl
      require: {{Tcl 8.2} struct::list}
      name: struct::tree
      version: 2.1.2
      module: struct
    }
    {struct::tree 1.2.2} {
      file: tree1.tcl
      require: {{Tcl 8.2}}
      name: struct::tree
      version: 1.2.2
      module: struct
    }
    {struct_treec 2.1.1} {
      file: tree_c.tcl
      require: {critcl {Tcl 8.2}}
      name: struct_treec
      version: 2.1.1
      module: struct
    }
    {tar 0.10} {
      file: tar.tcl
      require: {{Tcl 8.4}}
      name: tar
      version: 0.10
      module: tar
    }
    {tepam 0.5} {
      file: tepam.tcl
      require: {{Tcl 8.3}}
      name: tepam
      version: 0.5
      module: tepam
    }
    {tepam::doc_gen 0.1.1} {
      file: tepam_doc_gen.tcl
      require: {{Tcl 8.3} {tepam 0.5}}
      name: tepam::doc_gen
      version: 0.1.1
      module: tepam
    }
    {term::receive::bind 0.1} {
      file: bind.tcl
      require: {snit term::receive}
      name: term::receive::bind
      version: 0.1
      module: term
    }
    {term::interact::menu 0.1} {
      file: imenu.tcl
      require: {snit textutil::repeat textutil::tabify term::ansi::send term::receive::bind term::ansi::code::ctrl}
      name: term::interact::menu
      version: 0.1
      module: term
    }
    {term::interact::pager 0.1} {
      file: ipager.tcl
      require: {snit textutil::repeat textutil::tabify term::ansi::send term::receive::bind term::ansi::code::ctrl}
      name: term::interact::pager
      version: 0.1
      module: term
    }
    {term::receive 0.1} {
      file: receive.tcl

      name: term::receive
      version: 0.1
      module: term
    }
    {term::send 0.1} {
      file: send.tcl
      name: term::send
      version: 0.1
      module: term
    }
    {term 0.1} {
      file: term.tcl
      name: term
      version: 0.1
      module: term
    }
    {textutil::adjust 0.7.3} {
      file: adjust.tcl
      require: {{Tcl 8.2} textutil::repeat textutil::string}
      name: textutil::adjust
      version: 0.7.3
      module: textutil
    }
    {textutil::expander 1.3.1} {
      file: expander.tcl
      name: textutil::expander
      version: 1.3.1
      module: textutil
    }
    {textutil::repeat 0.7} {
      file: repeat.tcl
      require: {{Tcl 8.2}}
      name: textutil::repeat
      version: 0.7
      module: textutil
    }
    {textutil::split 0.7} {
      file: split.tcl
      require: {{Tcl 8.2}}
      name: textutil::split
      version: 0.7
      module: textutil
    }
    {textutil::string 0.8} {
      file: string.tcl
      require: {{Tcl 8.2}}
      name: textutil::string
      version: 0.8
      module: textutil
    }
    {textutil::tabify 0.7} {
      file: tabify.tcl
      require: {{Tcl 8.2} textutil::repeat}
      name: textutil::tabify
      version: 0.7
      module: textutil
    }
    {textutil 0.8} {
      file: textutil.tcl
      require: {{Tcl 8.2} textutil::string textutil::repeat textutil::adjust textutil::split textutil::tabify textutil::trim}
      name: textutil
      version: 0.8
      module: textutil
    }



    {textutil::trim 0.7} {
      file: trim.tcl
      require: {{Tcl 8.2}}
      name: textutil::trim
      version: 0.7
      module: textutil
    }
    {tie 1.1} {
      file: tie.tcl
      require: {snit cmdline}
      name: tie
      version: 1.1
      module: tie
    }
    {tie::std::array 1.0} {
      file: tie_array.tcl
      require: {snit tie}
      name: tie::std::array
      version: 1.0
      module: tie
    }
    {tie::std::dsource 1.0} {
      file: tie_dsource.tcl
      require: {snit tie}
      name: tie::std::dsource
      version: 1.0
      module: tie
    }
    {tie::std::file 1.0.4} {
      file: tie_file.tcl
      require: {snit tie}
      name: tie::std::file
      version: 1.0.4
      module: tie
    }
    {tie::std::growfile 1.0} {
      file: tie_growfile.tcl
      require: {snit tie}
      name: tie::std::growfile
      version: 1.0
      module: tie
    }
    {tie::std::log 1.0} {
      file: tie_log.tcl
      require: {snit log tie snit}
      name: tie::std::log
      version: 1.0
      module: tie
    }
    {tie::std::rarray 1.0} {
      file: tie_rarray.tcl
      require: {snit tie}
      name: tie::std::rarray
      version: 1.0
      module: tie
    }
    {tiff 0.2.1} {
      file: tiff.tcl
      name: tiff
      version: 0.2.1
      module: tiff
    }
    {transfer::connect 0.2} {
      file: connect.tcl
      require: snit
      name: transfer::connect
      version: 0.2
      module: transfer
    }
    {transfer::copy 0.3} {
      file: copyops.tcl
      require: {{Tcl 8.4}}
      name: transfer::copy
      version: 0.3
      module: transfer
    }

    {transfer::data::destination 0.2} {
      file: ddest.tcl
      require: snit
      name: transfer::data::destination
      version: 0.2
      module: transfer
    }
    {transfer::data::source 0.2} {
      file: dsource.tcl
      require: {transfer::copy snit}
      name: transfer::data::source
      version: 0.2
      module: transfer
    }
    {transfer::receiver 0.2} {
      file: receiver.tcl
      require: {snit transfer::data::destination transfer::connect}
      name: transfer::receiver
      version: 0.2
      module: transfer
    }
    {transfer::copy::queue 0.1} {
      file: tqueue.tcl
      require: {transfer::copy struct::queue snit {Tcl 8.4}}
      name: transfer::copy::queue
      version: 0.1
      module: transfer
    }
    {transfer::transmitter 0.2} {
      file: transmitter.tcl
      require: {snit transfer::data::source transfer::connect}
      name: transfer::transmitter
      version: 0.2
      module: transfer
    }
    {treeql 1.3.1} {
      file: treeql.tcl
      require: {{Tcl 8.4}}
      name: treeql
      version: 1.3.1
      module: treeql
    }
    {throw 1} {
      file: throw.tcl
      name: throw
      version: 1
      require: {{Tcl 8.5}}
      module: try
    }
    {try 1} {
      file: try.tcl
      name: try
      version: 1
      require: {{Tcl 8.5}}
      module: try
    }

    {uevent 0.3.1} {
      file: uevent.tcl
      require: {{Tcl 8.4} logger}
      name: uevent
      version: 0.3.1
      module: uev
    }

    {uevent::onidle 0.1} {
      file: uevent_onidle.tcl
      require: {{Tcl 8.4} snit}
      name: uevent::onidle
      version: 0.1
      module: uev
    }
    {units 2.1.1} {
      file: units.tcl
      name: units
      version: 2.1.1
      require: {{Tcl 8.1}}
      module: units
    }
    {uri 1.2.5} {
      file: uri.tcl
      require: {{Tcl 8.2}}
      name: uri
      version: 1.2.5
      module: uri
    }
    {uri::urn 1.0.3} {
      file: urn-scheme.tcl
      require: {{uri 1.1.2}}
      name: uri::urn
      version: 1.0.3
      module: uri
    }
    {uuid 1.0.5} {
      file: uuid.tcl
      name: uuid
      version: 1.0.5
      module: uuid
    }
    {valtype::creditcard::amex 1} {
      file: cc_amex.tcl
      require: {{Tcl 8.5} snit valtype::luhn valtype::common}
      name: valtype::creditcard::amex
      version: 1
      module: valtype
    }
    {valtype::creditcard::discover 1} {
      file: cc_discover.tcl
      require: {{Tcl 8.5} snit valtype::luhn valtype::common}
      name: valtype::creditcard::discover
      version: 1
      module: valtype
    }
    {valtype::creditcard::mastercard 1} {
      file: cc_mastercard.tcl
      require: {{Tcl 8.5} snit valtype::luhn valtype::common}
      name: valtype::creditcard::mastercard
      version: 1
      module: valtype
    }
    {valtype::creditcard::visa 1} {
      file: cc_visa.tcl
      require: {{Tcl 8.5} snit valtype::luhn valtype::common}
      name: valtype::creditcard::visa
      version: 1
      module: valtype

    }
    {valtype::gs1::ean13 1} {
      file: ean13.tcl
      require: {{Tcl 8.5} snit valtype::common}
      name: valtype::gs1::ean13
      version: 1
      module: valtype
    }
    {valtype::iban 1.5} {
      file: iban.tcl
      require: {{Tcl 8.5} snit valtype::common}
      name: valtype::iban
      version: 1.5
      module: valtype
    }
    {valtype::imei 1} {
      file: imei.tcl
      require: {{Tcl 8.5} snit valtype::luhn valtype::common}
      name: valtype::imei
      version: 1
      module: valtype
    }
    {valtype::isbn 1} {
      file: isbn.tcl
      require: {{Tcl 8.5} snit valtype::common}
      name: valtype::isbn
      version: 1
      module: valtype
    }
    {valtype::luhn 1} {
      file: luhn.tcl
      require: {{Tcl 8.5} snit valtype::common}
      name: valtype::luhn
      version: 1
      module: valtype
    }
    {valtype::luhn5 1} {
      file: luhn5.tcl
      require: {{Tcl 8.5} snit valtype::common}
      name: valtype::luhn5
      version: 1
      module: valtype
    }
    {valtype::usnpi 1} {
      file: usnpi.tcl
      require: {{Tcl 8.5} snit valtype::luhn valtype::common}
      name: valtype::usnpi
      version: 1
      module: valtype
    }




    {valtype::common 1} {
      file: valtype.tcl
      require: {{Tcl 8.5}}
      name: valtype::common
      version: 1
      module: valtype
    }

    {valtype::verhoeff 1} {
      file: verhoeff.tcl
      require: {{Tcl 8.5} snit valtype::common}
      name: valtype::verhoeff
      version: 1
      module: valtype
    }
    {tcl::chan::cat 1.0.2} {
      file: cat.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::core}
      name: tcl::chan::cat
      version: 1.0.2
      module: virtchannel_base
    }
    {tcl::chan::facade 1.0.1} {
      file: facade.tcl
      require: {{Tcl 8.5} TclOO logger tcl::chan::core}
      name: tcl::chan::facade
      version: 1.0.1
      module: virtchannel_base
    }
    {tcl::chan::fifo 1} {
      file: fifo.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::events}
      name: tcl::chan::fifo
      version: 1
      module: virtchannel_base
    }
    {tcl::chan::fifo2 1} {
      file: fifo2.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::halfpipe}
      name: tcl::chan::fifo2
      version: 1
      module: virtchannel_base
    }
    {tcl::chan::halfpipe 1} {
      file: halfpipe.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::events}
      name: tcl::chan::halfpipe
      version: 1
      module: virtchannel_base
    }
    {tcl::chan::memchan 1.0.3} {
      file: memchan.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::events}
      name: tcl::chan::memchan
      version: 1.0.3
      module: virtchannel_base
    }
    {tcl::chan::null 1} {
      file: null.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::events}
      name: tcl::chan::null
      version: 1
      module: virtchannel_base
    }
    {tcl::chan::nullzero 1} {
      file: nullzero.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::events}
      name: tcl::chan::nullzero
      version: 1
      module: virtchannel_base
    }
    {tcl::chan::random 1} {
      file: random.tcl
      require: {tcl::chan::events {Tcl 8.5} TclOO}
      name: tcl::chan::random
      version: 1
      module: virtchannel_base
    }
    {tcl::randomseed 1} {
      file: randseed.tcl
      require: {{Tcl 8.5}}
      name: tcl::randomseed
      version: 1
      module: virtchannel_base
    }
    {tcl::chan::std 1.0.1} {
      file: std.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::core}
      name: tcl::chan::std
      version: 1.0.1
      module: virtchannel_base
    }
    {tcl::chan::string 1.0.2} {
      file: string.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::events}
      name: tcl::chan::string
      version: 1.0.2
      module: virtchannel_base
    }
    {tcl::chan::textwindow 1} {
      file: textwindow.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::events}
      name: tcl::chan::textwindow
      version: 1
      module: virtchannel_base
    }
    {tcl::chan::variable 1.0.3} {
      file: variable.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::events}
      name: tcl::chan::variable
      version: 1.0.3
      module: virtchannel_base
    }
    {tcl::chan::zero 1} {
      file: zero.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::events}
      name: tcl::chan::zero
      version: 1
      module: virtchannel_base
    }
    {tcl::chan::core 1} {
      file: core.tcl
      require: {{Tcl 8.5} TclOO}
      name: tcl::chan::core
      version: 1
      module: virtchannel_core
    }
    {tcl::chan::events 1} {
      file: events.tcl
      require: {{Tcl 8.5} TclOO tcl::chan::core}
      name: tcl::chan::events
      version: 1
      module: virtchannel_core
    }
    {tcl::transform::core 1} {
      file: transformcore.tcl
      require: {{Tcl 8.6}}
      name: tcl::transform::core
      version: 1
      module: virtchannel_core
    }
    {tcl::transform::adler32 1} {
      file: adler32.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::adler32
      version: 1
      module: virtchannel_transform
    }
    {tcl::transform::base64 1} {
      file: base64.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::base64
      version: 1
      module: virtchannel_transform
    }

    {tcl::transform::counter 1} {
      file: counter.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::counter
      version: 1
      module: virtchannel_transform
    }




    {tcl::transform::crc32 1} {
      file: crc32.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::crc32
      version: 1
      module: virtchannel_transform
    }

    {tcl::transform::hex 1} {
      file: hex.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::hex
      version: 1
      module: virtchannel_transform
    }
    {tcl::transform::identity 1} {
      file: identity.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::identity
      version: 1
      module: virtchannel_transform
    }
    {tcl::transform::limitsize 1} {

      file: limitsize.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::limitsize
      version: 1
      module: virtchannel_transform
    }
    {tcl::transform::observe 1} {
      file: observe.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::observe
      version: 1
      module: virtchannel_transform
    }
    {tcl::transform::otp 1} {
      file: otp.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::otp
      version: 1
      module: virtchannel_transform
    }
    {tcl::transform::rot 1} {
      file: rot.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::rot
      version: 1
      module: virtchannel_transform
    }
    {tcl::transform::spacer 1} {
      file: spacer.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::spacer
      version: 1
      module: virtchannel_transform
    }
    {tcl::transform::zlib 1.0.1} {
      file: zlib.tcl
      require: {{Tcl 8.6} tcl::transform::core}
      name: tcl::transform::zlib
      version: 1.0.1
      module: virtchannel_transform
    }

    {websocket 1.4} {
      file: websocket.tcl
      require: {{Tcl 8.5} {http 2.7} logger sha1 base64}
      name: websocket
      version: 1.4
      module: websocket
    }
    {wip 1.2} {
      file: wip.tcl
      require: {{Tcl 8.4} {snit 1.3} struct::set}
      name: wip
      version: 1.2
      module: wip
    }
    {wip 2.2} {
      file: wip2.tcl
      require: {{Tcl 8.5} {snit 1.3-} struct::set}
      name: wip
      version: 2.2
      module: wip
    }
    {huddle 0.1.5} {
      file: huddle.tcl
      name: huddle
      version: 0.1.5
      module: yaml
    }
    {yaml 0.3.7} {
      file: yaml.tcl
      name: yaml
      version: 0.3.7
      require: {cmdline huddle}


      module: yaml
    }



    {zipfile::decode 0.7} {
      file: decode.tcl
      require: {{Tcl 8.4} fileutil::magic::mimetype {fileutil::decode 0.2}}
      name: zipfile::decode
      version: 0.7
      module: zip
    }
    {zipfile::encode 0.3} {
      file: encode.tcl
      require: {{Tcl 8.4} logger Trf crc32 snit zlibtcl fileutil}
      name: zipfile::encode
      version: 0.3
      module: zip
    }
    {zipfile::mkzip 1.2} {
      file: mkzip.tcl
      require: {{Tcl 8.6}}
      name: zipfile::mkzip
      version: 1.2


      module: zip
    }
  }

Changes to tool/tool.tcl.

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
set SCRIPT [file normalize [info script]]
set TOOL_ROOT [file dirname [file dirname $SCRIPT]]
set cwd [file dirname $SCRIPT]
if {[catch {package require shed}]} {
  puts "ADDING TOOL TO PKG PATH"
  lappend auto_path [file join $cwd .. .. shed modules]
  package require tool
  package require shed
}

tool begin tcllib
###
# Build basic description of this tool
###
tool description: {
The Tcl Standard Library
}
tool distribution: fossil
tool class: sak

###
# List of mirrors
###
tool mirror http://core.tcl.tk/tcllib 
tool mirror http://fossil.etoyoc.com/fossil/tcllib

###
# Populate the branches
###
tool branch trunk {
  version: 1.18b
  release: beta
}
tool branch tcllib-1-17 {
  version: 1.17
  release: final
}
tool branch tcllib-1-16 {
  version: 1.16
  release: final
}
tool branch tcllib-1-15 {
  version: 1.15
  release: final
}
tool branch tcllib-1-14 {
  version: 1.14
  release: final
}
tool branch tcllib-1-13 {
  version: 1.13
  release: final
}
tool branch tcllib-1-12 {
  version: 1.12
  release: final
}
tool branch tcllib-1-11-1 {
  version: 1.11.1
  release: final
}
tool branch tcllib-1-11 {
  version: 1.11
  release: final
}
tool branch tcllib-1-10 {
  version: 1.10
  release: final
}
tool branch tcllib-1-9 {
  version: 1.9
  release: final
}
tool branch tcllib-1-8 {
  version: 1.8
  release: final
}
tool branch tcllib-1-7 {
  version: 1.7
  release: final
}
tool branch tcllib-1-6-1 {
  version: 1.6.1
  release: final
}
tool branch tcllib-1-6 {
  version: 1.6
  release: final
}
tool branch tcllib-1-4 {
  version: 1.4
  release: final
}
tool branch tcllib-1-3 {
  version: 1.3
  release: final
}
tool branch tcllib-1-2-0 {
  version: 1.2.0
  release: final
}
tool branch tcllib-1-2 {
  version: 1.2
  release: final
}
tool branch tcllib-1-1 {
  version: 1.1
  release: final
}
tool branch tcllib-1-0 {
  version: 1.0
  release: final
}
tool branch tcllib-0-8 {
  version: 0.8
  release: final
}
tool branch tcllib-0-6-1 {
  version: 0.6.1
  release: final
}
tool branch tcllib-0-6 {
  version: 0.6
  release: final
}
tool branch tcllib-0-5 {
  version: 0.5
  release: final
}
tool branch tcllib-0-4 {
  version: 0.4
  release: final
}


foreach file [glob [file join $TOOL_ROOT apps *]] {
  if {[file extension $file] ne {}} continue
  application_scan $file
}

###
# Build the module section
###
foreach path [glob [file join $TOOL_ROOT modules *]] {
  tool module_path [file tail $path] $path
}
tool write [file join [file dirname $SCRIPT] tool.shed]
<
<
<
<
<
<
<
<
<
<
<



<
<
<
<
<




|
|
|



<
<
|
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<

<
<
<
<
<
<
<
<
<
<
|
<
<
|
<
<
<
<
<
<
<
<
<
<
<
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
<
|
<
<
|
<
<
|
<

<
<
<
|
<
<
|

|





|
|

<











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












###
# Build basic description of this tool
###






###
# List of mirrors
###
#tool mirror http://core.tcl.tk/tcllib 
#tool mirror http://fossil.etoyoc.com/fossil/tcllib
my variable tool_root
###
# Populate the branches
###


my release add trunk {


  distribution: official



































  checkout: trunk

}










foreach release {


  1.17 1.16 1.15 1.14 1.13 1.12 1.11.1 1.11 1.10











  1.9 1.8 1.7 1.6.1 1.4 1.3 1.2.0 1.2 1.1 1.0



















  0.8 0.6.1 0.6 0.5 0.4

} {


  set checkout tcllib-[join [split $release .] -]


  my release add $checkout [list version: $release checkout: $checkout distribution: official]

}






foreach file [glob [file join $::TOOL_ROOT apps *]] {
  if {[file extension $file] ne {}} continue
  my application scan $file
}

###
# Build the module section
###
foreach path [glob [file join $::TOOL_ROOT modules *]] {
  my module scan [file tail $path] $path
}