summaryrefslogtreecommitdiff
path: root/FILES.last07days
blob: 7a8d742c53d013aae870ccaabfd7d22fa6733544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
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
2022/12/05 |        996 | macros/latex/contrib/siunitx/README.md
2022/12/05 |       9912 | macros/latex/contrib/siunitx/siunitx-symbol.dtx
2022/12/05 |     953793 | macros/latex/contrib/mathfont.zip
2022/12/05 |      95318 | macros/latex/contrib/lineno/doc/linenoamsmathdemo.pdf
2022/12/05 |     934594 | macros/latex/contrib/lineno.zip
2022/12/05 |        911 | macros/latex/contrib/lineno/doc/COPYING.txt
2022/12/05 |       8798 | macros/latex/contrib/siunitx/siunitx-command.dtx
2022/12/05 |      85047 | macros/latex/contrib/mathfont/mathfont_example_kelvinch.pdf
2022/12/05 |       7093 | macros/latex/contrib/lineno/tex/ednmath0.sty
2022/12/05 |      69997 | macros/latex/contrib/siunitx/CHANGELOG.md
2022/12/05 |        677 | macros/latex/contrib/lineno/doc/SRCFILEs.txt
2022/12/05 |     666266 | macros/latex/contrib/siunitx/siunitx.pdf
2022/12/05 |       6295 | macros/latex/contrib/lineno/doc/CHANGEs.txt
2022/12/05 |     617754 | macros/latex/contrib/siunitx/siunitx-code.pdf
2022/12/05 |       6021 | macros/latex/contrib/lineno/README.md
2022/12/05 |    5834346 | systems/texlive/tlnet/install-tl-unx.tar.gz
2022/12/05 |       5481 | macros/latex/contrib/siunitx/siunitx-locale.dtx
2022/12/05 |      54342 | macros/latex/contrib/mathfont/mathfont_example_roboto.pdf
2022/12/05 |      51383 | macros/latex/contrib/siunitx/siunitx-table.dtx
2022/12/05 |      51296 | macros/latex/contrib/mathfont/mathfont_example_cormorant.pdf
2022/12/05 |         48 | systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
2022/12/05 |      48016 | macros/latex/contrib/lineno/tex/fnlineno.sty
2022/12/05 |       4748 | macros/latex/contrib/siunitx/siunitx-abbreviations.cfg
2022/12/05 |      47388 | macros/latex/contrib/mathfont/mathfont_example_typey.pdf
2022/12/05 |        455 | systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
2022/12/05 |        455 | systems/texlive/tlnet/install-tl.zip.sha512.asc
2022/12/05 |        455 | systems/texlive/tlnet/install-tl-windows.exe.sha512.asc
2022/12/05 |        455 | systems/texlive/tlnet/install-tl-unx.tar.gz.sha512.asc
2022/12/05 |       4536 | macros/latex/contrib/lineno/source/lnosuppl.tex
2022/12/05 |     423552 | systems/texlive/tlnet/archive/texlive-scripts.doc.r65199.tar.xz
2022/12/05 |    4020567 | biblio/ctan-bibdata.zip
2022/12/05 |        401 | macros/latex/contrib/setspace/README.md
2022/12/05 |      38097 | macros/latex/contrib/siunitx/siunitx-complex.dtx
2022/12/05 |       3687 | macros/latex/contrib/siunitx/siunitx.ins
2022/12/05 |     367668 | macros/latex/contrib/lineno/doc/lineno.pdf
2022/12/05 |     364537 | macros/latex/contrib/mathfont/mathfont_code.pdf
2022/12/05 |    3627271 | biblio/ctan-bibdata/ctan.pdf
2022/12/05 |      35916 | macros/latex/contrib/siunitx/siunitx-print.dtx
2022/12/05 |      35655 | macros/latex/contrib/lineno/source/ulineno.tex
2022/12/05 |       3476 | macros/latex/contrib/lineno/source/fnlineno.tex
2022/12/05 |      33799 | macros/latex/contrib/siunitx/siunitx-compound.dtx
2022/12/05 |      32468 | systems/texlive/tlnet/archive/kpathsea.r65200.tar.xz
2022/12/05 |      32418 | macros/latex/contrib/siunitx/siunitx-emulation.dtx
2022/12/05 |      31738 | macros/latex/contrib/siunitx/siunitx-version-1.cfg
2022/12/05 |     316989 | macros/latex/contrib/mathfont/mathfont_code.dtx
2022/12/05 |       2883 | macros/latex/contrib/siunitx/siunitx-binary.dtx
2022/12/05 |    2748160 | biblio/ctan-bibdata/ctan.bib
2022/12/05 |     273398 | macros/latex/contrib/siunitx/siunitx-v2.sty
2022/12/05 |       2620 | macros/latex/contrib/siunitx/siunitx-code.tex
2022/12/05 |   25518496 | systems/texlive/tlnet/install-tl.zip
2022/12/05 |      24495 | macros/latex/contrib/lineno/tex/edtable.sty
2022/12/05 |    2429200 | systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
2022/12/05 |       2373 | macros/latex/contrib/lineno/tex/vplref.sty
2022/12/05 |       2354 | macros/latex/contrib/setspace/setspace-doc.tex
2022/12/05 |      22490 | macros/latex/contrib/setspace/setspace.sty
2022/12/05 |      21684 | macros/latex/contrib/siunitx/siunitx.dtx
2022/12/05 |   20435502 | systems/texlive/tlnet/install-tl-windows.exe
2022/12/05 |     203454 | macros/latex/contrib/setspace.zip
2022/12/05 |     198366 | macros/latex/contrib/lineno/doc/fnlineno.pdf
2022/12/05 |     197440 | macros/latex/contrib/setspace/setspace-doc.pdf
2022/12/05 |     186433 | macros/latex/contrib/mathfont/mathfont_symbol_list.pdf
2022/12/05 |   17881373 | systems/texlive/tlnet/tlpkg/texlive.tlpdb
2022/12/05 |       1729 | macros/latex/contrib/siunitx/siunitx-binary.cfg
2022/12/05 |       1678 | biblio/ctan-bibdata/biblatex-ctan/ctan.bbx
2022/12/05 |      16709 | macros/latex/contrib/siunitx/siunitx-angle.dtx
2022/12/05 |     161169 | macros/latex/contrib/lineno/doc/lnosuppl.pdf
2022/12/05 |     158764 | macros/latex/contrib/siunitx/siunitx.tex
2022/12/05 |      15611 | macros/latex/contrib/siunitx/siunitx-quantity.dtx
2022/12/05 |        153 | systems/texlive/tlnet/install-tl-windows.exe.sha512
2022/12/05 |        152 | systems/texlive/tlnet/install-tl-unx.tar.gz.sha512
2022/12/05 |     151624 | macros/latex/contrib/lineno/tex/lineno.sty
2022/12/05 |    1514621 | install/macros/latex/contrib/siunitx.tds.zip
2022/12/05 |     147312 | macros/latex/contrib/siunitx/siunitx-number.dtx
2022/12/05 |    1470351 | macros/latex/contrib/siunitx.zip
2022/12/05 |        145 | systems/texlive/tlnet/install-tl.zip.sha512
2022/12/05 |        144 | systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
2022/12/05 |     127130 | macros/latex/contrib/lineno/doc/ulineno.pdf
2022/12/05 |      12067 | macros/latex/contrib/lineno/source/linenoamsmathdemo.tex
2022/12/05 |     115613 | macros/latex/contrib/mathfont/mathfont_user_guide.pdf
2022/12/05 |     113652 | systems/texlive/tlnet/archive/texlive-scripts.r65199.tar.xz
2022/12/05 |     113295 | macros/latex/contrib/lineno/source/lineno.tex
2022/12/05 |   11069290 | support/latexindent.zip
2022/12/05 |      10812 | macros/latex/contrib/siunitx/siunitx-abbreviation.dtx
2022/12/05 |    1061956 | systems/texlive/tlnet/archive/kpathsea.doc.r65200.tar.xz
2022/12/05 |     103909 | macros/latex/contrib/siunitx/siunitx-unit.dtx
2022/12/04 |       9843 | support/latexindent/LatexIndent/Lines.pm
2022/12/04 |      95057 | macros/latex/contrib/hfutexam/hfutexam_shijuan.pdf
2022/12/04 |      94352 | macros/latex/contrib/ppt-slides/socrates.jpg
2022/12/04 |     932594 | macros/latex/contrib/ppt-slides/ppt-slides.pdf
2022/12/04 |      92519 | macros/latex/contrib/hfutexam/hfutexam_cankaodaan.pdf
2022/12/04 |       8960 | systems/texlive/tlnet/archive/graphics-pln.r65187.tar.xz
2022/12/04 |       8829 | support/latexindent/LatexIndent/IfElseFi.pm
2022/12/04 |      88026 | biblio/bibtex/contrib/urlbst/configure
2022/12/04 |     871220 | systems/texlive/tlnet/archive/mathfont.doc.r65193.tar.xz
2022/12/04 |    8699591 | support/latexindent/bin/windows/latexindent.exe
2022/12/04 |       8462 | support/latexindent/LatexIndent/FileExtension.pm
2022/12/04 |        838 | support/latexindent/LatexIndent/Version.pm
2022/12/04 |     828596 | systems/texlive/tlnet/archive/optex.r65185.tar.xz
2022/12/04 |       8284 | systems/texlive/tlnet/archive/latex-firstaid-dev.source.r65181.tar.xz
2022/12/04 |     788536 | systems/texlive/tlnet/archive/ppt-slides.doc.r65194.tar.xz
2022/12/04 |     777388 | systems/texlive/tlnet/archive/uplatex.doc.r65197.tar.xz
2022/12/04 |       7329 | support/latexindent/LatexIndent/BackUpFileProcedure.pm
2022/12/04 |       7280 | support/latexindent/LatexIndent/MandatoryArgument.pm
2022/12/04 |     721712 | systems/texlive/tlnet/archive/latex-base-dev.source.r65180.tar.xz
2022/12/04 |       7161 | systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
2022/12/04 |       7161 | support/latexindent/documentation/figure-schematic.png
2022/12/04 |      70715 | macros/latex/contrib/hfutexam/hfutexam_datizhi.pdf
2022/12/04 |       6964 | support/latexindent/LatexIndent/TrailingComments.pm
2022/12/04 |       6808 | support/latexindent/LatexIndent/Environment.pm
2022/12/04 |       6735 | biblio/bibtex/contrib/urlbst/urlbst.bib
2022/12/04 |       6694 | support/latexindent/LatexIndent/Item.pm
2022/12/04 |      65444 | systems/texlive/tlnet/archive/njuthesis.source.r65196.tar.xz
2022/12/04 |       6522 | support/latexindent/LatexIndent/OptionalArgument.pm
2022/12/04 |      65059 | support/latexindent/LatexIndent/AlignmentAtAmpersand.pm
2022/12/04 |     644931 | support/digestif.zip
2022/12/04 |    6389449 | support/latexindent/bin/macos/latexindent
2022/12/04 |       6308 | systems/texlive/tlnet/archive/ppt-slides.source.r65194.tar.xz
2022/12/04 |     629000 | systems/texlive/tlnet/archive/pdfextra.doc.r65184.tar.xz
2022/12/04 |      61740 | systems/texlive/tlnet/archive/mathfont.source.r65193.tar.xz
2022/12/04 |    6159918 | support/latexindent/bin/linux/latexindent
2022/12/04 |       6023 | support/latexindent/LatexIndent/Else.pm
2022/12/04 |       5809 | support/latexindent/LatexIndent/UnNamedGroupingBracesBrackets.pm
2022/12/04 |     578424 | macros/latex/contrib/hfutexam.zip
2022/12/04 |      54385 | support/latexindent/documentation/latexindent-yaml-schema.json
2022/12/04 |       5430 | support/latexindent/LatexIndent/KeyEqualsValuesBraces.pm
2022/12/04 |       5390 | support/latexindent/LatexIndent/Check.pm
2022/12/04 |       5325 | biblio/bibtex/contrib/urlbst/Makefile.in
2022/12/04 |       5313 | macros/latex/contrib/mathfont/README.txt
2022/12/04 |     521960 | systems/texlive/tlnet/archive/xduts.r65186.tar.xz
2022/12/04 |       5206 | support/latexindent/documentation/contributors.bib
2022/12/04 |       5087 | macros/latex/contrib/hfutexam/hfutexam_cankaodaan.tex
2022/12/04 |      50744 | systems/texlive/tlnet/archive/uplatex.source.r65197.tar.xz
2022/12/04 |      48856 | support/latexindent/LatexIndent/GetYamlSettings.pm
2022/12/04 |        484 | macros/latex/contrib/hfutexam/CHANGELOG.md
2022/12/04 |       4816 | support/latexindent/LatexIndent/BlankLines.pm
2022/12/04 |     475516 | systems/texlive/tlnet/archive/hfutexam.doc.r65192.tar.xz
2022/12/04 |     467744 | systems/texlive/tlnet/archive/amiri.r65191.tar.xz
2022/12/04 |      44096 | support/latexindent/documentation/logo.png
2022/12/04 |       4402 | support/latexindent/documentation/latex-indent.bib
2022/12/04 |       4365 | support/latexindent/LatexIndent/RoundBrackets.pm
2022/12/04 |       4364 | systems/texlive/tlnet/archive/hfutexam.r65192.tar.xz
2022/12/04 |       4340 | support/latexindent/LatexIndent/NamedGroupingBracesBrackets.pm
2022/12/04 |     423876 | systems/texlive/tlnet/archive/biblatex-publist.doc.r65182.tar.xz
2022/12/04 |     420248 | systems/texlive/tlnet/archive/semantex.doc.r65183.tar.xz
2022/12/04 |      41936 | systems/texlive/tlnet/archive/platex.r65197.tar.xz
2022/12/04 |       4160 | systems/texlive/tlnet/archive/ppt-slides.r65194.tar.xz
2022/12/04 |     408010 | support/latexindent/documentation/latexindent.tex
2022/12/04 |      40224 | systems/texlive/tlnet/archive/bithesis.source.r65195.tar.xz
2022/12/04 |      40000 | systems/texlive/tlnet/archive/xduts.source.r65186.tar.xz
2022/12/04 |       3989 | macros/latex/contrib/ppt-slides/ppt-templates/ppt-9x6.tex
2022/12/04 |       3812 | macros/latex/contrib/hfutexam/hfutexam_shijuan.tex
2022/12/04 |       3747 | support/latexindent/LatexIndent/Replacement.pm
2022/12/04 |       3720 | macros/unicodetex/latex/bithesis/bithesis.ins
2022/12/04 |      36234 | biblio/bibtex/contrib/urlbst/alphaurl.bst
2022/12/04 |       3482 | support/latexindent/LatexIndent/HorizontalWhiteSpace.pm
2022/12/04 |       3472 | systems/texlive/tlnet/archive/latex-firstaid-dev.r65181.tar.xz
2022/12/04 |       3412 | support/latexindent/latexindent.pl
2022/12/04 |       3339 | support/latexindent/LatexIndent/Tokens.pm
2022/12/04 |      32940 | biblio/bibtex/contrib/urlbst/plainurl.bst
2022/12/04 |     329334 | biblio/bibtex/contrib/urlbst.zip
2022/12/04 |      32656 | biblio/bibtex/contrib/urlbst/abbrvurl.bst
2022/12/04 |   31515420 | systems/texlive/tlnet/archive/latex-base-dev.doc.r65180.tar.xz
2022/12/04 |     305984 | systems/texlive/tlnet/archive/xduts.doc.r65186.tar.xz
2022/12/04 |      30357 | biblio/bibtex/contrib/urlbst/unsrturl.bst
2022/12/04 |        297 | macros/latex/contrib/hfutexam/README.md
2022/12/04 |      29492 | biblio/bibtex/contrib/urlbst/urlbst
2022/12/04 |      29433 | biblio/bibtex/contrib/urlbst/urlbst.in
2022/12/04 |      27328 | support/latexindent/LatexIndent/Verbatim.pm
2022/12/04 |        272 | macros/latex/contrib/ppt-slides/DEPENDS.txt
2022/12/04 |       2701 | support/latexindent/LatexIndent/Switches.pm
2022/12/04 |       2690 | support/latexindent/LatexIndent/Preamble.pm
2022/12/04 |      26516 | systems/texlive/tlnet/archive/semantex.r65183.tar.xz
2022/12/04 |     265128 | systems/texlive/tlnet/archive/latex-firstaid-dev.doc.r65181.tar.xz
2022/12/04 |       2643 | macros/unicodetex/latex/bithesis/contributing-zh.md
2022/12/04 |       2640 | macros/latex/contrib/ppt-slides/ppt-slides.ins
2022/12/04 |      25512 | systems/texlive/tlnet/archive/pdfextra.r65184.tar.xz
2022/12/04 |     251788 | systems/texlive/tlnet/archive/urlbst.doc.r65190.tar.xz
2022/12/04 |      24708 | systems/texlive/tlnet/archive/amiri.doc.r65191.tar.xz
2022/12/04 |      24410 | support/latexindent/LatexIndent/Arguments.pm
2022/12/04 |       2422 | biblio/bibtex/contrib/urlbst/README
2022/12/04 |       2332 | macros/unicodetex/latex/bithesis/contributing.md
2022/12/04 |      23272 | systems/texlive/tlnet/archive/urlbst.source.r65190.tar.xz
2022/12/04 |       2320 | support/latexindent/LatexIndent/Logger.pm
2022/12/04 |     229684 | systems/texlive/tlnet/archive/latex-base-dev.r65180.tar.xz
2022/12/04 |      22818 | support/latexindent/LatexIndent/Document.pm
2022/12/04 |       2252 | systems/texlive/tlnet/archive/graphics-pln.doc.r65187.tar.xz
2022/12/04 |     222858 | biblio/bibtex/contrib/urlbst/urlbst.pdf
2022/12/04 |      21928 | systems/texlive/tlnet/archive/bithesis.r65195.tar.xz
2022/12/04 |      21779 | biblio/bibtex/contrib/urlbst/urlbst.html
2022/12/04 |       2166 | biblio/bibtex/contrib/urlbst/configure.ac
2022/12/04 |      21564 | support/latexindent/LatexIndent/Indent.pm
2022/12/04 |      21264 | systems/texlive/tlnet/archive/mathfont.r65193.tar.xz
2022/12/04 |      20663 | biblio/bibtex/contrib/urlbst/urlbst.tex
2022/12/04 |      20388 | support/latexindent/LatexIndent/Sentence.pm
2022/12/04 |       2008 | support/latexindent/README
2022/12/04 |     200040 | macros/latex/contrib/hfutexam/hfutexam.pdf
2022/12/04 |       1993 | macros/unicodetex/latex/bithesis/README.md
2022/12/04 |      19922 | support/latexindent/defaultSettings.yaml
2022/12/04 |      19636 | systems/texlive/tlnet/archive/njuthesis.r65196.tar.xz
2022/12/04 |     194792 | macros/unicodetex/latex/bithesis/bithesis.dtx
2022/12/04 |      19106 | biblio/bibtex/contrib/urlbst/LICENCE-lppl.txt
2022/12/04 |      18522 | support/latexindent/LatexIndent/ModifyLineBreaks.pm
2022/12/04 |      18502 | macros/latex/contrib/ppt-slides/ppt-slides.dtx
2022/12/04 |      18092 | biblio/bibtex/contrib/urlbst/LICENCE-gpl-2.0.txt
2022/12/04 |      17979 | support/latexindent/LatexIndent/Wrap.pm
2022/12/04 |       1664 | systems/texlive/tlnet/archive/collection-publishers.r65192.tar.xz
2022/12/04 |       1620 | macros/latex/contrib/ppt-slides/README.md
2022/12/04 |       1607 | macros/latex/contrib/hfutexam/hfutexam_datizhi.tex
2022/12/04 |       1558 | support/latexindent/latexindent-module-installer.pl
2022/12/04 |    1519012 | systems/texlive/tlnet/archive/optex.doc.r65185.tar.xz
2022/12/04 |    1500064 | systems/texlive/tlnet/archive/platex.doc.r65197.tar.xz
2022/12/04 |       1485 | support/latexindent/LatexIndent/DoubleBackSlash.pm
2022/12/04 |      14844 | systems/texlive/tlnet/archive/uplatex.r65197.tar.xz
2022/12/04 |       1420 | macros/latex/contrib/ppt-slides/ppt-schemes/ppt-light.tex
2022/12/04 |       1420 | macros/latex/contrib/ppt-slides/ppt-schemes/ppt-light-mono.tex
2022/12/04 |       1420 | macros/latex/contrib/ppt-slides/ppt-schemes/ppt-dark.tex
2022/12/04 |       1420 | macros/latex/contrib/ppt-slides/ppt-schemes/ppt-dark-mono.tex
2022/12/04 |      14108 | systems/texlive/tlnet/archive/urlbst.r65190.tar.xz
2022/12/04 |     139172 | systems/texlive/tlnet/archive/platex.source.r65197.tar.xz
2022/12/04 |      13890 | support/latexindent/LatexIndent/Special.pm
2022/12/04 |      13420 | support/latexindent/LatexIndent/HiddenChildren.pm
2022/12/04 |      13418 | macros/latex/contrib/hfutexam/hfutexam.cls
2022/12/04 |      12897 | support/latexindent/LatexIndent/LogFile.pm
2022/12/04 |      12646 | support/latexindent/LatexIndent/Braces.pm
2022/12/04 |      12419 | macros/latex/contrib/hfutexam/hfutexam.tex
2022/12/04 |      12200 | systems/texlive/tlnet/archive/biblatex-publist.r65182.tar.xz
2022/12/04 |         11 | biblio/bibtex/contrib/urlbst/VERSION
2022/12/04 |    1167612 | systems/texlive/tlnet/archive/njuthesis.doc.r65196.tar.xz
2022/12/04 |    1166672 | support/latexindent/documentation/latexindent.pdf
2022/12/04 |      11300 | support/latexindent/LatexIndent/FileContents.pm
2022/12/04 |      11142 | support/latexindent/LatexIndent/Heading.pm
2022/12/04 |     110461 | macros/latex/contrib/hfutexam/hfutexam_simple.pdf
2022/12/04 |       1078 | macros/latex/contrib/ppt-slides/LICENSE.txt
2022/12/04 |    1076205 | macros/unicodetex/latex/bithesis.zip
2022/12/04 |      10622 | support/latexindent/LatexIndent/Command.pm
2022/12/04 |      10530 | macros/latex/contrib/hfutexam/hfutexam_simple.tex
2022/12/04 |    1046235 | macros/unicodetex/latex/bithesis/bithesis.pdf
2022/12/04 |    1038670 | fonts/amiri.zip
2022/12/04 |    1030676 | systems/texlive/tlnet/archive/bithesis.doc.r65195.tar.xz
2022/12/04 |    1018762 | macros/latex/contrib/ppt-slides.zip
2022/12/03 |         99 | macros/latex-dev/base/ltpara-code.tex
2022/12/03 |        998 | macros/latex/contrib/biblatex-contrib/biblatex-publist/publist.dbx
2022/12/03 |       9929 | support/digestif/digestif/ManuscriptLaTeX.lua
2022/12/03 |       9926 | macros/latex-dev/base/ltnews21.tex
2022/12/03 |       9779 | macros/latex-dev/base/format.ins
2022/12/03 |      97785 | support/digestif/data/plain.tags
2022/12/03 |     974364 | systems/texlive/tlnet/archive/tex4ht.r65171.tar.xz
2022/12/03 |       9729 | macros/luatex/generic/pdfextra/pdfextra.tex
2022/12/03 |         96 | macros/latex-dev/base/doc-code.tex
2022/12/03 |       9600 | macros/luatex/generic/pdfextra/examples/pdfextra-example.tex
2022/12/03 |      95654 | support/digestif/data/latex.tags
2022/12/03 |       9557 | macros/latex-dev/base/ltcntrl.dtx
2022/12/03 |       9401 | macros/latex-dev/base/source2edoc.cls
2022/12/03 |       9395 | macros/latex-dev/base/syntonly.dtx
2022/12/03 |       9345 | macros/latex-dev/base/preload.dtx
2022/12/03 |      92954 | macros/latex-dev/base/ltdefns.dtx
2022/12/03 |      92280 | macros/latex-dev/base/utf8ienc.dtx
2022/12/03 |       9068 | macros/latex-dev/base/lppl-1-0.txt
2022/12/03 |      90660 | macros/latex-dev/base/lttextcomp.dtx
2022/12/03 |      89727 | macros/latex-dev/base/slides.dtx
2022/12/03 |       8970 | macros/latex-dev/base/ltnews17.tex
2022/12/03 |       8827 | macros/latex/contrib/biblatex-contrib/biblatex-publist/README
2022/12/03 |     881135 | macros/xetex/latex/xduts/xdulogo.pdf
2022/12/03 |       8731 | macros/latex-dev/base/ltthm.dtx
2022/12/03 |       8626 | macros/latex-dev/base/oldlfont.dtx
2022/12/03 |      85834 | support/digestif/data/texinfo.tags
2022/12/03 |         84 | support/digestif/data/latex-prog.tags
2022/12/03 |      84215 | macros/latex-dev/base/ltfssini.dtx
2022/12/03 |     840205 | support/digestif/data/tikz.tags
2022/12/03 |       8367 | macros/latex-dev/base/ltnews.tex
2022/12/03 |      83324 | support/digestif/data/primitives.tags
2022/12/03 |      82481 | macros/latex-dev/base/ltfssbas.dtx
2022/12/03 |     820928 | macros/latex-dev/base/ltshipout-code.pdf
2022/12/03 |      81202 | macros/latex-dev/base/ltshipout.dtx
2022/12/03 |     803060 | macros/latex-dev/base/ltfilehook-code.pdf
2022/12/03 |     788583 | support/digestif/data/pgf.tags
2022/12/03 |        779 | support/digestif/digestif/ManuscriptTexinfo.lua
2022/12/03 |     755547 | macros/latex-dev/base/doc.pdf
2022/12/03 |       7524 | macros/latex-dev/base/ltxguide.cls
2022/12/03 |      75111 | macros/latex-dev/base/ltfssdcl.dtx
2022/12/03 |       7495 | support/digestif/digestif/Parser.lua
2022/12/03 |      74886 | macros/latex-dev/base/ltluatex.dtx
2022/12/03 |       7376 | systems/texlive/tlnet/archive/cvss.source.r65169.tar.xz
2022/12/03 |      72475 | macros/latex-dev/base/ltfsstrc.dtx
2022/12/03 |       7235 | macros/luatex/generic/pdfextra/examples/pdfextra-example-latex.tex
2022/12/03 |       7221 | macros/latex-dev/base/ltnews20.tex
2022/12/03 |       7216 | macros/latex-dev/base/exscale.dtx
2022/12/03 |       7200 | macros/latex-dev/base/sample2e.tex
2022/12/03 |     719408 | macros/latex-dev/base/ltcmdhooks-code.pdf
2022/12/03 |     715658 | macros/latex-dev/base/ltmarks-code.pdf
2022/12/03 |       7120 | support/digestif/digestif/bibtex.lua
2022/12/03 |       7104 | macros/latex-dev/base/alltt.dtx
2022/12/03 |       7029 | macros/latex-dev/base/ltnews13.tex
2022/12/03 |     702657 | macros/luatex/generic/pdfextra.zip
2022/12/03 |     701473 | macros/latex-dev/base/lthooks-doc.pdf
2022/12/03 |         69 | support/digestif/data/t-pgf.xml.tags
2022/12/03 |         69 | macros/luatex/generic/pdfextra/pdfextra.sty
2022/12/03 |      69315 | macros/latex-dev/base/clsguide.tex
2022/12/03 |      69143 | macros/luatex/generic/pdfextra/pdfextra.opm
2022/12/03 |      69002 | macros/latex-dev/base/ltpictur.dtx
2022/12/03 |      68732 | macros/latex-dev/base/usrguide-historic.tex
2022/12/03 |       6760 | macros/latex-dev/base/slides.ins
2022/12/03 |      67351 | macros/latex-dev/base/ltfilehook.dtx
2022/12/03 |       6709 | macros/latex-dev/base/latexsym.dtx
2022/12/03 |     667129 | macros/latex-dev/base/ltpara-code.pdf
2022/12/03 |        662 | macros/luatex/generic/pdfextra/LICENSE
2022/12/03 |       6424 | macros/latex-dev/base/ltnews14.tex
2022/12/03 |      63700 | macros/latex/contrib/biblatex-contrib/biblatex-publist/publist.bbx
2022/12/03 |       6357 | macros/latex-dev/base/newlfont.dtx
2022/12/03 |      63280 | macros/latex-dev/base/letter.dtx
2022/12/03 |      63132 | macros/latex-dev/base/ltmarks.dtx
2022/12/03 |       6213 | macros/latex-dev/base/ltmeta.dtx
2022/12/03 |       6155 | macros/latex-dev/base/ltpar.dtx
2022/12/03 |      60516 | macros/latex/contrib/biblatex-contrib/biblatex-publist/biblatex-publist.tex
2022/12/03 |       6047 | macros/latex-dev/base/latexrelease.ins
2022/12/03 |      60321 | macros/latex-dev/base/fontdef.dtx
2022/12/03 |        601 | support/digestif/data/t-tikz.xml.tags
2022/12/03 |         59 | support/digestif/bin/digestif
2022/12/03 |       5988 | support/digestif/README.md
2022/12/03 |       5986 | macros/latex-dev/base/ltnews15.tex
2022/12/03 |      59499 | macros/latex-dev/base/ltplain.dtx
2022/12/03 |      59070 | macros/latex-dev/base/ltmiscen.dtx
2022/12/03 |      58933 | macros/latex-dev/base/ltfiles.dtx
2022/12/03 |     586024 | macros/latex-dev/base/ltmarks-doc.pdf
2022/12/03 |       5859 | macros/latex-dev/base/ltidxglo.dtx
2022/12/03 |      58592 | macros/luatex/generic/pdfextra/examples/pdfextra-example-part.prc
2022/12/03 |      58551 | macros/latex-dev/base/ltfssaxes.dtx
2022/12/03 |       5825 | macros/latex-dev/base/ltnews10.tex
2022/12/03 |    5789493 | macros/latex-dev/base/source2e.pdf
2022/12/03 |       5775 | macros/latex-dev/base/ltnews16.tex
2022/12/03 |        576 | support/digestif/data/tikz.sty.tags
2022/12/03 |     574872 | systems/texlive/tlnet/archive/cvss.doc.r65169.tar.xz
2022/12/03 |       5732 | macros/latex-dev/base/ltnews08.tex
2022/12/03 |        571 | support/digestif/digestif/ManuscriptDoctex.lua
2022/12/03 |       5714 | macros/latex-dev/base/inputenc.ins
2022/12/03 |       5699 | macros/latex-dev/base/ltnews05.tex
2022/12/03 |       5678 | macros/latex-dev/base/ltnews04.tex
2022/12/03 |       5671 | macros/latex-dev/base/ltnews27.tex
2022/12/03 |     565931 | macros/latex-dev/base/ltshipout-doc.pdf
2022/12/03 |     563089 | macros/latex-dev/base/ltnews35.pdf
2022/12/03 |     560326 | macros/latex-dev/base/classes.pdf
2022/12/03 |     560008 | macros/latex-dev/base/ltpara-doc.pdf
2022/12/03 |       5588 | macros/latex-dev/base/ltnews25.tex
2022/12/03 |       5576 | macros/latex-dev/base/ltnews07.tex
2022/12/03 |       5574 | macros/latex-dev/base/ltnews12.tex
2022/12/03 |      55687 | macros/latex-dev/base/ltfloat.dtx
2022/12/03 |       5544 | macros/latex-dev/base/ltnews06.tex
2022/12/03 |       5529 | macros/latex-dev/base/ltnews11.tex
2022/12/03 |       5509 | macros/latex-dev/base/graphpap.dtx
2022/12/03 |     547926 | macros/latex-dev/base/ltfilehook-doc.pdf
2022/12/03 |       5462 | macros/latex-dev/base/ltnews02.tex
2022/12/03 |     546160 | macros/latex-dev/base/ltnews32.pdf
2022/12/03 |     545808 | systems/texlive/tlnet/archive/ffcode.doc.r65170.tar.xz
2022/12/03 |       5451 | macros/latex-dev/base/ltnews09.tex
2022/12/03 |       5369 | macros/latex-dev/base/ltnews03.tex
2022/12/03 |      53025 | macros/latex-dev/base/ltcmdhooks.dtx
2022/12/03 |      52813 | macros/latex-dev/base/encguide.tex
2022/12/03 |       5273 | macros/latex-dev/base/cmextra.ins
2022/12/03 |      52710 | macros/latex-dev/base/lb2.err
2022/12/03 |     526323 | macros/latex-dev/base/ltnews31.pdf
2022/12/03 |       5246 | macros/latex-dev/base/ltnews01.tex
2022/12/03 |     522412 | macros/latex-dev/base/ltnews33.pdf
2022/12/03 |     517838 | macros/latex-dev/base/fntguide.pdf
2022/12/03 |     517565 | macros/latex-dev/base/ltnews36.pdf
2022/12/03 |      51606 | macros/latex-dev/base/ltpara.dtx
2022/12/03 |     511909 | macros/latex-dev/base/ltnews30.pdf
2022/12/03 |      51005 | macros/latex-dev/base/usrguide.tex
2022/12/03 |     508044 | macros/latex-dev/base/ltnews34.pdf
2022/12/03 |       5041 | macros/latex-dev/base/latexsym.ins
2022/12/03 |     504178 | macros/latex-dev/base/docstrip.pdf
2022/12/03 |       5016 | systems/texlive/tlnet/archive/ffcode.source.r65170.tar.xz
2022/12/03 |      50069 | macros/latex-dev/base/ltfinal.dtx
2022/12/03 |       4945 | macros/latex-dev/base/lthyphen.dtx
2022/12/03 |       4853 | support/digestif/LICENSE
2022/12/03 |      47896 | macros/latex-dev/base/lttab.dtx
2022/12/03 |     478686 | macros/latex-dev/base/ltcmdhooks-doc.pdf
2022/12/03 |       4757 | macros/latex-dev/base/ltlength.dtx
2022/12/03 |        474 | macros/latex-dev/required/firstaid/README.md
2022/12/03 |     474808 | macros/latex-dev/base/usrguide.pdf
2022/12/03 |       4736 | macros/latex/contrib/semantex/stripsemantex.sty
2022/12/03 |       4607 | macros/latex-dev/required/firstaid/changes.txt
2022/12/03 |      45754 | macros/latex-dev/base/ltspace.dtx
2022/12/03 |      45712 | macros/latex-dev/base/ltboxes.dtx
2022/12/03 |     455242 | macros/latex/contrib/semantex.zip
2022/12/03 |     455107 | macros/latex-dev/base/ltnews29.pdf
2022/12/03 |      45347 | macros/latex-dev/base/latexrelease.dtx
2022/12/03 |     453396 | fonts/amiri/Amiri-Regular.ttf
2022/12/03 |     451684 | fonts/amiri/Amiri-Italic.ttf
2022/12/03 |      44410 | macros/latex-dev/base/cmfonts.fdd
2022/12/03 |     439953 | macros/latex/contrib/biblatex-contrib/biblatex-publist.zip
2022/12/03 |       4390 | macros/latex-dev/base/ec.ins
2022/12/03 |       4387 | fonts/amiri/OFL.txt
2022/12/03 |      43851 | support/digestif/digestif/Manuscript.lua
2022/12/03 |     438515 | macros/latex-dev/base/usrguide-historic.pdf
2022/12/03 |       4350 | support/digestif/digestif/config.lua
2022/12/03 |       4324 | macros/latex-dev/base/cmfonts.ins
2022/12/03 |       4298 | macros/latex-dev/base/ltalloc.dtx
2022/12/03 |     429088 | fonts/amiri/Amiri-Bold.ttf
2022/12/03 |       4273 | macros/latex-dev/base/docstrip.ins
2022/12/03 |      42708 | macros/latex-dev/base/changes.old.txt
2022/12/03 |     426584 | fonts/amiri/Amiri-BoldItalic.ttf
2022/12/03 |       4254 | macros/latex-dev/base/newdc.ins
2022/12/03 |       4219 | macros/latex-dev/base/latex209.ins
2022/12/03 |       4170 | macros/latex-dev/base/ltnews19.tex
2022/12/03 |       4152 | support/digestif/digestif/Schema.lua
2022/12/03 |      41493 | macros/latex-dev/base/ltmath.dtx
2022/12/03 |     414419 | macros/latex-dev/base/clsguide.pdf
2022/12/03 |     408962 | macros/latex-dev/base/ltnews37.pdf
2022/12/03 |       4087 | macros/latex-dev/base/classes.ins
2022/12/03 |       4079 | macros/latex-dev/base/lablst.tex
2022/12/03 |     407279 | macros/latex/contrib/biblatex-contrib/biblatex-publist/biblatex-publist.pdf
2022/12/03 |        399 | support/digestif/digestif/ManuscriptLatexProg.lua
2022/12/03 |     397760 | macros/latex/contrib/semantex/semantex.pdf
2022/12/03 |       3960 | macros/latex-dev/base/olddc.ins
2022/12/03 |   39466146 | install/macros/latex-dev/latex-base-dev.tds.zip
2022/12/03 |     394640 | macros/latex-dev/base/changes.txt
2022/12/03 |   38914585 | macros/latex-dev/base.zip
2022/12/03 |      38793 | macros/latex-dev/base/ltnews35.tex
2022/12/03 |      38730 | macros/latex-dev/base/latex209.dtx
2022/12/03 |      38562 | support/digestif/data/csquotes.sty.tags
2022/12/03 |     385337 | macros/luatex/generic/pdfextra/examples/pdfextra-example.pdf
2022/12/03 |       3832 | support/digestif/digestif/Cache.lua
2022/12/03 |      38033 | macros/latex-dev/base/ltnews18.pdf
2022/12/03 |     379462 | macros/latex-dev/base/ltnews26.pdf
2022/12/03 |       3781 | macros/latex-dev/base/tulm.ins
2022/12/03 |     376643 | macros/latex-dev/base/ltnews28.pdf
2022/12/03 |     375518 | macros/latex-dev/base/slides.pdf
2022/12/03 |       3725 | macros/latex-dev/base/ltlogos.dtx
2022/12/03 |      36830 | support/digestif/data/etoolbox.sty.tags
2022/12/03 |      36152 | macros/latex-dev/base/ltlists.dtx
2022/12/03 |       3602 | support/digestif/data/cleveref.sty.tags
2022/12/03 |      35984 | macros/latex-dev/base/ltdirchk.dtx
2022/12/03 |     353428 | macros/latex-dev/base/utf8ienc.pdf
2022/12/03 |       3478 | macros/latex/contrib/biblatex-contrib/biblatex-publist/publist.cbx
2022/12/03 |       3434 | macros/latex-dev/base/makeindx.ins
2022/12/03 |      34273 | fonts/amiri/NEWS-Arabic.md
2022/12/03 |       3401 | macros/latex-dev/base/proc.ins
2022/12/03 |      33962 | macros/luatex/generic/pdfextra/pdfextra-doc.tex
2022/12/03 |      33946 | macros/latex-dev/base/ltsect.dtx
2022/12/03 |      33907 | macros/latex-dev/base/ltnews33.tex
2022/12/03 |     337430 | macros/latex-dev/base/letter.pdf
2022/12/03 |       3372 | macros/latex-dev/base/letter.ins
2022/12/03 |       3367 | macros/latex-dev/base/ltoutenc.ins
2022/12/03 |       3338 | macros/latex-dev/base/exscale.ins
2022/12/03 |      33239 | macros/latex-dev/base/ltnews32.tex
2022/12/03 |       3320 | systems/texlive/tlnet/archive/cvss.r65169.tar.xz
2022/12/03 |       3282 | macros/latex-dev/base/bugs.txt
2022/12/03 |     324910 | macros/latex-dev/base/ltluatex.pdf
2022/12/03 |      32307 | macros/latex-dev/base/ltnews34.tex
2022/12/03 |     318548 | macros/latex-dev/base/ltnews20.pdf
2022/12/03 |     318204 | macros/latex-dev/base/inputenc.pdf
2022/12/03 |       3181 | macros/latex-dev/base/unpack.ins
2022/12/03 |     317773 | macros/latex-dev/base/ltnews22.pdf
2022/12/03 |       3125 | macros/xetex/latex/xduts/README.md
2022/12/03 |       3100 | macros/latex-dev/base/README.md
2022/12/03 |       3094 | macros/unicodetex/latex/njuthesis/njuthesis.ins
2022/12/03 |     307600 | macros/xetex/latex/xduts/xduts.pdf
2022/12/03 |      30499 | macros/latex-dev/base/doc-2021-06-01.sty
2022/12/03 |      30428 | macros/latex-dev/base/ltnews31.tex
2022/12/03 |     300363 | macros/latex/contrib/semantex/semantex.sty
2022/12/03 |     300296 | macros/unicodetex/latex/njuthesis/njuthesis.dtx
2022/12/03 |      29965 | macros/latex-dev/base/doc-2016-02-15.sty
2022/12/03 |       2959 | support/digestif/INSTALL.md
2022/12/03 |      29267 | macros/latex-dev/base/ltfntcmd.dtx
2022/12/03 |     292160 | macros/latex-dev/base/cmfonts.pdf
2022/12/03 |     290615 | macros/latex-dev/base/tlc2.pdf
2022/12/03 |       2896 | macros/latex-dev/base/syntonly.ins
2022/12/03 |       2893 | macros/latex-dev/base/nfssfont.ins
2022/12/03 |       2892 | macros/latex-dev/base/graphpap.ins
2022/12/03 |       2892 | macros/latex-dev/base/fix-cm.ins
2022/12/03 |       2890 | macros/latex-dev/base/alltt.ins
2022/12/03 |       2888 | macros/latex-dev/base/ifthen.ins
2022/12/03 |     287733 | macros/latex-dev/base/fix-cm.pdf
2022/12/03 |     286591 | macros/latex-dev/base/ltnews23.pdf
2022/12/03 |     282532 | systems/texlive/tlnet/archive/csbulletin.doc.r65168.tar.xz
2022/12/03 |     282115 | macros/latex-dev/base/latexrelease.pdf
2022/12/03 |     277960 | install/macros/latex-dev/required/latex-firstaid-dev.tds.zip
2022/12/03 |       2740 | macros/latex-dev/required/firstaid/firstaid.ins
2022/12/03 |     272901 | macros/latex-dev/required/firstaid.zip
2022/12/03 |       2728 | macros/latex-dev/base/ltpageno.dtx
2022/12/03 |     271476 | macros/latex-dev/required/firstaid/latex2e-first-aid-for-external-files.pdf
2022/12/03 |      27122 | macros/latex-dev/base/ltxcheck.tex
2022/12/03 |    2707528 | systems/texlive/tlnet/archive/simpleicons.r65167.tar.xz
2022/12/03 |      27069 | macros/latex-dev/base/lterror.dtx
2022/12/03 |       2705 | macros/latex-dev/base/idx.tex
2022/12/03 |     265279 | macros/latex-dev/base/ltnews24.pdf
2022/12/03 |     264112 | macros/latex-dev/base/cfgguide.pdf
2022/12/03 |     257804 | macros/latex-dev/base/modguide.pdf
2022/12/03 |     257314 | macros/latex-dev/base/cyrguide.pdf
2022/12/03 |       2565 | support/digestif/data/xparse.sty.tags
2022/12/03 |      25560 | fonts/amiri/NEWS.md
2022/12/03 |     253925 | support/digestif/data/biblatex.sty.tags
2022/12/03 |     252140 | macros/latex-dev/base/lb2.pdf
2022/12/03 |     250660 | macros/xetex/latex/xduts/xduts.dtx
2022/12/03 |     250592 | macros/latex-dev/base/ltnews27.pdf
2022/12/03 |    2488994 | macros/optex.zip
2022/12/03 |     244867 | macros/latex-dev/base/ltnews21.pdf
2022/12/03 |     243286 | macros/latex-dev/base/ltxdoc.pdf
2022/12/03 |      24286 | macros/latex-dev/base/ltcounts.dtx
2022/12/03 |     242468 | macros/latex-dev/base/doc.dtx
2022/12/03 |        241 | macros/latex-dev/base/ltfilehook-doc.tex
2022/12/03 |        240 | macros/latex-dev/base/ltshipout-doc.tex
2022/12/03 |         23 | support/digestif/data/pgf.sty.tags
2022/12/03 |        238 | macros/latex-dev/base/ltmarks-doc.tex
2022/12/03 |        238 | macros/latex-dev/base/lthooks-doc.tex
2022/12/03 |        238 | macros/latex-dev/base/ltcmdhooks-doc.tex
2022/12/03 |      23637 | macros/latex-dev/base/ltnews30.tex
2022/12/03 |      23583 | macros/latex-dev/required/firstaid/latex2e-first-aid-for-external-files.dtx
2022/12/03 |      23516 | macros/latex-dev/base/fix-cm.dtx
2022/12/03 |        234 | macros/latex-dev/base/ltpara-doc.tex
2022/12/03 |     234191 | macros/latex-dev/base/slifonts.pdf
2022/12/03 |      23386 | macros/latex-dev/base/lppl.tex
2022/12/03 |     232911 | macros/luatex/generic/pdfextra/pdfextra-doc.pdf
2022/12/03 |     230028 | macros/latex-dev/base/ltnews19.pdf
2022/12/03 |      22720 | macros/latex-dev/base/cfgguide.tex
2022/12/03 |     227059 | macros/latex-dev/base/proc.pdf
2022/12/03 |      22665 | macros/latex-dev/base/ltxdoc.dtx
2022/12/03 |     223834 | support/digestif/data/unicode-math.sty.tags
2022/12/03 |     223831 | macros/latex-dev/base/alltt.pdf
2022/12/03 |     221211 | macros/latex-dev/base/ifthen.pdf
2022/12/03 |     219349 | macros/latex-dev/base/ltx3info.pdf
2022/12/03 |       2180 | systems/texlive/tlnet/archive/ffcode.r65170.tar.xz
2022/12/03 |      21616 | fonts/amiri/Documentation-Arabic.html
2022/12/03 |     215684 | macros/latex-dev/base/lgc2.pdf
2022/12/03 |     211770 | macros/latex-dev/base/lthooks.dtx
2022/12/03 |     211180 | macros/latex-dev/base/nfssfont.pdf
2022/12/03 |      20652 | macros/latex-dev/base/lgc2.err
2022/12/03 |     204935 | macros/latex-dev/base/ltnews25.pdf
2022/12/03 |     204711 | macros/latex-dev/base/exscale.pdf
2022/12/03 |      20469 | macros/latex-dev/base/ltnews.cls
2022/12/03 |       2028 | fonts/amiri/README-Arabic.md
2022/12/03 |      20149 | support/digestif/digestif/util.lua
2022/12/03 |     200760 | macros/latex-dev/base/latexsym.pdf
2022/12/03 |    1986672 | systems/texlive/tlnet/archive/simpleicons.doc.r65167.tar.xz
2022/12/03 |      19853 | macros/latex-dev/base/ltkeys.dtx
2022/12/03 |       1937 | macros/latex-dev/base/minimal.cls
2022/12/03 |       1932 | fonts/amiri/README.md
2022/12/03 |      19329 | macros/latex-dev/base/ltnews36.tex
2022/12/03 |      19105 | macros/unicodetex/latex/njuthesis/LICENSE
2022/12/03 |      19040 | macros/latex-dev/base/lppl.txt
2022/12/03 |     189819 | macros/latex-dev/base/syntonly.pdf
2022/12/03 |      18944 | macros/latex-dev/base/ltnews29.tex
2022/12/03 |      18753 | macros/latex-dev/base/ifthen.dtx
2022/12/03 |      18711 | macros/latex-dev/base/ltexpl.dtx
2022/12/03 |      18399 | macros/latex-dev/base/nfssfont.dtx
2022/12/03 |      18363 | macros/latex-dev/base/ltxref.dtx
2022/12/03 |     183578 | macros/latex-dev/base/ltcmd.dtx
2022/12/03 |      18299 | macros/latex-dev/base/ltx3info.tex
2022/12/03 |      18223 | support/digestif/data/amsrefs.sty.tags
2022/12/03 |     182225 | macros/latex-dev/base/ltnews13.pdf
2022/12/03 |     182031 | macros/latex/contrib/semantex/semantex.tex
2022/12/03 |     178723 | macros/latex-dev/base/ltoutput.dtx
2022/12/03 |      17779 | macros/latex-dev/base/cyrguide.tex
2022/12/03 |     174494 | macros/latex-dev/base/ltnews05.pdf
2022/12/03 |      17389 | macros/latex-dev/base/ltbibl.dtx
2022/12/03 |     172867 | macros/latex-dev/base/tlc2.err
2022/12/03 |     171261 | support/digestif/data/teximpatient.tags
2022/12/03 |     170878 | macros/latex-dev/base/lamport-manual.pdf
2022/12/03 |     170595 | macros/latex-dev/base/docstrip.dtx
2022/12/03 |     170473 | macros/latex-dev/base/ltnews14.pdf
2022/12/03 |       1694 | macros/latex-dev/base/small2e.tex
2022/12/03 |     169416 | macros/latex-dev/base/ltnews10.pdf
2022/12/03 |       1689 | support/digestif/digestif/ManuscriptPlainTeX.lua
2022/12/03 |     166228 | macros/latex-dev/base/ltnews17.pdf
2022/12/03 |     165821 | macros/latex-dev/base/makeindx.pdf
2022/12/03 |      16542 | support/digestif/digestif/ManuscriptConTeXt.lua
2022/12/03 |      16497 | macros/latex-dev/base/modguide.tex
2022/12/03 |      16351 | support/digestif/digestif/langserver.lua
2022/12/03 |     162772 | macros/latex-dev/base/tulm.pdf
2022/12/03 |     162180 | fonts/amiri/AmiriQuranColored.ttf
2022/12/03 |     161713 | macros/latex-dev/base/graphpap.pdf
2022/12/03 |     161518 | macros/latex-dev/base/ltnews01.pdf
2022/12/03 |     159792 | macros/latex-dev/base/ltnews02.pdf
2022/12/03 |     159332 | macros/latex-dev/base/ltnews03.pdf
2022/12/03 |      15699 | macros/latex-dev/base/slifonts.fdd
2022/12/03 |     156551 | macros/latex-dev/base/ltnews12.pdf
2022/12/03 |     156236 | macros/latex-dev/base/classes.dtx
2022/12/03 |     155053 | macros/latex-dev/base/ltnews08.pdf
2022/12/03 |      15384 | macros/latex-dev/base/ltvers.dtx
2022/12/03 |      15306 | macros/latex-dev/base/source2e.tex
2022/12/03 |     152525 | macros/latex-dev/base/ltnews04.pdf
2022/12/03 |      15047 | macros/latex-dev/base/ltnews28.tex
2022/12/03 |     148294 | macros/latex-dev/base/ltoutenc.dtx
2022/12/03 |     146198 | macros/latex-dev/base/webcomp.pdf
2022/12/03 |     144369 | macros/latex-dev/base/ltclass.dtx
2022/12/03 |      14421 | macros/latex-dev/base/lppl-1-2.txt
2022/12/03 |      14341 | macros/latex-dev/base/lppl-1-1.txt
2022/12/03 |     142849 | macros/latex-dev/base/ltnews06.pdf
2022/12/03 |      14091 | macros/latex-dev/base/ltpage.dtx
2022/12/03 |     140892 | fonts/amiri/AmiriQuran.ttf
2022/12/03 |     138073 | macros/latex-dev/base/ltnews16.pdf
2022/12/03 |     137811 | macros/latex-dev/base/ltnews07.pdf
2022/12/03 |      13759 | macros/latex-dev/base/lamport-manual.err
2022/12/03 |      13696 | support/digestif/data/amssymb.sty.tags
2022/12/03 |     136384 | systems/texlive/tlnet/archive/tex4ht.doc.r65171.tar.xz
2022/12/03 |       1362 | support/digestif/data/natbib.sty.tags
2022/12/03 |      13589 | macros/latex-dev/base/proc.dtx
2022/12/03 |       1341 | macros/latex-dev/base/ltnews18.tex
2022/12/03 |     132382 | macros/latex-dev/base/lppl.pdf
2022/12/03 |    1318126 | macros/latex-dev/base/encguide.pdf
2022/12/03 |     130309 | macros/latex-dev/base/ltnews15.pdf
2022/12/03 |     129570 | macros/latex-dev/base/ltnews09.pdf
2022/12/03 |      12932 | systems/texlive/tlnet/archive/csbulletin.r65168.tar.xz
2022/12/03 |    1285060 | systems/texlive/tlnet/archive/tex4ht.source.r65171.tar.xz
2022/12/03 |       1279 | macros/latex-dev/base/legal.txt
2022/12/03 |    1255282 | macros/latex-dev/base/ltnews.pdf
2022/12/03 |      12520 | macros/latex-dev/base/testpage.tex
2022/12/03 |    1244739 | macros/unicodetex/latex/njuthesis.zip
2022/12/03 |      12334 | macros/latex-dev/base/ltnews24.tex
2022/12/03 |    1233271 | macros/xetex/latex/xduts.zip
2022/12/03 |      12242 | macros/latex-dev/base/tulm.fdd
2022/12/03 |      11852 | macros/latex-dev/base/ltnews37.tex
2022/12/03 |    1176569 | macros/unicodetex/latex/njuthesis/njuthesis.pdf
2022/12/03 |      11638 | support/digestif/digestif/data.lua
2022/12/03 |       1150 | support/digestif/data/hyperref.sty.tags
2022/12/03 |       1136 | support/digestif/digestif/ManuscriptBibTeX.lua
2022/12/03 |     111948 | macros/latex-dev/base/ltnews11.pdf
2022/12/03 |      11124 | macros/latex-dev/base/manifest.txt
2022/12/03 |       1111 | macros/xetex/latex/xduts/xduts.ins
2022/12/03 |       1101 | macros/luatex/generic/pdfextra/README.md
2022/12/03 |    1091429 | macros/latex-dev/base/lthooks-code.pdf
2022/12/03 |       1089 | support/digestif/bin/digestif.texlua
2022/12/03 |     108231 | macros/latex-dev/base/fntguide.tex
2022/12/03 |      10798 | macros/latex-dev/base/ltnews26.tex
2022/12/03 |      10792 | macros/latex-dev/base/ltnews22.tex
2022/12/03 |      10791 | macros/latex-dev/base/ltnews23.tex
2022/12/03 |       1077 | macros/unicodetex/latex/njuthesis/README.md
2022/12/03 |    1075110 | macros/latex-dev/base/doc-code.pdf
2022/12/03 |     106904 | macros/latex-dev/base/inputenc.dtx
2022/12/03 |      10601 | macros/latex-dev/base/makeindx.dtx
2022/12/03 |        105 | macros/latex-dev/base/ltfilehook-code.tex
2022/12/03 |        104 | macros/latex-dev/base/ltshipout-code.tex
2022/12/03 |        103 | macros/latex-dev/base/ltcmdhooks-code.tex
2022/12/03 |      10370 | macros/latex-dev/base/ltfsscmp.dtx
2022/12/03 |        102 | macros/latex-dev/base/ltmarks-code.tex
2022/12/03 |        102 | macros/latex-dev/base/lthooks-code.tex
2022/12/03 |      10251 | macros/latex-dev/base/webcomp.err
2022/12/02 |     993028 | usergrps/gutenberg/lettre/lettre48.pdf
2022/12/02 |        914 | systems/win32/miktex/tm/packages/pr.ini
2022/12/02 |      88422 | systems/win32/miktex/tm/packages/next/miktex-png-bin-x64-2.9.tar.lzma
2022/12/02 |       8829 | systems/win32/miktex/tm/packages/next/miktex-md5-bin-x64-2.9.tar.lzma
2022/12/02 |        874 | macros/latex/contrib/csbulletin/tex/csbulobalka.cls
2022/12/02 |       8637 | macros/optex/README
2022/12/02 |     848323 | systems/win32/miktex/tm/packages/fvextra__doc.tar.lzma
2022/12/02 |     845388 | systems/texlive/tlnet/archive/fvextra.doc.r65158.tar.xz
2022/12/02 |     828008 | systems/win32/miktex/tm/packages/next/miktex-pdftex-bin-x64-2.9.tar.lzma
2022/12/02 |      81359 | systems/win32/miktex/tm/packages/next/miktex-freeglut-bin-x64-2.9.tar.lzma
2022/12/02 |      79760 | systems/win32/miktex/tm/packages/next/miktex-fonts-bin-x64-2.9.tar.lzma
2022/12/02 |      77659 | systems/win32/miktex/tm/packages/next/miktex-bibtex-bin-x64-2.9.tar.lzma
2022/12/02 |     759468 | systems/win32/miktex/tm/packages/next/miktex-ptex-bin-x64.tar.lzma
2022/12/02 |     750179 | systems/win32/miktex/tm/packages/files.csv.lzma
2022/12/02 |     750060 | systems/win32/miktex/tm/packages/next/files.csv.lzma
2022/12/02 |      74433 | systems/win32/miktex/tm/packages/next/miktex-web-bin-x64-2.9.tar.lzma
2022/12/02 |      73952 | systems/win32/miktex/tm/packages/next/miktex-lzma-bin-x64-2.9.tar.lzma
2022/12/02 |      73354 | systems/win32/miktex/tm/packages/next/miktex-graphite2-bin-x64-2.9.tar.lzma
2022/12/02 |       7274 | macros/latex/contrib/csbulletin/doc/csbulletin.tex
2022/12/02 |      72746 | systems/win32/miktex/tm/packages/next/miktex-ps2pk-bin-x64-2.9.tar.lzma
2022/12/02 |     722243 | systems/win32/miktex/tm/packages/ltxbase__source.tar.lzma
2022/12/02 |     719884 | systems/texlive/tlnet/archive/latex.source.r65161.tar.xz
2022/12/02 |      71207 | systems/win32/miktex/tm/packages/next/miktex-tex4ht-bin-x64-2.9.tar.lzma
2022/12/02 |     702214 | systems/win32/miktex/tm/packages/next/miktex-lcdf-typetools-bin-x64-2.9.tar.lzma
2022/12/02 |      69231 | systems/win32/miktex/tm/packages/next/miktex-texify-bin-x64-2.9.tar.lzma
2022/12/02 |        665 | fonts/simpleicons/README.md
2022/12/02 |      65915 | systems/win32/miktex/tm/packages/next/miktex-bibarts-bin-x64-2.9.tar.lzma
2022/12/02 |        650 | macros/plain/graphics/graphicx.tex
2022/12/02 |      64377 | systems/win32/miktex/tm/packages/next/miktex-tdsutil-bin-x64.tar.lzma
2022/12/02 |     642537 | systems/win32/miktex/tm/packages/texinfo__source.tar.lzma
2022/12/02 |     637378 | systems/win32/miktex/tm/packages/next/miktex-yap-bin-x64-2.9.tar.lzma
2022/12/02 |        636 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsOneZero.tfm
2022/12/02 |      62779 | systems/win32/miktex/tm/packages/next/miktex-fmt-bin-x64-2.9.tar.lzma
2022/12/02 |      61868 | systems/win32/miktex/tm/packages/next/miktex-ttf2pk2-bin-x64-2.9.tar.lzma
2022/12/02 |        609 | macros/latex/contrib/csbulletin/README
2022/12/02 |     600295 | systems/win32/miktex/tm/packages/next/miktex-libressl-bin-x64-2.9.tar.lzma
2022/12/02 |      58530 | systems/win32/miktex/tm/packages/next/miktex-psutils-bin-x64-2.9.tar.lzma
2022/12/02 |     582949 | macros/latex/contrib/cvss.zip
2022/12/02 |      57810 | systems/win32/miktex/tm/packages/next/miktex-cjkutils-bin-x64-2.9.tar.lzma
2022/12/02 |      57421 | systems/win32/miktex/tm/packages/next/miktex-xml2pmx-bin-x64.tar.lzma
2022/12/02 |     574072 | macros/latex/contrib/ffcode/ffcode.pdf
2022/12/02 |     573524 | macros/latex/contrib/ffcode.zip
2022/12/02 |      57257 | systems/win32/miktex/tm/packages/next/miktex-arctrl-bin-x64-2.9.tar.lzma
2022/12/02 |     571562 | systems/win32/miktex/tm/packages/next/miktex-harfbuzz-bin-x64-2.9.tar.lzma
2022/12/02 |     569546 | macros/latex/contrib/cvss/cvss.pdf
2022/12/02 |        567 | macros/plain/graphics/color.tex
2022/12/02 |      55793 | systems/win32/miktex/tm/packages/next/miktex-mpmcli-bin-x64-2.9.tar.lzma
2022/12/02 |      54978 | systems/win32/miktex/tm/packages/fvextra__source.tar.lzma
2022/12/02 |      54596 | systems/texlive/tlnet/archive/fvextra.source.r65158.tar.xz
2022/12/02 |     529960 | systems/win32/miktex/tm/packages/next/miktex-log4cxx-bin-x64-2.9.tar.lzma
2022/12/02 |      52685 | systems/win32/miktex/tm/packages/next/miktex-synctex-bin-x64-2.9.tar.lzma
2022/12/02 |      52654 | systems/win32/miktex/tm/packages/next/miktex-dvicopy-bin-x64-2.9.tar.lzma
2022/12/02 |      52568 | systems/win32/miktex/tm/packages/next/miktex-m-tx-bin-x64-2.9.tar.lzma
2022/12/02 |     525236 | systems/win32/miktex/tm/packages/xduts.tar.lzma
2022/12/02 |    4935967 | fonts/simpleicons.zip
2022/12/02 |      48980 | systems/win32/miktex/tm/packages/next/miktex-expat-bin-x64-2.9.tar.lzma
2022/12/02 |       4864 | systems/texlive/tlnet/archive/ukbill.r65159.tar.xz
2022/12/02 |      48193 | systems/win32/miktex/tm/packages/next/miktex-mtprint-bin-x64-2.9.tar.lzma
2022/12/02 |     473023 | systems/win32/miktex/tm/packages/next/miktex-doc.tar.lzma
2022/12/02 |      45782 | systems/win32/miktex/tm/packages/next/miktex-dvipng-bin-x64-2.9.tar.lzma
2022/12/02 |       4482 | macros/optex/doc/optex-doc.tex
2022/12/02 |      44061 | systems/win32/miktex/tm/packages/next/miktex-gsf2pk-bin-x64-2.9.tar.lzma
2022/12/02 |      43896 | systems/win32/miktex/tm/packages/next/miktex-mthelp-bin-x64-2.9.tar.lzma
2022/12/02 |      43700 | systems/win32/miktex/tm/packages/next/miktex-zlib-bin-x64-2.9.tar.lzma
2022/12/02 |        424 | macros/latex/contrib/csbulletin/doc/example.bib
2022/12/02 |      42465 | systems/win32/miktex/tm/packages/next/miktex-upmendex-bin-x64.tar.lzma
2022/12/02 |      41733 | systems/win32/miktex/tm/packages/next/miktex-patgen-bin-x64.tar.lzma
2022/12/02 |         40 | macros/latex/contrib/ffcode/DEPENDS.txt
2022/12/02 |       4074 | macros/optex/base/optex.ini
2022/12/02 |      39859 | systems/win32/miktex/tm/packages/xduts__source.tar.lzma
2022/12/02 |     395125 | systems/win32/miktex/tm/packages/next/miktex-cairo-bin-x64-2.9.tar.lzma
2022/12/02 |       3811 | macros/plain/graphics/README.md
2022/12/02 |       3739 | macros/latex/contrib/csbulletin/tex/csbulacronym.sty
2022/12/02 |      37393 | systems/win32/miktex/tm/packages/next/miktex-posix-bin-x64-2.9.tar.lzma
2022/12/02 |      37094 | systems/win32/miktex/tm/packages/next/miktex-chktex-bin-x64-2.9.tar.lzma
2022/12/02 |      35322 | systems/win32/miktex/tm/packages/next/miktex-axohelp-bin-x64-2.9.tar.lzma
2022/12/02 |     352468 | systems/win32/miktex/tm/packages/next/miktex-xetex-bin-x64-2.9.tar.lzma
2022/12/02 |      35199 | systems/win32/miktex/tm/packages/next/miktex-mspack-bin-x64-2.9.tar.lzma
2022/12/02 |      33868 | systems/win32/miktex/tm/packages/next/miktex-uriparser-bin-x64-2.9.tar.lzma
2022/12/02 |     327340 | systems/win32/miktex/tm/packages/next/miktex-dvipdfmx-bin-x64-2.9.tar.lzma
2022/12/02 |     327123 | systems/win32/miktex/tm/packages/next/miktex-mo-bin-x64-2.9.tar.lzma
2022/12/02 |   32514647 | systems/win32/miktex/tm/packages/ltxbase__doc.tar.lzma
2022/12/02 |      32318 | systems/win32/miktex/tm/packages/next/miktex-makeindex-bin-x64-2.9.tar.lzma
2022/12/02 |      31737 | systems/win32/miktex/tm/packages/next/miktex-autosp-bin-x64-2.9.tar.lzma
2022/12/02 |      31608 | systems/win32/miktex/tm/packages/next/miktex-bzip2-bin-x64-2.9.tar.lzma
2022/12/02 |   31173536 | systems/texlive/tlnet/archive/latex.doc.r65161.tar.xz
2022/12/02 |      31035 | macros/latex/contrib/cvss/cvss.dtx
2022/12/02 |     306014 | systems/win32/miktex/tm/packages/xduts__doc.tar.lzma
2022/12/02 |     305205 | systems/win32/miktex/tm/packages/miktex-zzdb1-2.9.tar.lzma
2022/12/02 |     305154 | systems/win32/miktex/tm/packages/next/miktex-zzdb1-2.9.tar.lzma
2022/12/02 |      30512 | systems/win32/miktex/tm/packages/next/miktex-lacheck-bin-x64-2.9.tar.lzma
2022/12/02 |     298879 | macros/latex/contrib/csbulletin.zip
2022/12/02 |     296303 | systems/win32/miktex/tm/packages/next/miktex-freetype2-bin-x64-2.9.tar.lzma
2022/12/02 |      28756 | systems/win32/miktex/tm/packages/next/miktex-findtexmf-bin-x64-2.9.tar.lzma
2022/12/02 |     287104 | systems/win32/miktex/tm/packages/next/miktex-metapost-bin-x64-2.9.tar.lzma
2022/12/02 |       2847 | fonts/simpleicons/enc/simpleiconsOne.enc
2022/12/02 |    2831207 | systems/win32/miktex/tm/packages/next/miktex-texworks-bin-x64-2.9.tar.lzma
2022/12/02 |      27735 | systems/win32/miktex/tm/packages/next/miktex-teckit-bin-x64-2.9.tar.lzma
2022/12/02 |     276383 | macros/latex/contrib/csbulletin/doc/csbulletin.pdf
2022/12/02 |        274 | fonts/simpleicons/tex/usimpleiconsOneZero.fd
2022/12/02 |       2746 | fonts/simpleicons/enc/simpleiconsFour.enc
2022/12/02 |     271445 | systems/win32/miktex/tm/packages/next/miktex-console-bin-x64-2.9.tar.lzma
2022/12/02 |       2673 | fonts/simpleicons/enc/simpleiconsSix.enc
2022/12/02 |       2670 | fonts/simpleicons/enc/simpleiconsEight.enc
2022/12/02 |        264 | fonts/simpleicons/tex/usimpleiconsThree.fd
2022/12/02 |        264 | fonts/simpleicons/tex/usimpleiconsSeven.fd
2022/12/02 |        264 | fonts/simpleicons/tex/usimpleiconsEight.fd
2022/12/02 |       2649 | fonts/simpleicons/enc/simpleiconsTwo.enc
2022/12/02 |       2628 | macros/latex/contrib/ffcode/ffcode.ins
2022/12/02 |       2615 | fonts/simpleicons/enc/simpleiconsSeven.enc
2022/12/02 |        259 | fonts/simpleicons/tex/usimpleiconsNine.fd
2022/12/02 |        259 | fonts/simpleicons/tex/usimpleiconsFour.fd
2022/12/02 |        259 | fonts/simpleicons/tex/usimpleiconsFive.fd
2022/12/02 |       2572 | fonts/simpleicons/enc/simpleiconsNine.enc
2022/12/02 |        254 | fonts/simpleicons/tex/usimpleiconsTwo.fd
2022/12/02 |        254 | fonts/simpleicons/tex/usimpleiconsSix.fd
2022/12/02 |        254 | fonts/simpleicons/tex/usimpleiconsOne.fd
2022/12/02 |      25218 | systems/win32/miktex/tm/packages/next/miktex-fribidixetex-bin-x64-2.9.tar.lzma
2022/12/02 |       2516 | fonts/simpleicons/enc/simpleiconsThree.enc
2022/12/02 |     247510 | systems/win32/miktex/tm/packages/next/miktex-hitex-bin-x64.tar.lzma
2022/12/02 |     245706 | systems/win32/miktex/tm/packages/next/miktex-pmx-bin-x64-2.9.tar.lzma
2022/12/02 |       2425 | fonts/simpleicons/enc/simpleiconsFive.enc
2022/12/02 |      24079 | systems/win32/miktex/tm/packages/next/miktex-devnag-bin-x64-2.9.tar.lzma
2022/12/02 |      24045 | systems/win32/miktex/tm/packages/next/miktex-popt-bin-x64-2.9.tar.lzma
2022/12/02 |       2360 | fonts/simpleicons/enc/simpleiconsOneZero.enc
2022/12/02 |     230818 | systems/win32/miktex/tm/packages/ltxbase.tar.lzma
2022/12/02 |     229788 | systems/texlive/tlnet/archive/latex.r65161.tar.xz
2022/12/02 |     216580 | fonts/simpleicons/tex/simpleiconsglyphs-pdftex.tex
2022/12/02 |     214176 | systems/win32/miktex/tm/packages/next/miktex-omegaware-bin-x64-2.9.tar.lzma
2022/12/02 |     212537 | fonts/simpleicons/tex/simpleiconsglyphs-xeluatex.tex
2022/12/02 |     210677 | support/TeX4ht/source/ChangeLog
2022/12/02 |     209064 | systems/win32/miktex/tm/packages/next/miktex-metafont-bin-x64-2.9.tar.lzma
2022/12/02 |     203598 | systems/win32/miktex/tm/packages/next/miktex-pixman-bin-x64-2.9.tar.lzma
2022/12/02 |    1999817 | systems/win32/miktex/tm/packages/next/miktex-luatex-bin-x64-2.9.tar.lzma
2022/12/02 |    1977178 | fonts/simpleicons/doc/simpleicons.pdf
2022/12/02 |     196609 | systems/win32/miktex/tm/packages/next/miktex-curl-bin-x64-2.9.tar.lzma
2022/12/02 |     192664 | systems/win32/miktex/tm/packages/texinfo__doc.tar.lzma
2022/12/02 |     192456 | systems/texlive/tlnet/archive/ukbill.doc.r65159.tar.xz
2022/12/02 |      19110 | macros/latex/contrib/csbulletin/doc/LICENSE.txt
2022/12/02 |    1874348 | fonts/simpleicons/opentype/SimpleIcons.otf
2022/12/02 |    1854436 | systems/win32/miktex/tm/packages/miktex-zzdb2-2.9.tar.lzma
2022/12/02 |    1854046 | systems/win32/miktex/tm/packages/next/miktex-zzdb2-2.9.tar.lzma
2022/12/02 |      18493 | systems/win32/miktex/tm/packages/next/miktex-tex2xindy-bin-x64-2.9.tar.lzma
2022/12/02 |       1844 | fonts/simpleicons/doc/simpleicons.tex
2022/12/02 |      18357 | systems/win32/miktex/tm/packages/next/miktex-kpathsea-bin-x64-2.9.tar.lzma
2022/12/02 |     181554 | systems/win32/miktex/tm/packages/next/miktex-mpfr-bin-x64-2.9.tar.lzma
2022/12/02 |      18029 | macros/latex/contrib/csbulletin/tex/csbulletin.cls
2022/12/02 |     175401 | systems/win32/miktex/tm/packages/next/miktex-hunspell-bin-x64-2.9.tar.lzma
2022/12/02 |    1746421 | fonts/simpleicons/type1/SimpleIcons.pfb
2022/12/02 |      17445 | macros/latex/contrib/csbulletin/tex/csbulobalka.sty
2022/12/02 |     173437 | systems/win32/miktex/tm/packages/next/miktex-tex-bin-x64-2.9.tar.lzma
2022/12/02 |    1627957 | systems/win32/miktex/tm/packages/next/miktex-zzdb3-2.9.tar.lzma
2022/12/02 |    1627740 | systems/win32/miktex/tm/packages/miktex-zzdb3-2.9.tar.lzma
2022/12/02 |       1559 | fonts/simpleicons/tex/simpleicons.sty
2022/12/02 |     155964 | systems/win32/miktex/tm/packages/next/miktex-fontconfig-bin-x64-2.9.tar.lzma
2022/12/02 |      15538 | macros/plain/graphics/miniltx.tex
2022/12/02 |      15374 | macros/optex/base/if-macros.opm
2022/12/02 |       1515 | macros/latex/contrib/cvss/README.md
2022/12/02 |    1514697 | systems/win32/miktex/tm/packages/next/miktex-runtime-bin-x64-2.9.tar.lzma
2022/12/02 |    1484007 | macros/optex/doc/optex-doc.pdf
2022/12/02 |    1456952 | systems/win32/miktex/tm/packages/next/miktex-dvisvgm-bin-x64-2.9.tar.lzma
2022/12/02 |      14461 | systems/win32/miktex/tm/packages/next/miktex-zzip-bin-x64-2.9.tar.lzma
2022/12/02 |     140617 | systems/win32/miktex/tm/packages/next/miktex-mktex-bin-x64-2.9.tar.lzma
2022/12/02 |       1376 | macros/latex/contrib/ffcode/README.md
2022/12/02 |     136101 | systems/win32/miktex/tm/packages/next/miktex-dvips-bin-x64-2.9.tar.lzma
2022/12/02 |    1337466 | systems/win32/miktex/tm/packages/next/miktex-poppler-bin-x64-2.9.tar.lzma
2022/12/02 |      13057 | macros/plain/graphics.zip
2022/12/02 |     128551 | fonts/simpleicons/doc/bindings.tex
2022/12/02 |      12507 | systems/win32/miktex/tm/packages/fvextra.tar.lzma
2022/12/02 |      12448 | macros/latex/contrib/cvss/cvss.ins
2022/12/02 |       1236 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsSeven.tfm
2022/12/02 |       1232 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsTwo.tfm
2022/12/02 |       1232 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsThree.tfm
2022/12/02 |       1232 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsSix.tfm
2022/12/02 |       1232 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsNine.tfm
2022/12/02 |       1232 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsFour.tfm
2022/12/02 |       1232 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsFive.tfm
2022/12/02 |       1232 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsEight.tfm
2022/12/02 |      12320 | macros/latex/contrib/ffcode/ffcode.dtx
2022/12/02 |      12292 | systems/texlive/tlnet/archive/fvextra.r65158.tar.xz
2022/12/02 |       1228 | fonts/simpleicons/tfm/SimpleIcons--simpleiconsOne.tfm
2022/12/02 |     121125 | systems/win32/miktex/tm/packages/next/miktex-epstopdf-bin-x64-2.9.tar.lzma
2022/12/02 |         11 | usergrps/gutenberg/VERSION
2022/12/02 |    1166540 | systems/win32/miktex/tm/packages/next/miktex-asymptote-bin-x64-2.9.tar.lzma
2022/12/02 |     115796 | systems/win32/miktex/tm/packages/next/miktex-gregorio-bin-x64-2.9.tar.lzma
2022/12/02 |       1150 | systems/win32/miktex/tm/packages/next/pr.ini
2022/12/02 |    1144061 | support/TeX4ht/source/tex4ht-4ht.tex
2022/12/02 |     113211 | systems/win32/miktex/tm/packages/next/miktex-gd-bin-x64-2.9.tar.lzma
2022/12/02 |       1126 | macros/latex/contrib/csbulletin/tex/csbulv1.cls
2022/12/02 |       1119 | fonts/simpleicons/map/simpleicons.map
2022/12/02 |     109716 | systems/win32/miktex/tm/packages/next/miktex-jpeg-bin-x64-2.9.tar.lzma
2022/12/02 |       1096 | macros/latex/contrib/csbulletin/doc/example-slovak.tex
2022/12/02 |     109283 | systems/win32/miktex/tm/packages/next/miktex-texware-bin-x64-2.9.tar.lzma
2022/12/02 |       1087 | macros/latex/contrib/csbulletin/doc/example-czech.tex
2022/12/02 |       1083 | macros/latex/contrib/ffcode/LICENSE.txt
2022/12/02 |     105368 | systems/win32/miktex/tm/packages/next/miktex-mfware-bin-x64-2.9.tar.lzma
2022/12/02 |       1048 | macros/latex/contrib/csbulletin/doc/example-english.tex
2022/12/02 |     103783 | systems/win32/miktex/tm/packages/next/miktex-lua53-bin-x64-2.9.tar.lzma
2022/12/02 |     103607 | systems/win32/miktex/tm/packages/next/miktex-cweb-bin-x64-2.9.tar.lzma
2022/12/02 |     101646 | systems/win32/miktex/tm/packages/next/miktex-bibtex8bit-bin-x64-2.9.tar.lzma
2022/12/01 |      98091 | macros/latex/contrib/ukbill/ukbill-documentation.pdf
2022/12/01 |       9201 | systems/win32/miktex/tm/packages/piton.tar.lzma
2022/12/01 |     906785 | macros/latex/contrib/fvextra.zip
2022/12/01 |     902220 | systems/win32/miktex/tm/packages/mathfont__doc.tar.lzma
2022/12/01 |      89924 | systems/texlive/tlnet/archive/lutabulartools.doc.r65153.tar.xz
2022/12/01 |     884180 | systems/win32/miktex/tm/packages/babel__doc.tar.lzma
2022/12/01 |     883760 | systems/texlive/tlnet/archive/babel.doc.r65152.tar.xz
2022/12/01 |       8771 | systems/win32/miktex/tm/packages/lutabulartools.tar.lzma
2022/12/01 |     867095 | macros/latex/contrib/fvextra/fvextra.pdf
2022/12/01 |      85276 | macros/latex/contrib/ukbill/immigration-bill.pdf
2022/12/01 |       8508 | systems/texlive/tlnet/archive/lutabulartools.r65153.tar.xz
2022/12/01 |      85041 | systems/win32/miktex/tm/packages/lutabulartools__doc.tar.lzma
2022/12/01 |      82790 | systems/win32/miktex/tm/packages/pstricks.tar.lzma
2022/12/01 |      79915 | systems/win32/miktex/tm/packages/graph35__source.tar.lzma
2022/12/01 |       7490 | systems/win32/miktex/tm/packages/docshots__source.tar.lzma
2022/12/01 |     722784 | systems/win32/miktex/tm/packages/babel__source.tar.lzma
2022/12/01 |     722612 | systems/win32/miktex/tm/packages/polyglossia__doc.tar.lzma
2022/12/01 |     722056 | systems/texlive/tlnet/archive/babel.source.r65152.tar.xz
2022/12/01 |       6947 | systems/win32/miktex/tm/packages/eolang.tar.lzma
2022/12/01 |       6585 | systems/win32/miktex/tm/packages/lutabulartools__source.tar.lzma
2022/12/01 |     619677 | support/TeX4ht/source/tex4ht-html4.tex
2022/12/01 |        615 | macros/latex/contrib/fvextra/README
2022/12/01 |      61559 | systems/win32/miktex/tm/packages/mathfont__source.tar.lzma
2022/12/01 |        560 | macros/latex/contrib/ukbill/README
2022/12/01 |     548560 | systems/win32/miktex/tm/packages/ffcode__doc.tar.lzma
2022/12/01 |       5475 | systems/win32/miktex/tm/packages/kdpcover__source.tar.lzma
2022/12/01 |       5374 | systems/win32/miktex/tm/packages/ffcode__source.tar.lzma
2022/12/01 |      51932 | systems/win32/miktex/tm/packages/bangorexam__source.tar.lzma
2022/12/01 |       5100 | systems/texlive/tlnet/archive/kdpcover.source.r65150.tar.xz
2022/12/01 |     498613 | systems/win32/miktex/tm/packages/piton__doc.tar.lzma
2022/12/01 |      46473 | systems/win32/miktex/tm/packages/bangorexam.tar.lzma
2022/12/01 |      40299 | macros/optex/base/fonts-select.opm
2022/12/01 |       3863 | systems/win32/miktex/tm/packages/csbulletin__source.tar.lzma
2022/12/01 |   38481904 | macros/latex/base.zip
2022/12/01 |     369424 | systems/win32/miktex/tm/packages/kdpcover__doc.tar.lzma
2022/12/01 |     356896 | systems/texlive/tlnet/archive/kdpcover.doc.r65150.tar.xz
2022/12/01 |      35322 | systems/win32/miktex/tm/packages/piton__source.tar.lzma
2022/12/01 |     338807 | systems/win32/miktex/tm/packages/docshots__doc.tar.lzma
2022/12/01 |    3358376 | systems/texlive/tlnet/archive/circuit-macros.doc.r65149.tar.xz
2022/12/01 |       2982 | systems/win32/miktex/tm/packages/docshots.tar.lzma
2022/12/01 |     293752 | systems/win32/miktex/tm/packages/bangorexam__doc.tar.lzma
2022/12/01 |     290073 | macros/latex/contrib/fvextra/fvextra.dtx
2022/12/01 |       2837 | systems/win32/miktex/tm/packages/kdpcover.tar.lzma
2022/12/01 |     281426 | systems/win32/miktex/tm/packages/csbulletin__doc.tar.lzma
2022/12/01 |      26297 | macros/latex/contrib/ukbill/ukbill-documentation.tex
2022/12/01 |      24261 | systems/win32/miktex/tm/packages/proflycee.tar.lzma
2022/12/01 |      24132 | systems/texlive/tlnet/archive/proflycee.r65151.tar.xz
2022/12/01 |       2349 | macros/latex/contrib/fvextra/fvextra.ins
2022/12/01 |       2334 | systems/win32/miktex/tm/packages/ffcode.tar.lzma
2022/12/01 |      23156 | systems/texlive/tlnet/archive/kdpcover.r65150.tar.xz
2022/12/01 |      22324 | systems/win32/miktex/tm/packages/graph35.tar.lzma
2022/12/01 |    2176227 | systems/win32/miktex/tm/packages/graph35__doc.tar.lzma
2022/12/01 |      21394 | systems/win32/miktex/tm/packages/mathfont.tar.lzma
2022/12/01 |      20461 | macros/latex/contrib/ukbill/immigration-bill.tex
2022/12/01 |     200868 | systems/win32/miktex/tm/packages/pstricks__source.tar.lzma
2022/12/01 |     198558 | systems/win32/miktex/tm/packages/babel.tar.lzma
2022/12/01 |     196957 | macros/latex/contrib/ukbill.zip
2022/12/01 |      19589 | macros/latex/contrib/ukbill/ukbill.cls
2022/12/01 |     194880 | systems/texlive/tlnet/archive/babel.r65152.tar.xz
2022/12/01 |      17861 | CTAN.sites
2022/12/01 |      17793 | macros/optex/base/unimath-macros.opm
2022/12/01 |     162562 | systems/win32/miktex/tm/packages/polyglossia__source.tar.lzma
2022/12/01 |      15483 | systems/win32/miktex/tm/packages/eolang__source.tar.lzma
2022/12/01 |     152649 | systems/win32/miktex/tm/packages/proflycee__source.tar.lzma
2022/12/01 |    1513753 | systems/win32/miktex/tm/packages/eolang__doc.tar.lzma
2022/12/01 |       1496 | systems/texlive/tlnet/archive/circuit-macros.r65149.tar.xz
2022/12/01 |   14732928 | macros/texinfo/texinfo.zip
2022/12/01 |    1455576 | systems/texlive/tlnet/archive/proflycee.doc.r65151.tar.xz
2022/12/01 |    1303357 | systems/win32/miktex/tm/packages/proflycee__doc.tar.lzma
2022/12/01 |     123284 | systems/win32/miktex/tm/packages/polyglossia.tar.lzma
2022/12/01 |      12299 | systems/win32/miktex/tm/packages/csbulletin.tar.lzma
2022/12/01 |  115565639 | macros/context/latest/cont-tmf.zip
2022/12/01 |      11276 | macros/optex/base/fams-ini.opm
2022/12/01 |      11215 | macros/optex/base/math-preload.opm
2022/12/01 |   10991268 | systems/win32/miktex/tm/packages/pstricks__doc.tar.lzma
2022/11/30 |         99 | macros/latex/base/ltpara-code.tex
2022/11/30 |       9967 | macros/texinfo/texinfo/tp/t/results/coverage/block_commands.pl
2022/11/30 |       9956 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_and_parts/contents_and_parts.html
2022/11/30 |        994 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying/Public-domain-reference.html
2022/11/30 |        994 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/Public-domain-reference.html
2022/11/30 |        992 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region/Titlepage-footnote-anchor.html
2022/11/30 |        992 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/Titlepage-footnote-anchor.html
2022/11/30 |       9926 | macros/latex/base/ltnews21.tex
2022/11/30 |        991 | macros/texinfo/texinfo/tp/t/results/formatting/simplest_test_date_in_header/res_html/simplest.html
2022/11/30 |       9913 | macros/texinfo/texinfo/tp/t/results/coverage_braces/nested_in_sc.pl
2022/11/30 |       9904 | macros/texinfo/texinfo/tp/t/results/value/set_in_item_missing_line.pl
2022/11/30 |       9900 | macros/texinfo/texinfo/tp/t/results/menu/multiple_menus.pl
2022/11/30 |       9868 | macros/texinfo/texinfo/tp/t/results/sectioning/empty_top_node_up.pl
2022/11/30 |       9867 | macros/texinfo/texinfo/tp/t/results/sectioning/chapter_before_part.pl
2022/11/30 |       9857 | macros/texinfo/texinfo/tp/t/results/languages/unknown_language.pl
2022/11/30 |       9838 | macros/texinfo/texinfo/tp/t/results/formats_encodings/manual_simple_utf8_with_error.pl
2022/11/30 |      98274 | macros/texinfo/texinfo/tp/t/results/info_tests/test_index.pl
2022/11/30 |       9822 | macros/texinfo/texinfo/po_document/fi.gmo
2022/11/30 |        981 | macros/texinfo/texinfo/tp/t/input_files/nodes_before_top.texi
2022/11/30 |        980 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region/Public-domain-reference.html
2022/11/30 |        980 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/Public-domain-reference.html
2022/11/30 |       9800 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_html/Copying-and-indices.html
2022/11/30 |       9796 | macros/texinfo/texinfo/tp/t/results/float/ref_to_float.pl
2022/11/30 |      97844 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_plaintext/formatting.txt
2022/11/30 |       9782 | macros/texinfo/texinfo/tp/t/results/layout/navigation_vertical/res_html/navigation.html
2022/11/30 |       9779 | macros/latex/base/format.ins
2022/11/30 |       9777 | macros/texinfo/texinfo/tp/Texinfo/Convert/Texinfo.pm
2022/11/30 |       9752 | macros/texinfo/texinfo/tp/t/results/docbook_tests/between_node_and_section.pl
2022/11/30 |      97360 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_and_sections_monolithic.pl
2022/11/30 |        972 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/Titlepage-footnote-anchor.html
2022/11/30 |        972 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/Titlepage-footnote-anchor.html
2022/11/30 |       9725 | macros/texinfo/texinfo/TODO
2022/11/30 |       9704 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/formats_not_closed_in_example.pl
2022/11/30 |       9702 | macros/texinfo/texinfo/tp/t/results/latex_tests/anchor_before_top.pl
2022/11/30 |       9700 | macros/texinfo/texinfo/po_document/de.gmo
2022/11/30 |         96 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/manual_include_accented_file_name_latin1_use_locale_encoding/manual_include_accented_file_name_latin1.2
2022/11/30 |         96 | macros/latex/base/doc-code.tex
2022/11/30 |        968 | macros/latex/contrib/proflycee/doc/cap.csv
2022/11/30 |       9689 | macros/texinfo/texinfo/po_document/ca.gmo
2022/11/30 |       9679 | macros/texinfo/texinfo/tp/t/results/latex_tests/node_before_top.pl
2022/11/30 |       9679 | macros/texinfo/texinfo/tp/Texinfo/Report.pm
2022/11/30 |       9669 | macros/texinfo/texinfo/tp/t/results/menu/detailmenu.pl
2022/11/30 |       9641 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_and_code_style_commands_utf8.pl
2022/11/30 |       9636 | macros/texinfo/texinfo/tp/t/results/misc_commands/also_not_line.pl
2022/11/30 |        960 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/Public-domain-reference.html
2022/11/30 |        960 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/Public-domain-reference.html
2022/11/30 |      95961 | macros/texinfo/texinfo/tp/t/results/html_tests/redirection_same_labels.pl
2022/11/30 |       9576 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/on_itemize_line.pl
2022/11/30 |       9576 | macros/texinfo/texinfo/tp/t/results/coverage/lettered_accent_and_spaces.pl
2022/11/30 |       9576 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/sectioning_toc.html
2022/11/30 |       9561 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split_nodes/res_html/section-1.html
2022/11/30 |       9557 | macros/latex/base/ltcntrl.dtx
2022/11/30 |      95130 | macros/texinfo/texinfo/po/texinfo.pot
2022/11/30 |        950 | macros/texinfo/texinfo/tp/t/results/formatting/simplest_test_prefix/res_html/truc.html
2022/11/30 |       9508 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/no_empty_line_after_section.pl
2022/11/30 |      95075 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_misc_commands.pl
2022/11/30 |        949 | macros/texinfo/texinfo/tp/t/06columnfractions.t
2022/11/30 |       9495 | macros/texinfo/texinfo/tp/t/results/info_tests/pxref_test.pl
2022/11/30 |       9478 | macros/texinfo/texinfo/tp/t/results/itemize/bad_enumerate_arguments.pl
2022/11/30 |       9476 | macros/texinfo/texinfo/tp/t/results/misc_commands/text_before_line_command.pl
2022/11/30 |       9473 | macros/texinfo/texinfo/tp/t/results/info_tests/top_node_normalization.pl
2022/11/30 |       9450 | macros/texinfo/texinfo/tp/t/results/multitable/paragraph_in_cells.pl
2022/11/30 |       9444 | macros/texinfo/texinfo/tp/t/results/languages/simple.pl
2022/11/30 |       9440 | macros/texinfo/texinfo/tp/t/results/coverage/item_container.pl
2022/11/30 |       9435 | macros/texinfo/texinfo/tp/t/results/float/comment_space_comand_in_float.pl
2022/11/30 |      94293 | macros/texinfo/texinfo/tp/Texinfo/Common.pm
2022/11/30 |       9419 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/sectioning_abt.html
2022/11/30 |        940 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
2022/11/30 |       9401 | macros/latex/base/source2edoc.cls
2022/11/30 |       9395 | macros/texinfo/texinfo/tp/t/results/info_tests/paragraphindent_in_preamble_and_in_document.pl
2022/11/30 |       9395 | macros/latex/base/syntonly.dtx
2022/11/30 |       9350 | macros/texinfo/texinfo/tp/t/results/formatting/cond_ifhtml_ifinfo_iftex.pl
2022/11/30 |       9345 | macros/latex/base/preload.dtx
2022/11/30 |       9343 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Commands.texi
2022/11/30 |       9314 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/tab_in_index.pl
2022/11/30 |       9297 | macros/texinfo/texinfo/tp/t/results/html_tests/mathjax_with_texinfo_enable_encoding.pl
2022/11/30 |       9286 | macros/texinfo/texinfo/tp/t/results/menu/detailmenu_in_description.pl
2022/11/30 |       9274 | macros/texinfo/texinfo/tp/t/results/itemize/empty_accent_argument.pl
2022/11/30 |       9261 | macros/texinfo/texinfo/tp/t/results/misc_commands/setfilename.pl
2022/11/30 |        922 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_html/Public-domain-reference.html
2022/11/30 |      92280 | macros/latex/base/utf8ienc.dtx
2022/11/30 |     921458 | macros/texinfo/texinfo/configure
2022/11/30 |        919 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/Last-node-no-description.html
2022/11/30 |       9192 | macros/texinfo/texinfo/tp/t/results/moreindices/split_chapter_index/res_html/first.html
2022/11/30 |       9192 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/in_errormsg.pl
2022/11/30 |       9189 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split_nodes/res_html/subsection-2.html
2022/11/30 |      91794 | macros/texinfo/texinfo/po/es.gmo
2022/11/30 |       9178 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_with_empty_item_tab.pl
2022/11/30 |       9150 | macros/texinfo/texinfo/tp/t/results/xml_tests/comments_on_misc_command_line.pl
2022/11/30 |       9149 | macros/texinfo/texinfo/tp/t/results/layout/navigation/res_html/navigation.html
2022/11/30 |      91393 | macros/texinfo/texinfo/tp/t/results/coverage/def.pl
2022/11/30 |       9135 | macros/texinfo/texinfo/tp/tests/Makefile.onetst
2022/11/30 |       9124 | macros/texinfo/texinfo/tp/t/results/html_tests/documentdescription.pl
2022/11/30 |       9123 | macros/texinfo/texinfo/tp/t/results/menu/empty_menu_description.pl
2022/11/30 |       9108 | macros/texinfo/texinfo/tp/t/results/quotation/empty_quotation.pl
2022/11/30 |       9086 | macros/texinfo/texinfo/tp/t/results/html_tests/mathjax_with_texinfo_no_convert_to_latex.pl
2022/11/30 |       9068 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/tree.c
2022/11/30 |       9068 | macros/latex/base/lppl-1-0.txt
2022/11/30 |      90660 | macros/latex/base/lttextcomp.dtx
2022/11/30 |       9056 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_commands_frenchspacing.pl
2022/11/30 |        902 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/Copying-information.html
2022/11/30 |       9027 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split_nodes/res_html/section-3.html
2022/11/30 |       9027 | macros/texinfo/texinfo/tp/t/results/def/code_in_def.pl
2022/11/30 |       9012 | macros/texinfo/texinfo/tp/t/results/preformatted/example_multi_class.pl
2022/11/30 |        900 | macros/texinfo/texinfo/tp/Texinfo/XS/TestXS.pm
2022/11/30 |        900 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/nav_toc.xhtml
2022/11/30 |        899 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8_epub_package/EPUB/osé_utf8.opf
2022/11/30 |        898 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_html/Copying-information.html
2022/11/30 |        898 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/Copying-information.html
2022/11/30 |        898 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/Copying-information.html
2022/11/30 |        898 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/Copying-information.html
2022/11/30 |       8988 | systems/texlive/tlnet/archive/piton.r65143.tar.xz
2022/11/30 |       8987 | macros/texinfo/texinfo/tp/t/results/misc_commands/definfoenclose_nestings.pl
2022/11/30 |     897584 | macros/latex/required/babel/base/babel.pdf
2022/11/30 |       8974 | macros/texinfo/texinfo/tp/t/results/info_tests/two_paragraphindent_in_preamble.pl
2022/11/30 |      89727 | macros/latex/base/slides.dtx
2022/11/30 |       8970 | macros/latex/base/ltnews17.tex
2022/11/30 |       8957 | macros/texinfo/texinfo/tp/t/results/info_tests/novalidate_empty_refs.pl
2022/11/30 |       8942 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes_nodes/a-node.html
2022/11/30 |       8941 | macros/texinfo/texinfo/man/pod2texi.1
2022/11/30 |       8940 | macros/texinfo/texinfo/tp/t/results/misc_commands/heading_command_in_commands.pl
2022/11/30 |       8939 | macros/texinfo/texinfo/tp/t/results/formatting/cond_no-ifhtml_no-ifinfo_no-iftex.pl
2022/11/30 |      89365 | macros/texinfo/texinfo/install-info/tests/Makefile.in
2022/11/30 |       8930 | macros/texinfo/texinfo/tp/t/results/html_tests/mathjax_with_texinfo.pl
2022/11/30 |       8930 | macros/texinfo/texinfo/tp/t/results/html_tests/character_number_leading_toc_stoc.pl
2022/11/30 |       8921 | macros/texinfo/texinfo/tp/tests/layout/res_parser/no_monolithic_only_toc_out/no_monolithic.html
2022/11/30 |       8900 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/chapter.html
2022/11/30 |        885 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/node-in-menu-before-top.html
2022/11/30 |        885 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/node-in-menu-before-top.html
2022/11/30 |        885 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/node-in-menu-before-top.html
2022/11/30 |       8856 | macros/texinfo/texinfo/tp/tests/many_input_files/different_encodings_res/char_latin1_latin1_in_refs.html
2022/11/30 |      88507 | macros/texinfo/texinfo/tp/t/results/htmlxref/htmlxref_only_split_nodes.pl
2022/11/30 |       8849 | macros/texinfo/texinfo/tp/t/results/coverage_braces/uref_in_ref.pl
2022/11/30 |      88428 | macros/texinfo/texinfo/tp/t/results/converters_tests/ref_in_sectioning.pl
2022/11/30 |       8837 | macros/texinfo/texinfo/tp/t/results/indices/index_entry_in_footnote.pl
2022/11/30 |      88369 | macros/texinfo/texinfo/tp/t/results/htmlxref/htmlxref_only_mono_nodes.pl
2022/11/30 |     882064 | macros/texinfo/texinfo/tp/t/results/sectioning/complex_split_at_node.pl
2022/11/30 |        880 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/Titlepage-anchor.html
2022/11/30 |        880 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/Titlepage-anchor.html
2022/11/30 |        880 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/Titlepage-anchor.html
2022/11/30 |      87852 | systems/texlive/tlnet/archive/pstricks.r65139.tar.xz
2022/11/30 |       8777 | macros/texinfo/texinfo/tp/t/results/formatting/texi_cond.pl
2022/11/30 |      87776 | macros/texinfo/texinfo/po/de.gmo
2022/11/30 |      87679 | macros/texinfo/texinfo/tp/t/results/htmlxref/htmlxref_only_split.pl
2022/11/30 |       8756 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_begin_with_tab.pl
2022/11/30 |       8754 | macros/texinfo/texinfo/po_document/pt_BR.us-ascii.gmo
2022/11/30 |      87541 | macros/texinfo/texinfo/tp/t/results/htmlxref/htmlxref_only_mono.pl
2022/11/30 |      87405 | macros/texinfo/texinfo/tp/t/results/htmlxref/htmlxref_nodes.pl
2022/11/30 |       8736 | macros/texinfo/texinfo/tp/t/results/preformatted/nested_formats.pl
2022/11/30 |       8731 | macros/latex/base/ltthm.dtx
2022/11/30 |       8722 | macros/texinfo/texinfo/tp/t/results/formatting/defcondx_Dbar.pl
2022/11/30 |       8712 | macros/texinfo/texinfo/tp/t/results/formatting/cond.pl
2022/11/30 |     871252 | macros/texinfo/texinfo/tp/t/results/converters_tests/definition_commands.pl
2022/11/30 |     870828 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs.pl
2022/11/30 |      86710 | macros/texinfo/texinfo/tp/Texinfo/Structuring.pm
2022/11/30 |      86571 | macros/texinfo/texinfo/tp/t/results/htmlxref/htmlxref.pl
2022/11/30 |       8647 | macros/texinfo/texinfo/tp/t/results/regions/today_in_copying.pl
2022/11/30 |        863 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/node-in-menu-before-top.html
2022/11/30 |       8639 | macros/texinfo/texinfo/tp/t/results/menu/example_in_menu_comment.pl
2022/11/30 |       8638 | macros/texinfo/texinfo/tp/t/results/preformatted/caption_in_example.pl
2022/11/30 |      86388 | macros/latex/base/ltdefns.dtx
2022/11/30 |       8626 | macros/latex/base/oldlfont.dtx
2022/11/30 |       8625 | macros/texinfo/texinfo/tp/t/results/sectioning/section_before_after_top_node.pl
2022/11/30 |       8622 | macros/texinfo/texinfo/tp/t/results/converters_tests/table_in_display_in_example.pl
2022/11/30 |       8622 | macros/texinfo/texinfo/tp/t/results/converters_tests/sp_in_example.pl
2022/11/30 |       8620 | macros/texinfo/texinfo/tp/t/results/preformatted/example_invalid_at_commands_arguments.pl
2022/11/30 |       8619 | macros/texinfo/texinfo/tp/t/results/converters_tests/table_in_example_in_display.pl
2022/11/30 |       8618 | macros/texinfo/texinfo/tp/t/results/sectioning/unnumbered_before_top_node.pl
2022/11/30 |       8618 | macros/texinfo/texinfo/tp/t/results/menu/detailmenu_unknown_node.pl
2022/11/30 |      86099 | macros/texinfo/texinfo/doc/Makefile.in
2022/11/30 |       8605 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_section/contents_in_middle_section.html
2022/11/30 |         85 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/ignore_and_comments_output/ignore_and_comments.2
2022/11/30 |       8582 | macros/texinfo/texinfo/tp/t/results/coverage/invalid_U.pl
2022/11/30 |       8569 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/table_on_item_line.pl
2022/11/30 |        855 | macros/texinfo/texinfo/tp/t/input_files/encoding_index_latin1.texi
2022/11/30 |       8540 | macros/latex/contrib/kdpcover/kdpcover-vol-1.pdf
2022/11/30 |       8525 | macros/texinfo/texinfo/tp/t/results/latex_tests/shorttitlepage.pl
2022/11/30 |      85225 | macros/texinfo/texinfo/tp/t/results/xtable/table_nested.pl
2022/11/30 |       8519 | macros/texinfo/texinfo/tp/t/results/quotation/space_at_commands_end_quotation_line.pl
2022/11/30 |        850 | macros/texinfo/texinfo/tp/t/input_files/encoding_index_utf8.texi
2022/11/30 |     850463 | macros/texinfo/texinfo/doc/texinfo.texi
2022/11/30 |        848 | macros/texinfo/texinfo/tp/tests/layout/res_parser/navigation_test_misc_file_collision/section.html
2022/11/30 |      84878 | macros/texinfo/texinfo/po/nl.gmo
2022/11/30 |     848042 | macros/latex/required/babel/base/locale.zip
2022/11/30 |       8477 | macros/texinfo/texinfo/tp/t/results/menu/direntry_dircategory_after_first_node.pl
2022/11/30 |       8461 | macros/texinfo/texinfo/tp/t/results/sectioning/hole_in_sectioning.pl
2022/11/30 |       8458 | macros/texinfo/texinfo/tp/t/results/sectioning/contents_in_html_text.pl
2022/11/30 |       8450 | macros/texinfo/texinfo/tp/t/results/html_tests/shorttitlepage.pl
2022/11/30 |        843 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/unnumbered-sub2.html
2022/11/30 |      84369 | macros/texinfo/texinfo/po/tr.gmo
2022/11/30 |      84313 | macros/texinfo/texinfo/tp/t/results/sectioning/part_node_part_node_appendix.pl
2022/11/30 |      84215 | macros/latex/base/ltfssini.dtx
2022/11/30 |       8412 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_utf8/res_info/at_commands_in_refs_utf8.info
2022/11/30 |      84087 | macros/texinfo/texinfo/tp/t/results/info_tests/quote_node_names_info.pl
2022/11/30 |       8403 | macros/texinfo/texinfo/tp/t/results/formatting/float_copying/res_html/Copying-and-floats.html
2022/11/30 |        837 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/unnumbered-sub.html
2022/11/30 |       8367 | macros/latex/base/ltnews.tex
2022/11/30 |      83523 | macros/texinfo/texinfo/po/pt.gmo
2022/11/30 |      83502 | macros/texinfo/texinfo/tp/t/results/sectioning/part_node_node_part_appendix.pl
2022/11/30 |        831 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/numbered-sub3.html
2022/11/30 |        831 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/numbered-sub2.html
2022/11/30 |      83117 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/quote_node_names.pl
2022/11/30 |      83060 | macros/texinfo/texinfo/po/vi.gmo
2022/11/30 |       8296 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_section_inline/contents_in_middle_section.html
2022/11/30 |       8279 | macros/texinfo/texinfo/tp/t/results/html_tests/titles.pl
2022/11/30 |      82600 | macros/texinfo/texinfo/po/pt_BR.gmo
2022/11/30 |        825 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/numbered-sub.html
2022/11/30 |        825 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/between-node.html
2022/11/30 |      82523 | macros/texinfo/texinfo/po/sv.gmo
2022/11/30 |        824 | macros/texinfo/texinfo/tp/tests/layout/res_parser/navigation_test_misc_file_collision/index.html
2022/11/30 |      82481 | macros/latex/base/ltfssbas.dtx
2022/11/30 |       8223 | macros/texinfo/texinfo/tp/t/results/preformatted/example_at_commands_arguments.pl
2022/11/30 |        821 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/first-before-top.html
2022/11/30 |        820 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_section_info/contents_in_middle_section.info
2022/11/30 |       8208 | macros/texinfo/texinfo/tp/t/results/coverage/flushright_example_nested.pl
2022/11/30 |      82004 | macros/texinfo/texinfo/po/it.gmo
2022/11/30 |        819 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/unnumbered2.html
2022/11/30 |        819 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/node-in-chapter.html
2022/11/30 |        819 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/node-in-chapter.html
2022/11/30 |        819 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/node-in-chapter.html
2022/11/30 |        819 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/node-in-chapter.html
2022/11/30 |       8191 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/section_on_defx_line.pl
2022/11/30 |     818839 | macros/latex/base/ltshipout-code.pdf
2022/11/30 |       8187 | macros/texinfo/texinfo/tp/t/results/formatting/cond_info_ifhtml_ifinfo_iftex.pl
2022/11/30 |      81840 | macros/texinfo/texinfo/tp/t/results/sectioning/two_nodes_between_chapters.pl
2022/11/30 |        813 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/unnumbered.html
2022/11/30 |        813 | macros/texinfo/texinfo/tp/tests/indices/res_parser/printindex_between_node_section/node-chap1.html
2022/11/30 |      81322 | macros/texinfo/texinfo/tp/t/results/sectioning/node_part_chapter_after_chapter.pl
2022/11/30 |       8118 | macros/texinfo/texinfo/tp/Texinfo/Convert/TexinfoXML.pm
2022/11/30 |       8095 | macros/texinfo/texinfo/tp/t/results/coverage/flushleft_flushright.pl
2022/11/30 |        807 | macros/texinfo/texinfo/tp/tests/indices/res_parser/printindex_between_node_section/node-sec1.html
2022/11/30 |       8072 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/table_not_closed_in_menu_description.pl
2022/11/30 |       8059 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/parser.h
2022/11/30 |        803 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book_chapter/section.html
2022/11/30 |        803 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book_chapter/chapter.html
2022/11/30 |       8038 | macros/texinfo/texinfo/tp/t/results/info_tests/paragraphindent_and_preamble.pl
2022/11/30 |     803237 | macros/latex/base/ltfilehook-code.pdf
2022/11/30 |        802 | macros/texinfo/texinfo/tp/t/results/transformations/master_menu_fr/res_html/section.html
2022/11/30 |        801 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/numbered.html
2022/11/30 |     801929 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_latin1.pl
2022/11/30 |       8011 | macros/texinfo/texinfo/tp/t/results/info_tests/image_and_punctuation.pl
2022/11/30 |      80052 | macros/latex/base/ltshipout.dtx
2022/11/30 |       7999 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline/double_contents.html
2022/11/30 |      79978 | macros/texinfo/texinfo/tp/t/results/converters_tests/image_formatting.pl
2022/11/30 |       7987 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/table_not_closed_in_menu_comment.pl
2022/11/30 |       7981 | macros/texinfo/texinfo/tp/t/results/formatting/cond_info_no-ifhtml_no-ifinfo_no-iftex.pl
2022/11/30 |     796616 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_utf8.pl
2022/11/30 |      79437 | macros/texinfo/texinfo/tp/t/results/sectioning/part_node_chapter_node_appendix.pl
2022/11/30 |       7936 | macros/texinfo/texinfo/po/el.gmo
2022/11/30 |       7934 | macros/texinfo/texinfo/tp/t/results/info_tests/paragraphindent_not_in_preamble.pl
2022/11/30 |       7924 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/Copying-and-indices.html
2022/11/30 |       7869 | macros/latex/required/babel/base/babel.ins
2022/11/30 |       7868 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/chapter.html
2022/11/30 |       7868 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/Copying-and-indices.html
2022/11/30 |      78615 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.info
2022/11/30 |       7858 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Transformations.texi
2022/11/30 |       7846 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying/Copying-and-indices.html
2022/11/30 |        783 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_chapter/section.html
2022/11/30 |        783 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_chapter/section.html
2022/11/30 |        783 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book_chapter/index.html
2022/11/30 |       7828 | macros/texinfo/texinfo/tp/t/results/misc_commands/no_empty_line_between_headings.pl
2022/11/30 |      78166 | macros/texinfo/texinfo/po/eo.gmo
2022/11/30 |       7811 | macros/texinfo/texinfo/tp/t/results/info_tests/note_in_strong.pl
2022/11/30 |         77 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes_nodes/index_nodes.2
2022/11/30 |         77 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes/index_nodes.2
2022/11/30 |       7790 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region/Copying-and-indices.html
2022/11/30 |        778 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_table/node.html
2022/11/30 |       7763 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/multitable_in_example_extraneous_tab.pl
2022/11/30 |     775777 | macros/texinfo/texinfo/ChangeLog
2022/11/30 |       7753 | macros/texinfo/texinfo/tp/t/results/html_tests/text_before_top_and_summarycontents_after_title.pl
2022/11/30 |       7740 | macros/texinfo/texinfo/tp/t/results/html_tests/mathjax_with_texinfo_html_text.pl
2022/11/30 |       7732 | macros/texinfo/texinfo/tp/t/results/formatting/cond_xml.pl
2022/11/30 |        771 | macros/texinfo/texinfo/tp/tests/indices/res_parser/printindex_between_node_section/index.html
2022/11/30 |       7706 | macros/texinfo/texinfo/tp/t/results/languages/appendix_translated.pl
2022/11/30 |         76 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/sectioning.2
2022/11/30 |         76 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions/sectioning.2
2022/11/30 |       7697 | macros/texinfo/texinfo/tp/t/results/paragraph/paragraph_command.pl
2022/11/30 |        767 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/another.html
2022/11/30 |        767 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/another.html
2022/11/30 |        767 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/another.html
2022/11/30 |        767 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/another.html
2022/11/30 |       7679 | macros/texinfo/texinfo/doc/Makefile.am
2022/11/30 |       7678 | macros/texinfo/texinfo/tp/t/results/menu/reference_to_external_manual.pl
2022/11/30 |       7637 | macros/texinfo/texinfo/tp/t/results/html_tests/text_before_top_and_contents_after_title.pl
2022/11/30 |       7632 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/chapter.html
2022/11/30 |       7632 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/chapter.html
2022/11/30 |       7628 | macros/texinfo/texinfo/tp/tests/many_input_files/different_encodings_res/char_latin1_utf8_in_refs.html
2022/11/30 |       7621 | macros/texinfo/texinfo/tp/t/results/formatting/cond_info.pl
2022/11/30 |        761 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/second.html
2022/11/30 |        761 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/second.html
2022/11/30 |        761 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/a-node.html
2022/11/30 |        761 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/a-node.html
2022/11/30 |        761 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/second.html
2022/11/30 |        761 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/second.html
2022/11/30 |        761 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/a-node.html
2022/11/30 |        761 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/a-node.html
2022/11/30 |       7614 | macros/texinfo/texinfo/tp/t/results/raw/inline_in_example.pl
2022/11/30 |       7609 | macros/texinfo/texinfo/tp/t/results/quotation/quotation_author_in_example.pl
2022/11/30 |        757 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_entry_in_footnote_separated_info/index_entry_in_footnote.info
2022/11/30 |        757 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_entry_in_footnote_separated_info/index_entry_in_footnote.info
2022/11/30 |       7570 | macros/texinfo/texinfo/tp/t/results/sectioning/one_node_explicit_directions_anchor.pl
2022/11/30 |       7563 | macros/texinfo/texinfo/tp/t/results/indices/image_text_lines_count.pl
2022/11/30 |        755 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/first.html
2022/11/30 |        755 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/first.html
2022/11/30 |        755 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/first.html
2022/11/30 |        755 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/first.html
2022/11/30 |       7556 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents/double_contents.html
2022/11/30 |     755564 | macros/latex/base/doc.pdf
2022/11/30 |       7544 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_chapter/contents_in_middle_chapter.html
2022/11/30 |      75256 | macros/texinfo/texinfo/tp/t/results/converters_tests/frenchspacing_and_code.pl
2022/11/30 |       7524 | macros/latex/base/ltxguide.cls
2022/11/30 |      75111 | macros/latex/base/ltfssdcl.dtx
2022/11/30 |       7499 | macros/texinfo/texinfo/tp/t/results/preformatted/example_class.pl
2022/11/30 |     749792 | macros/latex/required/babel/base/babel.dtx
2022/11/30 |      74886 | macros/latex/base/ltluatex.dtx
2022/11/30 |       7468 | macros/texinfo/texinfo/tp/t/results/regions/format_in_titlepage_titlepage.pl
2022/11/30 |       7453 | macros/texinfo/texinfo/tp/t/results/html_tests/index_and_node_same_name.pl
2022/11/30 |     744621 | macros/latex/contrib/proflycee/doc/ProfLycee-doc.pdf
2022/11/30 |      74461 | macros/texinfo/texinfo/tp/Texinfo/Convert/TexinfoMarkup.pm
2022/11/30 |       7434 | macros/texinfo/texinfo/tp/t/results/formatting/documentlanguage_set_option_info.pl
2022/11/30 |       7432 | macros/texinfo/texinfo/man/makeinfo.1
2022/11/30 |       7428 | macros/texinfo/texinfo/tp/t/results/menu/dash_in_menu.pl
2022/11/30 |       7422 | macros/texinfo/texinfo/tp/t/results/raw/displaymath.pl
2022/11/30 |       7422 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/on_index_entry_line.pl
2022/11/30 |       7417 | macros/texinfo/texinfo/tp/t/results/indices/index_entry_before_first_node.pl
2022/11/30 |       7405 | macros/texinfo/texinfo/tp/t/results/def/empty_deftypeop_name.pl
2022/11/30 |      74040 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/end_line.c
2022/11/30 |      74037 | macros/texinfo/texinfo/po/da.gmo
2022/11/30 |       7401 | macros/texinfo/texinfo/tp/t/results/sectioning/double_top.pl
2022/11/30 |      73944 | macros/texinfo/texinfo/tp/Texinfo/Convert/Converter.pm
2022/11/30 |       7387 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/documentlanguage_cmdline/documentlanguage.html
2022/11/30 |       7378 | macros/texinfo/texinfo/tp/t/results/formatting/documentlanguage_set_unknown.pl
2022/11/30 |        736 | macros/latex/contrib/proflycee/doc/perroquet.csv
2022/11/30 |       7364 | macros/texinfo/texinfo/tp/t/results/formatting/documentlanguage_set_option.pl
2022/11/30 |      73535 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/js/info.js
2022/11/30 |      73535 | macros/texinfo/texinfo/js/info.js
2022/11/30 |       7349 | macros/texinfo/texinfo/tp/t/results/sectioning/contents_at_document_begin.pl
2022/11/30 |      73395 | macros/texinfo/texinfo/texindex/Makefile.in
2022/11/30 |       7328 | macros/texinfo/texinfo/tp/t/results/sectioning/novalidate.pl
2022/11/30 |       7323 | macros/texinfo/texinfo/tp/t/results/coverage_braces/format_on_first_footnote_line.pl
2022/11/30 |       7318 | macros/texinfo/texinfo/tp/t/results/sectioning/node_sectop_before_chapter_no_node.pl
2022/11/30 |       7316 | macros/texinfo/texinfo/tp/t/results/sectioning/part_before_chapter.pl
2022/11/30 |      73014 | macros/texinfo/texinfo/tp/tests/many_input_files/Makefile.in
2022/11/30 |        729 | macros/texinfo/texinfo/Pod-Simple-Texinfo/README
2022/11/30 |       7295 | macros/texinfo/texinfo/tp/t/03coverage_braces.t
2022/11/30 |      72929 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_no_nodes.pl
2022/11/30 |       7276 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/def_in_style_command.pl
2022/11/30 |      72726 | macros/texinfo/texinfo/tp/t/results/converters_tests/some_at_commands_in_ref_nodes.pl
2022/11/30 |       7256 | macros/latex/contrib/kdpcover/kdpcover-signature.pdf
2022/11/30 |       7253 | macros/texinfo/texinfo/tp/t/results/moreindices/index_no_node/res_html/Chapter.html
2022/11/30 |       7252 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title/double_contents.html
2022/11/30 |      72475 | macros/latex/base/ltfsstrc.dtx
2022/11/30 |       7235 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_entry_in_footnote/index_entry_in_footnote.html
2022/11/30 |       7235 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_chapter_inline/contents_in_middle_chapter.html
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/texi_nested_formats/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_quotation/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_group/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_flushright/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_example/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_deffn/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_cartouche/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/texi_nested_formats/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.2
2022/11/30 |       7230 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.2
2022/11/30 |      72302 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_nodes.pl
2022/11/30 |      72296 | macros/texinfo/texinfo/tp/Texinfo/Convert/DocBook.pm
2022/11/30 |       7225 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/item_in_ref.pl
2022/11/30 |     722564 | systems/texlive/tlnet/archive/polyglossia.doc.r65144.tar.xz
2022/11/30 |       7221 | macros/texinfo/texinfo/tp/t/results/sectioning/contents_at_end_document.pl
2022/11/30 |       7221 | macros/latex/base/ltnews20.tex
2022/11/30 |       7216 | macros/latex/base/exscale.dtx
2022/11/30 |       7215 | macros/texinfo/texinfo/tp/Texinfo/XSLoader.pm
2022/11/30 |      72095 | macros/texinfo/texinfo/util/Makefile.in
2022/11/30 |       7204 | macros/texinfo/texinfo/tp/t/results/coverage_braces/form_feed_in_brace_commands.pl
2022/11/30 |       7201 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/tab_in_table_in_example.pl
2022/11/30 |       7200 | macros/latex/base/sample2e.tex
2022/11/30 |     719498 | macros/latex/base/ltcmdhooks-code.pdf
2022/11/30 |       7182 | macros/texinfo/texinfo/tp/t/results/sectioning/part_before_top.pl
2022/11/30 |      71827 | macros/texinfo/texinfo/Makefile.in
2022/11/30 |       7163 | macros/texinfo/texinfo/tp/t/results/coverage_braces/one_argument_leading_trailing_spaces.pl
2022/11/30 |     715851 | macros/latex/base/ltmarks-code.pdf
2022/11/30 |       7156 | macros/latex/contrib/kdpcover/kdpcover-vol-3.pdf
2022/11/30 |      71558 | macros/texinfo/texinfo/tp/t/results/languages/multiple_lang_chapters_texi2html.pl
2022/11/30 |      71490 | macros/texinfo/texinfo/tp/t/results/languages/multiple_lang_chapters_latex.pl
2022/11/30 |       7148 | macros/texinfo/texinfo/tp/t/results/xtable/definfoenclose_on_table_line.pl
2022/11/30 |       7145 | macros/texinfo/texinfo/tp/t/results/regions/format_in_titlepage.pl
2022/11/30 |       7139 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_nodes/res_html/first-before-top.html
2022/11/30 |       7132 | macros/texinfo/texinfo/tp/t/results/conditionals/command_conditionals_user_defined.pl
2022/11/30 |      71231 | macros/texinfo/texinfo/tp/t/results/sectioning/transliterated_split_equivalent_nodes.pl
2022/11/30 |       7109 | macros/texinfo/texinfo/tp/t/results/sectioning/contents_in_document.pl
2022/11/30 |       7108 | systems/texlive/tlnet/archive/docshots.source.r65141.tar.xz
2022/11/30 |       7105 | macros/texinfo/texinfo/tp/t/results/macro/bad_formal_arg.pl
2022/11/30 |       7104 | macros/latex/base/alltt.dtx
2022/11/30 |      71048 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top.pl
2022/11/30 |      71024 | macros/texinfo/texinfo/Pod-Simple-Texinfo/Makefile.in
2022/11/30 |       7095 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_nodes/res_html/node-in-menu-before-top.html
2022/11/30 |       7081 | macros/texinfo/texinfo/tp/t/results/info_tests/empty_caption.pl
2022/11/30 |        707 | macros/texinfo/texinfo/tp/t/input_files/char_latin1_utf8_in_refs.texi
2022/11/30 |       7068 | macros/texinfo/texinfo/tp/t/results/indices/image_lines_count.pl
2022/11/30 |       7055 | macros/texinfo/texinfo/tp/t/results/html_tests/html_in_copying.pl
2022/11/30 |       7046 | macros/texinfo/texinfo/tp/t/results/macro/two_macros_on_a_line.pl
2022/11/30 |       7045 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-Unicode.texi
2022/11/30 |       7029 | macros/latex/base/ltnews13.tex
2022/11/30 |      70296 | macros/texinfo/texinfo/tp/t/results/languages/multiple_lang_chapters.pl
2022/11/30 |      70232 | macros/texinfo/texinfo/po/ca.gmo
2022/11/30 |     701793 | macros/latex/base/lthooks-doc.pdf
2022/11/30 |       7016 | macros/texinfo/texinfo/tp/t/results/formatting/defcondx_Ubar.pl
2022/11/30 |       6989 | macros/texinfo/texinfo/tp/t/results/multitable/w_in_multitable.pl
2022/11/30 |       6985 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_nodes/res_html/first.html
2022/11/30 |      69793 | macros/texinfo/texinfo/NEWS
2022/11/30 |      69696 | macros/texinfo/texinfo/texindex/ti.twjr
2022/11/30 |       6968 | macros/texinfo/texinfo/tp/t/results/converters_tests/normal_font_in_monospace.pl
2022/11/30 |      69668 | macros/texinfo/texinfo/tp/t/results/sectioning/character_and_spaces_in_refs.pl
2022/11/30 |       6965 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/no_punctuation_commands_frenchspacing.pl
2022/11/30 |       6961 | macros/texinfo/texinfo/tp/t/results/conditionals/nested_ifset_ifclear.pl
2022/11/30 |       6936 | macros/texinfo/texinfo/po_document/pt.us-ascii.gmo
2022/11/30 |      69315 | macros/latex/base/clsguide.tex
2022/11/30 |      69185 | macros/texinfo/texinfo/tp/t/results/converters_tests/complex_nestings.pl
2022/11/30 |      69180 | macros/texinfo/texinfo/doc/tp_api/Makefile.in
2022/11/30 |      69002 | macros/latex/base/ltpictur.dtx
2022/11/30 |       6896 | macros/texinfo/texinfo/tp/t/results/menu/menu_entry_no_entry.pl
2022/11/30 |       6882 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/nested_indentedblock.pl
2022/11/30 |       6882 | macros/texinfo/texinfo/tp/t/results/info_tests/anchor_in_command.pl
2022/11/30 |       6880 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_brace_command.pl
2022/11/30 |      68732 | macros/latex/base/usrguide-historic.tex
2022/11/30 |      68688 | macros/texinfo/texinfo/tp/texi2any.pl
2022/11/30 |      68678 | macros/texinfo/texinfo/tp/t/results/sectioning/topic_guide.pl
2022/11/30 |       6857 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/menu_in_style_command.pl
2022/11/30 |       6825 | macros/texinfo/texinfo/tp/t/results/sectioning/part_before_section.pl
2022/11/30 |       6818 | macros/texinfo/texinfo/tp/t/results/sectioning/setfilename_on_top_and_after_node.pl
2022/11/30 |      68085 | macros/texinfo/texinfo/install-info/Makefile.in
2022/11/30 |       6807 | macros/texinfo/texinfo/tp/tests/layout/res_parser/navigation_test_misc_file_collision/navigation_abt.html
2022/11/30 |       6797 | macros/texinfo/texinfo/tp/t/results/raw/misc_raw_comments.pl
2022/11/30 |       6778 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/Chapter.html
2022/11/30 |       6778 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_and_node_same_name/index_and_node_same_name.html
2022/11/30 |       6772 | systems/texlive/tlnet/archive/eolang.r65142.tar.xz
2022/11/30 |       6768 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/Chapter.html
2022/11/30 |       6768 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-TexinfoMarkup.texi
2022/11/30 |       6761 | macros/texinfo/texinfo/tp/t/results/formats_encodings/documentencoding_utf8_and_insertions.pl
2022/11/30 |       6760 | macros/latex/base/slides.ins
2022/11/30 |      67530 | macros/texinfo/texinfo/tp/t/results/html_tests/footnotestyle_separate_late.pl
2022/11/30 |       6752 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/node_on_index_entry_line.pl
2022/11/30 |        674 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_entry_in_footnote_info/index_entry_in_footnote.info
2022/11/30 |        674 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_entry_in_footnote/index_entry_in_footnote.info
2022/11/30 |        674 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_entry_in_footnote_info/index_entry_in_footnote.info
2022/11/30 |       6745 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/multitable_in_style_command.pl
2022/11/30 |       6740 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_abbr_acronym.pl
2022/11/30 |      67351 | macros/latex/base/ltfilehook.dtx
2022/11/30 |       6723 | macros/latex/contrib/kdpcover/kdpcover-vol-4.pdf
2022/11/30 |        671 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_and_node_same_name/index_and_node_same_name.info
2022/11/30 |       6717 | macros/texinfo/texinfo/tp/t/results/indices/empty_cindex_entry.pl
2022/11/30 |       6712 | macros/texinfo/texinfo/tp/t/results/latex_tests/top_no_sectioning_command.pl
2022/11/30 |       6709 | macros/latex/base/latexsym.dtx
2022/11/30 |         66 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/printindex_between_part_chapter/printindex_between_part_chapter.2
2022/11/30 |       6697 | macros/texinfo/texinfo/tp/t/results/coverage/quotation_author.pl
2022/11/30 |       6694 | macros/texinfo/texinfo/tp/t/results/macro/arg_body_expansion_order.pl
2022/11/30 |       6677 | macros/texinfo/texinfo/tp/t/results/moresectioning/two_footnotes_in_nodes_separated/res_html/two_footnotes_in_nodes.html
2022/11/30 |       6677 | macros/texinfo/texinfo/tp/t/results/moresectioning/two_footnotes_in_nodes/res_html/two_footnotes_in_nodes.html
2022/11/30 |     667434 | macros/latex/base/ltpara-code.pdf
2022/11/30 |       6673 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/multitable_item_in_index.pl
2022/11/30 |       6659 | macros/texinfo/texinfo/tp/t/results/indices/printindex_with_space_before.pl
2022/11/30 |        663 | macros/texinfo/texinfo/po_document/POTFILES.in
2022/11/30 |      66396 | macros/texinfo/texinfo/tp/t/results/sectioning/part_node_part_appendix.pl
2022/11/30 |       6637 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_no_node_no_top/index_no_node_no_top.info
2022/11/30 |       6619 | macros/texinfo/texinfo/tp/t/results/macro/bad_argument.pl
2022/11/30 |       6619 | macros/texinfo/texinfo/tp/t/results/info_tests/anchor_and_spaces.pl
2022/11/30 |        657 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8_epub_package/EPUB/xhtml/osé_utf8.xhtml
2022/11/30 |       6570 | macros/texinfo/texinfo/tp/t/results/raw/braces_in_tex.pl
2022/11/30 |      65617 | macros/texinfo/texinfo/po/nb.gmo
2022/11/30 |       6541 | macros/texinfo/texinfo/tp/t/results/info_tests/space_at_menu_end.pl
2022/11/30 |        652 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_chapter_info/contents_in_middle_chapter.info
2022/11/30 |      65264 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/parser.c
2022/11/30 |       6520 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_region_html/Copying-and-indices.html
2022/11/30 |       6520 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying_html/Copying-and-indices.html
2022/11/30 |       6504 | macros/latex/contrib/kdpcover/kdpcover-vol-2.pdf
2022/11/30 |       6497 | macros/texinfo/texinfo/tp/t/results/coverage/flushleft_flushright_in_quotation.pl
2022/11/30 |       6490 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/bad_tab_nesting.pl
2022/11/30 |      64787 | macros/texinfo/texinfo/tp/t/results/sectioning/double_part.pl
2022/11/30 |       6473 | macros/texinfo/texinfo/tp/t/results/converters_tests/test_sp.pl
2022/11/30 |     647139 | macros/texinfo/texinfo/tp/t/results/sectioning/complex.pl
2022/11/30 |      64646 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.info
2022/11/30 |       6458 | macros/texinfo/texinfo/tp/t/results/html_tests/commands_in_abbr.pl
2022/11/30 |       6445 | macros/texinfo/texinfo/tp/t/results/itemize/itemize_line_commands_with_brace.pl
2022/11/30 |       6438 | macros/texinfo/texinfo/tp/t/results/html_tests/commands_in_alt.pl
2022/11/30 |       6435 | macros/texinfo/texinfo/tp/t/results/moresectioning/equivalent_nodes/res_html/equivalent_nodes.html
2022/11/30 |       6430 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/Second-node.html
2022/11/30 |       6424 | macros/latex/base/ltnews14.tex
2022/11/30 |       6417 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-Utils.texi
2022/11/30 |       6415 | macros/texinfo/texinfo/tp/t/results/misc_commands/comments_in_text.pl
2022/11/30 |       6415 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_accent.pl
2022/11/30 |      64145 | macros/texinfo/texinfo/tp/t/results/misc_commands/test_allowcodebreaks.pl
2022/11/30 |       6411 | macros/texinfo/texinfo/tp/t/results/misc_commands/noindent_after_smallexample.pl
2022/11/30 |       6386 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_begin/contents_at_begin.html
2022/11/30 |       6384 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/style_not_closed_in_table_line.pl
2022/11/30 |      63762 | macros/texinfo/texinfo/tp/t/results/formats_encodings/accentenc.pl
2022/11/30 |      63696 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_after_top_before_chapter_nodes.pl
2022/11/30 |      63650 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs.pl
2022/11/30 |       6357 | macros/texinfo/texinfo/tp/Texinfo/Convert/TextContent.pm
2022/11/30 |       6357 | macros/latex/base/newlfont.dtx
2022/11/30 |       6346 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_end/contents_at_end.html
2022/11/30 |       6345 | macros/texinfo/texinfo/tp/t/results/converters_tests/inlineifsetifclear.pl
2022/11/30 |      63328 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_textcontent/formatting
2022/11/30 |      63280 | macros/latex/base/letter.dtx
2022/11/30 |       6321 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage_do_contents/no_content_setcatpage.html
2022/11/30 |       6321 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_do_contents/no_content.html
2022/11/30 |        631 | macros/texinfo/texinfo/tp/t/results/formatting/direntry_dircategory_info_split/res_info/direntry_dircategory.info
2022/11/30 |      63144 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_utf8_in_refs.pl
2022/11/30 |      63132 | macros/latex/base/ltmarks.dtx
2022/11/30 |       6311 | macros/texinfo/texinfo/tp/t/results/coverage/spaces_after_braced_command.pl
2022/11/30 |       6304 | macros/texinfo/texinfo/tp/t/results/sectioning/section_node_before_part.pl
2022/11/30 |      63010 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_after_top_before_section_nodes.pl
2022/11/30 |       6285 | macros/texinfo/texinfo/tp/t/results/raw/raw_in_para.pl
2022/11/30 |      62767 | macros/texinfo/texinfo/tp/t/results/html_tests/simple_menu.pl
2022/11/30 |       6267 | macros/texinfo/texinfo/tp/t/results/misc_commands/noindent_indent.pl
2022/11/30 |       6266 | macros/texinfo/texinfo/tp/t/results/xtable/long_item.pl
2022/11/30 |      62667 | macros/texinfo/texinfo/tp/t/results/formats_encodings/accent.pl
2022/11/30 |      62428 | macros/texinfo/texinfo/tp/t/results/sectioning/part_node_chapter_appendix.pl
2022/11/30 |       6241 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/on_subheading_line.pl
2022/11/30 |        623 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/formatting.hhp
2022/11/30 |       6230 | macros/texinfo/texinfo/tp/DebugTexinfo/DebugTree.pm
2022/11/30 |       6228 | macros/texinfo/texinfo/tp/Texinfo/Commands.pod
2022/11/30 |       6213 | macros/latex/base/ltmeta.dtx
2022/11/30 |       6205 | macros/texinfo/texinfo/tp/t/results/itemize/w_argument.pl
2022/11/30 |     620465 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_inline_css/formatting.html
2022/11/30 |      62027 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/formatting.hhk
2022/11/30 |       6201 | macros/texinfo/texinfo/tp/t/results/def/leading_space_in_def_arg.pl
2022/11/30 |        619 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region/index_special_region.2
2022/11/30 |       6195 | macros/texinfo/texinfo/tp/t/results/xml_tests/brace_commands_spaces_end_of_lines.pl
2022/11/30 |      61909 | macros/texinfo/texinfo/tp/t/results/formatting/float_copying.pl
2022/11/30 |      61887 | macros/texinfo/texinfo/config.in
2022/11/30 |      61856 | macros/texinfo/texinfo/man/Makefile.in
2022/11/30 |       6167 | macros/texinfo/texinfo/tp/t/results/html_tests/shortcontents_no_top.pl
2022/11/30 |       6166 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/Third-node-unnumbered.html
2022/11/30 |       6160 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/section_in_nested_block_commands.pl
2022/11/30 |       6155 | macros/latex/base/ltpar.dtx
2022/11/30 |       6151 | macros/texinfo/texinfo/tp/t/results/menu/menu_node_unterminated.pl
2022/11/30 |       6128 | macros/texinfo/texinfo/tp/t/results/coverage_braces/nested_args.pl
2022/11/30 |       6125 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_book/double_contents.html
2022/11/30 |       6122 | macros/texinfo/texinfo/tp/t/results/misc_commands/index_entries.pl
2022/11/30 |       6113 | macros/texinfo/texinfo/tp/t/results/languages/command_translated.pl
2022/11/30 |       6083 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/on_section_line.pl
2022/11/30 |      60839 | macros/texinfo/texinfo/tp/t/results/value/value_in_misc_commands.pl
2022/11/30 |       6077 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_begin_inline/contents_at_begin.html
2022/11/30 |       6057 | macros/texinfo/texinfo/tp/t/results/coverage/accents_errors.pl
2022/11/30 |        604 | macros/texinfo/texinfo/tp/t/results/formatting/direntry_dircategory_info_split/res_info/direntry_dircategory.info-1
2022/11/30 |       6047 | macros/latex/base/latexrelease.ins
2022/11/30 |       6037 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_end_inline/contents_at_end.html
2022/11/30 |      60321 | macros/latex/base/fontdef.dtx
2022/11/30 |       6017 | macros/texinfo/texinfo/tp/t/results/xml_tests/raw_and_comments.pl
2022/11/30 |       6017 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-Text.texi
2022/11/30 |      60151 | macros/texinfo/texinfo/tp/t/results/formats_encodings/accent_enable_encoding.pl
2022/11/30 |      60091 | macros/texinfo/texinfo/tp/t/results/float/float_copying.pl
2022/11/30 |       5998 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Report.texi
2022/11/30 |       5995 | macros/texinfo/texinfo/tp/t/results/coverage_braces/heading_in_footnote.pl
2022/11/30 |      59934 | macros/texinfo/texinfo/tp/t/results/xml_tests/comments_on_block_command_lines.pl
2022/11/30 |        598 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/js_licenses.xhtml
2022/11/30 |       5987 | macros/texinfo/texinfo/tp/t/results/itemize/enumerate_in_example.pl
2022/11/30 |       5986 | macros/latex/base/ltnews15.tex
2022/11/30 |       5984 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/section_in_math.pl
2022/11/30 |       5979 | macros/texinfo/texinfo/doc/pod2texi.texi
2022/11/30 |       5975 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/float_in_style_command.pl
2022/11/30 |      59557 | macros/texinfo/texinfo/tp/t/results/sectioning/special_spaces_in_nodes.pl
2022/11/30 |      59536 | macros/texinfo/texinfo/tp/t/results/latex_tests/float_and_refs.pl
2022/11/30 |       5951 | macros/texinfo/texinfo/tp/t/results/misc_commands/command_in_heading_footing.pl
2022/11/30 |      59509 | macros/texinfo/texinfo/tp/t/test_utils.pl
2022/11/30 |      59499 | macros/latex/base/ltplain.dtx
2022/11/30 |       5936 | macros/texinfo/texinfo/tp/t/results/formats_encodings/no_documentencoding_and_insertions.pl
2022/11/30 |       5922 | macros/texinfo/texinfo/tp/t/results/itemize/enumerate_argument.pl
2022/11/30 |      59217 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/multitable.pl
2022/11/30 |        589 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_info/double_contents.info
2022/11/30 |      58933 | macros/latex/base/ltfiles.dtx
2022/11/30 |       5891 | macros/texinfo/texinfo/tp/t/results/macro/paragraph_and_macro.pl
2022/11/30 |      58787 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_and_sections_monolithic/res_html/nodes_before_top_and_sections.html
2022/11/30 |      58745 | macros/latex/base/ltmiscen.dtx
2022/11/30 |        586 | macros/texinfo/texinfo/tp/t/input_files/char_latin1_latin1_in_refs.texi
2022/11/30 |       5863 | macros/texinfo/texinfo/tp/t/results/sectioning/recursive_self_section_reference.pl
2022/11/30 |      58633 | macros/texinfo/texinfo/util/texi2dvi
2022/11/30 |      58633 | macros/texinfo/latest/texi2dvi
2022/11/30 |     586219 | macros/latex/base/ltmarks-doc.pdf
2022/11/30 |       5859 | macros/latex/base/ltidxglo.dtx
2022/11/30 |      58551 | macros/latex/base/ltfssaxes.dtx
2022/11/30 |      58486 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.info
2022/11/30 |      58486 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.info
2022/11/30 |      58482 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.info
2022/11/30 |       5847 | macros/texinfo/texinfo/tp/t/results/value/value_after_brace_command.pl
2022/11/30 |      58478 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.info
2022/11/30 |       5844 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/indices_in_begin_tables_lists_latex/indices_in_begin_tables_lists.tex
2022/11/30 |       5844 | macros/texinfo/texinfo/tp/tests/indices/res_parser/indices_in_begin_tables_lists_latex/indices_in_begin_tables_lists.tex
2022/11/30 |      58317 | macros/texinfo/texinfo/js/Makefile.in
2022/11/30 |       5825 | macros/latex/base/ltnews10.tex
2022/11/30 |       5822 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_latin1/res_html/http_003a_002f_002fsomewhere_005faaa-url-_002fman_002ecgi_002f1_002fls.html
2022/11/30 |      58221 | macros/texinfo/texinfo/tp/t/results/misc_commands/kbdinputstyle_in_table.pl
2022/11/30 |       5816 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_utf8/res_html/http_003a_002f_002fsomewhere_005faaa-url-_002fman_002ecgi_002f1_002fls.html
2022/11/30 |       5796 | macros/texinfo/texinfo/tp/t/results/itemize/accent_argument.pl
2022/11/30 |       5775 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/protect_spaces_on_line.pl
2022/11/30 |       5775 | macros/latex/base/ltnews16.tex
2022/11/30 |    5771795 | macros/latex/base/source2e.pdf
2022/11/30 |        576 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/texi_ignore_and_comments/ignore_and_comments.texi
2022/11/30 |       5769 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.awk
2022/11/30 |      57667 | macros/texinfo/texinfo/tp/t/results/menu/missing_detailmenu_on_subnodes.pl
2022/11/30 |       5752 | macros/texinfo/texinfo/tp/t/results/float/simple.pl
2022/11/30 |       5740 | macros/texinfo/texinfo/tp/t/results/coverage_braces/caption_not_closed.pl
2022/11/30 |       5732 | macros/latex/base/ltnews08.tex
2022/11/30 |       5729 | macros/texinfo/texinfo/tp/t/results/latex_tests/example_in_cartouche.pl
2022/11/30 |       5720 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_html/index.html
2022/11/30 |       5714 | macros/latex/base/inputenc.ins
2022/11/30 |       5705 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_ids.h
2022/11/30 |       5699 | macros/latex/base/ltnews05.tex
2022/11/30 |       5678 | macros/latex/base/ltnews04.tex
2022/11/30 |       5671 | macros/latex/base/ltnews27.tex
2022/11/30 |        565 | macros/texinfo/texinfo/tp/t/input_files/navigation.texi
2022/11/30 |      56495 | macros/texinfo/texinfo/tp/t/results/menu/detailmenu_on_subnodes.pl
2022/11/30 |     563617 | macros/latex/base/ltshipout-doc.pdf
2022/11/30 |     563089 | macros/latex/base/ltnews35.pdf
2022/11/30 |       5629 | macros/texinfo/texinfo/tp/t/results/sectioning/email_in_node.pl
2022/11/30 |     560611 | macros/latex/base/classes.pdf
2022/11/30 |     560295 | macros/latex/base/ltpara-doc.pdf
2022/11/30 |       5598 | macros/texinfo/texinfo/tp/t/results/sectioning/ref_to_top.pl
2022/11/30 |       5598 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/commands.h
2022/11/30 |       5597 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes_nodes/first.html
2022/11/30 |       5588 | macros/latex/base/ltnews25.tex
2022/11/30 |       5576 | macros/latex/base/ltnews07.tex
2022/11/30 |       5574 | macros/latex/base/ltnews12.tex
2022/11/30 |        556 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
2022/11/30 |       5568 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage/no_content_setcatpage.html
2022/11/30 |       5568 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage_inline/no_content_setcatpage.html
2022/11/30 |       5568 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage_do_contents_inline/no_content_setcatpage.html
2022/11/30 |       5568 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content/no_content.html
2022/11/30 |       5568 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_inline/no_content.html
2022/11/30 |       5568 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_do_contents_inline/no_content.html
2022/11/30 |      55687 | macros/latex/base/ltfloat.dtx
2022/11/30 |      55605 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.info
2022/11/30 |      55596 | macros/texinfo/texinfo/tp/t/results/sectioning/part_node_chapter_after_top.pl
2022/11/30 |       5550 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_macro_arg.pl
2022/11/30 |       5544 | macros/latex/base/ltnews06.tex
2022/11/30 |      55415 | macros/texinfo/texinfo/tp/t/results/formats_encodings/accentenc_enable_encoding.pl
2022/11/30 |       5529 | macros/latex/base/ltnews11.tex
2022/11/30 |       5522 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs/res_html/a-e-i-o-u-y-A-E-I-O-U.html
2022/11/30 |      55175 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/line_passed_and_formats.pl
2022/11/30 |       5509 | macros/latex/base/graphpap.dtx
2022/11/30 |         54 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_nodes_nodes/index_nodes.2
2022/11/30 |       5493 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/ignore_in_xref.pl
2022/11/30 |      54934 | macros/texinfo/texinfo/tp/t/results/coverage/commands_in_math.pl
2022/11/30 |       5487 | macros/texinfo/texinfo/tp/t/results/info_tests/float_without_type.pl
2022/11/30 |       5481 | macros/texinfo/texinfo/tp/t/results/def/end_of_line_protect_at_end.pl
2022/11/30 |     548101 | macros/latex/base/ltfilehook-doc.pdf
2022/11/30 |       5470 | macros/texinfo/texinfo/tp/t/results/info_tests/nested_footnotes_separate.pl
2022/11/30 |        546 | macros/texinfo/texinfo/tp/t/results/formatting/direntry_dircategory_info_split/res_info/direntry_dircategory.info-2
2022/11/30 |       5467 | macros/texinfo/texinfo/tp/t/results/coverage_braces/ref_empty_node.pl
2022/11/30 |       5462 | macros/latex/base/ltnews02.tex
2022/11/30 |     546160 | macros/latex/base/ltnews32.pdf
2022/11/30 |       5451 | macros/latex/base/ltnews09.tex
2022/11/30 |      54493 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/texi_nested_formats/nested_formats.texi
2022/11/30 |       5447 | macros/texinfo/texinfo/tp/t/results/sectioning/no_argument_and_contents.pl
2022/11/30 |      54478 | macros/texinfo/texinfo/tp/t/results/sectioning/unnumbered_top_without_node_sections.pl
2022/11/30 |       5446 | macros/texinfo/texinfo/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename.pl
2022/11/30 |       5446 | macros/texinfo/texinfo/tp/t/results/coverage/insertcopying.pl
2022/11/30 |       5427 | macros/texinfo/texinfo/info/Makefile.am
2022/11/30 |      54194 | macros/texinfo/texinfo/tp/t/results/indices/printindex_index_entry_in_copying.pl
2022/11/30 |       5412 | macros/texinfo/texinfo/tp/t/results/raw/beginning_and_end_on_line.pl
2022/11/30 |       5412 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/simplest_test_css/simplest.html
2022/11/30 |        540 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_mathjax/js_licenses.html
2022/11/30 |      54099 | macros/texinfo/texinfo/po/id.gmo
2022/11/30 |      54017 | macros/texinfo/texinfo/tp/tests/indices/Makefile.in
2022/11/30 |         53 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/manual_include_accented_file_name_latin1/manual_include_accented_file_name_latin1.2
2022/11/30 |         53 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/manual_include_accented_file_name_latin1_explicit_encoding/manual_include_accented_file_name_latin1.2
2022/11/30 |       5399 | macros/texinfo/texinfo/tp/t/results/misc_commands/double_exdent.pl
2022/11/30 |       5399 | macros/texinfo/texinfo/tp/t/results/include/cpp_line_latin1.pl
2022/11/30 |       5389 | macros/texinfo/texinfo/tp/t/results/sectioning/section_chapter_before_top.pl
2022/11/30 |      53817 | macros/texinfo/texinfo/tp/t/results/misc_commands/kbdinputstyle.pl
2022/11/30 |      53801 | macros/texinfo/texinfo/tp/tests/formatting/Makefile.in
2022/11/30 |       5378 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book/double_contents.html
2022/11/30 |       5369 | macros/latex/base/ltnews03.tex
2022/11/30 |      53684 | macros/texinfo/texinfo/tp/tests/tex_html/Makefile.in
2022/11/30 |      53670 | macros/texinfo/texinfo/tp/tests/contents/Makefile.in
2022/11/30 |      53605 | macros/texinfo/texinfo/tp/tests/layout/Makefile.in
2022/11/30 |       5358 | macros/texinfo/texinfo/tp/t/results/converters_tests/email_table_command_as_argument.pl
2022/11/30 |      53582 | macros/texinfo/texinfo/tp/tests/nested_formats/Makefile.in
2022/11/30 |      53568 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.info
2022/11/30 |      53539 | macros/texinfo/texinfo/tp/tests/sectioning/Makefile.in
2022/11/30 |      53502 | macros/texinfo/texinfo/tp/tests/other/Makefile.in
2022/11/30 |      53426 | macros/texinfo/texinfo/tp/t/results/def/wrong_braces_simple.pl
2022/11/30 |        533 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin2_latin2_in_refs/res_info/char_latin2_latin2_in_refs.info
2022/11/30 |       5334 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/convert.c
2022/11/30 |       5333 | macros/texinfo/texinfo/tp/t/results/sectioning/anchor_zero.pl
2022/11/30 |       5322 | macros/texinfo/texinfo/tp/t/results/sectioning/unknown_node_in_menu.pl
2022/11/30 |     532038 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_fr_icons/formatting.html
2022/11/30 |      53104 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.info
2022/11/30 |      53096 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/texi_nested_formats/nested_formats.info
2022/11/30 |      53096 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.info
2022/11/30 |      53025 | macros/latex/base/ltcmdhooks.dtx
2022/11/30 |        529 | macros/latex/contrib/proflycee/doc/testscript.py
2022/11/30 |       5298 | macros/texinfo/texinfo/tp/t/results/raw/spurious_arg_on_line.pl
2022/11/30 |       5297 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/formatting.opf
2022/11/30 |      52968 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.info
2022/11/30 |      52878 | macros/texinfo/texinfo/doc/refcard/txirefcard.tex
2022/11/30 |       5285 | macros/texinfo/texinfo/tp/t/results/sectioning/empty_nodes_with_commands.pl
2022/11/30 |       5282 | macros/texinfo/texinfo/tp/t/results/sectioning/part_chapter_appendix.pl
2022/11/30 |      52826 | macros/texinfo/texinfo/tp/t/results/indices/def_syn_indices.pl
2022/11/30 |      52813 | macros/latex/base/encguide.tex
2022/11/30 |       5274 | macros/texinfo/texinfo/tp/t/results/sectioning/section_before_part.pl
2022/11/30 |       5274 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/table_in_code.pl
2022/11/30 |       5273 | macros/latex/base/cmextra.ins
2022/11/30 |      52739 | macros/texinfo/texinfo/tp/t/results/moreindices/split_chapter_index.pl
2022/11/30 |      52710 | macros/latex/base/lb2.err
2022/11/30 |     526570 | macros/texinfo/texinfo/tp/t/results/def/all_commands_delimiters_printindex.pl
2022/11/30 |     526393 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_mathjax/formatting.html
2022/11/30 |     526323 | macros/latex/base/ltnews31.pdf
2022/11/30 |      52569 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
2022/11/30 |      52569 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting.2
2022/11/30 |       5254 | macros/texinfo/texinfo/tp/t/results/raw/misc_raw.pl
2022/11/30 |       5253 | macros/texinfo/texinfo/tp/t/results/coverage_braces/verb_in_xref.pl
2022/11/30 |       5246 | macros/latex/base/ltnews01.tex
2022/11/30 |      52302 | macros/texinfo/texinfo/tp/t/results/sectioning/lowered_subsubsection.pl
2022/11/30 |     522412 | macros/latex/base/ltnews33.pdf
2022/11/30 |       5220 | macros/texinfo/texinfo/tp/t/results/info_tests/image_extension.pl
2022/11/30 |        521 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_one_node/one_node
2022/11/30 |      52179 | macros/texinfo/texinfo/tp/t/results/sectioning/two_nodes_at_the_end.pl
2022/11/30 |       5216 | macros/texinfo/texinfo/tp/t/results/misc_commands/bad_documentlanguage.pl
2022/11/30 |       5216 | macros/latex/contrib/kdpcover/yb-book-logo.pdf
2022/11/30 |     521583 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html/formatting.html
2022/11/30 |     521583 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting/formatting.html
2022/11/30 |     521547 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.html
2022/11/30 |       5213 | macros/texinfo/texinfo/tp/t/results/coverage_braces/empty_commands.pl
2022/11/30 |     521368 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.html
2022/11/30 |       5192 | macros/texinfo/texinfo/README
2022/11/30 |       5181 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index.html
2022/11/30 |     517838 | macros/latex/base/fntguide.pdf
2022/11/30 |     517577 | macros/latex/base/ltnews36.pdf
2022/11/30 |      51606 | macros/latex/base/ltpara.dtx
2022/11/30 |       5158 | macros/texinfo/texinfo/tp/t/results/def/protected_brace.pl
2022/11/30 |     515745 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_xhtml/formatting.html
2022/11/30 |        514 | macros/texinfo/texinfo/tp/t/results/formatting/split_for_format_not_split/res_xml/simplest.xml
2022/11/30 |        514 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_region/index_special_region_no_region.2
2022/11/30 |       5143 | macros/texinfo/texinfo/tp/t/results/coverage/cartouche_in_example.pl
2022/11/30 |      51340 | systems/texlive/tlnet/archive/bangorexam.source.r65140.tar.xz
2022/11/30 |       5126 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/index.html
2022/11/30 |     511909 | macros/latex/base/ltnews30.pdf
2022/11/30 |       5112 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/section_in_table.pl
2022/11/30 |       5110 | macros/texinfo/texinfo/tp/t/results/latex_tests/setchapternewpage_on_odd_titlepage.pl
2022/11/30 |       5101 | macros/texinfo/texinfo/tp/t/results/info_tests/note_in_strong_end_of_line.pl
2022/11/30 |       5100 | macros/texinfo/texinfo/tp/t/results/xtable/text_between_item_itemx.pl
2022/11/30 |         50 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_command_line/intérnal.txt
2022/11/30 |     508976 | systems/texlive/tlnet/archive/piton.doc.r65143.tar.xz
2022/11/30 |       5083 | macros/texinfo/texinfo/tp/t/results/indices/unknown_then_known_index_entry.pl
2022/11/30 |       5083 | macros/texinfo/texinfo/tp/Texinfo/XS/Makefile.am
2022/11/30 |     508044 | macros/latex/base/ltnews34.pdf
2022/11/30 |       5079 | macros/texinfo/texinfo/tp/t/results/raw/space_before_end.pl
2022/11/30 |     507086 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.html
2022/11/30 |     504635 | macros/latex/base/docstrip.pdf
2022/11/30 |       5045 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/index.html
2022/11/30 |       5041 | macros/latex/base/latexsym.ins
2022/11/30 |       5036 | macros/texinfo/texinfo/tp/t/results/multitable/not_letters_in_prototype.pl
2022/11/30 |        502 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
2022/11/30 |        502 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
2022/11/30 |        502 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
2022/11/30 |      50281 | macros/latex/base/usrguide.tex
2022/11/30 |       5020 | macros/texinfo/texinfo/tp/t/results/misc_commands/invalid_clickstyle.pl
2022/11/30 |        501 | macros/texinfo/texinfo/tp/t/results/converters_tests/simplest_no_node_section/res_xml/simplest_no_node_section.xml
2022/11/30 |       5019 | macros/texinfo/texinfo/tp/t/results/include/include_setfilename_on_setfilename_line.pl
2022/11/30 |       5014 | macros/texinfo/texinfo/tp/t/results/macro/simple_imbricated_macro.pl
2022/11/30 |      50118 | macros/texinfo/texinfo/tp/t/results/xtable/block_commands_in_table.pl
2022/11/30 |      50114 | macros/texinfo/texinfo/po/fi.gmo
2022/11/30 |      50079 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/index.html
2022/11/30 |      50069 | macros/latex/base/ltfinal.dtx
2022/11/30 |       5000 | macros/texinfo/texinfo/tp/t/results/raw/inlinefmt_with_empty_line.pl
2022/11/30 |       4990 | macros/texinfo/texinfo/tp/t/results/conditionals/end_ifset_in_format.pl
2022/11/30 |      49890 | macros/texinfo/texinfo/tp/t/results/formats_encodings/sample_utf8.pl
2022/11/30 |       4974 | macros/texinfo/texinfo/tp/t/results/menu/no_colon_in_menu.pl
2022/11/30 |      49712 | macros/texinfo/texinfo/tp/t/results/moresectioning/more_sections_than_nodes.pl
2022/11/30 |      49697 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_table/nested_formats.2
2022/11/30 |      49697 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.2
2022/11/30 |       4963 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_latin1/res_html/index.html
2022/11/30 |      49635 | macros/texinfo/texinfo/tp/t/results/xml_tests/commands_and_spaces.pl
2022/11/30 |       4957 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_utf8/res_html/index.html
2022/11/30 |       4952 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_not_closed_item_tab.pl
2022/11/30 |       4950 | macros/texinfo/texinfo/tp/Texinfo/Documentlanguages.pm
2022/11/30 |       4949 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-NodeNameNormalization.texi
2022/11/30 |       4945 | macros/latex/base/lthyphen.dtx
2022/11/30 |      49428 | macros/texinfo/texinfo/util/texinfo.dtd
2022/11/30 |      49379 | macros/texinfo/texinfo/tp/t/results/sectioning/more_sections_than_nodes.pl
2022/11/30 |      49249 | macros/texinfo/texinfo/tp/t/results/sectioning/in_menu_only_special_spaces_node.pl
2022/11/30 |      49109 | macros/texinfo/texinfo/tp/t/results/xml_tests/image_inline_or_not.pl
2022/11/30 |       4903 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/empty_multitable_in_itemize.pl
2022/11/30 |       4902 | macros/texinfo/texinfo/tp/t/results/xtable/comment_and_itemx_before_item.pl
2022/11/30 |       4897 | macros/texinfo/texinfo/tp/t/results/coverage_braces/empty_images.pl
2022/11/30 |       4896 | macros/texinfo/texinfo/tp/t/results/misc_commands/definfoenclose_with_empty_arg.pl
2022/11/30 |       4882 | macros/texinfo/texinfo/tp/t/results/latex_tests/settitle_and_headings.pl
2022/11/30 |     488140 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_regions/formatting_regions.html
2022/11/30 |       4874 | macros/texinfo/texinfo/man/texi2dvi.1
2022/11/30 |       4873 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/node_in_copying_not_closed.pl
2022/11/30 |       4869 | macros/texinfo/texinfo/tp/t/results/init_files_tests/modified_translation.pl
2022/11/30 |       4865 | macros/texinfo/texinfo/tp/t/results/coverage/cartouche_in_quotation.pl
2022/11/30 |       4855 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/quotation_in_ref.pl
2022/11/30 |       4855 | macros/texinfo/texinfo/tp/t/languages.t
2022/11/30 |       4834 | macros/texinfo/texinfo/tp/t/results/multitable/empty_multitable_with_cells.pl
2022/11/30 |       4822 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/verbatim_in_ref.pl
2022/11/30 |       4808 | macros/texinfo/texinfo/tp/t/results/conditionals/nested_ignore.pl
2022/11/30 |      48078 | macros/texinfo/texinfo/aclocal.m4
2022/11/30 |       4789 | macros/texinfo/texinfo/tp/t/results/xtable/headitem_in_table.pl
2022/11/30 |     478988 | macros/latex/base/ltcmdhooks-doc.pdf
2022/11/30 |      47896 | macros/latex/base/lttab.dtx
2022/11/30 |       4786 | macros/texinfo/texinfo/tp/t/results/sectioning/one_subsection_and_node.pl
2022/11/30 |       4784 | macros/texinfo/texinfo/tp/t/22xtable.t
2022/11/30 |       4781 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/ref_in_ref.pl
2022/11/30 |      47687 | macros/latex/contrib/kdpcover/cactus.pdf
2022/11/30 |       4762 | macros/texinfo/texinfo/tp/t/results/float/listoffloats_with_commands.pl
2022/11/30 |       4757 | macros/texinfo/texinfo/tp/t/results/coverage_braces/uref_with_commands_characters.pl
2022/11/30 |       4757 | macros/latex/base/ltlength.dtx
2022/11/30 |        474 | macros/texinfo/texinfo/po/rw.gmo
2022/11/30 |       4749 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_utf8_in_refs/res_html/index.html
2022/11/30 |       4744 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying_abt.html
2022/11/30 |      47413 | macros/texinfo/texinfo/tp/Texinfo/Convert/Unicode.pm
2022/11/30 |       4739 | macros/texinfo/texinfo/tp/t/results/coverage_braces/empty_ref.pl
2022/11/30 |       4739 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_command_line/osé_utf8_abt.html
2022/11/30 |     473980 | macros/latex/base/usrguide.pdf
2022/11/30 |       4730 | macros/texinfo/texinfo/tp/t/results/coverage_braces/recursive_acronym_definition.pl
2022/11/30 |       4730 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/index_special_region_no_region_abt.html
2022/11/30 |      47299 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split/res_html/first.html
2022/11/30 |     472485 | macros/texinfo/texinfo/tp/t/results/def/all_commands_delimiters.pl
2022/11/30 |       4723 | macros/texinfo/texinfo/tp/t/results/coverage_braces/space_in_image.pl
2022/11/30 |       4721 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/footnote_in_ref.pl
2022/11/30 |       4714 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/index_special_region_abt.html
2022/11/30 |       4710 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/index_special_region_abt.html
2022/11/30 |      46816 | systems/texlive/tlnet/archive/bangorexam.r65140.tar.xz
2022/11/30 |       4678 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_table/index_table_abt.html
2022/11/30 |       4667 | macros/texinfo/texinfo/tp/t/01use.t
2022/11/30 |       4666 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying/index_special_region_no_insertcopying_abt.html
2022/11/30 |        465 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_begin_info/contents_at_begin.info
2022/11/30 |      46559 | macros/texinfo/texinfo/tp/t/results/sectioning/explicit_node_directions.pl
2022/11/30 |      46547 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Parser.texi
2022/11/30 |       4652 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region/index_special_region_no_region_abt.html
2022/11/30 |       4636 | macros/texinfo/texinfo/tp/t/results/paragraph/comment_in_quotation.pl
2022/11/30 |       4635 | macros/texinfo/texinfo/tp/t/results/heading/heading_in_quotation.pl
2022/11/30 |       4635 | macros/texinfo/texinfo/tp/t/results/coverage/table_command_comment.pl
2022/11/30 |      46282 | macros/texinfo/texinfo/tp/t/results/converters_tests/things_before_setfilename.pl
2022/11/30 |      46265 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_table/node-with-printindex.html
2022/11/30 |       4624 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/paragraphindent.pl
2022/11/30 |       4621 | macros/texinfo/texinfo/tp/init/documentation_examples.pm
2022/11/30 |      46211 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/center.pl
2022/11/30 |      46188 | macros/texinfo/texinfo/tp/t/results/indices/subentries.pl
2022/11/30 |       4617 | macros/texinfo/texinfo/tp/t/results/html_tests/xml_protected_in_verb.pl
2022/11/30 |      46143 | macros/texinfo/texinfo/tp/t/results/languages/multiple.pl
2022/11/30 |        460 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_region_html/index_special_region_no_region.2
2022/11/30 |        460 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region/index_special_region_no_region.2
2022/11/30 |        460 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/index_special_region_no_region.2
2022/11/30 |       4590 | macros/texinfo/texinfo/tp/t/results/macro/expand_two_same.pl
2022/11/30 |       4585 | macros/texinfo/texinfo/tp/t/results/coverage_braces/inforef_too_much_args.pl
2022/11/30 |       4580 | macros/texinfo/texinfo/tp/t/results/formatting/simplest_test_date_in_header.pl
2022/11/30 |       4580 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_nodes/double_contents_abt.html
2022/11/30 |       4575 | macros/texinfo/texinfo/tp/t/results/sectioning/node_up_direction_for_top_with_manual.pl
2022/11/30 |       4575 | macros/texinfo/texinfo/tp/t/results/macro/form_feeds.pl
2022/11/30 |       4575 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_section/double_contents_abt.html
2022/11/30 |       4575 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_chapter/double_contents_abt.html
2022/11/30 |      45754 | macros/latex/base/ltspace.dtx
2022/11/30 |      45745 | macros/texinfo/texinfo/tp/t/results/indices/printindex_index_entry_in_copying_no_insertcopying.pl
2022/11/30 |      45712 | macros/latex/base/ltboxes.dtx
2022/11/30 |      45665 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_table/indices-refs.html
2022/11/30 |       4559 | macros/texinfo/texinfo/tp/t/results/itemize/headitem_itemx_in_itemize.pl
2022/11/30 |       4558 | macros/texinfo/texinfo/tp/t/results/value/bad_syntax.pl
2022/11/30 |       4552 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_nodes/double_contents_abt.html
2022/11/30 |     455107 | macros/latex/base/ltnews29.pdf
2022/11/30 |       4549 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/nodes_before_top_and_sections_abt.html
2022/11/30 |       4547 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_section/double_contents_abt.html
2022/11/30 |       4547 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_chapter/double_contents_abt.html
2022/11/30 |      45466 | macros/texinfo/texinfo/tp/t/results/formatting/texi_glossary.pl
2022/11/30 |       4543 | macros/texinfo/texinfo/tp/t/results/latex_tests/vbar_in_index.pl
2022/11/30 |       4538 | macros/texinfo/texinfo/tp/t/results/conditionals/many_conditionals.pl
2022/11/30 |       4533 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_frenchspacing.pl
2022/11/30 |       4528 | macros/texinfo/texinfo/tp/t/results/formats_encodings/sample_utf8/res_html/Index-node.html
2022/11/30 |      45216 | macros/texinfo/texinfo/tp/t/results/converters_tests/references_to_top_no_top_output.pl
2022/11/30 |       4519 | macros/texinfo/texinfo/tp/t/results/raw/inlineraw_with_empty_line.pl
2022/11/30 |       4508 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes_nodes/index_nodes_abt.html
2022/11/30 |      45018 | macros/texinfo/texinfo/tp/t/results/coverage/exdent_and_formats.pl
2022/11/30 |      44976 | macros/latex/base/latexrelease.dtx
2022/11/30 |       4485 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/nodes_before_top_and_sections_abt.html
2022/11/30 |       4484 | macros/texinfo/texinfo/tp/t/results/formatting/simplest_test_prefix.pl
2022/11/30 |       4475 | macros/texinfo/texinfo/tp/t/results/languages/multiple_lang_chapters/res_html/multiple_lang_chapters.html
2022/11/30 |       4464 | macros/texinfo/texinfo/tp/t/results/heading/heading_in_example.pl
2022/11/30 |       4462 | macros/texinfo/texinfo/tp/t/results/html_tests/uref_accented_letter_latin1.pl
2022/11/30 |        445 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_httex_tex_latex_math.sh
2022/11/30 |        445 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_encoded_latin1_httex.sh
2022/11/30 |     444437 | macros/latex/contrib/kdpcover.zip
2022/11/30 |      44410 | macros/latex/base/cmfonts.fdd
2022/11/30 |        443 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_encoded_utf8_httex.sh
2022/11/30 |        443 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_encoded_latin1_l2h.sh
2022/11/30 |        443 | macros/texinfo/texinfo/tp/tests/test_scripts/other_highlight_syntax_example_latin9.sh
2022/11/30 |       4439 | macros/texinfo/texinfo/tp/t/results/html_tests/uref_accented_letter_ascii.pl
2022/11/30 |       4437 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/multitable.c
2022/11/30 |        441 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_httex_latex_math.sh
2022/11/30 |        441 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_encoded_utf8_l2h.sh
2022/11/30 |       4410 | macros/texinfo/texinfo/tp/t/results/xml_tests/macro_and_args.pl
2022/11/30 |        440 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_httex_tex_latex.sh
2022/11/30 |        440 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_formatting_singular.sh
2022/11/30 |       4405 | macros/texinfo/texinfo/tp/t/results/latex_tests/three_setchapternewpage_on_odd_off.pl
2022/11/30 |       4404 | macros/texinfo/texinfo/tp/t/results/indices/recursive_synindex.pl
2022/11/30 |       4401 | macros/texinfo/texinfo/tp/t/results/xtable/inter_item_commands_in_table/res_latex/inter_item_commands_in_table.tex
2022/11/30 |        439 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_command_line/osé_utf8.2
2022/11/30 |      43979 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.2
2022/11/30 |      43979 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.2
2022/11/30 |       4396 | macros/texinfo/texinfo/tp/t/results/conditionals/macro_in_ifset_set.pl
2022/11/30 |       4392 | macros/texinfo/texinfo/tp/t/results/sectioning/top_no_argument_and_node.pl
2022/11/30 |       4390 | macros/latex/base/ec.ins
2022/11/30 |        438 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_l2h_tex_latex.sh
2022/11/30 |        438 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_eqalign_httex.sh
2022/11/30 |        438 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_complex_httex.sh
2022/11/30 |        438 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_accents_httex.sh
2022/11/30 |       4388 | macros/texinfo/texinfo/tp/t/results/misc_commands/indent_in_quotation.pl
2022/11/30 |     438515 | macros/latex/base/usrguide-historic.pdf
2022/11/30 |        437 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_gdef_mathjax.sh
2022/11/30 |       4374 | macros/texinfo/texinfo/tp/t/results/sectioning/two_unnumbered_no_argument.pl
2022/11/30 |        436 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_httex_latex.sh
2022/11/30 |        436 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_eqalign_l2h.sh
2022/11/30 |        436 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_complex_l2h.sh
2022/11/30 |        436 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_accents_l2h.sh
2022/11/30 |        436 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_math_not_closed.sh
2022/11/30 |        436 | macros/texinfo/texinfo/tp/tests/test_scripts/other_highlight_syntax_example.sh
2022/11/30 |       4362 | macros/texinfo/texinfo/man/install-info.1
2022/11/30 |      43611 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/First-node.html
2022/11/30 |        435 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_not_closed.sh
2022/11/30 |        435 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_in_copying.sh
2022/11/30 |        435 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_gdef_httex.sh
2022/11/30 |        435 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_simplest_httex.sh
2022/11/30 |        435 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_end_info/contents_at_end.info
2022/11/30 |       4358 | macros/texinfo/texinfo/tp/t/results/alias/alias_table_command.pl
2022/11/30 |      43554 | macros/texinfo/texinfo/tp/t/results/sectioning/raiselowersections.pl
2022/11/30 |       4351 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/ref_in_anchor.pl
2022/11/30 |        434 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_l2h_latex.sh
2022/11/30 |        434 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_block_EOL_tex.sh
2022/11/30 |      43455 | macros/texinfo/texinfo/tp/t/results/sectioning/node_part_chapter_after_top.pl
2022/11/30 |       4340 | macros/texinfo/texinfo/tp/t/results/macro/protect_in_body_line_arg.pl
2022/11/30 |        433 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_gdef_l2h.sh
2022/11/30 |        432 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_mathjax.sh
2022/11/30 |       4324 | macros/latex/base/cmfonts.ins
2022/11/30 |       4319 | macros/texinfo/texinfo/tp/t/results/raw/nested_macros.pl
2022/11/30 |       4319 | macros/texinfo/texinfo/tp/t/results/macro/protect_in_body.pl
2022/11/30 |        430 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_notex.sh
2022/11/30 |        430 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex_httex.sh
2022/11/30 |       4302 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_utf8_enable_encoding/res_info/encoding_index_utf8.info
2022/11/30 |      42999 | macros/texinfo/texinfo/tp/t/results/sectioning/part_chapter_after_top.pl
2022/11/30 |      42992 | macros/texinfo/texinfo/tp/t/results/misc_commands/many_lines.pl
2022/11/30 |       4298 | macros/latex/base/ltalloc.dtx
2022/11/30 |       4293 | macros/texinfo/texinfo/tp/t/results/indices/print_merged_index.pl
2022/11/30 |       4291 | macros/texinfo/texinfo/tp/t/results/itemize/headitem_itemx_in_enumerate.pl
2022/11/30 |       4291 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/extra.c
2022/11/30 |       4289 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Translations.texi
2022/11/30 |       4286 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_chapter/chapter.html
2022/11/30 |      42793 | macros/texinfo/texinfo/tp/t/results/converters_tests/non_empty_part.pl
2022/11/30 |      42792 | macros/texinfo/texinfo/tp/t/results/coverage/symbol_after_block.pl
2022/11/30 |       4278 | macros/texinfo/texinfo/tp/t/results/coverage/test_errormsg.pl
2022/11/30 |       4273 | macros/latex/base/docstrip.ins
2022/11/30 |       4272 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_nodes/res_html/second.html
2022/11/30 |       4272 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_latin1/res_info/encoding_index_latin1.info
2022/11/30 |       4272 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_latin1_enable_encoding/res_info/encoding_index_latin1.info
2022/11/30 |      42708 | macros/latex/base/changes.old.txt
2022/11/30 |       4267 | macros/texinfo/texinfo/tp/t/results/conditionals/ignored_in_ifset.pl
2022/11/30 |       4266 | macros/texinfo/texinfo/tp/t/results/float/empty_label_with_space_comment.pl
2022/11/30 |       4263 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_utf8/res_info/encoding_index_utf8.info
2022/11/30 |       4259 | macros/texinfo/texinfo/tp/t/results/formatting/split_for_format_not_split.pl
2022/11/30 |       4256 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes_nodes/second.html
2022/11/30 |      42561 | macros/texinfo/texinfo/tp/t/results/itemize/itemize_and_empty_lines.pl
2022/11/30 |       4254 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/accents_in_var_enable_encoding.pl
2022/11/30 |       4254 | macros/latex/base/newdc.ins
2022/11/30 |        424 | macros/texinfo/texinfo/tp/tests/test_scripts/tex_html_tex.sh
2022/11/30 |       4248 | macros/texinfo/texinfo/tp/t/results/formatting/simplest_test_prefix_info.pl
2022/11/30 |       4246 | macros/texinfo/texinfo/tp/t/results/alias/simple.pl
2022/11/30 |      42435 | macros/texinfo/texinfo/tp/t/results/coverage/nested_block_commands.pl
2022/11/30 |       4242 | macros/texinfo/texinfo/tp/t/results/sectioning/top_no_argument_and_top_node.pl
2022/11/30 |       4242 | macros/texinfo/texinfo/tp/t/results/misc_commands/sp.pl
2022/11/30 |       4219 | macros/latex/base/latex209.ins
2022/11/30 |       4209 | macros/texinfo/texinfo/tp/t/results/html_tests/tex_expanded_in_copying.pl
2022/11/30 |      42018 | macros/texinfo/texinfo/tp/t/results/menu/space_and_commands_in_menu_node.pl
2022/11/30 |       4197 | macros/texinfo/texinfo/tp/t/results/sectioning/contents_no_section.pl
2022/11/30 |       4196 | macros/texinfo/texinfo/tp/t/results/float/empty_label_no_space_comment.pl
2022/11/30 |      41890 | macros/texinfo/texinfo/Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm
2022/11/30 |       4188 | macros/texinfo/texinfo/tp/t/results/raw/inlinefmt.pl
2022/11/30 |       4187 | macros/texinfo/texinfo/tp/t/results/raw/inlineraw.pl
2022/11/30 |       4181 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/formatting.opf
2022/11/30 |       4180 | macros/texinfo/texinfo/tp/Texinfo/Convert/TexinfoSXML.pm
2022/11/30 |       4170 | macros/latex/base/ltnews19.tex
2022/11/30 |       4169 | macros/texinfo/texinfo/tp/t/results/xtable/title_and_itemx_before_item.pl
2022/11/30 |       4169 | macros/texinfo/texinfo/tp/t/results/regions/double_copying.pl
2022/11/30 |       4164 | macros/texinfo/texinfo/tp/t/results/value_and_macro/value_in_macro_formal_arg.pl
2022/11/30 |       4163 | macros/texinfo/texinfo/tp/t/results/macro/empty_macro_argument.pl
2022/11/30 |       4161 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_nodes_nodes/index_nodes
2022/11/30 |       4161 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_nodes/index_nodes
2022/11/30 |      41493 | macros/latex/base/ltmath.dtx
2022/11/30 |     414419 | macros/latex/base/clsguide.pdf
2022/11/30 |       4141 | macros/texinfo/texinfo/tp/t/results/macro/protect_in_body_one_arg.pl
2022/11/30 |       4136 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/js/info.css
2022/11/30 |       4136 | macros/texinfo/texinfo/js/info.css
2022/11/30 |       4119 | macros/texinfo/texinfo/tp/t/results/misc_commands/incorrect_allowcodebreaks_argument.pl
2022/11/30 |       4116 | macros/texinfo/texinfo/tp/t/results/value_and_macro/comma_value_in_macro_arg.pl
2022/11/30 |       4112 | macros/texinfo/texinfo/tp/t/results/info_tests/file_only_png.pl
2022/11/30 |      41115 | macros/texinfo/texinfo/tp/t/results/itemize/inter_item_commands_in_enumerate.pl
2022/11/30 |      41020 | macros/texinfo/texinfo/tp/t/results/info_tests/end_of_line_command_in_node_lines.pl
2022/11/30 |       4087 | macros/latex/base/classes.ins
2022/11/30 |      40875 | macros/texinfo/texinfo/tp/t/results/converters_tests/non_empty_part_no_top_node_output.pl
2022/11/30 |      40874 | macros/texinfo/texinfo/tp/t/results/sectioning/non_automatic_top_node_up_and_url.pl
2022/11/30 |       4085 | macros/texinfo/texinfo/tp/t/results/info_tests/space_in_setfilename.pl
2022/11/30 |      40807 | macros/texinfo/texinfo/tp/t/results/sectioning/non_automatic_internal_top_node_up.pl
2022/11/30 |       4079 | macros/latex/base/lablst.tex
2022/11/30 |       4075 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_utf8_enable_encoding/res_plaintext/encoding_index_utf8_enable_encoding.txt
2022/11/30 |      40625 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/in_table.pl
2022/11/30 |      40602 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_enable_encoding_usascii.pl
2022/11/30 |      40599 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_enable_encoding_to_utf8_usascii.pl
2022/11/30 |      40541 | macros/texinfo/texinfo/tp/t/results/languages/multiple_in_preamble.pl
2022/11/30 |       4051 | macros/texinfo/texinfo/tp/t/results/xtable/no_arg_brace_command_on_table_line.pl
2022/11/30 |       4050 | macros/texinfo/texinfo/tp/t/results/preformatted/quote_dash_in_display.pl
2022/11/30 |       4043 | macros/texinfo/texinfo/tp/t/results/macro/double_recursive_macro_call.pl
2022/11/30 |       4043 | macros/texinfo/texinfo/Makefile.am
2022/11/30 |      40370 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_default_usascii.pl
2022/11/30 |       4036 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_utf8/res_plaintext/encoding_index_utf8.txt
2022/11/30 |       4034 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_latin1/res_plaintext/encoding_index_latin1.txt
2022/11/30 |       4034 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_latin1_enable_encoding/res_plaintext/encoding_index_latin1_enable_encoding.txt
2022/11/30 |       4031 | macros/texinfo/texinfo/tp/t/results/quotation/footnote_in_quotation_with_arg.pl
2022/11/30 |       4029 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_not_closed_item.pl
2022/11/30 |        401 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8_epub_package/EPUB/xhtml/nav_toc.xhtml
2022/11/30 |        400 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_html/index_special_region.2
2022/11/30 |        400 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/index_special_region.2
2022/11/30 |        400 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/index_special_region.2
2022/11/30 |      40097 | macros/texinfo/texinfo/tp/t/results/moreindices/index_no_node.pl
2022/11/30 |       4006 | macros/texinfo/texinfo/tp/t/results/misc_commands/noindent_in_paragraph.pl
2022/11/30 |       4003 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/long_uref_after_item.pl
2022/11/30 |       4003 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_macro_arg_simpler.pl
2022/11/30 |       4003 | macros/texinfo/texinfo/tp/t/results/init_files_tests/undefined_node_filename.pl
2022/11/30 |        399 | macros/texinfo/texinfo/tp/t/input_files/cond.texi
2022/11/30 |      39903 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_enable_encoding_to_utf8_latin1.pl
2022/11/30 |      39862 | macros/texinfo/texinfo/tp/t/results/sectioning/menutextorder.pl
2022/11/30 |      39811 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_enable_encoding_latin1.pl
2022/11/30 |      39804 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_to_utf8_ascii_punct_usascii.pl
2022/11/30 |      39777 | macros/texinfo/texinfo/tp/t/results/moresectioning/node_footnote_end.pl
2022/11/30 |      39720 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_disable_encoding_usascii.pl
2022/11/30 |      39668 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_to_utf8_latin1.pl
2022/11/30 |      39668 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_default_latin1.pl
2022/11/30 |       3964 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_and_setchapternewpage_on.pl
2022/11/30 |       3960 | macros/latex/base/olddc.ins
2022/11/30 |       3958 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs/res_xml/char_latin1_latin1_in_refs.xml
2022/11/30 |      39580 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_ascii_punct_usascii.pl
2022/11/30 |       3955 | macros/texinfo/texinfo/tp/t/results/preformatted/quote_dash_in_example.pl
2022/11/30 |     395139 | macros/texinfo/texinfo/tp/Texinfo/Convert/HTML.pm
2022/11/30 |       3947 | macros/texinfo/texinfo/tp/t/results/preformatted/insertcopying_in_example.pl
2022/11/30 |      39468 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_to_utf8_usascii.pl
2022/11/30 |      39468 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_default_usascii.pl
2022/11/30 |      39421 | macros/texinfo/texinfo/tp/t/results/moresectioning/node_footnote_separated.pl
2022/11/30 |      39360 | macros/texinfo/texinfo/tp/t/results/converters_tests/things_before_setfilename_no_element.pl
2022/11/30 |      39334 | macros/texinfo/texinfo/tp/t/results/moresectioning/node_footnote_use_node.pl
2022/11/30 |        392 | macros/texinfo/texinfo/tp/t/results/formatting/split_nocopying/res_info/split-nocopying.info
2022/11/30 |     392871 | macros/latex/base/changes.txt
2022/11/30 |       3918 | macros/texinfo/texinfo/tp/t/results/xtable/no_argument_for_table.pl
2022/11/30 |       3918 | macros/texinfo/texinfo/tp/t/92formatting.t
2022/11/30 |       3915 | macros/texinfo/texinfo/tp/t/results/sectioning/section_below_unnumbered_no_top.pl
2022/11/30 |       3915 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/enumerate_in_style_command.pl
2022/11/30 |       3914 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/non_break_spaces.pl
2022/11/30 |       3910 | macros/texinfo/texinfo/tp/t/results/menu/menu_no_closed_after_empty_line.pl
2022/11/30 |      39109 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_to_utf8_ascii_punct_latin1.pl
2022/11/30 |   39031324 | install/macros/latex/latex-base.tds.zip
2022/11/30 |      39025 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_disable_encoding_latin1.pl
2022/11/30 |       3893 | macros/texinfo/texinfo/tp/t/results/xtable/invalid_command_and_brace_in_table.pl
2022/11/30 |      38885 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_ascii_punct_latin1.pl
2022/11/30 |     388046 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.html
2022/11/30 |      38793 | macros/latex/base/ltnews35.tex
2022/11/30 |      38773 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_to_utf8_latin1.pl
2022/11/30 |      38773 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_default_latin1.pl
2022/11/30 |      38730 | macros/latex/base/latex209.dtx
2022/11/30 |      38686 | macros/texinfo/texinfo/tp/Texinfo/Convert/IXIN.pm
2022/11/30 |      38679 | macros/texinfo/texinfo/tp/t/results/raw/raw_commands_and_end_of_lines.pl
2022/11/30 |      38653 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_use_numeric_entity.pl
2022/11/30 |       3861 | macros/texinfo/texinfo/tp/t/results/sectioning/double_top_section.pl
2022/11/30 |      38504 | macros/texinfo/texinfo/tp/t/results/sectioning/non_automatic_top_node_up_url.pl
2022/11/30 |       3847 | macros/texinfo/texinfo/tp/t/results/preformatted/titlefont_in_example.pl
2022/11/30 |       3841 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/Chapter.html
2022/11/30 |       3840 | macros/texinfo/texinfo/tp/t/results/xml_tests/spaces_info_lost.pl
2022/11/30 |      38348 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_enable_encoding.pl
2022/11/30 |      38345 | macros/texinfo/texinfo/tp/t/results/html_tests/test_accents_sc_default.pl
2022/11/30 |       3813 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/Chapter.html
2022/11/30 |       3807 | macros/texinfo/texinfo/tp/t/results/sectioning/a_comma_after_node.pl
2022/11/30 |      38033 | macros/latex/base/ltnews18.pdf
2022/11/30 |       3800 | macros/texinfo/texinfo/tp/t/results/value_and_macro/value_in_macro_body.pl
2022/11/30 |       3800 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_and_setchapternewpage_odd.pl
2022/11/30 |      37989 | macros/texinfo/texinfo/tp/Texinfo/Transformations.pm
2022/11/30 |     379462 | macros/latex/base/ltnews26.pdf
2022/11/30 |       3782 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_bracketed_prototype_not_closed_space_comment.pl
2022/11/30 |       3781 | macros/latex/base/tulm.ins
2022/11/30 |     377415 | macros/texinfo/texinfo/doc/texinfo.tex
2022/11/30 |     377415 | macros/texinfo/texinfo/build-aux/texinfo.tex
2022/11/30 |      37736 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/index.html
2022/11/30 |      37710 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_disable_encoding.pl
2022/11/30 |     376926 | macros/texinfo/texinfo/gnulib/lib/Makefile.in
2022/11/30 |       3768 | macros/texinfo/texinfo/tp/t/results/docbook_tests/empty_quotation_with_arg_followed_by_quotation.pl
2022/11/30 |     376647 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_xml/formatting.xml
2022/11/30 |     376643 | macros/latex/base/ltnews28.pdf
2022/11/30 |       3764 | macros/texinfo/texinfo/tp/t/results/xml_tests/raw.pl
2022/11/30 |       3763 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying/Chapter.html
2022/11/30 |       3757 | macros/texinfo/texinfo/tp/t/results/xtable/itemx_before_item.pl
2022/11/30 |      37570 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_ascii_punct.pl
2022/11/30 |       3756 | macros/texinfo/texinfo/tp/t/results/float/empty_label_with_space.pl
2022/11/30 |     375518 | macros/latex/base/slides.pdf
2022/11/30 |       3752 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/section_on_def_line.pl
2022/11/30 |       3750 | macros/texinfo/texinfo/tp/t/results/macro/expansion_order.pl
2022/11/30 |       3748 | macros/texinfo/texinfo/tp/t/results/sectioning/contents_with_only_top_node.pl
2022/11/30 |      37458 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_sc_accents_default.pl
2022/11/30 |        373 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_command_line/osé-texinfo.texi
2022/11/30 |       3737 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book_chapter/double_contents_abt.html
2022/11/30 |       3735 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region/Chapter.html
2022/11/30 |       3734 | macros/texinfo/texinfo/tp/t/results/float/empty_label_no_space.pl
2022/11/30 |      37310 | macros/texinfo/texinfo/tp/t/30sectioning.t
2022/11/30 |    3729888 | graphics/circuit_macros.zip
2022/11/30 |       3728 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_table/node-with-ftable-and-vtable.html
2022/11/30 |       3726 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_bracketed_prototype_not_closed_comment.pl
2022/11/30 |       3726 | macros/texinfo/texinfo/tp/t/results/languages/multiple_lang_chapters_latex/res_latex/multiple_lang_chapters.tex
2022/11/30 |       3725 | macros/latex/base/ltlogos.dtx
2022/11/30 |       3714 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/east_asian_in_w.pl
2022/11/30 |       3713 | macros/texinfo/texinfo/tp/t/results/preformatted/empty_line.pl
2022/11/30 |       3706 | macros/texinfo/texinfo/tp/t/results/multitable/prototype_no_brace.pl
2022/11/30 |       3701 | macros/texinfo/texinfo/tp/t/results/itemize/comment_first_on_itemize_line.pl
2022/11/30 |       3696 | macros/texinfo/texinfo/tp/t/results/macro/empty_macro_in_text_no_arg.pl
2022/11/30 |       3690 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8_epub_package/EPUB/xhtml/osé_utf8_abt.xhtml
2022/11/30 |        368 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/manual_include_accented_file_name_latin1/manual_include_accented_file_name_latin1.info
2022/11/30 |        368 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/manual_include_accented_file_name_latin1_explicit_encoding/manual_include_accented_file_name_latin1.info
2022/11/30 |       3689 | macros/texinfo/texinfo/tp/t/results/preformatted/page_in_example.pl
2022/11/30 |       3688 | macros/texinfo/texinfo/tp/t/results/macro/nested_macro_call.pl
2022/11/30 |     368603 | macros/latex/contrib/kdpcover/kdpcover.pdf
2022/11/30 |       3685 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_expanded_raw_two_char_not_in_command.pl
2022/11/30 |       3682 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_expanded_raw_one_char_not_in_command.pl
2022/11/30 |      36797 | macros/texinfo/texinfo/tp/t/results/menu/menu_entry_name.pl
2022/11/30 |      36795 | macros/texinfo/texinfo/tp/t/results/info_tests/multitable_anchor_and_index_entry.pl
2022/11/30 |       3677 | macros/texinfo/texinfo/tp/t/results/multitable/prototype_brace_no_brace_comment.pl
2022/11/30 |       3666 | macros/texinfo/texinfo/tp/t/results/macro/macro_name_with_digit.pl
2022/11/30 |       3666 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-HTML.texi
2022/11/30 |      36637 | macros/texinfo/texinfo/tp/Texinfo/Convert/Text.pm
2022/11/30 |      36631 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions/sectioning.html
2022/11/30 |        365 | macros/texinfo/texinfo/tp/t/results/info_tests/split_test_before_first_node_no_empty_line/res_info/split_test_before_first_node.info
2022/11/30 |      36499 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_no_node_no_top/index_no_node_no_top.html
2022/11/30 |       3645 | macros/texinfo/texinfo/tp/t/results/latex_tests/verbatim_in_smallformat.pl
2022/11/30 |      36331 | macros/texinfo/texinfo/tp/t/results/paragraph/commands_in_flushright.pl
2022/11/30 |       3622 | macros/texinfo/texinfo/tp/t/results/paragraph/paragraph_indent_asis.pl
2022/11/30 |        361 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8.2
2022/11/30 |      36152 | macros/latex/base/ltlists.dtx
2022/11/30 |        359 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_manual_include_accented_file_name_latin1_use_locale_encoding.sh
2022/11/30 |      35984 | macros/latex/base/ltdirchk.dtx
2022/11/30 |        357 | macros/texinfo/texinfo/tp/t/input_files/node_footnote.texi
2022/11/30 |        357 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_manual_include_accented_file_name_latin1_explicit_encoding.sh
2022/11/30 |       3579 | macros/texinfo/texinfo/tp/t/results/html_tests/empty_lines_at_beginning_no_setfilename_no_element.pl
2022/11/30 |       3576 | macros/texinfo/texinfo/tp/t/results/macro/ifset_and_end_isef_in_macro.pl
2022/11/30 |       3570 | macros/texinfo/texinfo/tp/t/results/conditionals/ifclear_in_ifset_set.pl
2022/11/30 |       3568 | macros/texinfo/texinfo/tp/t/results/sectioning/section_before_chapter.pl
2022/11/30 |       3565 | macros/texinfo/texinfo/tp/t/results/info_tests/image_in_paragraph.pl
2022/11/30 |       3562 | macros/texinfo/texinfo/tp/t/results/columnfractions/wrong_command.pl
2022/11/30 |       3559 | macros/texinfo/texinfo/tp/t/results/sectioning/section_before_top_no_node.pl
2022/11/30 |       3551 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_bracketed_prototype_empty_spaces_not_closed_comment.pl
2022/11/30 |        354 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/manual_include_accented_file_name_latin1_use_locale_encoding/manual_include_accented_file_name_latin1.info
2022/11/30 |      35487 | macros/texinfo/texinfo/tp/t/results/converters_tests/combined_fonts.pl
2022/11/30 |       3536 | macros/texinfo/texinfo/tp/t/results/layout/no_monolithic/res_html/no_monolithic.html
2022/11/30 |       3536 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_chapter/chapter.html
2022/11/30 |     353664 | macros/latex/base/utf8ienc.pdf
2022/11/30 |       3526 | macros/latex/required/babel/base/bbidxglo.dtx
2022/11/30 |        351 | macros/texinfo/texinfo/tp/t/input_files/equivalent_nodes.texi
2022/11/30 |       3514 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_bracketed_no_inter_space_prototype.pl
2022/11/30 |       3508 | macros/texinfo/texinfo/tp/t/results/coverage/end_bad_end_argument_and_superfluous_arg.pl
2022/11/30 |      35050 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_no_nodes/res_html/index.html
2022/11/30 |       3487 | macros/texinfo/texinfo/tp/t/results/raw/lone_braces_in_html.pl
2022/11/30 |       3468 | macros/texinfo/texinfo/tp/t/results/info_tests/unknown_encoding.pl
2022/11/30 |       3468 | macros/texinfo/texinfo/tp/tests/layout/formatting.texi
2022/11/30 |       3464 | macros/texinfo/texinfo/tp/t/results/macro/double_macro_definition.pl
2022/11/30 |       3463 | macros/texinfo/texinfo/tp/t/results/coverage/delcomment.pl
2022/11/30 |      34530 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/nested_code_commands.pl
2022/11/30 |        344 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_nodes_before_top_and_sections_html_chapter_nodes.sh
2022/11/30 |       3448 | macros/texinfo/texinfo/tp/t/results/columnfractions/good_space_comment.pl
2022/11/30 |       3447 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/flushright_not_closed_and_format.pl
2022/11/30 |       3442 | macros/texinfo/texinfo/po_document/Makevars
2022/11/30 |       3436 | macros/texinfo/texinfo/tp/t/results/alias/block_command_alias.pl
2022/11/30 |       3434 | macros/texinfo/texinfo/tp/t/results/misc_commands/empty_center_with_arg.pl
2022/11/30 |       3434 | macros/latex/base/makeindx.ins
2022/11/30 |       3424 | macros/texinfo/texinfo/tp/t/results/converters_tests/simplest_no_node_section.pl
2022/11/30 |       3413 | macros/texinfo/texinfo/tp/tests/layout/list-of-tests
2022/11/30 |       3406 | macros/texinfo/texinfo/tp/t/results/macro/protect_comma_macro_line.pl
2022/11/30 |       3401 | macros/latex/base/proc.ins
2022/11/30 |      34010 | macros/texinfo/texinfo/tp/t/results/languages/multiple_in_preamble_before_node.pl
2022/11/30 |        339 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_manual_include_accented_file_name_latin1.sh
2022/11/30 |       3399 | macros/texinfo/texinfo/tp/t/results/sectioning/empty_node.pl
2022/11/30 |       3397 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_bracketed_prototype_empty_not_closed_comment.pl
2022/11/30 |      33974 | macros/texinfo/texinfo/tp/t/results/info_tests/colons_in_index_entries_and_node_no_quoting.pl
2022/11/30 |       3396 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-TexinfoXML.texi
2022/11/30 |      33946 | macros/latex/base/ltsect.dtx
2022/11/30 |       3390 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_ifset_end_in_arg.pl
2022/11/30 |      33907 | macros/latex/base/ltnews33.tex
2022/11/30 |        338 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_nodes_before_top_and_sections_html_chapter.sh
2022/11/30 |        338 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_special_region_no_insertcopying_html.sh
2022/11/30 |        337 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_no_content_setcatpage_do_contents_inline.sh
2022/11/30 |        337 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_after_title_no_texi2html.sh
2022/11/30 |        337 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_after_title_book_chapter.sh
2022/11/30 |       3378 | macros/texinfo/texinfo/tp/t/results/converters_tests/enumerate_above_ten.pl
2022/11/30 |     337717 | macros/latex/base/letter.pdf
2022/11/30 |      33765 | macros/texinfo/texinfo/tp/t/results/sectioning/rec_nodes.pl
2022/11/30 |       3373 | macros/texinfo/texinfo/tp/t/results/itemize/asis_as_itemize_argument.pl
2022/11/30 |       3372 | macros/texinfo/texinfo/tp/t/results/columnfractions/good_comment.pl
2022/11/30 |       3372 | macros/latex/base/letter.ins
2022/11/30 |        336 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_non_ascii_no_setfilename_test_rawtext.sh
2022/11/30 |       3368 | macros/texinfo/texinfo/tp/t/results/xml_tests/node_and_bye.pl
2022/11/30 |       3368 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-Plaintext.texi
2022/11/30 |       3367 | macros/latex/base/ltoutenc.ins
2022/11/30 |     336648 | systems/texlive/tlnet/archive/docshots.doc.r65141.tar.xz
2022/11/30 |       3364 | macros/texinfo/texinfo/tp/t/results/menu/menu_no_closed_in_description.pl
2022/11/30 |      33622 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/index.html
2022/11/30 |      33622 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/index.html
2022/11/30 |       3358 | macros/texinfo/texinfo/tp/t/results/quotation/comment_on_quotation_line.pl
2022/11/30 |      33585 | macros/texinfo/texinfo/tp/t/results/formats_encodings/japanese_shift_jis.pl
2022/11/30 |       3356 | macros/texinfo/texinfo/tp/t/results/raw/raw_expanded_in_style.pl
2022/11/30 |       3356 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_expanded_raw_in_command.pl
2022/11/30 |       3353 | macros/texinfo/texinfo/tp/t/results/info_tests/known_encoding.pl
2022/11/30 |      33500 | macros/texinfo/texinfo/tp/t/results/sectioning/unnumbered_top_without_node_nodes.pl
2022/11/30 |        334 | macros/texinfo/texinfo/tp/tests/test_scripts/sectioning_sectioning_directions_split_chapter.sh
2022/11/30 |        334 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_entry_in_footnote_separated_info.sh
2022/11/30 |      33490 | macros/texinfo/texinfo/tp/t/results/docbook_tests/special_docbook_unnumbered.pl
2022/11/30 |      33472 | macros/texinfo/texinfo/po/ja.gmo
2022/11/30 |        333 | macros/texinfo/texinfo/tp/t/input_files/char_latin2_latin2_in_refs.texi
2022/11/30 |        333 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_special_region_no_insertcopying.sh
2022/11/30 |       3338 | macros/latex/base/exscale.ins
2022/11/30 |      33381 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/handle_commands.c
2022/11/30 |      33333 | macros/texinfo/texinfo/tp/t/results/indices/empty_string_index_entry.pl
2022/11/30 |       3330 | macros/texinfo/texinfo/tp/t/results/itemize/comment_first_on_enumerate_line.pl
2022/11/30 |      33268 | macros/texinfo/texinfo/tp/t/results/converters_tests/at_commands_in_raw.pl
2022/11/30 |       3323 | macros/texinfo/texinfo/tp/t/results/alias/bad_line.pl
2022/11/30 |      33239 | macros/latex/base/ltnews32.tex
2022/11/30 |        331 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_indices_in_begin_tables_lists_latex.sh
2022/11/30 |        331 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_special_region_no_region_html.sh
2022/11/30 |       3313 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/tree_types.h
2022/11/30 |       3312 | macros/texinfo/texinfo/tp/t/results/regions/double_titlepage_not_closed.pl
2022/11/30 |       3312 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-DocBook.texi
2022/11/30 |        330 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_navigation_test_misc_file_collision.sh
2022/11/30 |        330 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_no_content_setcatpage_do_contents.sh
2022/11/30 |        330 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_in_middle_section_inline.sh
2022/11/30 |        330 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_in_middle_chapter_inline.sh
2022/11/30 |       3309 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/indices_in_begin_tables_lists/indices_in_begin_tables_lists.info
2022/11/30 |       3308 | macros/texinfo/texinfo/tp/t/results/macro/space_macro_after_end.pl
2022/11/30 |      33059 | macros/texinfo/texinfo/tp/t/results/multitable/inter_item_commands_in_multitable.pl
2022/11/30 |     330170 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html32/formatting.html
2022/11/30 |         32 | macros/latex/contrib/proflycee/doc/basique.csv
2022/11/30 |        329 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_split_nocopying_split_dev_null.sh
2022/11/30 |        329 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_after_title_book.sh
2022/11/30 |       3296 | macros/texinfo/texinfo/tp/t/80include.t
2022/11/30 |      32938 | macros/texinfo/texinfo/tp/t/results/info_tests/invalid_node_name_warning.pl
2022/11/30 |      32936 | macros/texinfo/texinfo/tp/t/results/sectioning/part_node_after_top.pl
2022/11/30 |      32916 | macros/texinfo/texinfo/tp/t/results/indices/ftable_vtable.pl
2022/11/30 |        328 | macros/texinfo/texinfo/tp/t/input_files/two_footnotes_in_nodes.texi
2022/11/30 |        328 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_in_middle_section_info.sh
2022/11/30 |        328 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_in_middle_chapter_info.sh
2022/11/30 |       3287 | macros/texinfo/texinfo/tp/t/results/macro/space_macro_after_end_verbatim.pl
2022/11/30 |       3287 | macros/texinfo/texinfo/tp/Texinfo/Convert/IXINSXML.pm
2022/11/30 |      32879 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/japanese_utf8.pl
2022/11/30 |       3284 | macros/texinfo/texinfo/tp/t/results/raw/raw_in_style.pl
2022/11/30 |      32848 | macros/texinfo/texinfo/tp/t/results/latex_tests/indices.pl
2022/11/30 |       3282 | macros/latex/base/bugs.txt
2022/11/30 |        327 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_printindex_between_part_chapter.sh
2022/11/30 |        327 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_printindex_between_node_section.sh
2022/11/30 |        327 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_inline_section.sh
2022/11/30 |        327 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_inline_chapter.sh
2022/11/30 |        326 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_special_region_no_region.sh
2022/11/30 |        326 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_no_content_do_contents_inline.sh
2022/11/30 |        325 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_indices_in_begin_tables_lists.sh
2022/11/30 |        325 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_ignore_and_comments_output.sh
2022/11/30 |        325 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_no_content_setcatpage_inline.sh
2022/11/30 |        325 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_inline_nodes.sh
2022/11/30 |      32563 | macros/texinfo/texinfo/tp/t/results/sectioning/only_special_spaces_node.pl
2022/11/30 |      32553 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.txt
2022/11/30 |     325457 | macros/latex/base/ltluatex.pdf
2022/11/30 |        324 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_numerical_entities.sh
2022/11/30 |        324 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_entry_in_footnote_info.sh
2022/11/30 |        324 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_after_title.sh
2022/11/30 |        324 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_no_node_no_top/index_no_node_no_top.2
2022/11/30 |      32468 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top/res_html/first-before-top.html
2022/11/30 |       3242 | macros/texinfo/texinfo/tp/t/test_sort.t
2022/11/30 |        323 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_html_no_texi2html.sh
2022/11/30 |        323 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_texi_ignore_and_comments.sh
2022/11/30 |        323 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_documentlanguage_cmdline.sh
2022/11/30 |        323 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_in_middle_section.sh
2022/11/30 |        323 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_in_middle_chapter.sh
2022/11/30 |       3238 | macros/texinfo/texinfo/tp/t/results/sectioning/unnumbered_before_top.pl
2022/11/30 |       3235 | macros/texinfo/texinfo/doc/gendocs.chapter/gendocs_template
2022/11/30 |      32307 | macros/latex/base/ltnews34.tex
2022/11/30 |        322 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_texi_nested_formats.sh
2022/11/30 |        322 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/test_redefine_need/test_need.2
2022/11/30 |       3228 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-Info.texi
2022/11/30 |       3227 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/cartouche_in_style_command.pl
2022/11/30 |      32239 | macros/texinfo/texinfo/tp/t/results/def/empty_deftype.pl
2022/11/30 |       3220 | macros/texinfo/texinfo/tp/t/results/raw/verbatim_in_brace_command.pl
2022/11/30 |      32202 | macros/texinfo/texinfo/tp/t/results/layout/navigation_section_no_header_vertical.pl
2022/11/30 |      32202 | macros/texinfo/texinfo/tp/t/results/layout/navigation_chapter_no_header_vertical.pl
2022/11/30 |        321 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_no_monolithic_only_toc_out.sh
2022/11/30 |        321 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_enable_encoding.sh
2022/11/30 |        321 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_special_region_html.sh
2022/11/30 |        321 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_non_ascii_test_rawtext.sh
2022/11/30 |        321 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_non_ascii_command_line.sh
2022/11/30 |        321 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_at_begin_inline.sh
2022/11/30 |       3214 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/style_not_closed_before_first_node.pl
2022/11/30 |      32138 | macros/texinfo/texinfo/tp/t/results/converters_tests/form_feeds.pl
2022/11/30 |        320 | macros/texinfo/texinfo/tp/tests/test_scripts/sectioning_sectioning_directions.sh
2022/11/30 |        320 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_multitable.sh
2022/11/30 |        320 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_flushright.sh
2022/11/30 |        320 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_and_node_same_name.sh
2022/11/30 |        320 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_section.sh
2022/11/30 |        320 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_chapter.sh
2022/11/30 |       3204 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/flushright_in_style_command.pl
2022/11/30 |      32010 | macros/texinfo/texinfo/tp/t/results/layout/navigation_node_no_header_vertical.pl
2022/11/30 |      32003 | macros/texinfo/texinfo/po_document/de.po
2022/11/30 |        319 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_quotation.sh
2022/11/30 |        319 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_enumerate.sh
2022/11/30 |        319 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_cartouche.sh
2022/11/30 |        319 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_entry_in_footnote.sh
2022/11/30 |        319 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_non_ascii_test_latex.sh
2022/11/30 |        319 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_no_content_do_contents.sh
2022/11/30 |        319 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_inline.sh
2022/11/30 |        319 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_at_end_inline.sh
2022/11/30 |        319 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_at_begin_info.sh
2022/11/30 |       3199 | macros/texinfo/texinfo/tp/t/results/multitable/prototype_brace_no_brace.pl
2022/11/30 |      31919 | macros/texinfo/texinfo/tp/t/results/converters_tests/spaces_in_node_names.pl
2022/11/30 |       3190 | macros/texinfo/texinfo/tp/t/results/converters_tests/combined_fonts/res_latex/combined_fonts.tex
2022/11/30 |        318 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_weird_quotes.sh
2022/11/30 |        318 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_macro_expand.sh
2022/11/30 |        318 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_non_ascii_test_epub.sh
2022/11/30 |        318 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_no_content_setcatpage.sh
2022/11/30 |        318 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_nodes.sh
2022/11/30 |       3186 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/quotation_in_style_command.pl
2022/11/30 |      31869 | macros/texinfo/texinfo/tp/t/results/coverage/punctuation_in_line_commands.pl
2022/11/30 |     318548 | macros/latex/base/ltnews20.pdf
2022/11/30 |      31850 | macros/texinfo/texinfo/tp/t/results/info_tests/colons_in_index_entries_and_node.pl
2022/11/30 |     318204 | macros/latex/base/inputenc.pdf
2022/11/30 |       3181 | macros/latex/base/unpack.ins
2022/11/30 |        317 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_itemize.sh
2022/11/30 |        317 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_example.sh
2022/11/30 |        317 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_textcontent.sh
2022/11/30 |        317 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_test_redefine_need.sh
2022/11/30 |        317 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_info.sh
2022/11/30 |        317 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents_book.sh
2022/11/30 |        317 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_at_end_info.sh
2022/11/30 |     317773 | macros/latex/base/ltnews22.pdf
2022/11/30 |       3174 | macros/texinfo/texinfo/tp/t/results/layout/navigation_no_header_vertical/res_html/navigation.html
2022/11/30 |      31744 | macros/texinfo/texinfo/tp/t/results/info_tests/nested_multitable_anchor_index.pl
2022/11/30 |      31744 | macros/texinfo/texinfo/tp/t/results/info_tests/multiline_image_and_align.pl
2022/11/30 |        316 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_inline_css.sh
2022/11/30 |        316 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_html_nodes.sh
2022/11/30 |        316 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_epub_nodes.sh
2022/11/30 |        316 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_special_region.sh
2022/11/30 |        316 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_no_node_no_top.sh
2022/11/30 |        316 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_simplest_test_css.sh
2022/11/30 |      31690 | macros/texinfo/texinfo/tp/t/results/layout/navigation_no_header_vertical.pl
2022/11/30 |      31639 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2
2022/11/30 |      31626 | macros/texinfo/texinfo/tp/t/results/layout/navigation_section_no_header.pl
2022/11/30 |      31626 | macros/texinfo/texinfo/tp/t/results/layout/navigation_chapter_no_header.pl
2022/11/30 |        315 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_table.sh
2022/11/30 |        315 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_group.sh
2022/11/30 |        315 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_deffn.sh
2022/11/30 |        315 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_plaintext.sh
2022/11/30 |        315 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_and_parts.sh
2022/11/30 |      31562 | macros/texinfo/texinfo/tp/t/results/layout/navigation_section_vertical.pl
2022/11/30 |      31562 | macros/texinfo/texinfo/tp/t/results/layout/navigation_chapter_vertical.pl
2022/11/30 |       3154 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_end_argument.pl
2022/11/30 |       3153 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/example_in_style_command.pl
2022/11/30 |      31531 | macros/texinfo/texinfo/po_document/de.us-ascii.po
2022/11/30 |       3152 | macros/texinfo/texinfo/tp/t/results/verb/comments.pl
2022/11/30 |        314 | macros/texinfo/texinfo/tp/tests/test_scripts/nested_formats_nested_menu.sh
2022/11/30 |        314 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_fr_icons.sh
2022/11/30 |        314 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_no_content_inline.sh
2022/11/30 |        314 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_at_begin.sh
2022/11/30 |      31461 | macros/texinfo/texinfo/tp/t/results/indices/same_seealso_seeentry.pl
2022/11/30 |       3145 | macros/texinfo/texinfo/tp/t/results/coverage/comment_on_cartouche_line.pl
2022/11/30 |       3144 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/bad_style_nesting.pl
2022/11/30 |       3143 | macros/texinfo/texinfo/tp/t/results/macro/ignored_macro_definition.pl
2022/11/30 |      31434 | macros/texinfo/texinfo/tp/t/results/layout/navigation_node_no_header.pl
2022/11/30 |       3142 | macros/texinfo/texinfo/tp/t/results/coverage_braces/footnote_no_node.pl
2022/11/30 |       3142 | macros/texinfo/texinfo/doc/tp_api/Makefile.am
2022/11/30 |        313 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_regions.sh
2022/11/30 |        313 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_rawtext.sh
2022/11/30 |        313 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_mathjax.sh
2022/11/30 |        313 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_docbook.sh
2022/11/30 |        313 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_nodes_nodes.sh
2022/11/30 |       3138 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs/res_latex/char_latin1_latin1_in_refs.tex
2022/11/30 |     313897 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/chapter.html
2022/11/30 |      31370 | macros/texinfo/texinfo/tp/t/results/layout/navigation_node_vertical.pl
2022/11/30 |       3136 | macros/texinfo/texinfo/tp/t/results/sectioning/node_too_much_args.pl
2022/11/30 |       3136 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/sp_with_text_before_in_example.pl
2022/11/30 |       3131 | macros/texinfo/texinfo/tp/t/results/info_tests/encoding_us_ascii.pl
2022/11/30 |        312 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_html32.sh
2022/11/30 |        312 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_exotic.sh
2022/11/30 |        312 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_double_contents.sh
2022/11/30 |        312 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_contents_at_end.sh
2022/11/30 |       3125 | macros/texinfo/texinfo/tp/t/results/misc_commands/empty_center.pl
2022/11/30 |       3125 | macros/texinfo/texinfo/tp/t/results/info_tests/image_quotes.pl
2022/11/30 |       3121 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_expanded_raw_command_after.pl
2022/11/30 |        311 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_xhtml.sh
2022/11/30 |        311 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_nodes.sh
2022/11/30 |        311 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_latex.sh
2022/11/30 |      31185 | macros/texinfo/texinfo/tp/t/results/formatting/direntry_dircategory_info_split.pl
2022/11/30 |      31173 | macros/texinfo/texinfo/tp/t/results/indices/explicit_sort_key.pl
2022/11/30 |       3115 | macros/texinfo/texinfo/tp/t/results/latex_tests/two_setchapternewpage_on_odd.pl
2022/11/30 |       3114 | macros/texinfo/texinfo/tp/t/results/coverage_braces/no_brace_space_end_line.pl
2022/11/30 |      31145 | macros/texinfo/texinfo/po_document/sr.po
2022/11/30 |       3112 | macros/texinfo/texinfo/tp/t/results/init_files_tests/macro_defined_txiinternalvalue_in_translation.pl
2022/11/30 |       3111 | macros/texinfo/texinfo/tp/t/results/layout/navigation_no_header/res_html/navigation.html
2022/11/30 |      31114 | macros/texinfo/texinfo/tp/t/results/layout/navigation_no_header.pl
2022/11/30 |        310 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_info.sh
2022/11/30 |        310 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_html.sh
2022/11/30 |        310 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_epub.sh
2022/11/30 |        310 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_one_node.sh
2022/11/30 |      31058 | macros/texinfo/texinfo/tp/t/results/info_tests/invalid_node_name_no_warning.pl
2022/11/30 |      31052 | macros/texinfo/texinfo/tp/t/results/sectioning/nodename_parentheses.pl
2022/11/30 |      31050 | macros/texinfo/texinfo/tp/t/results/layout/navigation_vertical.pl
2022/11/30 |       3100 | macros/latex/base/README.md
2022/11/30 |        309 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_xml.sh
2022/11/30 |        309 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting_chm.sh
2022/11/30 |      30986 | macros/texinfo/texinfo/tp/t/results/layout/navigation_section.pl
2022/11/30 |      30986 | macros/texinfo/texinfo/tp/t/results/layout/navigation_chapter.pl
2022/11/30 |       3094 | macros/texinfo/texinfo/tp/t/results/macro/macro_for_end.pl
2022/11/30 |      30935 | macros/texinfo/texinfo/tp/t/results/sectioning/next_in_menu_is_below.pl
2022/11/30 |        308 | macros/texinfo/texinfo/tp/tests/test_scripts/formatting_cpp_lines.sh
2022/11/30 |      30871 | macros/texinfo/texinfo/tp/t/results/sectioning/internal_top_node_up.pl
2022/11/30 |       3083 | macros/texinfo/texinfo/tp/t/results/macro/zero_argument.pl
2022/11/30 |      30812 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/formatting.2
2022/11/30 |        307 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_table.sh
2022/11/30 |        307 | macros/texinfo/texinfo/tp/tests/test_scripts/indices_index_nodes.sh
2022/11/30 |        307 | macros/texinfo/texinfo/tp/tests/test_scripts/contents_no_content.sh
2022/11/30 |      30794 | macros/texinfo/texinfo/tp/t/results/layout/navigation_node.pl
2022/11/30 |       3076 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_one_node/index_one_node.html
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_xhtml/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_mathjax/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_inline_css/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html32/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting/formatting.2
2022/11/30 |      30755 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2
2022/11/30 |       3071 | macros/texinfo/texinfo/tp/t/results/columnfractions/something_before_columnfractions.pl
2022/11/30 |       3070 | macros/texinfo/texinfo/tp/t/results/columnfractions/empty_comment.pl
2022/11/30 |       3067 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_invalid_documentencoding.pl
2022/11/30 |       3061 | macros/texinfo/texinfo/tp/t/results/macro/macro_name_with_hyphen.pl
2022/11/30 |       3061 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_expanded_raw_two_char_before_command.pl
2022/11/30 |       3061 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_expanded_raw_one_char_before_command.pl
2022/11/30 |        305 | macros/texinfo/texinfo/tp/tests/test_scripts/layout_formatting.sh
2022/11/30 |       3059 | macros/texinfo/texinfo/tp/t/results/value_and_macro/macro_in_value.pl
2022/11/30 |       3059 | macros/texinfo/texinfo/tp/t/results/macro/complete_macro_for_end.pl
2022/11/30 |      30584 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/api.c
2022/11/30 |       3051 | macros/texinfo/texinfo/tp/t/results/quotation/only_comment_on_quotation_line.pl
2022/11/30 |      30499 | macros/latex/base/doc-2021-06-01.sty
2022/11/30 |    3048340 | install/macros/latex/required/babel-base.tds.zip
2022/11/30 |      30474 | macros/texinfo/texinfo/tp/t/results/layout/navigation.pl
2022/11/30 |       3042 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_empty_bracketed_prototype.pl
2022/11/30 |      30428 | macros/latex/base/ltnews31.tex
2022/11/30 |      30427 | macros/texinfo/texinfo/po_document/ca.po
2022/11/30 |       3041 | macros/texinfo/texinfo/tp/t/results/macro/implicit_quoting_one_arg.pl
2022/11/30 |      30404 | macros/texinfo/texinfo/tp/t/results/menu/sc_in_menu.pl
2022/11/30 |      30373 | macros/texinfo/texinfo/tp/t/results/sectioning/top_node_up_url.pl
2022/11/30 |       3034 | macros/texinfo/texinfo/tp/t/results/latex_tests/float_and_refs/res_latex/float_and_refs.tex
2022/11/30 |      30344 | macros/texinfo/texinfo/tp/t/results/indices/subentry_and_sortas_spaces.pl
2022/11/30 |      30343 | macros/texinfo/texinfo/po_document/es.po
2022/11/30 |      30318 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_docbook/formatting.2
2022/11/30 |     303116 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/chapter.html
2022/11/30 |     303116 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/chapter.html
2022/11/30 |     302885 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/chapter.html
2022/11/30 |      30248 | macros/texinfo/texinfo/tp/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
2022/11/30 |       3017 | macros/texinfo/texinfo/js/Makefile.am
2022/11/30 |       3009 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_bracketed_prototype_not_closed.pl
2022/11/30 |       3009 | macros/texinfo/texinfo/tp/t/results/misc_commands/noindent_empty_para.pl
2022/11/30 |      30092 | macros/texinfo/texinfo/po_document/pt.po
2022/11/30 |      30056 | macros/texinfo/texinfo/tp/t/results/latex_tests/anchor_links_xref_xrefautomaticsectiontitle.pl
2022/11/30 |       3003 | macros/texinfo/texinfo/tp/t/results/coverage/indentedblock.pl
2022/11/30 |        299 | macros/texinfo/texinfo/tp/t/results/converters_tests/minimal_empty_with_bye/res_xml/minimal_empty_with_bye.xml
2022/11/30 |       2999 | macros/texinfo/texinfo/tp/t/results/menu/bad_beginning.pl
2022/11/30 |       2998 | macros/texinfo/texinfo/tp/t/results/info_tests/image_not_found.pl
2022/11/30 |      29965 | macros/latex/base/doc-2016-02-15.sty
2022/11/30 |      29958 | macros/texinfo/texinfo/po_document/ca.us-ascii.po
2022/11/30 |      29947 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_info/formatting.2
2022/11/30 |       2992 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_ignored_raw_command_after.pl
2022/11/30 |       2982 | macros/texinfo/texinfo/tp/t/results/value/set_form_feed.pl
2022/11/30 |       2982 | macros/texinfo/texinfo/tp/t/results/macro/redefine_texinfo_macro.pl
2022/11/30 |      29815 | macros/texinfo/texinfo/tp/t/results/converters_tests/printindex_merged_indices_code_style.pl
2022/11/30 |      29814 | macros/texinfo/texinfo/tp/t/results/misc_commands/comment_space_command_on_line.pl
2022/11/30 |      29788 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_latex/formatting.2
2022/11/30 |      29756 | macros/texinfo/texinfo/po_document/hu.po
2022/11/30 |      29750 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/formatting.2
2022/11/30 |      29739 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.2
2022/11/30 |      29739 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/formatting.2
2022/11/30 |       2968 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_section/chapter.html
2022/11/30 |       2961 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_expanded_raw_command_empty_after.pl
2022/11/30 |      29584 | macros/texinfo/texinfo/po_document/eo.po
2022/11/30 |       2957 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/unclosed_verb_on_section_line.pl
2022/11/30 |      29570 | macros/texinfo/texinfo/tp/tests/coverage_macro.texi
2022/11/30 |     295686 | macros/texinfo/texinfo/tp/t/results/sectioning/section_in_unnumbered_plaintext.pl
2022/11/30 |      29544 | macros/texinfo/texinfo/po_document/pt_BR.po
2022/11/30 |      29512 | macros/texinfo/texinfo/tp/t/results/html_tests/split_html_text.pl
2022/11/30 |       2949 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/tab_item_in_example.pl
2022/11/30 |       2948 | macros/texinfo/texinfo/tp/t/results/coverage/comment_on_group_line.pl
2022/11/30 |     294763 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/chapter.html
2022/11/30 |       2946 | macros/texinfo/texinfo/tp/t/results/preformatted/empty_line_style_command.pl
2022/11/30 |       2945 | macros/texinfo/texinfo/tp/t/results/indices/wrong_synindex.pl
2022/11/30 |      29457 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_plaintext/formatting.2
2022/11/30 |       2942 | macros/texinfo/texinfo/tp/t/results/latex_tests/two_setchapternewpage_odd_on.pl
2022/11/30 |     293488 | macros/texinfo/texinfo/tp/Texinfo/ParserNonXS.pm
2022/11/30 |       2932 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/expanded_tex.pl
2022/11/30 |       2931 | macros/texinfo/texinfo/tp/t/results/paragraph/close_paragraph_command.pl
2022/11/30 |     292956 | systems/texlive/tlnet/archive/bangorexam.doc.r65140.tar.xz
2022/11/30 |      29268 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.2
2022/11/30 |      29268 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.2
2022/11/30 |      29267 | macros/latex/base/ltfntcmd.dtx
2022/11/30 |       2921 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/section_on_index_entry_line.pl
2022/11/30 |     292160 | macros/latex/base/cmfonts.pdf
2022/11/30 |       2919 | macros/texinfo/texinfo/tp/t/results/coverage/not_i_j_in_dotless.pl
2022/11/30 |      29165 | macros/texinfo/texinfo/po_document/pt.us-ascii.po
2022/11/30 |       2915 | macros/texinfo/texinfo/tp/t/results/columnfractions/invalid.pl
2022/11/30 |       2914 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/index_special_region_fot.html
2022/11/30 |      29118 | macros/texinfo/texinfo/tp/t/results/indices/same_only_seealso_seeentry.pl
2022/11/30 |      29091 | macros/texinfo/texinfo/po_document/nl.po
2022/11/30 |     290615 | macros/latex/base/tlc2.pdf
2022/11/30 |       2902 | macros/texinfo/texinfo/tp/t/results/macro/macro_with_error_at_end_line_after_macro.pl
2022/11/30 |        289 | macros/texinfo/texinfo/tp/t/results/converters_tests/minimal_empty_with_input/res_xml/minimal_empty_with_input.xml
2022/11/30 |      28992 | macros/texinfo/texinfo/tp/t/results/menu/formats_in_menu.pl
2022/11/30 |       2896 | macros/latex/base/syntonly.ins
2022/11/30 |       2893 | macros/latex/base/nfssfont.ins
2022/11/30 |       2892 | macros/latex/base/graphpap.ins
2022/11/30 |       2892 | macros/latex/base/fix-cm.ins
2022/11/30 |       2890 | macros/latex/base/alltt.ins
2022/11/30 |       2888 | macros/latex/base/ifthen.ins
2022/11/30 |      28864 | macros/texinfo/texinfo/po_document/uk.po
2022/11/30 |       2882 | macros/texinfo/texinfo/tp/t/results/info_tests/paragraphindent_none_first.pl
2022/11/30 |       2879 | macros/texinfo/texinfo/tp/t/results/macro/too_much_args.pl
2022/11/30 |       2879 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/style_not_closed_in_block_command.pl
2022/11/30 |      28793 | macros/texinfo/texinfo/tp/t/results/indices/double_seeentry_seealso.pl
2022/11/30 |      28789 | macros/texinfo/texinfo/tp/t/results/def/ref_in_def.pl
2022/11/30 |     287733 | macros/latex/base/fix-cm.pdf
2022/11/30 |      28756 | macros/texinfo/texinfo/tp/t/results/def/double_command.pl
2022/11/30 |      28710 | macros/texinfo/texinfo/tp/t/results/itemize/inter_item_commands_in_itemize.pl
2022/11/30 |     286591 | macros/latex/base/ltnews23.pdf
2022/11/30 |        285 | macros/texinfo/texinfo/tp/t/results/info_tests/split_test_before_first_node_no_empty_line/res_info/split_test_before_first_node.info-1
2022/11/30 |      28531 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_rawtext/formatting.txt
2022/11/30 |       2852 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_and_headings.pl
2022/11/30 |      28517 | macros/texinfo/texinfo/po_document/pt_BR.us-ascii.po
2022/11/30 |      28462 | macros/texinfo/texinfo/tp/t/results/indices/complex_recursive_synindex.pl
2022/11/30 |      28450 | macros/texinfo/texinfo/po_document/hr.po
2022/11/30 |      28385 | macros/texinfo/texinfo/tp/t/results/html_tests/check_htmlxref_ignore_ref_top_up.pl
2022/11/30 |       2830 | macros/texinfo/texinfo/tp/t/results/columnfractions/good.pl
2022/11/30 |      28296 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_index_commands.pl
2022/11/30 |     281906 | macros/latex/base/latexrelease.pdf
2022/11/30 |       2818 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/recursive_copying.pl
2022/11/30 |     281772 | macros/texinfo/texinfo/tp/t/results/sectioning/section_in_unnumbered_info.pl
2022/11/30 |      28158 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_xml/formatting.2
2022/11/30 |      28158 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_textcontent/formatting.2
2022/11/30 |      28158 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_rawtext/formatting.2
2022/11/30 |      28158 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_macro_expand/formatting.2
2022/11/30 |       2813 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/item_tab_outside_of_table_lists.pl
2022/11/30 |      28101 | macros/texinfo/texinfo/tp/t/results/def/inter_item_commands_in_def_in_example.pl
2022/11/30 |      28023 | macros/texinfo/texinfo/tp/t/results/xml_tests/comments_end_lines.pl
2022/11/30 |     279689 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/chapter.xhtml
2022/11/30 |      27961 | macros/texinfo/texinfo/po_document/ro.po
2022/11/30 |      27939 | macros/texinfo/texinfo/po_document/cs.po
2022/11/30 |     279048 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter.xhtml
2022/11/30 |       2786 | macros/texinfo/texinfo/man/info.1
2022/11/30 |       2776 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/node_in_copying.pl
2022/11/30 |      27749 | macros/texinfo/texinfo/tp/t/results/sectioning/node_up_external_node.pl
2022/11/30 |       2773 | macros/texinfo/texinfo/tp/t/results/converters_tests/references_to_top_no_top_output/res_html/chapter.html
2022/11/30 |       2770 | macros/texinfo/texinfo/tp/t/results/latex_tests/custom_headings/res_latex/custom_headings.tex
2022/11/30 |       2769 | macros/texinfo/texinfo/tp/t/results/sectioning/top_no_argument_and_content.pl
2022/11/30 |       2764 | systems/texlive/tlnet/archive/docshots.r65141.tar.xz
2022/11/30 |       2764 | macros/texinfo/texinfo/tp/t/results/misc_commands/vskip.pl
2022/11/30 |       2762 | macros/texinfo/texinfo/tp/t/results/macro/include_after_empty_line_arg.pl
2022/11/30 |      27619 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_after_top_before_section_sections.pl
2022/11/30 |       2760 | macros/texinfo/texinfo/tp/t/results/quotation/quotation_beginning_and_end_on_line.pl
2022/11/30 |      27506 | macros/texinfo/texinfo/tp/t/results/html_tests/check_htmlxref.pl
2022/11/30 |       2744 | macros/texinfo/texinfo/tp/t/results/html_tests/raw_html.pl
2022/11/30 |       2740 | macros/texinfo/texinfo/tp/t/results/sectioning/one_subsection.pl
2022/11/30 |       2739 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/section_in_footnote.pl
2022/11/30 |      27386 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_after_top_before_chapter_sections.pl
2022/11/30 |      27368 | macros/texinfo/texinfo/tp/t/results/sectioning/placed_things_before_node.pl
2022/11/30 |       2735 | macros/texinfo/texinfo/tp/t/results/latex_tests/anchor_links_xref_xrefautomaticsectiontitle/res_latex/anchor_links_xref_xrefautomaticsectiontitle.tex
2022/11/30 |       2734 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/insert_copying_and_paragraph.pl
2022/11/30 |       2728 | macros/latex/base/ltpageno.dtx
2022/11/30 |       2727 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/section_in_flushright.pl
2022/11/30 |      27253 | macros/texinfo/texinfo/tp/t/results/info_tests/def_in_copying.pl
2022/11/30 |       2723 | macros/texinfo/texinfo/tp/t/results/macro/text_before_after.pl
2022/11/30 |       2719 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_not_closed.pl
2022/11/30 |       2718 | macros/texinfo/texinfo/tp/t/results/columnfractions/not_fraction.pl
2022/11/30 |      27122 | macros/latex/base/ltxcheck.tex
2022/11/30 |        270 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_latex/osé_utf8.2
2022/11/30 |      27082 | macros/texinfo/texinfo/po_document/sv.po
2022/11/30 |      27069 | macros/latex/base/lterror.dtx
2022/11/30 |       2705 | macros/latex/base/idx.tex
2022/11/30 |       2704 | macros/texinfo/texinfo/tp/t/results/converters_tests/references_to_top_no_top_output/res_latex/references_to_top_no_top_output.tex
2022/11/30 |       2700 | macros/texinfo/texinfo/tp/t/results/macro/line_after_recursive_call.pl
2022/11/30 |     269975 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_latex/formatting.tex
2022/11/30 |       2693 | macros/texinfo/texinfo/tp/t/results/value/comment_on_set_line.pl
2022/11/30 |      26875 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/separator.c
2022/11/30 |        267 | macros/texinfo/texinfo/tp/t/results/info_tests/split_test_before_first_node_no_empty_line/res_info/split_test_before_first_node.info-2
2022/11/30 |        267 | macros/texinfo/texinfo/tp/t/input_files/nodes_after_top_before_section.texi
2022/11/30 |        266 | macros/texinfo/texinfo/tp/t/results/converters_tests/minimal_empty_empty/res_xml/minimal_empty_empty.xml
2022/11/30 |       2664 | macros/texinfo/texinfo/tp/t/results/itemize/inter_item_commands_in_enumerate/res_latex/inter_item_commands_in_enumerate.tex
2022/11/30 |      26609 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_no_node_top_explicit_directions.pl
2022/11/30 |      26588 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8_epub_package/EPUB/images/2-an_image.png
2022/11/30 |      26588 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8_epub_package/EPUB/images/1-an_image.png
2022/11/30 |       2656 | macros/texinfo/texinfo/tp/t/results/sectioning/loweredheading.pl
2022/11/30 |      26547 | macros/texinfo/texinfo/tp/t/results/coverage/table.pl
2022/11/30 |     265279 | macros/latex/base/ltnews24.pdf
2022/11/30 |       2646 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/section_in_copying.pl
2022/11/30 |      26444 | systems/texlive/tlnet/archive/piton.source.r65143.tar.xz
2022/11/30 |      26438 | macros/texinfo/texinfo/tp/t/results/sectioning/placed_things_before_element.pl
2022/11/30 |      26425 | macros/texinfo/texinfo/tp/TODO
2022/11/30 |     264112 | macros/latex/base/cfgguide.pdf
2022/11/30 |      26358 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end.pl
2022/11/30 |       2634 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_table/index.html
2022/11/30 |       2632 | macros/texinfo/texinfo/tp/t/results/coverage_braces/recursive_acronym.pl
2022/11/30 |       2632 | macros/latex/contrib/kdpcover/kdpcover.ins
2022/11/30 |      26276 | macros/texinfo/texinfo/tp/t/results/html_tests/check_htmlxref_menu.pl
2022/11/30 |      26238 | macros/texinfo/texinfo/tp/t/results/html_tests/check_htmlxref_no_use_nodes.pl
2022/11/30 |        261 | macros/texinfo/texinfo/tp/t/input_files/nodes_after_top_before_chapter.texi
2022/11/30 |       2615 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region/index_special_region.info
2022/11/30 |        260 | macros/texinfo/texinfo/tp/t/results/formatting/split_nocopying_split/res_info/split-nocopying.info
2022/11/30 |       2603 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_bracketed_prototype_empty_spaces_not_closed.pl
2022/11/30 |      26004 | macros/texinfo/texinfo/po/sl.gmo
2022/11/30 |        259 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/META-INF/container.xml
2022/11/30 |        259 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/META-INF/container.xml
2022/11/30 |       2597 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_with_commands_classical/res_latex/titlepage_with_commands_classical.tex
2022/11/30 |       2595 | macros/texinfo/texinfo/tp/t/results/coverage/raggedright.pl
2022/11/30 |      25931 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/star_at_command_formatting.pl
2022/11/30 |        258 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8_epub_package/META-INF/container.xml
2022/11/30 |      25867 | macros/texinfo/texinfo/tp/t/results/moresectioning/placed_things_before_element.pl
2022/11/30 |      25852 | macros/texinfo/texinfo/tp/t/results/menu/invalid_info_menu_entry.pl
2022/11/30 |      25850 | macros/texinfo/texinfo/Pod-Simple-Texinfo/pod2texi.pl
2022/11/30 |       2580 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_section/section.html
2022/11/30 |      25798 | macros/texinfo/texinfo/tp/t/results/raw/verbatim_and_verbatiminclude.pl
2022/11/30 |       2578 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book_chapter/double_contents_1.html
2022/11/30 |     257804 | macros/latex/base/modguide.pdf
2022/11/30 |     257314 | macros/latex/base/cyrguide.pdf
2022/11/30 |       2566 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_bracketed_prototype_empty_not_closed.pl
2022/11/30 |       2562 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_section/chapter.html
2022/11/30 |       2555 | macros/texinfo/texinfo/tp/t/results/paragraph/paragraph_count_and_example.pl
2022/11/30 |      25531 | macros/texinfo/texinfo/po/zh_CN.gmo
2022/11/30 |        254 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/cpp_lines/cpp_lines.2
2022/11/30 |       2544 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/unclosed_verb_end_of_line_on_misc_line.pl
2022/11/30 |       2539 | macros/texinfo/texinfo/tp/t/results/macro/ifset_in_macro_set.pl
2022/11/30 |       2538 | macros/texinfo/texinfo/tp/t/results/macro/recursive_call_in_macro.pl
2022/11/30 |       2537 | macros/texinfo/texinfo/tp/t/results/macro/ifclear_in_macro.pl
2022/11/30 |       2535 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_nodes/chapter.html
2022/11/30 |      25349 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting/internal_links_formatting.txt
2022/11/30 |     253498 | macros/texinfo/texinfo/doc/tp_api/texi2any_internals.info
2022/11/30 |        252 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_table/index_table.2
2022/11/30 |       2529 | macros/texinfo/texinfo/tp/t/results/conditionals/empty_ifset_in_ifset_set.pl
2022/11/30 |       2527 | macros/texinfo/texinfo/tp/t/results/coverage/spaces_unknown_command_after_braced_command.pl
2022/11/30 |     252140 | macros/latex/base/lb2.pdf
2022/11/30 |      25203 | macros/texinfo/texinfo/po_document/fi.po
2022/11/30 |       2519 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_chapter/index.html
2022/11/30 |       2516 | macros/texinfo/texinfo/tp/t/results/columnfractions/empty.pl
2022/11/30 |      25123 | macros/texinfo/texinfo/tp/t/results/sectioning/part_node_before_top.pl
2022/11/30 |      25121 | macros/texinfo/texinfo/tp/t/results/include/cpp_lines.pl
2022/11/30 |      25111 | macros/texinfo/texinfo/tp/t/results/info_tests/before_node_and_section.pl
2022/11/30 |      25101 | macros/texinfo/texinfo/tp/t/results/sectioning/top_without_node_sections.pl
2022/11/30 |      25092 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_with_commands_classical.pl
2022/11/30 |       2506 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/empty_line_in_example_end.pl
2022/11/30 |     250592 | macros/latex/base/ltnews27.pdf
2022/11/30 |      24878 | macros/texinfo/texinfo/tp/t/results/indices/multiple_index_text_sortas_seeentry_seealso.pl
2022/11/30 |       2484 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_nodes/index.html
2022/11/30 |       2483 | macros/texinfo/texinfo/tp/t/results/coverage/center.pl
2022/11/30 |      24805 | macros/texinfo/texinfo/tp/t/results/sectioning/semi_auto.pl
2022/11/30 |       2479 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_section/index.html
2022/11/30 |      24797 | macros/texinfo/texinfo/tp/t/results/indices/printindex_index_entry_in_copying_in_footnote.pl
2022/11/30 |       2469 | macros/texinfo/texinfo/tp/t/results/macro/leading_spaces_no_ignore.pl
2022/11/30 |      24665 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_utf8_enable_encoding/res_html/index.html
2022/11/30 |      24654 | macros/texinfo/texinfo/tp/t/results/multitable/ref_in_multitable.pl
2022/11/30 |       2463 | macros/texinfo/texinfo/tp/t/results/moreindices/double_index_entry/res_html/double_index_entry.html
2022/11/30 |       2462 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/html_expanded.pl
2022/11/30 |      24512 | macros/texinfo/texinfo/util/htmlxref.cnf
2022/11/30 |      24512 | macros/texinfo/latest/htmlxref.cnf
2022/11/30 |     244867 | macros/latex/base/ltnews21.pdf
2022/11/30 |      24441 | macros/texinfo/texinfo/po_document/fr.po
2022/11/30 |     243868 | macros/texinfo/texinfo/tp/t/results/sectioning/character_and_spaces_in_refs_out.pl
2022/11/30 |       2435 | macros/texinfo/texinfo/tp/t/results/coverage/titlefont_in_center.pl
2022/11/30 |      24339 | macros/texinfo/texinfo/tp/t/results/sectioning/unnumbered_before_node_top_top.pl
2022/11/30 |     243286 | macros/latex/base/ltxdoc.pdf
2022/11/30 |       2430 | macros/texinfo/texinfo/tp/t/results/raw/inline_missing_first_arg.pl
2022/11/30 |       2430 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying_fot.html
2022/11/30 |      24286 | macros/latex/base/ltcounts.dtx
2022/11/30 |      24270 | macros/texinfo/texinfo/po_document/it.po
2022/11/30 |       2425 | macros/texinfo/texinfo/tp/t/results/coverage_braces/no_brace.pl
2022/11/30 |       2422 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_classical/res_latex/titlepage_classical.tex
2022/11/30 |      24210 | macros/texinfo/texinfo/po_document/pl.po
2022/11/30 |      24209 | macros/texinfo/texinfo/tp/t/results/sectioning/contents_and_shortcontents.pl
2022/11/30 |        241 | macros/latex/base/ltfilehook-doc.tex
2022/11/30 |      24184 | macros/texinfo/texinfo/tp/t/results/menu/block_commands_in_menu_description.pl
2022/11/30 |       2415 | macros/texinfo/texinfo/tp/t/results/html_tests/utf8_enable_encoding_use_numeric_entity.pl
2022/11/30 |       2415 | macros/texinfo/texinfo/tp/t/results/coverage_braces/empty_line_in_email.pl
2022/11/30 |       2411 | macros/texinfo/texinfo/tp/t/results/macro/implicit_quoting_recursion.pl
2022/11/30 |     241167 | macros/latex/base/doc.dtx
2022/11/30 |        240 | macros/latex/base/ltshipout-doc.tex
2022/11/30 |       2408 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/index_special_region_fot.html
2022/11/30 |       2406 | macros/texinfo/texinfo/tp/t/results/macro/arg_not_closed.pl
2022/11/30 |       2405 | macros/texinfo/texinfo/tp/t/results/moresectioning/placed_things_before_element/res_html/placed_things_before_element.html
2022/11/30 |      24045 | macros/texinfo/texinfo/tp/t/results/converters_tests/spaces_in_empty_node_names.pl
2022/11/30 |       2403 | macros/texinfo/texinfo/tp/t/results/info_tests/paragraphindent_asis_first.pl
2022/11/30 |       2403 | macros/texinfo/texinfo/tp/t/results/info_tests/image_text_encoded.pl
2022/11/30 |       2402 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_region_html/index.html
2022/11/30 |       2402 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/index_special_region_no_region_fot.html
2022/11/30 |       2401 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying_html/index.html
2022/11/30 |       2401 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_table/index_table_toc.html
2022/11/30 |       2400 | macros/texinfo/texinfo/tp/t/results/xtable/inter_item_commands_in_table_in_example/res_latex/inter_item_commands_in_table_in_example.tex
2022/11/30 |      23997 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_latin1_enable_encoding/res_html/index.html
2022/11/30 |       2398 | macros/texinfo/texinfo/tp/t/results/include/verbatiminclude_and_encoding_latin1.pl
2022/11/30 |       2393 | macros/texinfo/texinfo/tp/t/results/conditionals/inlinefmtifelse_nesting.pl
2022/11/30 |       2392 | macros/texinfo/texinfo/tp/t/results/coverage/at_after_accent_command.pl
2022/11/30 |       2391 | macros/texinfo/texinfo/tp/t/results/itemize/not_closed_item.pl
2022/11/30 |        238 | macros/latex/base/ltmarks-doc.tex
2022/11/30 |        238 | macros/latex/base/lthooks-doc.tex
2022/11/30 |        238 | macros/latex/base/ltcmdhooks-doc.tex
2022/11/30 |       2388 | macros/texinfo/texinfo/tp/t/results/coverage/cartouche.pl
2022/11/30 |      23858 | macros/texinfo/texinfo/tp/Texinfo/Convert/Info.pm
2022/11/30 |       2367 | macros/texinfo/texinfo/tp/t/results/html_tests/utf8_enable_encoding_no_use_iso.pl
2022/11/30 |       2364 | macros/texinfo/texinfo/tp/t/results/itemize/inter_item_commands_in_itemize/res_latex/inter_item_commands_in_itemize.tex
2022/11/30 |      23637 | macros/latex/base/ltnews30.tex
2022/11/30 |      23618 | macros/texinfo/texinfo/tp/t/results/menu/entry_after_detailmenu.pl
2022/11/30 |      23614 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.2
2022/11/30 |      23614 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.2
2022/11/30 |       2360 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_long_title/res_latex/titlepage_long_title.tex
2022/11/30 |      23605 | macros/texinfo/texinfo/tp/t/results/def/empty_def_arguments.pl
2022/11/30 |       2358 | macros/texinfo/texinfo/tp/tests/many_input_files/different_languages_gen_master_menu_res/no_master_menu_fr.html
2022/11/30 |      23570 | macros/texinfo/texinfo/tp/t/results/transformations/master_menu_fr.pl
2022/11/30 |       2352 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/cpp_lines/cpp_lines.html
2022/11/30 |      23516 | macros/latex/base/fix-cm.dtx
2022/11/30 |        234 | macros/latex/base/ltpara-doc.tex
2022/11/30 |       2347 | macros/texinfo/texinfo/tp/t/results/html_tests/utf8_use_numeric_entity.pl
2022/11/30 |       2342 | macros/texinfo/texinfo/tp/t/results/include/macro_definition_in_include.pl
2022/11/30 |     234191 | macros/latex/base/slifonts.pdf
2022/11/30 |      23386 | macros/latex/base/lppl.tex
2022/11/30 |       2337 | macros/texinfo/texinfo/tp/t/results/info_tests/no_top_node.pl
2022/11/30 |       2334 | macros/texinfo/texinfo/tp/t/results/latex_tests/brace_in_index/res_latex/brace_in_index.tex
2022/11/30 |       2333 | macros/texinfo/texinfo/tp/t/results/value/set_flag_command_equivalent.pl
2022/11/30 |       2331 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/unclosed_verb_on_misc_line.pl
2022/11/30 |       2331 | macros/texinfo/texinfo/tp/t/results/coverage_braces/footnote_ending_on_empty_line.pl
2022/11/30 |       2329 | macros/texinfo/texinfo/tp/t/results/macro/macro_expands_to_empty.pl
2022/11/30 |      23270 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.2
2022/11/30 |      23270 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.2
2022/11/30 |      23247 | macros/texinfo/texinfo/tp/t/results/html_tests/index_below.pl
2022/11/30 |      23244 | macros/texinfo/texinfo/tp/t/results/multitable/empty_item_tab.pl
2022/11/30 |      23232 | macros/texinfo/texinfo/tp/t/results/indices/seeentry.pl
2022/11/30 |       2322 | macros/latex/required/babel/base/README.md
2022/11/30 |       2320 | macros/texinfo/texinfo/tp/t/results/layout/navigation_chapter_vertical/res_html/index.html
2022/11/30 |       2320 | macros/texinfo/texinfo/tp/t/results/layout/navigation_chapter_no_header_vertical/res_html/index.html
2022/11/30 |       2319 | macros/texinfo/texinfo/tp/t/results/include/verbatiminclude_and_encoding.pl
2022/11/30 |     231487 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_docbook/formatting.xml
2022/11/30 |      23098 | macros/texinfo/texinfo/tp/t/results/info_tests/colon_in_index_entry.pl
2022/11/30 |      23039 | macros/texinfo/texinfo/tp/t/results/moresectioning/equivalent_nodes_no_node.pl
2022/11/30 |      23024 | macros/texinfo/texinfo/tp/t/results/def/inter_item_commands_in_def.pl
2022/11/30 |       2301 | macros/texinfo/texinfo/tp/t/results/html_tests/utf8_enable_encoding.pl
2022/11/30 |      23008 | macros/texinfo/texinfo/tp/t/results/value/value_in_node.pl
2022/11/30 |     230028 | macros/latex/base/ltnews19.pdf
2022/11/30 |      22988 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_utf8/res_html/index.html
2022/11/30 |      22985 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_latin1/res_html/index.html
2022/11/30 |      22976 | macros/texinfo/texinfo/tp/t/results/indices/subentry_and_sortas.pl
2022/11/30 |       2296 | macros/texinfo/texinfo/tp/t/results/layout/navigation_section_vertical/res_html/index.html
2022/11/30 |       2296 | macros/texinfo/texinfo/tp/t/results/layout/navigation_section_no_header_vertical/res_html/index.html
2022/11/30 |       2296 | macros/texinfo/texinfo/tp/t/results/layout/navigation_node_vertical/res_html/index.html
2022/11/30 |     229607 | macros/texinfo/texinfo/po/ru.po
2022/11/30 |      22942 | macros/texinfo/texinfo/tp/t/results/sectioning/sections_test_no_use_nodes_use_node_directions.pl
2022/11/30 |       2290 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/U_with_utf8_enable_encoding.pl
2022/11/30 |       2286 | macros/texinfo/texinfo/tp/t/results/macro/macro_one_arg_end_of_file.pl
2022/11/30 |       2286 | macros/texinfo/texinfo/tp/t/results/init_files_tests/redefined_need.pl
2022/11/30 |       2284 | macros/texinfo/texinfo/tp/t/results/conditionals/user_defined_txiinternalvalue.pl
2022/11/30 |       2283 | macros/texinfo/texinfo/tp/t/results/value/value_after_accent.pl
2022/11/30 |       2282 | macros/texinfo/texinfo/tp/t/results/html_tests/utf8_default.pl
2022/11/30 |      22829 | macros/texinfo/texinfo/tp/t/results/coverage/multitable.pl
2022/11/30 |       2279 | macros/texinfo/texinfo/tp/t/results/macro/ifset_in_macro.pl
2022/11/30 |       2278 | macros/texinfo/texinfo/tp/t/results/macro/no_macrobody.pl
2022/11/30 |      22760 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-Converter.texi
2022/11/30 |       2274 | macros/texinfo/texinfo/tp/t/results/value/value_in_invalid_documentencoding.pl
2022/11/30 |      22741 | macros/texinfo/texinfo/tp/t/results/value/value_in_index_commands.pl
2022/11/30 |      22736 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_ascii/res_html/index.html
2022/11/30 |      22736 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_ascii_enable_encoding/res_html/index.html
2022/11/30 |       2272 | macros/texinfo/texinfo/tp/t/results/macro/recursive_call_in_argument.pl
2022/11/30 |      22720 | macros/latex/base/cfgguide.tex
2022/11/30 |       2271 | macros/texinfo/texinfo/tp/t/results/conditionals/macro_in_ifset.pl
2022/11/30 |     227059 | macros/latex/base/proc.pdf
2022/11/30 |       2268 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_command_line/Chapteur.html
2022/11/30 |       2266 | macros/texinfo/texinfo/tp/t/results/misc_commands/command_not_closed_in_documentencoding.pl
2022/11/30 |      22665 | macros/latex/base/ltxdoc.dtx
2022/11/30 |      22655 | macros/texinfo/texinfo/tp/t/results/moresectioning/equivalent_nodes.pl
2022/11/30 |       2262 | macros/texinfo/texinfo/tp/t/results/latex_tests/indices/res_latex/indices.tex
2022/11/30 |       2261 | macros/texinfo/texinfo/tp/t/results/value/ignored_value_definition.pl
2022/11/30 |       2259 | macros/texinfo/texinfo/tp/Texinfo/Convert/Paragraph.pm
2022/11/30 |      22593 | macros/texinfo/texinfo/tp/t/results/sectioning/sections_test_no_use_nodes.pl
2022/11/30 |       2256 | macros/texinfo/texinfo/tp/tests/layout/res_parser/navigation_test_misc_file_collision/chapter.html
2022/11/30 |       2254 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/settitle_and_empty_top.pl
2022/11/30 |      22531 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.c
2022/11/30 |      22519 | macros/texinfo/texinfo/tp/t/results/coverage_braces/two_footnotes_in_nodes_separate.pl
2022/11/30 |       2247 | macros/texinfo/texinfo/tp/t/results/macro/macro_for_ignored_line_command.pl
2022/11/30 |       2247 | macros/texinfo/texinfo/tp/tests/layout/res_parser/navigation_test_misc_file_collision/navigation_toc.html
2022/11/30 |      22459 | macros/texinfo/texinfo/tp/t/results/menu/menu_entry_name_comment.pl
2022/11/30 |      22441 | macros/texinfo/texinfo/tp/t/results/sectioning/no_element.pl
2022/11/30 |    2244124 | systems/texlive/tlnet/archive/graph35.doc.r65138.tar.xz
2022/11/30 |      22430 | macros/texinfo/texinfo/tp/t/results/latex_tests/custom_headings.pl
2022/11/30 |     223831 | macros/latex/base/alltt.pdf
2022/11/30 |      22380 | macros/texinfo/texinfo/tp/t/results/menu/submenu_in_example.pl
2022/11/30 |      22316 | systems/texlive/tlnet/archive/graph35.r65138.tar.xz
2022/11/30 |      22280 | macros/texinfo/texinfo/tp/t/results/html_tests/deftypefnnewline_for_copying_after.pl
2022/11/30 |       2225 | macros/texinfo/texinfo/tp/t/results/misc_commands/invalid_kbdinputstyle.pl
2022/11/30 |      22240 | macros/texinfo/texinfo/tp/t/results/sectioning/section_chapter_before_top_nodes.pl
2022/11/30 |       2212 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/lone_braces_in_inlineraw.pl
2022/11/30 |     221211 | macros/latex/base/ifthen.pdf
2022/11/30 |       2206 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_nodes/section.html
2022/11/30 |       2204 | macros/texinfo/texinfo/tp/t/results/verb/end_of_line.pl
2022/11/30 |       2199 | macros/texinfo/texinfo/tp/t/results/coverage/group_beginning_and_end_on_line.pl
2022/11/30 |     219349 | macros/latex/base/ltx3info.pdf
2022/11/30 |       2190 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book_chapter/double_contents_top.html
2022/11/30 |     218981 | macros/texinfo/texinfo/po/uk.po
2022/11/30 |      21890 | macros/latex/required/babel/base/bbcompat.dtx
2022/11/30 |      21882 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Structuring.texi
2022/11/30 |      21867 | macros/texinfo/texinfo/tp/t/results/menu/menu_in_example.pl
2022/11/30 |       2184 | macros/texinfo/texinfo/tp/t/results/macro/macro_no_arg_bad_expansion.pl
2022/11/30 |       2183 | macros/texinfo/texinfo/tp/t/results/macro/bad_macro_name_with_underscore.pl
2022/11/30 |      21806 | macros/texinfo/texinfo/tp/t/results/sectioning/contents.pl
2022/11/30 |       2176 | macros/texinfo/texinfo/tp/t/results/coverage_braces/footnote_not_closed.pl
2022/11/30 |       2174 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_section/section.html
2022/11/30 |     217444 | macros/texinfo/texinfo/tp/t/results/float/numbering_captions_listoffloats.pl
2022/11/30 |       2170 | macros/texinfo/texinfo/tp/t/results/layout/navigation_chapter/res_html/index.html
2022/11/30 |       2170 | macros/texinfo/texinfo/tp/t/results/layout/navigation_chapter_no_header/res_html/index.html
2022/11/30 |       2168 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_before_after_top_xref/res_latex/nodes_before_after_top_xref.tex
2022/11/30 |      21651 | macros/texinfo/texinfo/tp/t/results/sectioning/node_line_arguments.pl
2022/11/30 |       2164 | macros/texinfo/texinfo/tp/t/results/macro/macro_no_arg_expansion.pl
2022/11/30 |     216085 | macros/texinfo/texinfo/tp/Makefile.in
2022/11/30 |       2158 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying_toc.html
2022/11/30 |       2158 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Convert-Texinfo.texi
2022/11/30 |     215684 | macros/latex/base/lgc2.pdf
2022/11/30 |       2151 | macros/texinfo/texinfo/tp/t/results/layout/navigation_node/res_html/index.html
2022/11/30 |      21519 | macros/texinfo/texinfo/tp/t/results/sectioning/shortcontents.pl
2022/11/30 |       2148 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/sc_with_utf8_enable_encoding.pl
2022/11/30 |       2146 | macros/texinfo/texinfo/tp/t/results/layout/navigation_section/res_html/index.html
2022/11/30 |       2146 | macros/texinfo/texinfo/tp/t/results/layout/navigation_section_no_header/res_html/index.html
2022/11/30 |       2145 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_no_author/res_latex/titlepage_no_author.tex
2022/11/30 |       2144 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/index_special_region_no_region_toc.html
2022/11/30 |      21441 | macros/texinfo/texinfo/tp/t/results/sectioning/loop_nodes.pl
2022/11/30 |       2142 | macros/texinfo/texinfo/tp/t/results/macro/macro_zero.pl
2022/11/30 |      21358 | macros/texinfo/texinfo/tp/t/results/sectioning/reference_to_only_special_spaces_node.pl
2022/11/30 |       2133 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/isolated_html_expanded.pl
2022/11/30 |       2132 | macros/texinfo/texinfo/tp/t/results/coverage/verbatiminclude.pl
2022/11/30 |       2129 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_nodes/chapter.html
2022/11/30 |       2128 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/index_special_region_toc.html
2022/11/30 |       2127 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_in_top_node/res_latex/titlepage_in_top_node.tex
2022/11/30 |       2127 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_chapter/index.html
2022/11/30 |      21262 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_table/index_table.info
2022/11/30 |       2124 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/index_special_region_toc.html
2022/11/30 |      21249 | macros/texinfo/texinfo/tp/tests/indices/res_parser/indices_in_begin_tables_lists/indices_in_begin_tables_lists.html
2022/11/30 |       2122 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin2_latin2_in_refs/res_html/index.html
2022/11/30 |      21177 | macros/texinfo/texinfo/tp/t/results/sectioning/section_below_unnumbered.pl
2022/11/30 |     211770 | macros/latex/base/lthooks.dtx
2022/11/30 |       2115 | macros/texinfo/texinfo/tp/t/results/latex_tests/enumerate_arguments/res_latex/enumerate_arguments.tex
2022/11/30 |      21158 | macros/texinfo/texinfo/tp/t/results/indices/index_entry_in_footnote_separate.pl
2022/11/30 |      21148 | macros/texinfo/texinfo/tp/t/results/sectioning/external_node_in_menu.pl
2022/11/30 |     211180 | macros/latex/base/nfssfont.pdf
2022/11/30 |       2110 | macros/texinfo/texinfo/tp/t/results/float/empty_listoffloats.pl
2022/11/30 |      21102 | macros/texinfo/texinfo/tp/t/results/html_tests/simple_menu_in_example.pl
2022/11/30 |       2108 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_nodes/index.html
2022/11/30 |      21082 | macros/texinfo/texinfo/tp/t/results/indices/syncode_index_print_both.pl
2022/11/30 |       2104 | macros/texinfo/texinfo/tp/t/results/macro/empty_macro_no_arg.pl
2022/11/30 |       2103 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_section/index.html
2022/11/30 |       2102 | macros/texinfo/texinfo/tp/t/results/coverage_braces/space_in_footnote.pl
2022/11/30 |      21023 | macros/texinfo/texinfo/tp/t/results/coverage_braces/two_footnotes_in_nodes.pl
2022/11/30 |      21013 | macros/texinfo/texinfo/tp/t/results/info_tests/index_entry_at_end_node.pl
2022/11/30 |       2100 | macros/texinfo/texinfo/tp/t/results/verb/verb_not_closed_with_char.pl
2022/11/30 |         20 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/mimetype
2022/11/30 |         20 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/mimetype
2022/11/30 |         20 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8_epub_package/mimetype
2022/11/30 |      20966 | macros/texinfo/texinfo/tp/t/results/indices/same_index_entry_merged_indices.pl
2022/11/30 |       2086 | macros/texinfo/texinfo/tp/t/results/init_files_tests/documentation_examples/res_html/index.html
2022/11/30 |       2085 | macros/texinfo/texinfo/tp/t/results/conditionals/inlineiffmtifelse_not_closed_three_arg.pl
2022/11/30 |       2080 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying/index_special_region_no_insertcopying_toc.html
2022/11/30 |       2078 | macros/texinfo/texinfo/tp/t/results/verb/nested.pl
2022/11/30 |       2078 | macros/texinfo/texinfo/tp/t/results/latex_tests/three_setchapternewpage_on_odd_off/res_latex/three_setchapternewpage_on_odd_off.tex
2022/11/30 |      20787 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/js/modernizr.js
2022/11/30 |       2076 | macros/texinfo/texinfo/tp/t/results/latex_tests/nested_enumerate/res_latex/nested_enumerate.tex
2022/11/30 |      20763 | macros/texinfo/texinfo/tp/t/results/info_tests/image_and_spaces_formatting.pl
2022/11/30 |      20741 | macros/texinfo/texinfo/tp/Texinfo/Config.pm
2022/11/30 |       2073 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_ifset.pl
2022/11/30 |       2072 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_no_title/res_latex/titlepage_no_title.tex
2022/11/30 |      20723 | macros/texinfo/texinfo/tp/t/results/regions/ref_in_copying_insert_in_chapter.pl
2022/11/30 |      20701 | macros/texinfo/texinfo/tp/t/results/html_tests/deftypefnnewline_for_copying_before.pl
2022/11/30 |      20693 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/first-before-top.html
2022/11/30 |      20690 | macros/texinfo/texinfo/tp/t/results/latex_tests/nested_itemize.pl
2022/11/30 |       2067 | macros/texinfo/texinfo/tp/t/results/latex_tests/two_setchapternewpage_odd_on/res_latex/two_setchapternewpage_odd_on.tex
2022/11/30 |       2066 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region/index_special_region_no_region_toc.html
2022/11/30 |      20652 | macros/latex/base/lgc2.err
2022/11/30 |      20642 | macros/texinfo/texinfo/tp/t/results/converters_tests/inline.pl
2022/11/30 |      20614 | macros/texinfo/texinfo/tp/t/results/indices/index_entry_in_footnote_different_node_end.pl
2022/11/30 |      20583 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes/index_nodes.html
2022/11/30 |     205253 | macros/latex/contrib/proflycee/doc/ProfLycee-doc.tex
2022/11/30 |       2050 | macros/texinfo/texinfo/tp/t/results/misc_commands/simple.pl
2022/11/30 |       2049 | macros/texinfo/texinfo/tp/t/results/coverage_braces/empty_second_email_argument.pl
2022/11/30 |     204935 | macros/latex/base/ltnews25.pdf
2022/11/30 |     204711 | macros/latex/base/exscale.pdf
2022/11/30 |      20469 | macros/latex/base/ltnews.cls
2022/11/30 |     204540 | macros/texinfo/texinfo/po/sv.po
2022/11/30 |       2044 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_and_setchapternewpage_odd/res_latex/titlepage_and_setchapternewpage_odd.tex
2022/11/30 |       2044 | macros/texinfo/texinfo/tp/t/results/latex_tests/setchapternewpage_on_odd_titlepage/res_latex/setchapternewpage_on_odd_titlepage.tex
2022/11/30 |        203 | macros/texinfo/texinfo/tp/t/results/formatting/split_nocopying_split/res_info/split-nocopying.info-1
2022/11/30 |      20363 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/sing_abt.htm
2022/11/30 |        202 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_one_node/index_one_node.2
2022/11/30 |      20296 | macros/texinfo/texinfo/tp/t/results/macro/macro_in_menu.pl
2022/11/30 |      20262 | macros/texinfo/texinfo/tp/t/results/sectioning/sections_test.pl
2022/11/30 |       2024 | macros/texinfo/texinfo/tp/t/results/latex_tests/nested_itemize/res_latex/nested_itemize.tex
2022/11/30 |       2023 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_chapter/double_contents_toc.html
2022/11/30 |       2021 | macros/texinfo/texinfo/tp/t/results/verb/verb_at_end_of_line_not_closed.pl
2022/11/30 |      20212 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_before_top.pl
2022/11/30 |      20187 | macros/texinfo/texinfo/tp/t/results/moresectioning/nodes_after_top_before_section_use_nodes_chapter.pl
2022/11/30 |      20163 | macros/texinfo/texinfo/tp/t/results/moresectioning/nodes_after_top_before_chapter_use_nodes_chapter.pl
2022/11/30 |       2012 | macros/texinfo/texinfo/tp/t/results/verb/verb_and_char_end_of_line_not_closed.pl
2022/11/30 |       2012 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_nodes/double_contents_toc.html
2022/11/30 |        200 | macros/texinfo/texinfo/tp/t/input_files/defxcond.texi
2022/11/30 |       2007 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_section/double_contents_toc.html
2022/11/30 |     200760 | macros/latex/base/latexsym.pdf
2022/11/30 |       2006 | macros/texinfo/texinfo/tp/t/results/latex_tests/example_in_cartouche/res_latex/example_in_cartouche.tex
2022/11/30 |      20038 | macros/texinfo/texinfo/tp/t/results/docbook_tests/multiple_documentlanguage.pl
2022/11/30 |        199 | macros/texinfo/texinfo/tp/t/results/converters_tests/empty/res_xml/empty.xml
2022/11/30 |       1998 | macros/texinfo/texinfo/tp/t/results/include/include_with_setfilename.pl
2022/11/30 |      19978 | macros/texinfo/texinfo/tp/t/results/latex_tests/fonttextsize.pl
2022/11/30 |      19970 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_after_top_before_chapter_not_split_no_use_node_directions.pl
2022/11/30 |       1995 | macros/texinfo/texinfo/tp/t/input_files/test_refs.texi
2022/11/30 |       1994 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/element_types.txt
2022/11/30 |       1993 | macros/texinfo/texinfo/tp/t/results/sectioning/node_empty_direction.pl
2022/11/30 |       1992 | macros/texinfo/texinfo/tp/t/results/coverage/setfilename_in_paragraph.pl
2022/11/30 |       1990 | macros/texinfo/texinfo/tp/t/results/indices/def_existing_index.pl
2022/11/30 |        198 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_table/index_table.2
2022/11/30 |     198748 | macros/texinfo/texinfo/tp/t/results/def/all_commands_printindex.pl
2022/11/30 |      19853 | macros/latex/base/ltkeys.dtx
2022/11/30 |       1976 | macros/texinfo/texinfo/tp/t/results/xml_tests/node_no_section.pl
2022/11/30 |      19745 | macros/texinfo/texinfo/tp/t/results/indices/index_entry_before_node.pl
2022/11/30 |      19731 | macros/texinfo/texinfo/tp/t/results/moresectioning/nodes_after_top_before_section_use_nodes.pl
2022/11/30 |      19723 | macros/texinfo/texinfo/tp/t/results/sectioning/space_in_node.pl
2022/11/30 |      19613 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin2_latin2_in_refs.pl
2022/11/30 |       1953 | macros/texinfo/texinfo/tp/t/results/sectioning/empty_anchor.pl
2022/11/30 |       1949 | macros/texinfo/texinfo/tp/t/results/coverage_braces/space_in_anchor.pl
2022/11/30 |      19479 | macros/texinfo/texinfo/tp/t/results/sectioning/character_and_spaces_in_node.pl
2022/11/30 |     194605 | macros/texinfo/texinfo/po/zh_CN.po
2022/11/30 |    1943672 | macros/latex/required/babel/base.zip
2022/11/30 |     194131 | macros/texinfo/texinfo/po/es.po
2022/11/30 |       1937 | macros/latex/base/minimal.cls
2022/11/30 |      19373 | macros/texinfo/texinfo/tp/t/results/formats_encodings/weird_accents_disable_encoding.pl
2022/11/30 |       1935 | macros/texinfo/texinfo/tp/t/results/value/simple.pl
2022/11/30 |      19332 | macros/latex/base/ltnews36.tex
2022/11/30 |      19323 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/s_002d_002dect_002cion.html
2022/11/30 |      19313 | macros/texinfo/texinfo/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage.pl
2022/11/30 |      19302 | macros/texinfo/texinfo/po_document/no.us-ascii.po
2022/11/30 |       1926 | macros/texinfo/texinfo/tp/t/results/converters_tests/printindex_merged_indices_code_style/res_latex/printindex_merged_indices_code_style.tex
2022/11/30 |      19225 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/first-before-top.html
2022/11/30 |      19225 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/first-before-top.html
2022/11/30 |      19209 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/macro.c
2022/11/30 |      19188 | macros/texinfo/texinfo/tp/t/results/indices/transparent_sort_chars.pl
2022/11/30 |      19165 | macros/texinfo/texinfo/po_document/texinfo_document.pot
2022/11/30 |      19161 | macros/texinfo/texinfo/tp/t/results/moresectioning/nodes_after_top_before_section.pl
2022/11/30 |       1914 | macros/texinfo/texinfo/tp/tests/layout/res_parser/navigation_test_misc_file_collision/subsection.html
2022/11/30 |      19146 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/on_def_line.pl
2022/11/30 |      19139 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/subsection.html
2022/11/30 |      19137 | macros/texinfo/texinfo/tp/t/results/moresectioning/nodes_after_top_before_chapter.pl
2022/11/30 |      19120 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_before_after_top_xref.pl
2022/11/30 |      19104 | macros/texinfo/texinfo/po/hu.gmo
2022/11/30 |       1908 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_and_setchapternewpage_on/res_latex/titlepage_and_setchapternewpage_on.tex
2022/11/30 |      19088 | macros/texinfo/texinfo/tp/t/results/coverage/formats_titles.pl
2022/11/30 |       1907 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_and_headings/res_latex/titlepage_and_headings.tex
2022/11/30 |       1906 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_command_line/index.html
2022/11/30 |       1905 | macros/texinfo/texinfo/tp/t/results/latex_tests/two_setchapternewpage_on_odd/res_latex/two_setchapternewpage_on_odd.tex
2022/11/30 |       1904 | macros/texinfo/texinfo/tp/t/results/latex_tests/no_titlepage_and_setchapternewpage_on.pl
2022/11/30 |      19040 | macros/latex/base/lppl.txt
2022/11/30 |       1901 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/index.html
2022/11/30 |      19015 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/block_not_matching.pl
2022/11/30 |     190118 | macros/latex/base/syntonly.pdf
2022/11/30 |       1900 | macros/texinfo/texinfo/tp/t/results/layout/navigation_node_no_header_vertical/res_html/index.html
2022/11/30 |      18980 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_after_top_before_chapter_not_split.pl
2022/11/30 |      18961 | macros/texinfo/texinfo/tp/t/results/sectioning/double_node_anchor_float.pl
2022/11/30 |      18944 | macros/latex/base/ltnews29.tex
2022/11/30 |       1893 | macros/texinfo/texinfo/tp/t/input_files/formatting.texi
2022/11/30 |        188 | macros/texinfo/texinfo/tp/t/input_files/contents_at_end_document_after_node.texi
2022/11/30 |       1887 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying/index.html
2022/11/30 |      18854 | macros/texinfo/texinfo/tp/Texinfo/XS/misc.c
2022/11/30 |       1884 | macros/texinfo/texinfo/tp/t/results/latex_tests/no_titlepage_and_setchapternewpage_odd/res_latex/no_titlepage_and_setchapternewpage_odd.tex
2022/11/30 |       1883 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/raw_block_on_line.pl
2022/11/30 |      18812 | macros/texinfo/texinfo/tp/t/results/formats_encodings/weird_accents.pl
2022/11/30 |       1876 | macros/texinfo/texinfo/tp/t/results/coverage_braces/too_much_args.pl
2022/11/30 |      18753 | macros/latex/base/ifthen.dtx
2022/11/30 |     187536 | macros/texinfo/texinfo/po/eo.po
2022/11/30 |       1871 | macros/texinfo/texinfo/tp/t/results/latex_tests/pagetype/res_latex/pagetype.tex
2022/11/30 |      18718 | macros/texinfo/texinfo/tp/t/results/latex_tests/nested_enumerate.pl
2022/11/30 |      18711 | macros/latex/base/ltexpl.dtx
2022/11/30 |       1868 | macros/texinfo/texinfo/tp/t/results/latex_tests/shorttitlepage/res_latex/shorttitlepage.tex
2022/11/30 |      18688 | macros/texinfo/texinfo/tp/t/results/converters_tests/index_entry_in_preformatted.pl
2022/11/30 |       1865 | macros/texinfo/texinfo/tp/t/results/latex_tests/fonttextsize/res_latex/fonttextsize.tex
2022/11/30 |       1865 | macros/texinfo/texinfo/tp/maintain/all_tests.sh
2022/11/30 |       1863 | macros/texinfo/texinfo/tp/t/95moreindices.t
2022/11/30 |       1861 | macros/texinfo/texinfo/tp/t/results/info_tests/no_node_but_top.pl
2022/11/30 |      18610 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/subsubsection-_0060_0060simple_002ddouble_002d_002d.html
2022/11/30 |       1860 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region/index.html
2022/11/30 |      18607 | macros/texinfo/texinfo/tp/t/results/latex_tests/enumerate_arguments.pl
2022/11/30 |        185 | macros/texinfo/texinfo/tp/t/input_files/documentlanguage_set.texi
2022/11/30 |      18584 | macros/texinfo/texinfo/tp/t/results/moresectioning/two_footnotes_in_nodes_separated.pl
2022/11/30 |      18556 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.html
2022/11/30 |      18555 | macros/texinfo/texinfo/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage_chap.pl
2022/11/30 |       1854 | macros/texinfo/texinfo/tp/t/results/latex_tests/settitle_and_headings/res_latex/settitle_and_headings.tex
2022/11/30 |       1850 | macros/texinfo/texinfo/tp/t/results/menu/menu_no_closed_in_entry.pl
2022/11/30 |      18461 | macros/texinfo/texinfo/tp/t/results/itemize/itemize_in_example.pl
2022/11/30 |       1844 | macros/texinfo/texinfo/tp/t/results/macro/empty_end.pl
2022/11/30 |       1842 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_utf8_in_refs/res_info/char_latin1_utf8_in_refs.info
2022/11/30 |      18399 | macros/latex/base/nfssfont.dtx
2022/11/30 |       1837 | macros/texinfo/texinfo/tp/t/results/latex_tests/informative_commands_in_top_node/res_latex/informative_commands_in_top_node.tex
2022/11/30 |      18363 | macros/latex/base/ltxref.dtx
2022/11/30 |       1835 | macros/texinfo/texinfo/tp/t/results/misc_commands/clickstyle.pl
2022/11/30 |     183474 | macros/texinfo/texinfo/po/cs.po
2022/11/30 |      18330 | macros/texinfo/texinfo/util/txixml2texi.pl
2022/11/30 |     183047 | macros/texinfo/texinfo/po/id.po
2022/11/30 |      18299 | macros/latex/base/ltx3info.tex
2022/11/30 |     182935 | macros/latex/base/ltcmd.dtx
2022/11/30 |      18282 | macros/texinfo/texinfo/tp/Texinfo/Translations.pm
2022/11/30 |       1827 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_latex/osé_utf8.tex
2022/11/30 |       1825 | macros/texinfo/texinfo/tp/t/results/converters_tests/combined_fonts/res_xml/combined_fonts.xml
2022/11/30 |       1824 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/printindex_between_part_chapter/printindex_between_part_chapter.info
2022/11/30 |      18238 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/formatting_abt.html
2022/11/30 |       1822 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_no_texi2html/index.html
2022/11/30 |      18224 | macros/texinfo/texinfo/tp/t/results/moresectioning/two_footnotes_in_nodes.pl
2022/11/30 |     182225 | macros/latex/base/ltnews13.pdf
2022/11/30 |     182052 | macros/texinfo/texinfo/po/vi.po
2022/11/30 |       1819 | macros/texinfo/texinfo/tp/t/results/latex_tests/error_in_sectioning_command/res_latex/error_in_sectioning_command.tex
2022/11/30 |      18191 | macros/texinfo/texinfo/tp/t/results/def/space_in_def_for_index.pl
2022/11/30 |      18160 | macros/texinfo/texinfo/tp/t/results/html_tests/acronym_in_node_and_section.pl
2022/11/30 |      18135 | macros/texinfo/texinfo/tp/t/results/def/omit_def_space.pl
2022/11/30 |      18131 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/formatting_abt.html
2022/11/30 |      18131 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/formatting_abt.html
2022/11/30 |     181005 | macros/texinfo/texinfo/po/nl.po
2022/11/30 |        180 | macros/texinfo/texinfo/tp/t/results/formatting/split_nocopying_split/res_info/split-nocopying.info-2
2022/11/30 |     180823 | macros/texinfo/texinfo/po/tr.po
2022/11/30 |      18063 | macros/texinfo/texinfo/tp/t/results/menu/simple.pl
2022/11/30 |       1805 | macros/texinfo/texinfo/tp/t/results/def/end_of_line_end_file.pl
2022/11/30 |       1800 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/printindex_between_node_section/printindex_between_node_section.info
2022/11/30 |       1800 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_nodes/section.html
2022/11/30 |       1795 | macros/texinfo/texinfo/tp/t/results/misc_commands/command_line_in_paragraph.pl
2022/11/30 |      17957 | macros/texinfo/texinfo/tp/t/results/indices/double_index_entry.pl
2022/11/30 |     179512 | macros/texinfo/texinfo/po/sr.po
2022/11/30 |      17909 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_classical.pl
2022/11/30 |     178723 | macros/latex/base/ltoutput.dtx
2022/11/30 |       1778 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes_nodes/another.html
2022/11/30 |      17779 | macros/latex/base/cyrguide.tex
2022/11/30 |       1776 | macros/texinfo/texinfo/tp/t/results/latex_tests/pagesizes/res_latex/pagesizes.tex
2022/11/30 |      17764 | macros/texinfo/texinfo/tp/Texinfo/Convert/NodeNameNormalization.pm
2022/11/30 |       1775 | macros/texinfo/texinfo/tp/t/results/raw/verbatim_not_closed.pl
2022/11/30 |       1767 | macros/texinfo/texinfo/tp/t/results/latex_tests/vbar_in_index/res_latex/vbar_in_index.tex
2022/11/30 |      17604 | macros/texinfo/texinfo/po/he.gmo
2022/11/30 |      17594 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_and_upper_case_commands_utf8.pl
2022/11/30 |       1758 | macros/texinfo/texinfo/tp/Texinfo/Parser.pm
2022/11/30 |      17564 | macros/texinfo/texinfo/doc/tp_api/api_includes/Texinfo-Common.texi
2022/11/30 |       1755 | macros/texinfo/texinfo/tp/t/results/layout/navigation_node_no_header/res_html/index.html
2022/11/30 |      17536 | macros/texinfo/texinfo/tp/t/results/sectioning/chapter_node_before_and_after_part.pl
2022/11/30 |     175167 | macros/texinfo/texinfo/po/sl.po
2022/11/30 |       1749 | macros/latex/contrib/kdpcover/README.md
2022/11/30 |      17487 | macros/texinfo/texinfo/tp/t/results/sectioning/chapter_between_nodes.pl
2022/11/30 |      17484 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
2022/11/30 |      17480 | macros/texinfo/texinfo/tp/t/results/sectioning/anchor_in_footnote_separate.pl
2022/11/30 |       1745 | macros/texinfo/texinfo/tp/t/results/transformations/master_menu_fr/res_html/index.html
2022/11/30 |     174494 | macros/latex/base/ltnews05.pdf
2022/11/30 |     174440 | macros/texinfo/texinfo/po/ca.po
2022/11/30 |      17443 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/sing_toc.htm
2022/11/30 |      17441 | macros/texinfo/texinfo/configure.ac
2022/11/30 |      17415 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/sing_fot.htm
2022/11/30 |       1740 | macros/texinfo/texinfo/tp/t/results/latex_tests/no_titlepage_and_setchapternewpage_odd.pl
2022/11/30 |     174019 | macros/texinfo/texinfo/po/ja.po
2022/11/30 |       1738 | macros/texinfo/texinfo/tp/t/results/coverage/hyphenation.pl
2022/11/30 |      17389 | macros/latex/base/ltbibl.dtx
2022/11/30 |      17369 | macros/texinfo/texinfo/tp/t/results/info_tests/ref_tests.pl
2022/11/30 |       1732 | macros/texinfo/texinfo/tp/t/results/include/include_at_end_line.pl
2022/11/30 |      17303 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/index.htm
2022/11/30 |     172909 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_deffn/nested_formats.html
2022/11/30 |     172867 | macros/latex/base/tlc2.err
2022/11/30 |       1727 | macros/texinfo/texinfo/tp/t/results/macro/unknown_macro_on_line_command.pl
2022/11/30 |     172328 | macros/texinfo/texinfo/tp/t/results/morecoverage/formatting_fr.pl
2022/11/30 |      17202 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_abt.xhtml
2022/11/30 |       1715 | macros/texinfo/texinfo/tp/t/results/sectioning/unnumbered_no_argument.pl
2022/11/30 |       1711 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/multiline_verb_after_space.pl
2022/11/30 |      17119 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/formatting_abt.html
2022/11/30 |     171130 | macros/texinfo/texinfo/po/nb.po
2022/11/30 |     171070 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.html
2022/11/30 |      17100 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split/res_html/index.html
2022/11/30 |     170878 | macros/latex/base/lamport-manual.pdf
2022/11/30 |     170595 | macros/latex/base/docstrip.dtx
2022/11/30 |     170473 | macros/latex/base/ltnews14.pdf
2022/11/30 |      17033 | macros/texinfo/texinfo/tp/t/results/indices/index_entries_locations.pl
2022/11/30 |       1699 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_before_after_top/res_latex/nodes_before_after_top.tex
2022/11/30 |      16996 | macros/texinfo/texinfo/tp/t/results/layout/no_monolithic.pl
2022/11/30 |      16977 | macros/texinfo/texinfo/tp/t/results/sectioning/chapter_before_and_after_part.pl
2022/11/30 |       1696 | macros/texinfo/texinfo/tp/t/results/raw/tex_not_closed.pl
2022/11/30 |      16969 | macros/texinfo/texinfo/tp/t/results/html_tests/test_xrefautomaticsectiontitle_off_first.pl
2022/11/30 |       1694 | macros/texinfo/texinfo/tp/Texinfo/Convert/PlainTexinfo.pm
2022/11/30 |       1694 | macros/latex/base/small2e.tex
2022/11/30 |     169416 | macros/latex/base/ltnews10.pdf
2022/11/30 |       1691 | macros/texinfo/texinfo/tp/t/results/sectioning/section_chapter_before_top_nodes/res_latex/section_chapter_before_top_nodes.tex
2022/11/30 |      16902 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/s_002d_002dect_002cion.html
2022/11/30 |       1687 | macros/texinfo/texinfo/tp/t/results/sectioning/node_sectop_before_lone_node_Top/res_latex/node_sectop_before_lone_node_Top.tex
2022/11/30 |      16870 | macros/texinfo/texinfo/tp/t/results/preformatted/nested_example_and_comment.pl
2022/11/30 |       1686 | macros/texinfo/texinfo/tp/t/results/raw/raw_not_closed.pl
2022/11/30 |       1686 | macros/texinfo/texinfo/tp/t/results/columnfractions/out_of_multitable.pl
2022/11/30 |      16851 | macros/texinfo/texinfo/tp/t/results/menu/simple_no_menu.pl
2022/11/30 |       1684 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_before_top/res_latex/nodes_before_top.tex
2022/11/30 |       1684 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs/res_html/c.html
2022/11/30 |      16827 | macros/texinfo/texinfo/tp/t/results/init_files_tests/documentation_examples.pl
2022/11/30 |      16821 | macros/texinfo/texinfo/tp/t/results/moreindices/index_no_node/res_html/index.html
2022/11/30 |       1679 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_utf8_in_refs/res_html/c.html
2022/11/30 |      16791 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/sing_ovr.htm
2022/11/30 |       1676 | macros/texinfo/texinfo/tp/t/results/info_tests/only_documentencoding.pl
2022/11/30 |      16746 | macros/texinfo/texinfo/tp/t/results/value/set_on_item_line.pl
2022/11/30 |      16721 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/itemize_in_headitem_in_example.pl
2022/11/30 |      16689 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/formatting_fot.html
2022/11/30 |      16689 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/formatting_fot.html
2022/11/30 |     166875 | macros/texinfo/texinfo/po/he.po
2022/11/30 |      16683 | macros/texinfo/texinfo/tp/t/results/value/value_node_directions.pl
2022/11/30 |       1667 | macros/texinfo/texinfo/tp/t/results/itemize/not_closed_itemize.pl
2022/11/30 |     166612 | macros/texinfo/texinfo/po/rw.po
2022/11/30 |     166591 | macros/texinfo/texinfo/tp/t/results/def/all_commands.pl
2022/11/30 |     166228 | macros/latex/base/ltnews17.pdf
2022/11/30 |       1661 | macros/texinfo/texinfo/tp/t/results/sectioning/node.pl
2022/11/30 |      16614 | macros/texinfo/texinfo/tp/t/results/def/all_empty_def.pl
2022/11/30 |       1659 | macros/texinfo/texinfo/tp/t/results/indices/printindex_before_document.pl
2022/11/30 |     165966 | macros/texinfo/texinfo/po/ro.po
2022/11/30 |     165821 | macros/latex/base/makeindx.pdf
2022/11/30 |       1656 | macros/texinfo/texinfo/tp/t/results/verb/multiline.pl
2022/11/30 |      16563 | macros/texinfo/texinfo/tp/t/results/latex_tests/brace_in_index.pl
2022/11/30 |      16561 | macros/texinfo/texinfo/tp/t/results/regions/ref_in_copying.pl
2022/11/30 |    1654117 | macros/latex/contrib/proflycee.zip
2022/11/30 |       1653 | macros/texinfo/texinfo/tp/t/results/sectioning/chapter_between_nodes/res_latex/chapter_between_nodes.tex
2022/11/30 |      16538 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split_nodes/res_html/index.html
2022/11/30 |       1652 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs/res_info/char_latin1_latin1_in_refs.info
2022/11/30 |       1651 | macros/texinfo/texinfo/tp/t/results/sectioning/loop_nodes/res_latex/loop_nodes.tex
2022/11/30 |      16502 | macros/texinfo/texinfo/tp/Texinfo/Convert/Utils.pm
2022/11/30 |      16497 | macros/latex/base/modguide.tex
2022/11/30 |      16480 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/at_commands_glued_in_example.pl
2022/11/30 |       1647 | macros/texinfo/texinfo/tp/t/results/menu/menu_no_closed_entry_beginning.pl
2022/11/30 |      16470 | macros/texinfo/texinfo/tp/t/results/menu/menu_entry_node_comments.pl
2022/11/30 |       1646 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying/index_special_region-no_insertcopying.info
2022/11/30 |      16459 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/s_002d_002dect_002cion.html
2022/11/30 |      16459 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/s_002d_002dect_002cion.html
2022/11/30 |      16423 | macros/texinfo/texinfo/tp/t/results/xtable/inter_item_commands_in_table_in_example.pl
2022/11/30 |       1641 | macros/texinfo/texinfo/tp/t/results/conditionals/comment_on_ifset_line.pl
2022/11/30 |      16409 | macros/texinfo/texinfo/tp/t/results/html_tests/test_xrefautomaticsectiontitle.pl
2022/11/30 |      16406 | macros/texinfo/texinfo/tp/t/results/sectioning/in_menu_only_special_ascii_spaces_node.pl
2022/11/30 |      16403 | macros/texinfo/texinfo/tp/t/results/sectioning/protected_node_parentheses.pl
2022/11/30 |        163 | macros/texinfo/texinfo/tp/t/input_files/split_nocopying.texi
2022/11/30 |      16375 | macros/texinfo/texinfo/tp/t/results/itemize/enumerate_and_empty_lines.pl
2022/11/30 |     163432 | macros/texinfo/texinfo/po/de.po
2022/11/30 |       1630 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_latin1/res_html/_21d2-_00b0-a-b-aa.html
2022/11/30 |       1627 | macros/texinfo/texinfo/tp/t/results/latex_tests/verbatim_in_smallformat/res_latex/verbatim_in_smallformat.tex
2022/11/30 |     162772 | macros/latex/base/tulm.pdf
2022/11/30 |      16266 | macros/texinfo/texinfo/tp/t/results/sectioning/anchor_in_footnote.pl
2022/11/30 |      16259 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/formatting_toc.html
2022/11/30 |      16250 | macros/texinfo/texinfo/tp/t/results/sectioning/no_menu.pl
2022/11/30 |       1624 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_utf8/res_html/_21d2-_00b0-a-b-aa.html
2022/11/30 |      16232 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/formatting_toc.html
2022/11/30 |      16232 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/formatting_toc.html
2022/11/30 |       1622 | macros/texinfo/texinfo/tp/t/results/html_tests/mathjax_with_texinfo_enable_encoding/res_latex/mathjax_with_texinfo_enable_encoding.tex
2022/11/30 |       1621 | macros/texinfo/texinfo/tp/t/results/moresectioning/equivalent_nodes_no_node/res_html/equivalent_nodes.html
2022/11/30 |       1621 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_region/index_special_region-no_section.info
2022/11/30 |     162152 | systems/texlive/tlnet/archive/polyglossia.source.r65144.tar.xz
2022/11/30 |     161713 | macros/latex/base/graphpap.pdf
2022/11/30 |       1616 | macros/texinfo/texinfo/tp/t/results/sectioning/section_before_after_top_node_last_node/res_latex/section_before_after_top_node_last_node.tex
2022/11/30 |     161518 | macros/latex/base/ltnews01.pdf
2022/11/30 |       1614 | macros/texinfo/texinfo/tp/t/results/misc_commands/author_outside_titlepage_quotation.pl
2022/11/30 |      16140 | macros/texinfo/texinfo/texindex/texindex.awk
2022/11/30 |       1613 | macros/texinfo/texinfo/tp/t/results/coverage/flushright_not_closed.pl
2022/11/30 |      16122 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/subsection.html
2022/11/30 |      16122 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/subsection.html
2022/11/30 |       1611 | macros/texinfo/texinfo/tp/t/results/sectioning/section_before_after_top_node/res_latex/section_before_after_top_node.tex
2022/11/30 |       1608 | macros/texinfo/texinfo/tp/t/results/sectioning/lone_Top_node/res_latex/lone_Top_node.tex
2022/11/30 |       1606 | macros/texinfo/texinfo/tp/t/input_files/index_split.texi
2022/11/30 |       1599 | macros/texinfo/texinfo/tp/t/input_files/bib-example.texi
2022/11/30 |      15999 | macros/texinfo/texinfo/tp/t/results/moresectioning/top_node_up_explicit.pl
2022/11/30 |      15994 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
2022/11/30 |      15987 | macros/texinfo/texinfo/tp/t/results/sectioning/lone_Top_node.pl
2022/11/30 |       1597 | macros/texinfo/texinfo/tp/t/results/sectioning/top_node_part_top/res_latex/top_node_part_top.tex
2022/11/30 |     159792 | macros/latex/base/ltnews02.pdf
2022/11/30 |      15962 | macros/texinfo/texinfo/po_document/uk.gmo
2022/11/30 |      15942 | macros/texinfo/texinfo/tp/t/02coverage.t
2022/11/30 |     159415 | macros/texinfo/texinfo/doc/texi2any_api.texi
2022/11/30 |       1593 | macros/texinfo/texinfo/tp/t/results/converters_tests/simplest_no_node_section/res_latex/simplest_no_node_section.tex
2022/11/30 |     159332 | macros/latex/base/ltnews03.pdf
2022/11/30 |       1591 | macros/texinfo/texinfo/tp/t/results/sectioning/node_sectop_before_chapter_no_node/res_latex/node_sectop_before_chapter_no_node.tex
2022/11/30 |       1582 | macros/texinfo/texinfo/tp/t/results/regions/copying_not_closed.pl
2022/11/30 |       1580 | macros/texinfo/texinfo/tp/t/results/menu/menu_no_closed_star.pl
2022/11/30 |     157547 | macros/texinfo/texinfo/po/hr.po
2022/11/30 |      15712 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_fot.xhtml
2022/11/30 |     157047 | macros/texinfo/texinfo/po/hu.po
2022/11/30 |      15699 | macros/latex/base/slifonts.fdd
2022/11/30 |       1568 | macros/texinfo/texinfo/tp/t/results/latex_tests/no_titlepage_and_setchapternewpage_on/res_latex/no_titlepage_and_setchapternewpage_on.tex
2022/11/30 |       1567 | macros/texinfo/texinfo/tp/t/results/value/empty_value_in_line.pl
2022/11/30 |      15675 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/subsubsection-_0060_0060simple_002ddouble_002d_002d.html
2022/11/30 |      15675 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/subsubsection-_0060_0060simple_002ddouble_002d_002d.html
2022/11/30 |       1566 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs/res_html/index.html
2022/11/30 |     156551 | macros/latex/base/ltnews12.pdf
2022/11/30 |       1563 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_ignored_raw_two_char_not_in_command.pl
2022/11/30 |       1563 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_ignored_raw_two_char_before_command.pl
2022/11/30 |       1563 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_ignored_raw_one_char_not_in_command.pl
2022/11/30 |       1563 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_ignored_raw_one_char_before_command.pl
2022/11/30 |      15634 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.html
2022/11/30 |      15634 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.html
2022/11/30 |      15633 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/formatting_ovr.html
2022/11/30 |       1562 | macros/texinfo/texinfo/tp/t/results/verb/verb_not_closed.pl
2022/11/30 |     156236 | macros/latex/base/classes.dtx
2022/11/30 |      15594 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/formatting_ovr.html
2022/11/30 |      15594 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/formatting_ovr.html
2022/11/30 |      15591 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
2022/11/30 |       1558 | macros/texinfo/texinfo/tp/t/results/indices/unknown_synindex.pl
2022/11/30 |     155861 | macros/texinfo/texinfo/tp/Texinfo/Convert/LaTeX.pm
2022/11/30 |      15583 | macros/texinfo/texinfo/tp/t/results/moreindices/double_index_entry.pl
2022/11/30 |      15547 | macros/texinfo/texinfo/tp/t/results/coverage/formats_only_title_comments.pl
2022/11/30 |       1553 | macros/texinfo/texinfo/tp/t/results/coverage/group_not_closed.pl
2022/11/30 |      15518 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/index.html
2022/11/30 |      15514 | macros/texinfo/texinfo/tp/t/results/sectioning/double_recursive_self_section_node_reference.pl
2022/11/30 |      15513 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split_nodes/res_html/node-2-in-section-3.html
2022/11/30 |     155074 | macros/texinfo/texinfo/po/pt.po
2022/11/30 |     155053 | macros/latex/base/ltnews08.pdf
2022/11/30 |      15500 | macros/texinfo/texinfo/tp/Texinfo/Convert/ParagraphNonXS.pm
2022/11/30 |      15494 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/nested_multitable.pl
2022/11/30 |       1548 | macros/texinfo/texinfo/tp/t/results/converters_tests/minimal_empty_with_input/res_latex/minimal_empty_with_input.tex
2022/11/30 |       1548 | macros/texinfo/texinfo/tp/t/results/converters_tests/minimal_empty_with_bye/res_latex/minimal_empty_with_bye.tex
2022/11/30 |       1548 | macros/texinfo/texinfo/tp/t/results/converters_tests/minimal_empty_empty/res_latex/minimal_empty_empty.tex
2022/11/30 |       1548 | macros/texinfo/texinfo/tp/t/results/converters_tests/empty/res_latex/empty.tex
2022/11/30 |     154191 | macros/texinfo/texinfo/po/pt_BR.po
2022/11/30 |        153 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_one_node/index_one_node.2
2022/11/30 |      15369 | macros/texinfo/texinfo/tp/t/results/sectioning/equivalent_labels.pl
2022/11/30 |      15349 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_toc.xhtml
2022/11/30 |      15342 | macros/texinfo/texinfo/tp/t/results/itemize/itemize_long_item.pl
2022/11/30 |     153385 | macros/texinfo/texinfo/po/it.po
2022/11/30 |     153368 | macros/texinfo/texinfo/po/da.po
2022/11/30 |      15333 | macros/texinfo/texinfo/tp/t/results/def/defx_after_empty_line_in_example.pl
2022/11/30 |      15306 | macros/latex/base/source2e.tex
2022/11/30 |       1526 | macros/texinfo/texinfo/tp/t/results/sectioning/sections.pl
2022/11/30 |     152525 | macros/latex/base/ltnews04.pdf
2022/11/30 |      15247 | graphics/circuit_macros/examples/dpv/quick.xsvg
2022/11/30 |      15247 | graphics/circuit_macros/examples/dpv/quick.svg
2022/11/30 |       1522 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/element_types.h
2022/11/30 |      15220 | macros/texinfo/texinfo/tp/t/results/converters_tests/inline_expand_tex.pl
2022/11/30 |      15220 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/formatting_toc.html
2022/11/30 |      15216 | macros/texinfo/texinfo/tp/t/results/macro/macro_expansion.pl
2022/11/30 |      15190 | macros/texinfo/texinfo/tp/t/results/info_tests/direntry_dircategory_and_commands.pl
2022/11/30 |     151702 | macros/texinfo/texinfo/tp/t/results/itemize/enumerate_letters.pl
2022/11/30 |      15119 | macros/texinfo/texinfo/tp/t/results/indices/seealso_duplicate.pl
2022/11/30 |     150973 | macros/texinfo/texinfo/tp/t/results/morecoverage/texi_formatting.pl
2022/11/30 |       1508 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/ignored_text.pl
2022/11/30 |    1508756 | systems/texlive/tlnet/archive/eolang.doc.r65142.tar.xz
2022/11/30 |      15052 | macros/texinfo/texinfo/tp/t/results/float/float_with_at_commands.pl
2022/11/30 |      15047 | macros/latex/base/ltnews28.tex
2022/11/30 |       1498 | macros/texinfo/texinfo/tp/t/results/coverage/command_in_end_ignored_raw_in_command.pl
2022/11/30 |      14988 | macros/texinfo/texinfo/tp/t/results/def/not_closed.pl
2022/11/30 |      14982 | macros/texinfo/texinfo/tp/t/results/converters_tests/line_breaks.pl
2022/11/30 |       1494 | macros/texinfo/texinfo/tp/t/results/misc_commands/synindex_too_much_args.pl
2022/11/30 |      14911 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
2022/11/30 |      14905 | macros/texinfo/texinfo/tp/t/results/xtable/empty_item_itemx.pl
2022/11/30 |      14884 | systems/texlive/tlnet/archive/eolang.source.r65142.tar.xz
2022/11/30 |       1487 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/ignore_and_comments_output/ignore_and_comments.html
2022/11/30 |      14869 | macros/texinfo/texinfo/po_document/ro.gmo
2022/11/30 |     148294 | macros/latex/base/ltoutenc.dtx
2022/11/30 |      14816 | macros/texinfo/texinfo/tp/t/results/sectioning/node_nested_parentheses.pl
2022/11/30 |      14793 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-_0060_0060simple_002ddouble_002d_002d.xhtml
2022/11/30 |      14792 | macros/texinfo/texinfo/tp/t/results/converters_tests/inlinefmtifelse.pl
2022/11/30 |     147905 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_macro_expand/formatting.texi
2022/11/30 |      14771 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.xhtml
2022/11/30 |     147627 | macros/texinfo/texinfo/tp/tests/Makefile.in
2022/11/30 |      14760 | macros/texinfo/texinfo/tp/t/results/info_tests/error_in_footnote.pl
2022/11/30 |      14748 | macros/latex/base/ltvers.dtx
2022/11/30 |     147401 | macros/texinfo/texinfo/po/fr.po
2022/11/30 |     147067 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_example/nested_formats.html
2022/11/30 |      14701 | macros/texinfo/texinfo/tp/t/results/def/end_of_lines_protected_in_footnote.pl
2022/11/30 |     146864 | macros/texinfo/texinfo/po/zh_TW.po
2022/11/30 |      14668 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.html
2022/11/30 |      14646 | macros/texinfo/texinfo/tp/t/results/def/def_defx_mismatch.pl
2022/11/30 |      14638 | macros/texinfo/texinfo/tp/t/results/sectioning/top_part_chapter.pl
2022/11/30 |      14637 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting_ovr.xhtml
2022/11/30 |      14630 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/subsubsection-_0060_0060simple_002ddouble_002d_002d.html
2022/11/30 |      14628 | macros/texinfo/texinfo/po_document/hr.gmo
2022/11/30 |     146198 | macros/latex/base/webcomp.pdf
2022/11/30 |      14615 | macros/texinfo/texinfo/po_document/fr.gmo
2022/11/30 |       1460 | macros/texinfo/texinfo/tp/Texinfo/MiscXS.pm
2022/11/30 |      14609 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/subsection.xhtml
2022/11/30 |     145878 | macros/texinfo/texinfo/tp/t/results/sectioning/sectioning_part_appendix.pl
2022/11/30 |      14569 | macros/texinfo/texinfo/po_document/cs.gmo
2022/11/30 |      14566 | macros/texinfo/texinfo/tp/t/results/menu/menu_entry_node.pl
2022/11/30 |      14565 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/s_002d_002dect_002cion.xhtml
2022/11/30 |      14555 | macros/texinfo/texinfo/tp/t/results/latex_tests/anchor_in_copying_insertcopying_chap.pl
2022/11/30 |      14545 | macros/texinfo/texinfo/tp/t/info_tests.t
2022/11/30 |      14544 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/formatting_ovr.html
2022/11/30 |     145359 | macros/texinfo/texinfo/tp/t/results/misc_commands/codequoteundirected_codequotebacktick.pl
2022/11/30 |       1452 | macros/texinfo/texinfo/tp/t/results/conditionals/ignore_not_closed.pl
2022/11/30 |      14466 | macros/texinfo/texinfo/tp/t/results/float/empty_listoffloats_with_floats.pl
2022/11/30 |      14464 | macros/texinfo/texinfo/tp/t/results/def/defx_after_preformatted_with_text.pl
2022/11/30 |      14464 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/subsection.html
2022/11/30 |      14454 | macros/texinfo/texinfo/po_document/it.gmo
2022/11/30 |      14443 | macros/texinfo/texinfo/tp/t/results/def/defx_after_comment_in_example.pl
2022/11/30 |      14440 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/anchor.html
2022/11/30 |      14428 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/subsubsection-_0060_0060simple_002ddouble_002d_002d.html
2022/11/30 |      14427 | macros/texinfo/texinfo/po_document/pl.gmo
2022/11/30 |      14421 | macros/texinfo/texinfo/tp/t/results/regions/anchor_in_copying_in_footnote.pl
2022/11/30 |      14421 | macros/latex/base/lppl-1-2.txt
2022/11/30 |      14420 | macros/texinfo/texinfo/tp/t/results/include/macro_in_early_commands.pl
2022/11/30 |       1441 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_latin1/res_html/_2265-_2264-_2192.html
2022/11/30 |      14412 | macros/texinfo/texinfo/tp/t/results/coverage/displaymath.pl
2022/11/30 |      14406 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/subsubsection-three_002d_002d_002dfour_002d_002d_002d_002d_0027_0027.html
2022/11/30 |        143 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_no_setfilename_test_rawtext/osé_utf8_no_setfilename.2
2022/11/30 |      14386 | macros/texinfo/texinfo/tp/t/results/indices/syncodeindex_to_plain.pl
2022/11/30 |     143684 | macros/latex/base/ltclass.dtx
2022/11/30 |       1435 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_utf8/res_html/_2265-_2264-_2192.html
2022/11/30 |      14356 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/anchor.html
2022/11/30 |     143542 | macros/texinfo/texinfo/po/pl.po
2022/11/30 |      14341 | macros/latex/base/lppl-1-1.txt
2022/11/30 |     143369 | macros/texinfo/texinfo/tp/Texinfo/Convert/Plaintext.pm
2022/11/30 |      14328 | macros/texinfo/texinfo/tp/t/results/def/no_category_or_no_name.pl
2022/11/30 |      14326 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/index.html
2022/11/30 |       1428 | macros/texinfo/texinfo/tp/t/results/conditionals/false_format_not_closed.pl
2022/11/30 |     142849 | macros/latex/base/ltnews06.pdf
2022/11/30 |      14262 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/anchor.html
2022/11/30 |      14262 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/anchor.html
2022/11/30 |      14262 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/anchor.html
2022/11/30 |       1425 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_latin1/res_html/_00aa-_00ba-_2605-_00a3-_22a3-_00bf-_00ae.html
2022/11/30 |      14257 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/del_quote_linebreaking.pl
2022/11/30 |      14247 | macros/texinfo/texinfo/po_document/sv.gmo
2022/11/30 |      14244 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/subsection.html
2022/11/30 |      14244 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/index.html
2022/11/30 |      14200 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/s_002d_002dect_002cion.html
2022/11/30 |       1419 | macros/texinfo/texinfo/tp/t/results/formats_encodings/at_commands_in_refs_utf8/res_html/_00aa-_00ba-_2605-_00a3-_22a3-_00bf-_00ae.html
2022/11/30 |      14170 | macros/texinfo/texinfo/tp/t/html_tests.t
2022/11/30 |       1416 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_no_node_no_top/index_no_node_no_top.2
2022/11/30 |      14168 | macros/texinfo/texinfo/po/zh_TW.gmo
2022/11/30 |      14166 | macros/texinfo/texinfo/tp/t/results/def/empty_def_command.pl
2022/11/30 |      14157 | macros/texinfo/texinfo/tp/t/results/macro/complex_argument.pl
2022/11/30 |     141263 | macros/texinfo/texinfo/tp/t/results/float/complex_float.pl
2022/11/30 |      14116 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top/res_html/index.html
2022/11/30 |      14091 | macros/latex/base/ltpage.dtx
2022/11/30 |      14079 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/close.c
2022/11/30 |     140259 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/index.html
2022/11/30 |     140259 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/index.html
2022/11/30 |      13951 | macros/texinfo/texinfo/tp/t/results/sectioning/contents_at_end_document_after_node.pl
2022/11/30 |       1394 | macros/texinfo/texinfo/tp/t/results/misc_commands/defindex_too_much_args.pl
2022/11/30 |       1390 | macros/texinfo/texinfo/tp/t/results/raw/displaymath_not_closed.pl
2022/11/30 |       1389 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/formatting.hhc
2022/11/30 |     138815 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/formatting.html
2022/11/30 |      13873 | macros/texinfo/texinfo/tp/t/results/coverage/math.pl
2022/11/30 |      13862 | macros/texinfo/texinfo/tp/t/results/html_tests/verbatim_in_multitable_in_example.pl
2022/11/30 |       1382 | macros/texinfo/texinfo/tp/t/input_files/nodes_before_top_and_sections.texi
2022/11/30 |     138073 | macros/latex/base/ltnews16.pdf
2022/11/30 |      13787 | macros/texinfo/texinfo/tp/t/results/def/wrong_braces_with_end_of_lines.pl
2022/11/30 |      13781 | macros/texinfo/texinfo/tp/t/results/float/cindex_in_caption.pl
2022/11/30 |     137811 | macros/latex/base/ltnews07.pdf
2022/11/30 |       1376 | macros/texinfo/texinfo/tp/t/init_files_tests.t
2022/11/30 |      13759 | macros/latex/base/lamport-manual.err
2022/11/30 |       1374 | macros/texinfo/texinfo/tp/t/results/coverage_braces/math_leading_trailing_spaces.pl
2022/11/30 |      13720 | macros/texinfo/texinfo/tp/t/results/misc_commands/invalid_documentencoding.pl
2022/11/30 |      13678 | macros/texinfo/texinfo/po_document/sr.gmo
2022/11/30 |      13627 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl
2022/11/30 |       1359 | macros/texinfo/texinfo/tp/t/results/value/not_only_characters.pl
2022/11/30 |      13595 | macros/texinfo/texinfo/tp/t/results/misc_commands/ref_in_center.pl
2022/11/30 |      13589 | macros/latex/base/proc.dtx
2022/11/30 |      13578 | macros/texinfo/texinfo/tp/t/results/coverage/symbol_after_command.pl
2022/11/30 |      13568 | macros/texinfo/texinfo/README-hacking
2022/11/30 |      13561 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/style_not_closed_no_newline_root_commands.pl
2022/11/30 |      13552 | macros/texinfo/texinfo/tp/t/results/coverage/commands.pl
2022/11/30 |      13550 | macros/texinfo/texinfo/tp/t/results/moresectioning/top_node_up_implicit.pl
2022/11/30 |       1353 | macros/texinfo/texinfo/tp/t/results/macro/macro_not_closed.pl
2022/11/30 |       1353 | macros/texinfo/texinfo/tp/t/results/coverage/spaces_no_brace_after_braced_command.pl
2022/11/30 |       1352 | macros/texinfo/texinfo/tp/t/results/indices/unknown_printindex.pl
2022/11/30 |      13523 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_nodes/res_html/index.html
2022/11/30 |       1350 | macros/texinfo/texinfo/tp/t/results/misc_commands/empty_documentencoding.pl
2022/11/30 |      13420 | macros/texinfo/texinfo/tp/t/results/sectioning/top_node_no_menu_direction.pl
2022/11/30 |       1341 | macros/latex/base/ltnews18.tex
2022/11/30 |       1340 | macros/texinfo/texinfo/tp/t/results/conditionals/empty_set_in_ifset.pl
2022/11/30 |      13395 | macros/texinfo/texinfo/tp/t/results/regions/anchor_in_titlepage_titlepage.pl
2022/11/30 |      13358 | macros/texinfo/texinfo/tp/t/results/misc_commands/footnote_in_center.pl
2022/11/30 |      13348 | macros/texinfo/texinfo/tp/t/results/quotation/quotation_and_author.pl
2022/11/30 |      13324 | macros/texinfo/texinfo/tp/t/results/sectioning/section_before_top.pl
2022/11/30 |       1331 | macros/texinfo/texinfo/tp/t/results/value/spaces_before_value.pl
2022/11/30 |      13254 | macros/latex/contrib/kdpcover/kdpcover.dtx
2022/11/30 |      13252 | macros/texinfo/texinfo/tp/t/results/def/defx_in_example.pl
2022/11/30 |     132382 | macros/latex/base/lppl.pdf
2022/11/30 |      13232 | macros/texinfo/texinfo/tp/t/results/float/empty_caption.pl
2022/11/30 |       1320 | macros/texinfo/texinfo/tp/t/results/converters_tests/unknown_value.pl
2022/11/30 |      13202 | macros/texinfo/texinfo/tp/t/results/sectioning/next_no_prev_to_node.pl
2022/11/30 |        131 | macros/texinfo/texinfo/tp/t/input_files/contents_at_document_begin.texi
2022/11/30 |        131 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_rawtext/osé_utf8.txt
2022/11/30 |        131 | macros/latex/contrib/kdpcover/DEPENDS.txt
2022/11/30 |       1319 | macros/texinfo/texinfo/tp/t/results/init_files_tests/documentation_examples/res_html/documentation_examples_fot.html
2022/11/30 |    1318126 | macros/latex/base/encguide.pdf
2022/11/30 |       1314 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_no_texi2html/chapter.html
2022/11/30 |       1312 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/element_types.c
2022/11/30 |      13112 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/punctuation_and_footnotes_frenchspacing.pl
2022/11/30 |     130741 | macros/texinfo/texinfo/tp/t/results/html_tests/itemize_arguments_enable_encoding.pl
2022/11/30 |     130665 | macros/texinfo/texinfo/po/uk.gmo
2022/11/30 |      13059 | macros/texinfo/texinfo/tp/t/results/sectioning/top_node_part_top.pl
2022/11/30 |      13044 | systems/texlive/tlnet/archive/graph35.source.r65138.tar.xz
2022/11/30 |     130309 | macros/texinfo/texinfo/tp/t/results/html_tests/itemize_arguments.pl
2022/11/30 |     130309 | macros/latex/base/ltnews15.pdf
2022/11/30 |     130145 | macros/texinfo/texinfo/tp/t/results/sectioning/top_chapter_sections.pl
2022/11/30 |      13013 | macros/texinfo/texinfo/tp/t/results/info_tests/split_test_before_first_node_no_empty_line.pl
2022/11/30 |        129 | macros/texinfo/texinfo/tp/t/input_files/contents_at_end_document.texi
2022/11/30 |       1299 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_utf8_in_refs/res_html/a-e-i-o-u-y-A-E-I-O-U.html
2022/11/30 |      12979 | macros/texinfo/texinfo/tp/t/results/regions/anchor_in_titlepage.pl
2022/11/30 |       1296 | macros/texinfo/texinfo/tp/t/results/verb/simple.pl
2022/11/30 |       1296 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs/res_html/a-e-i-o-u-A-E-I-O-U.html
2022/11/30 |      12965 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/style_not_closed_root_commands.pl
2022/11/30 |      12961 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/on_block_command_line.pl
2022/11/30 |     129570 | macros/latex/base/ltnews09.pdf
2022/11/30 |     129389 | macros/texinfo/texinfo/po/fi.po
2022/11/30 |      12931 | macros/texinfo/texinfo/tp/Makefile.am
2022/11/30 |      12928 | macros/texinfo/texinfo/tp/t/results/sectioning/top_without_node_nodes.pl
2022/11/30 |     129143 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_latin1_enable_encoding.pl
2022/11/30 |       1289 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_utf8_in_refs/res_html/a-e-i-o-u-A-E-I-O-U.html
2022/11/30 |       1286 | macros/texinfo/texinfo/tp/t/results/value/empty_set.pl
2022/11/30 |       1286 | macros/texinfo/texinfo/tp/t/results/macro/macro_no_argument.pl
2022/11/30 |       1285 | macros/texinfo/texinfo/tp/t/results/transformations/master_menu_fr/res_html/chap.html
2022/11/30 |      12854 | macros/texinfo/texinfo/tp/t/results/indices/double_syncodeindex.pl
2022/11/30 |       1284 | macros/texinfo/texinfo/tp/t/results/languages/multiple_lang_chapters_texi2html/res_info/multiple_lang_chapters.info
2022/11/30 |      12841 | macros/texinfo/texinfo/tp/t/results/formatting/split_nocopying_split.pl
2022/11/30 |     128069 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_utf8_enable_encoding.pl
2022/11/30 |      12801 | macros/texinfo/texinfo/tp/t/results/sectioning/equivalent_nodes.pl
2022/11/30 |       1279 | macros/latex/base/legal.txt
2022/11/30 |     127912 | macros/texinfo/texinfo/tp/t/results/formatting/texi_bib_example.pl
2022/11/30 |      12733 | macros/texinfo/texinfo/tp/t/results/coverage/formats_only_titles.pl
2022/11/30 |     127303 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_ascii_enable_encoding.pl
2022/11/30 |      12727 | macros/texinfo/texinfo/tp/t/results/latex_tests/error_in_sectioning_command.pl
2022/11/30 |      12717 | macros/texinfo/texinfo/tp/t/results/sectioning/node_sectop_before_lone_node_Top.pl
2022/11/30 |      12682 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/multiline_image_and_align.pl
2022/11/30 |       1266 | macros/texinfo/texinfo/tp/t/results/value/value_zero.pl
2022/11/30 |      12657 | macros/texinfo/texinfo/tp/t/results/include/macro_and_commands_in_early_commands.pl
2022/11/30 |      12625 | macros/texinfo/texinfo/tp/t/results/formatting/split_nocopying.pl
2022/11/30 |      12591 | macros/texinfo/texinfo/tp/t/results/info_tests/split_test_before_first_node.pl
2022/11/30 |       1257 | macros/texinfo/texinfo/tp/t/results/languages/multiple_lang_chapters/res_info/multiple_lang_chapters.info
2022/11/30 |       1256 | macros/texinfo/texinfo/tp/t/results/conditionals/consecutive_conditionals.pl
2022/11/30 |     125362 | macros/texinfo/texinfo/tp/t/results/converters_tests/test_deftypefnnewline.pl
2022/11/30 |      12520 | macros/latex/base/testpage.tex
2022/11/30 |      12511 | macros/texinfo/texinfo/tp/t/results/info_tests/split_no_copying.pl
2022/11/30 |      12504 | macros/texinfo/texinfo/tp/t/results/xtable/accent_on_table_line.pl
2022/11/30 |        124 | macros/texinfo/texinfo/tp/t/input_files/contents_in_document.texi
2022/11/30 |       1248 | macros/texinfo/texinfo/man/texindex.1
2022/11/30 |    1243036 | macros/latex/base/ltnews.pdf
2022/11/30 |       1240 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs/res_html/a-e-u.html
2022/11/30 |      12364 | macros/texinfo/texinfo/tp/t/results/sectioning/empty_ref_arg.pl
2022/11/30 |      12356 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split_nodes/res_html/first.html
2022/11/30 |      12334 | macros/latex/base/ltnews24.tex
2022/11/30 |       1232 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_latin1_in_refs/res_html/e.html
2022/11/30 |      12288 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_one_column_too_much_cells.pl
2022/11/30 |      12275 | macros/texinfo/texinfo/tp/t/09indices.t
2022/11/30 |      12242 | macros/latex/base/tulm.fdd
2022/11/30 |      12235 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/Parsetexi.pm
2022/11/30 |      12231 | macros/texinfo/texinfo/tp/t/results/latex_tests/pagesizes.pl
2022/11/30 |      12230 | macros/texinfo/texinfo/tp/t/results/quotation/standard_quotations.pl
2022/11/30 |     122116 | systems/texlive/tlnet/archive/polyglossia.r65144.tar.xz
2022/11/30 |     122037 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/formatting.xhtml
2022/11/30 |       1219 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_utf8_in_refs/res_html/a-e-u.html
2022/11/30 |      12199 | macros/texinfo/texinfo/tp/t/results/info_tests/center_flush.pl
2022/11/30 |     121999 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/formatting.xhtml
2022/11/30 |     121792 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_latin1.pl
2022/11/30 |      12149 | macros/texinfo/texinfo/tp/t/results/latex_tests/pagetype.pl
2022/11/30 |        120 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_no_setfilename_test_rawtext/osé_utf8_no_setfilename.txt
2022/11/30 |       1209 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin1_utf8_in_refs/res_html/e.html
2022/11/30 |      12081 | macros/texinfo/texinfo/tp/t/results/regions/anchor_in_copying.pl
2022/11/30 |     120768 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split_nodes.pl
2022/11/30 |      12074 | macros/texinfo/texinfo/tp/t/results/sectioning/nodes_before_after_top.pl
2022/11/30 |     120684 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_utf8.pl
2022/11/30 |      12033 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/itemx_in_itemize_enumerate_in_table.pl
2022/11/30 |        119 | macros/texinfo/texinfo/tp/t/input_files/simplest.texi
2022/11/30 |     119975 | macros/texinfo/texinfo/tp/t/results/indices/encoding_index_ascii.pl
2022/11/30 |      11988 | macros/texinfo/texinfo/tp/init/html32.pm
2022/11/30 |      11984 | macros/texinfo/texinfo/tp/t/results/converters_tests/raw_block_commands_expand_tex.pl
2022/11/30 |     119742 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_flushright/nested_formats.html
2022/11/30 |      11960 | macros/texinfo/texinfo/tp/t/results/info_tests/xref_test.pl
2022/11/30 |       1194 | macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/tree.h
2022/11/30 |      11900 | macros/texinfo/texinfo/tp/t/results/sectioning/at_commands_in_node.pl
2022/11/30 |     118938 | macros/texinfo/texinfo/tp/t/results/moreindices/index_split.pl
2022/11/30 |     118843 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_info/formatting.info
2022/11/30 |      11881 | macros/texinfo/texinfo/po_document/pt_BR.gmo
2022/11/30 |      11864 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_in_example.pl
2022/11/30 |     118585 | macros/latex/contrib/proflycee/tex/ProfLycee.sty
2022/11/30 |      11854 | macros/texinfo/texinfo/po_document/hu.gmo
2022/11/30 |      11834 | macros/texinfo/texinfo/tp/t/results/html_tests/ref_in_preformatted.pl
2022/11/30 |      11824 | macros/texinfo/texinfo/tp/t/results/moreindices/nodes_before_top_nodes/res_html/a-node.html
2022/11/30 |      11815 | macros/texinfo/texinfo/tp/t/results/itemize/table_in_itemize.pl
2022/11/30 |      11776 | macros/texinfo/texinfo/tp/t/results/latex_tests/anchor_in_copying.pl
2022/11/30 |      11773 | macros/texinfo/texinfo/tp/t/results/include/value_expansion_in_include.pl
2022/11/30 |      11760 | macros/texinfo/texinfo/tp/t/results/sectioning/double_top_in_menu.pl
2022/11/30 |      11752 | macros/texinfo/texinfo/po_document/es.gmo
2022/11/30 |      11729 | macros/texinfo/texinfo/tp/t/results/def/ampchar.pl
2022/11/30 |      11720 | macros/texinfo/texinfo/tp/t/results/menu/example_in_menu_description.pl
2022/11/30 |      11719 | macros/texinfo/texinfo/tp/t/results/languages/unknown_region.pl
2022/11/30 |      11710 | macros/texinfo/texinfo/po_document/pt.gmo
2022/11/30 |      11709 | macros/texinfo/texinfo/tp/t/results/converters_tests/footnote_no_number_separate.pl
2022/11/30 |      11705 | macros/texinfo/texinfo/tp/t/results/preformatted/comment_example_and_blank_lines.pl
2022/11/30 |       1165 | macros/texinfo/texinfo/util/texi2pdf
2022/11/30 |       1165 | macros/texinfo/texinfo/util/pdftexi2dvi
2022/11/30 |       1165 | macros/texinfo/latest/texi2pdf
2022/11/30 |      11658 | macros/texinfo/texinfo/tp/t/results/def/defx_after_paragraph_end.pl
2022/11/30 |      11654 | macros/texinfo/texinfo/tp/t/results/info_tests/float_long_captions.pl
2022/11/30 |      11647 | macros/texinfo/texinfo/tp/t/results/moreindices/index_no_node/res_html/unnumbered.html
2022/11/30 |     116451 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_quotation/nested_formats.html
2022/11/30 |      11628 | macros/texinfo/texinfo/po_document/nl.gmo
2022/11/30 |     116074 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_cartouche/nested_formats.html
2022/11/30 |     115960 | macros/texinfo/texinfo/tp/t/results/converters_tests/refs_formatting.pl
2022/11/30 |       1155 | macros/texinfo/texinfo/tp/t/results/conditionals/empty_set_in_ifclear.pl
2022/11/30 |      11540 | macros/texinfo/texinfo/tp/t/results/sectioning/double_recursive_self_section_reference.pl
2022/11/30 |       1153 | macros/texinfo/texinfo/tp/t/results/formatting/documentlanguage_set_option/res_html/documentlanguage_set.html
2022/11/30 |      11505 | macros/texinfo/texinfo/tp/tests/indices/res_parser/printindex_between_part_chapter/printindex_between_part_chapter.html
2022/11/30 |     114941 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.html
2022/11/30 |      11481 | macros/texinfo/texinfo/po_document/de.us-ascii.gmo
2022/11/30 |      11460 | macros/texinfo/texinfo/po_document/ca.us-ascii.gmo
2022/11/30 |      11433 | macros/texinfo/texinfo/tp/tests/indices/res_parser/printindex_between_node_section/printindex_between_node_section.html
2022/11/30 |      11423 | macros/texinfo/texinfo/tp/t/results/languages/multiple_lang_chapters_texi2html/res_html/multiple_lang_chapters.html
2022/11/30 |      11423 | macros/texinfo/texinfo/tp/t/results/converters_tests/raw_block_commands.pl
2022/11/30 |      11416 | macros/texinfo/texinfo/tp/t/results/macro/backslash_in_arg.pl
2022/11/30 |      11411 | macros/texinfo/texinfo/po_document/eo.gmo
2022/11/30 |     114038 | macros/texinfo/texinfo/tp/t/results/coverage_braces/test_image.pl
2022/11/30 |        113 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_rawtext/osé_utf8.2
2022/11/30 |     113858 | macros/texinfo/texinfo/tp/t/results/converters_tests/top_in_ref.pl
2022/11/30 |      11378 | macros/texinfo/texinfo/tp/t/results/def/defx_after_comment.pl
2022/11/30 |      11375 | macros/texinfo/texinfo/tp/t/results/menu/comment_on_menu_line.pl
2022/11/30 |      11354 | macros/texinfo/texinfo/tp/t/results/latex_tests/informative_commands_in_top_node.pl
2022/11/30 |     113430 | macros/texinfo/texinfo/tp/Makefile.tres
2022/11/30 |      11296 | macros/texinfo/texinfo/tp/t/results/def/defx_after_text.pl
2022/11/30 |     112935 | macros/texinfo/texinfo/info/Makefile.in
2022/11/30 |      11290 | macros/texinfo/texinfo/tp/t/results/indices/empty_index_entry.pl
2022/11/30 |     112909 | macros/texinfo/texinfo/tp/Texinfo/XS/Makefile.in
2022/11/30 |      11284 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/chinese_mixed_with_en.pl
2022/11/30 |     112730 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.html
2022/11/30 |       1126 | macros/texinfo/texinfo/tp/t/results/formats_encodings/char_latin2_latin2_in_refs/res_html/A-a-_002c-E-e.html
2022/11/30 |      11261 | macros/texinfo/texinfo/tp/t/results/coverage/preformatted.pl
2022/11/30 |      11256 | macros/texinfo/texinfo/tp/t/results/menu/inlineraw_in_menu_description.pl
2022/11/30 |      11241 | macros/texinfo/texinfo/tp/t/results/converters_tests/footnote_no_number.pl
2022/11/30 |       1122 | macros/texinfo/texinfo/tp/t/results/formatting/documentlanguage_set_unknown/res_html/documentlanguage_set.html
2022/11/30 |     111948 | macros/latex/base/ltnews11.pdf
2022/11/30 |     111928 | macros/texinfo/texinfo/tp/tests/tex_html/res_parser/formatting_singular/chapter2.html
2022/11/30 |     111910 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
2022/11/30 |      11185 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_two_columns_too_much_cells.pl
2022/11/30 |      11175 | macros/texinfo/texinfo/tp/t/results/indices/w_lines_count.pl
2022/11/30 |      11162 | macros/texinfo/texinfo/tp/t/results/def/defx_after_empty_line.pl
2022/11/30 |      11141 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/all_spaces.pl
2022/11/30 |     111374 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_group/nested_formats.html
2022/11/30 |      11124 | macros/latex/base/manifest.txt
2022/11/30 |      11120 | macros/texinfo/texinfo/tp/t/results/indices/default_cp_index_and_one_letter_syncodeindex.pl
2022/11/30 |      11117 | macros/texinfo/texinfo/tp/t/results/info_tests/space_in_menu.pl
2022/11/30 |      11110 | macros/texinfo/texinfo/doc/tp_api/texi2any_internals.texi
2022/11/30 |     111066 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_table/nested_formats.html
2022/11/30 |      11100 | macros/texinfo/texinfo/tp/t/results/multitable/empty_headitem.pl
2022/11/30 |      11090 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_long_title.pl
2022/11/30 |   11085932 | systems/texlive/tlnet/archive/pstricks.doc.r65139.tar.xz
2022/11/30 |      11083 | macros/texinfo/texinfo/tp/t/results/plaintext_tests/xref_quote_long_item.pl
2022/11/30 |      11073 | macros/texinfo/texinfo/tp/t/results/sectioning/section_before_after_top_node_last_node.pl
2022/11/30 |     110687 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/xhtml/chapter2.xhtml
2022/11/30 |      11067 | macros/texinfo/texinfo/tp/t/results/menu/menu_in_deffn.pl
2022/11/30 |      11043 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_no_title.pl
2022/11/30 |      11029 | macros/texinfo/texinfo/tp/t/results/menu/menu_entry_no_entry_location.pl
2022/11/30 |      11019 | macros/texinfo/texinfo/tp/t/results/float/footnote_in_caption_and_error.pl
2022/11/30 |     110072 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.html
2022/11/30 |         10 | macros/texinfo/texinfo/po/stamp-po
2022/11/30 |         10 | macros/texinfo/texinfo/po_document/stamp-po
2022/11/30 |     109958 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/chapter2.html
2022/11/30 |     109958 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/chapter2.html
2022/11/30 |      10993 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/def_not_closed_in_menu_description.pl
2022/11/30 |       1096 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_no_texi2html/section.html
2022/11/30 |       1095 | macros/texinfo/texinfo/tp/t/results/init_files_tests/documentation_examples/res_html/prepended_to_filenames-my-node.html
2022/11/30 |     109596 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/chapter2.html
2022/11/30 |     109394 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/chapter2.html
2022/11/30 |      10923 | macros/texinfo/texinfo/tp/t/results/formats_encodings/manual_simple_latin1_with_error.pl
2022/11/30 |    1091738 | macros/latex/base/lthooks-code.pdf
2022/11/30 |     109054 | macros/texinfo/texinfo/po/ro.gmo
2022/11/30 |      10841 | macros/texinfo/texinfo/tp/t/results/info_tests/text_before_node.pl
2022/11/30 |       1083 | macros/latex/contrib/kdpcover/LICENSE.txt
2022/11/30 |      10838 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/index.html
2022/11/30 |     108231 | macros/latex/base/fntguide.tex
2022/11/30 |      10798 | macros/latex/base/ltnews26.tex
2022/11/30 |      10792 | macros/texinfo/texinfo/tp/t/results/itemize/enumerate_argument_item.pl
2022/11/30 |      10792 | macros/latex/base/ltnews22.tex
2022/11/30 |      10791 | macros/latex/base/ltnews23.tex
2022/11/30 |      10787 | macros/texinfo/texinfo/tp/t/results/misc_commands/definfoenclose.pl
2022/11/30 |     107850 | macros/texinfo/texinfo/tp/t/results/sectioning/sectioning_part_appendix_no_top.pl
2022/11/30 |    1077974 | macros/latex/base/doc-code.pdf
2022/11/30 |     107793 | macros/texinfo/texinfo/po/fr.gmo
2022/11/30 |      10769 | macros/texinfo/texinfo/tp/t/results/coverage/exdent_and_commands.pl
2022/11/30 |      10762 | macros/texinfo/texinfo/tp/t/results/multitable/multitable_figure_space.pl
2022/11/30 |       1075 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8_epub_package/EPUB/xhtml/Chapteur.xhtml
2022/11/30 |     107397 | macros/texinfo/texinfo/po/ru.gmo
2022/11/30 |      10734 | macros/texinfo/texinfo/tp/t/results/preformatted/def_in_example.pl
2022/11/30 |      10732 | macros/texinfo/texinfo/tp/t/results/preformatted/text_on_example_command_line.pl
2022/11/30 |      10719 | macros/texinfo/texinfo/tp/t/results/sectioning/node_referenced_in_ref.pl
2022/11/30 |     106904 | macros/latex/base/inputenc.dtx
2022/11/30 |      10688 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/Copying-and-indices.html
2022/11/30 |      10672 | macros/texinfo/texinfo/tp/t/results/coverage_braces/kbd.pl
2022/11/30 |       1066 | macros/texinfo/texinfo/tp/t/input_files/chinese_mixed_with_en.texi
2022/11/30 |      10646 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/Copying-and-indices.html
2022/11/30 |      10640 | macros/texinfo/texinfo/tp/t/results/preformatted/text_on_display_command_line.pl
2022/11/30 |     106377 | macros/texinfo/texinfo/po/sr.gmo
2022/11/30 |     106376 | macros/texinfo/texinfo/tp/t/results/converters_tests/ref_error_formatting.pl
2022/11/30 |     106168 | macros/texinfo/texinfo/po/cs.gmo
2022/11/30 |      10601 | macros/latex/base/makeindx.dtx
2022/11/30 |        105 | macros/latex/base/ltfilehook-code.tex
2022/11/30 |      10530 | macros/texinfo/texinfo/tp/t/results/float/footnote_in_caption.pl
2022/11/30 |       1051 | macros/texinfo/texinfo/po_document/no.us-ascii.gmo
2022/11/30 |      10515 | macros/texinfo/texinfo/tp/t/results/coverage_braces/abbr_acronym.pl
2022/11/30 |      10514 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes_nodes/index.html
2022/11/30 |        104 | macros/latex/base/ltshipout-code.tex
2022/11/30 |      10473 | macros/texinfo/texinfo/tp/t/results/raw/raw_in_example.pl
2022/11/30 |      10469 | macros/texinfo/texinfo/tp/t/results/invalid_nestings/on_node_line.pl
2022/11/30 |      10456 | macros/texinfo/texinfo/tp/t/results/preformatted/comments_in_example.pl
2022/11/30 |     104424 | macros/texinfo/texinfo/po/pl.gmo
2022/11/30 |      10438 | macros/texinfo/texinfo/tp/t/results/menu/verb_in_menu_description.pl
2022/11/30 |      10423 | macros/texinfo/texinfo/tp/t/results/heading/heading_in_copying.pl
2022/11/30 |      10400 | macros/texinfo/texinfo/tp/t/results/menu/menu_pointing_to_anchor.pl
2022/11/30 |        103 | macros/latex/base/ltcmdhooks-code.tex
2022/11/30 |     103929 | macros/texinfo/texinfo/tp/t/results/sectioning/chapter_sections.pl
2022/11/30 |      10370 | macros/latex/base/ltfsscmp.dtx
2022/11/30 |     103618 | macros/luatex/generic/lutabulartools.zip
2022/11/30 |      10342 | macros/texinfo/texinfo/tp/t/results/info_tests/two_paragraphindent_in_preamble_and_in_document.pl
2022/11/30 |     103068 | macros/texinfo/texinfo/po/hr.gmo
2022/11/30 |      10302 | macros/texinfo/texinfo/tp/t/results/menu/menu_title_before_entries.pl
2022/11/30 |        102 | macros/latex/base/ltmarks-code.tex
2022/11/30 |        102 | macros/latex/base/lthooks-code.tex
2022/11/30 |     102832 | macros/texinfo/texinfo/tp/t/results/moresectioning/sectioning_frames.pl
2022/11/30 |      10251 | macros/latex/base/webcomp.err
2022/11/30 |      10210 | macros/texinfo/texinfo/tp/t/results/float/anchor_in_caption.pl
2022/11/30 |        101 | macros/texinfo/texinfo/doc/version-texi2any_api.texi
2022/11/30 |        101 | macros/texinfo/texinfo/doc/version.texi
2022/11/30 |        101 | macros/texinfo/texinfo/doc/version-stnd.texi
2022/11/30 |        101 | macros/texinfo/texinfo/doc/stamp-vti
2022/11/30 |        101 | macros/texinfo/texinfo/doc/stamp-2
2022/11/30 |        101 | macros/texinfo/texinfo/doc/stamp-1
2022/11/30 |     101891 | macros/texinfo/texinfo/tp/t/results/xtable/inter_item_commands_in_table.pl
2022/11/30 |       1015 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/test_redefine_need/test_need.html
2022/11/30 |      10142 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_no_author.pl
2022/11/30 |      10139 | macros/texinfo/texinfo/tp/t/results/html_tests/footnotestyle_separate_html_text_no_monolithic.pl
2022/11/30 |     101110 | macros/texinfo/texinfo/po/el.po
2022/11/30 |      10101 | macros/texinfo/texinfo/tp/t/results/menu/empty_menu_entry_name.pl
2022/11/30 |      10100 | macros/texinfo/texinfo/tp/t/results/latex_tests/titlepage_in_top_node.pl
2022/11/30 |       1006 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying/Titlepage-footnote-anchor.html
2022/11/30 |       1006 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/Titlepage-footnote-anchor.html
2022/11/30 |      10033 | macros/texinfo/texinfo/tp/t/results/def/end_of_lines_protected.pl
2022/11/30 |      10029 | macros/texinfo/texinfo/tp/t/results/preformatted/example_empty_arguments.pl
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions_split_chapter/sectioning.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/sectioning/res_parser/sectioning_directions/sectioning.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/texi_nested_formats/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_table/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_quotation/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_group/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_flushright/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_example/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_deffn/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser/nested_cartouche/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/texi_nested_formats/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_quotation/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_group/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_flushright/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_example/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_deffn/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/nested_formats/res_parser_info/nested_cartouche/nested_formats.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/no_monolithic_only_toc_out/no_monolithic.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/no_monolithic_only_toc_out/no_monolithic.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/navigation_test_misc_file_collision/navigation.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/navigation_test_misc_file_collision/navigation.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_xml/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_xhtml/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_textcontent/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_regions/formatting_regions.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_rawtext/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_plaintext/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_nodes/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_mathjax/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_macro_expand/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_latex/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_inline_css/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_info/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html_nodes/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_html32/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_fr_icons/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_exotic/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/9-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/8-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/7-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/6-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/5-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/59-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/57-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/56-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/55-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/54-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/53-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/52-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/51-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/4-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/47-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/45-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/44-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/43-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/42-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/41-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/40-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/3-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/39-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/35-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/33-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/32-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/31-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/30-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/29-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/28-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/27-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/23-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/21-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/20-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/19-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/18-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/17-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/16-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/15-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting_epub_package/EPUB/images/11-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/9-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/8-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/7-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/6-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/5-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/59-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/57-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/56-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/55-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/54-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/53-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/52-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/51-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/4-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/47-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/45-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/44-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/43-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/42-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/41-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/40-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/3-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/39-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/35-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/33-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/32-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/31-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/30-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/29-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/28-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/27-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/23-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/21-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/20-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/19-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/18-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/17-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/16-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/15-f--ile.png
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting_epub_package/EPUB/images/11-f--ile.e--xt
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_epub/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_docbook/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/layout/res_parser/formatting_chm/formatting.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/printindex_between_part_chapter/printindex_between_part_chapter.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/printindex_between_part_chapter/printindex_between_part_chapter.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/printindex_between_node_section/printindex_between_node_section.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/printindex_between_node_section/printindex_between_node_section.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/nodes_before_top_and_sections.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter_nodes/nodes_before_top_and_sections.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/nodes_before_top_and_sections.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/nodes_before_top_and_sections_html_chapter/nodes_before_top_and_sections.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/printindex_between_part_chapter/printindex_between_part_chapter.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/printindex_between_node_section/printindex_between_node_section.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/printindex_between_node_section/printindex_between_node_section.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/nodes_before_top_and_sections.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter_nodes/nodes_before_top_and_sections.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/nodes_before_top_and_sections.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/nodes_before_top_and_sections_html_chapter/nodes_before_top_and_sections.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/indices_in_begin_tables_lists_latex/indices_in_begin_tables_lists.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/indices_in_begin_tables_lists_latex/indices_in_begin_tables_lists.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/indices_in_begin_tables_lists/indices_in_begin_tables_lists.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/indices_in_begin_tables_lists/indices_in_begin_tables_lists.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_table/index_table.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_region/index_special_region_no_region.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_region_html/index_special_region_no_region.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying/index_special_region_no_insertcopying.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region/index_special_region.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_special_region_html/index_special_region.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_one_node/index_one_node.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_no_node_no_top/index_no_node_no_top.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_nodes_nodes/index_nodes.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_nodes/index_nodes.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_nodes/index_nodes.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_entry_in_footnote_separated_info/index_entry_in_footnote.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_entry_in_footnote_separated_info/index_entry_in_footnote.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_entry_in_footnote_info/index_entry_in_footnote.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_entry_in_footnote_info/index_entry_in_footnote.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_entry_in_footnote/index_entry_in_footnote.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_entry_in_footnote/index_entry_in_footnote.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_and_node_same_name/index_and_node_same_name.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser_info/index_and_node_same_name/index_and_node_same_name.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/indices_in_begin_tables_lists_latex/indices_in_begin_tables_lists.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/indices_in_begin_tables_lists_latex/indices_in_begin_tables_lists.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/indices_in_begin_tables_lists/indices_in_begin_tables_lists.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/indices_in_begin_tables_lists/indices_in_begin_tables_lists.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_table/index_table.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region/index_special_region_no_region.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_region_html/index_special_region_no_region.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying/index_special_region_no_insertcopying.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region/index_special_region.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_special_region_html/index_special_region.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_one_node/index_one_node.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_no_node_no_top/index_no_node_no_top.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes_nodes/index_nodes.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_nodes/index_nodes.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_entry_in_footnote_separated_info/index_entry_in_footnote.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_entry_in_footnote_separated_info/index_entry_in_footnote.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_entry_in_footnote_info/index_entry_in_footnote.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_entry_in_footnote_info/index_entry_in_footnote.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_entry_in_footnote/index_entry_in_footnote.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_entry_in_footnote/index_entry_in_footnote.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_and_node_same_name/index_and_node_same_name.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/indices/res_parser/index_and_node_same_name/index_and_node_same_name.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/texi_ignore_and_comments/ignore_and_comments.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/texi_ignore_and_comments/ignore_and_comments.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/test_redefine_need/test_need.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/split_nocopying_split_dev_null/split_nocopying.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/split_nocopying_split_dev_null/split_nocopying.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/simplest_test_css/simplest.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/simplest_test_css/simplest.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_rawtext/osé_utf8.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_latex/osé_utf8.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_test_epub/osé_utf8.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_no_setfilename_test_rawtext/osé_utf8_no_setfilename.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/non_ascii_command_line/osé_utf8.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/manual_include_accented_file_name_latin1_use_locale_encoding/manual_include_accented_file_name_latin1.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/manual_include_accented_file_name_latin1/manual_include_accented_file_name_latin1.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/manual_include_accented_file_name_latin1_explicit_encoding/manual_include_accented_file_name_latin1.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/ignore_and_comments_output/ignore_and_comments.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/documentlanguage_cmdline/documentlanguage.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/documentlanguage_cmdline/documentlanguage.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/formatting/res_parser/cpp_lines/cpp_lines.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage/no_content_setcatpage.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage/no_content_setcatpage.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage_inline/no_content_setcatpage.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage_inline/no_content_setcatpage.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage_do_contents/no_content_setcatpage.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage_do_contents/no_content_setcatpage.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage_do_contents_inline/no_content_setcatpage.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_setcatpage_do_contents_inline/no_content_setcatpage.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content/no_content.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content/no_content.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_inline/no_content.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_inline/no_content.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_do_contents/no_content.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_do_contents/no_content.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_do_contents_inline/no_content.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/no_content_do_contents_inline/no_content.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_section/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_section/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_nodes/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_nodes/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_section/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_section/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_nodes/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_nodes/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_chapter/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_inline_chapter/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_info/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_info/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_chapter/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_chapter/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_book/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_book/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_no_texi2html/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_no_texi2html/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book_chapter/double_contents.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/double_contents_after_title_book_chapter/double_contents.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_section_inline/contents_in_middle_section.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_section_inline/contents_in_middle_section.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_section_info/contents_in_middle_section.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_section_info/contents_in_middle_section.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_section/contents_in_middle_section.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_section/contents_in_middle_section.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_chapter_inline/contents_in_middle_chapter.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_chapter_inline/contents_in_middle_chapter.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_chapter_info/contents_in_middle_chapter.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_chapter_info/contents_in_middle_chapter.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_chapter/contents_in_middle_chapter.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_in_middle_chapter/contents_in_middle_chapter.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_end_inline/contents_at_end.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_end_inline/contents_at_end.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_end_info/contents_at_end.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_end_info/contents_at_end.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_end/contents_at_end.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_end/contents_at_end.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_begin_inline/contents_at_begin.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_begin_inline/contents_at_begin.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_begin_info/contents_at_begin.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_begin_info/contents_at_begin.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_begin/contents_at_begin.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_at_begin/contents_at_begin.1
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_and_parts/contents_and_parts.2
2022/11/30 |          0 | macros/texinfo/texinfo/tp/tests/contents/res_parser/contents_and_parts/contents_and_parts.1
2022/11/29 |      89762 | macros/optex/doc/optex-userdoc.tex
2022/11/29 |       8304 | systems/texlive/tlnet/archive/jlreq.source.r65119.tar.xz
2022/11/29 |       7494 | macros/latex/contrib/bangorexam/README.txt
2022/11/29 |      67440 | graphics/graph35/graph35.dtx
2022/11/29 |        641 | macros/latex/contrib/eolang/eolang.bib
2022/11/29 |     613175 | macros/luatex/latex/piton.zip
2022/11/29 |        592 | graphics/graph35/CHANGELOG.md
2022/11/29 |     569782 | macros/unicodetex/latex/polyglossia.zip
2022/11/29 |     535776 | systems/texlive/tlnet/archive/lt3rawobjects.doc.r65121.tar.xz
2022/11/29 |     529503 | macros/luatex/latex/piton/piton.pdf
2022/11/29 |     526972 | systems/texlive/tlnet/archive/jlreq.doc.r65119.tar.xz
2022/11/29 |      52505 | macros/latex/contrib/eolang/eolang.dtx
2022/11/29 |      47687 | macros/latex/contrib/eolang/cactus.pdf
2022/11/29 |     425068 | systems/texlive/tlnet/archive/pagecolor.doc.r65120.tar.xz
2022/11/29 |      41465 | macros/luatex/latex/piton/piton-french.tex
2022/11/29 |      36264 | systems/texlive/tlnet/archive/texlive-scripts.win32.r65128.tar.xz
2022/11/29 |     358539 | macros/latex/contrib/bangorexam.zip
2022/11/29 |       3528 | systems/texlive/tlnet/archive/lt3rawobjects.r65121.tar.xz
2022/11/29 |     352430 | macros/unicodetex/latex/polyglossia/polyglossia.pdf
2022/11/29 |     344148 | macros/latex/contrib/docshots.zip
2022/11/29 |     340901 | macros/latex/contrib/docshots/docshots.pdf
2022/11/29 |    3121444 | graphics/graph35.zip
2022/11/29 |       3012 | systems/texlive/tlnet/archive/hitex.r65130.tar.xz
2022/11/29 |     298037 | macros/latex/contrib/bangorexam/bangorexam.pdf
2022/11/29 |       2816 | systems/texlive/tlnet/archive/pagecolor.r65120.tar.xz
2022/11/29 |     263703 | macros/luatex/latex/piton/piton-french.pdf
2022/11/29 |       2634 | macros/latex/contrib/docshots/docshots.ins
2022/11/29 |       2628 | macros/latex/contrib/eolang/eolang.ins
2022/11/29 |    2623172 | systems/texlive/tlnet/archive/hitex.doc.r65130.tar.xz
2022/11/29 |     257106 | macros/latex/contrib/bangorexam/bangorexam.dtx
2022/11/29 |     231693 | graphics/graph35/sources.zip
2022/11/29 |       2294 | graphics/graph35/graph35.ins
2022/11/29 |     218501 | graphics/graph35/graph35-pixelart.sty
2022/11/29 |      21764 | macros/latex/contrib/docshots/docshots.dtx
2022/11/29 |      21682 | graphics/graph35/graph35-en.tex
2022/11/29 |       1942 | macros/unicodetex/latex/polyglossia/README.md
2022/11/29 |      19106 | graphics/graph35/LICENSE.txt
2022/11/29 |       1909 | graphics/graph35/README.md
2022/11/29 |    1882060 | macros/latex/contrib/eolang.zip
2022/11/29 |    1869634 | macros/latex/contrib/eolang/eolang.pdf
2022/11/29 |      17469 | macros/luatex/generic/lutabulartools/lutabulartools.lua
2022/11/29 |      17092 | macros/luatex/generic/lutabulartools/lutabulartools.tex
2022/11/29 |       1623 | macros/luatex/generic/lutabulartools/README.md
2022/11/29 |        159 | macros/latex/contrib/eolang/DEPENDS.txt
2022/11/29 |    1511129 | graphics/graph35/graph35-fr.pdf
2022/11/29 |    1466917 | graphics/graph35/graph35-en.pdf
2022/11/29 |       1453 | macros/latex/contrib/docshots/README.md
2022/11/29 |     144612 | systems/texlive/tlnet/archive/jlreq.r65119.tar.xz
2022/11/29 |       1342 | macros/latex/contrib/eolang/README.md
2022/11/29 |        129 | macros/latex/contrib/docshots/DEPENDS.txt
2022/11/29 |    1248276 | systems/texlive/tlnet/archive/profcollege.r65122.tar.xz
2022/11/29 |   12443356 | systems/texlive/tlnet/archive/tlgs.win32.r65113.tar.xz
2022/11/29 |    1229478 | install/macros/unicodetex/latex/polyglossia.tds.zip
2022/11/29 |      12167 | graphics/graph35/graph35-keys.sty
2022/11/29 |     118608 | macros/luatex/latex/piton/piton.dtx
2022/11/29 |     116020 | macros/luatex/generic/lutabulartools/lutabulartools.pdf
2022/11/29 |      11472 | systems/texlive/tlnet/archive/pagecolor.source.r65120.tar.xz
2022/11/29 |   10894788 | systems/texlive/tlnet/archive/profcollege.doc.r65122.tar.xz
2022/11/29 |       1083 | macros/latex/contrib/eolang/LICENSE.txt
2022/11/29 |       1083 | macros/latex/contrib/docshots/LICENSE.txt
2022/11/29 |       1058 | macros/optex/base/f-iwona.opm
2022/11/29 |       1054 | macros/optex/base/f-kurier.opm
2022/11/29 |      10411 | macros/luatex/generic/lutabulartools/lutabulartools.sty
2022/11/29 |    1013494 | macros/unicodetex/latex/polyglossia/polyglossia.dtx
2022/11/29 |      10044 | systems/texlive/tlnet/archive/lt3rawobjects.source.r65121.tar.xz