summaryrefslogtreecommitdiff
path: root/www/typo3/PLIST
blob: 381074233017857f779bc77acabcfef72eb86b79 (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
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
@comment $NetBSD: PLIST,v 1.5 2009/01/21 13:10:05 taca Exp $
${EGDIR}/localconf.php
${TYPO3DIR}/${TYPO3NAME}/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/GPL.txt
${TYPO3DIR}/${TYPO3NAME}/INSTALL.txt
${TYPO3DIR}/${TYPO3NAME}/LICENSE.txt
${TYPO3DIR}/${TYPO3NAME}/NEWS.txt
${TYPO3DIR}/${TYPO3NAME}/README.txt
${TYPO3DIR}/${TYPO3NAME}/RELEASE_NOTES.txt
${TYPO3DIR}/${TYPO3NAME}/index.php
${TYPO3DIR}/${TYPO3NAME}/misc/advanced.htaccess
${TYPO3DIR}/${TYPO3NAME}/misc/core_svn_rules.txt
${TYPO3DIR}/${TYPO3NAME}/misc/example_MM_relationTables.sql
${TYPO3DIR}/${TYPO3NAME}/misc/locallang_XML_dummy.xml
${TYPO3DIR}/${TYPO3NAME}/misc/phpcheck/incfile.php
${TYPO3DIR}/${TYPO3NAME}/misc/phpcheck/index.php
${TYPO3DIR}/${TYPO3NAME}/misc/phpcheck/reference.html
${TYPO3DIR}/${TYPO3NAME}/misc/simple.htaccess
${TYPO3DIR}/${TYPO3NAME}/misc/superadmin.php
${TYPO3DIR}/${TYPO3NAME}/misc/virtualdir.tgz
${TYPO3DIR}/${TYPO3NAME}/t3lib/GPL.txt
${TYPO3DIR}/${TYPO3NAME}/t3lib/README.txt
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.gzip_encode.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_admin.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_ajax.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_arraybrowser.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_basicfilefunc.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_bedisplaylog.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_befunc.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_beuserauth.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_browsetree.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_cli.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_clipboard.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_cs.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_db.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_diff.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_div.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_exec.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_extfilefunc.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_extmgm.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_extobjbase.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_flexformtools.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_foldertree.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_formmail.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_fullsearch.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_htmlmail.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_iconworks.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_install.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_loaddbgroup.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_loadmodules.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_lock.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_matchcondition.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_modsettings.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_page.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_pagetree.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_parsehtml.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_parsehtml_proc.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_positionmap.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_querygenerator.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_readmail.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_recordlist.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_refindex.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_rteapi.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_scbase.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_softrefproc.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_sqlengine.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_sqlparser.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_stdgraphic.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_superadmin.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_svbase.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_syntaxhl.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_tceforms.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_tceforms_inline.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_tcemain.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_timetrack.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_transferdata.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_transl8tools.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_treeview.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_tsfebeuserauth.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_tsparser.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_tsparser_ext.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_tsstyleconfig.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_tstemplate.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_userauth.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_userauthgroup.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/class.t3lib_xml.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/config_default.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/ascii.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/big5.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/euc-kr.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/gb2312.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-1.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-10.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-11.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-13.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-14.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-15.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-16.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-2.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-3.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-4.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-5.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-6.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-7.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-8.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/iso-8859-9.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/koi8-r.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/readme.txt
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/shift_jis.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-1250.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-1251.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-1252.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-1253.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-1254.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-1255.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-1256.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-1257.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-1258.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl/windows-874.tbl
${TYPO3DIR}/${TYPO3NAME}/t3lib/fonts/index.html
${TYPO3DIR}/${TYPO3NAME}/t3lib/fonts/nimbus.ttf
${TYPO3DIR}/${TYPO3NAME}/t3lib/fonts/readme.txt
${TYPO3DIR}/${TYPO3NAME}/t3lib/fonts/vera.ttf
${TYPO3DIR}/${TYPO3NAME}/t3lib/index.html
${TYPO3DIR}/${TYPO3NAME}/t3lib/interfaces/interface.t3lib_browselinkshook.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/interfaces/interface.t3lib_localrecordlistgettablehook.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/interfaces/interface.t3lib_tceformsinlinehook.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/jsfunc.evalfield.js
${TYPO3DIR}/${TYPO3NAME}/t3lib/jsfunc.inline.js
${TYPO3DIR}/${TYPO3NAME}/t3lib/jsfunc.menu.js
${TYPO3DIR}/${TYPO3NAME}/t3lib/jsfunc.updateform.js
${TYPO3DIR}/${TYPO3NAME}/t3lib/jsfunc.validateform.js
${TYPO3DIR}/${TYPO3NAME}/t3lib/stddb/load_ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/stddb/tables.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/stddb/tables.sql
${TYPO3DIR}/${TYPO3NAME}/t3lib/stddb/tbl_be.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/thumbs.php
${TYPO3DIR}/${TYPO3NAME}/t3lib/unidata/SpecialCasing.txt
${TYPO3DIR}/${TYPO3NAME}/t3lib/unidata/Translit.txt
${TYPO3DIR}/${TYPO3NAME}/t3lib/unidata/UnicodeData.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/GPL.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/LICENSE.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/README.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/ajax.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_clickmenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_db_navframe.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_doc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_doc_nodoc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_file_navframe.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_intro.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_main.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_menu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_menu_sel.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_mod_frameset.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_palette.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_shortcut.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_toplogo.php
${TYPO3DIR}/${TYPO3NAME}/typo3/alt_topmenu_dummy.php
${TYPO3DIR}/${TYPO3NAME}/typo3/backend.php
${TYPO3DIR}/${TYPO3NAME}/typo3/border.html
${TYPO3DIR}/${TYPO3NAME}/typo3/browse_links.php
${TYPO3DIR}/${TYPO3NAME}/typo3/browser.php
${TYPO3DIR}/${TYPO3NAME}/typo3/class.alt_menu_functions.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/class.browse_links.php
${TYPO3DIR}/${TYPO3NAME}/typo3/class.db_list.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/class.db_list_extra.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/class.file_list.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/class.filelistfoldertree.php
${TYPO3DIR}/${TYPO3NAME}/typo3/class.show_rechis.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/class.webpagetree.php
${TYPO3DIR}/${TYPO3NAME}/typo3/classes/class.backendsearchmenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/classes/class.clearcachemenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/classes/class.modulemenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/classes/class.shortcutmenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/classes/class.typo3ajax.php
${TYPO3DIR}/${TYPO3NAME}/typo3/classes/class.typo3logo.php
${TYPO3DIR}/${TYPO3NAME}/typo3/classes/class.workspaceselector.php
${TYPO3DIR}/${TYPO3NAME}/typo3/cleaner_check.sh
${TYPO3DIR}/${TYPO3NAME}/typo3/cleaner_fix.sh
${TYPO3DIR}/${TYPO3NAME}/typo3/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/cli_dispatch.phpsh
${TYPO3DIR}/${TYPO3NAME}/typo3/close.html
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/RemoveXSS/RemoveXSS.php
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/jsmin/jsmin.php
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/json/json.php
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/prototype/prototype.js
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/scriptaculous/builder.js
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/scriptaculous/controls.js
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/scriptaculous/dragdrop.js
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/scriptaculous/effects.js
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/scriptaculous/scriptaculous.js
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/scriptaculous/slider.js
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/scriptaculous/sound.js
${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/scriptaculous/unittest.js
${TYPO3DIR}/${TYPO3NAME}/typo3/css/backend-scaffolding.css
${TYPO3DIR}/${TYPO3NAME}/typo3/css/backend-style.css
${TYPO3DIR}/${TYPO3NAME}/typo3/css/modulemenu.css
${TYPO3DIR}/${TYPO3NAME}/typo3/db_list.php
${TYPO3DIR}/${TYPO3NAME}/typo3/db_new.php
${TYPO3DIR}/${TYPO3NAME}/typo3/default.htm
${TYPO3DIR}/${TYPO3NAME}/typo3/default.html
${TYPO3DIR}/${TYPO3NAME}/typo3/dummy.php
${TYPO3DIR}/${TYPO3NAME}/typo3/ext/README.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/file_edit.php
${TYPO3DIR}/${TYPO3NAME}/typo3/file_list.php
${TYPO3DIR}/${TYPO3NAME}/typo3/file_newfolder.php
${TYPO3DIR}/${TYPO3NAME}/typo3/file_rename.php
${TYPO3DIR}/${TYPO3NAME}/typo3/file_upload.php
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/123_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/123_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/123_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/123_go.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/_.htaccess
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/acm_spacer.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/acm_spacer2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/add.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/alt_backend_logo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/alt_backend_logo.old.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/alt_topmenu_back_dummy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/alt_topmenu_back_full.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/altmenuline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/arrowdown.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/arrowleft.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/arrowright.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/arrowup.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/bar.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/blackclear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/blinkarrow_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/blinkarrow_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/border_back.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/border_collapse.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/border_expand.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/button_down.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/button_hide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/button_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/button_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/button_top_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/button_unhide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/button_up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/bullet_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/filelinks.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/html.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/images_only.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/login_form.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/mailform.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/multimedia.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/regular_text.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/searchform.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/sitemap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/sitemap2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/text_image_below.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/text_image_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz/user_defined.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clear_all_cache.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clear_cache.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clear_cache_files_in_typo3c.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clearout.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_arrow_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_arrow_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_blank.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_bottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_bottom_a.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_dummy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_spacer.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_spacer_a.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_top.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu/menu_top_a.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clip_copy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clip_copy_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clip_cut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clip_cut_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clip_deselect.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clip_pasteafter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clip_pasteinto.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clip_select.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clipbrd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/close.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/close_12h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/close_gray.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/closedok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/closedok_2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/content_client.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/content_default.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/content_fresh.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/content_selected.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/copy_folder_into.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/copy_page_after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/copy_page_into.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/copymode_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/copymode_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/copymode_s.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/csv.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/delete_record.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/deleted_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/deletedok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/dmailerping.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docback.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docback_large.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docback_medium.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docback_mini.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docback_mini2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docmiddle.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docmiddle_large.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docmiddle_medium.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docmiddle_mini.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/docmiddle_mini2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/doctop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/doctop_large.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/doctop_medium.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/doctop_mini.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/doctop_mini2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/down.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/dummy_button.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/dummy_click.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/dummy_module.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/dummy_pane.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/edit.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/edit2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/edit2_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/edit3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/edit_fe.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/edit_file.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/edit_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/edit_rtewiz.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/editaccess.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/editwin_pm_back.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/editwin_pm_back2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/editwin_pm_back2_dummy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/editwin_pm_back_dummy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emarrow_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emarrow_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/embeer.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emcocktl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emcrook.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emdgust.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/ememail.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emexclaim.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emfemale.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emgift.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emhammer.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emlips.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emlove.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emmail_alert.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emmale.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emmessag.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emphone.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emphoto.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emrose.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emsad.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emsmile.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emsmiled.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emsmileo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emsmilep.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emthdown.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emthup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emunlove.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emvamp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emwink.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons/emwww_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/expand_window.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fane_midt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fane_slut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fane_start.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fane_start_.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanebottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanebottom_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanefoot_h1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanefoot_h2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanefoot_h3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanefoot_v2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanefoot_v3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanehoejre_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanetop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanetop_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner/fanevenstre_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/3ds.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/CREDITS.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/ai.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/ani.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/au.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/avi.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/bmp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/cdr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/css.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/csv.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/default.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/doc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/dtd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/eps.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/exe.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/fh3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/flash.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/folder.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/gif.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/htm.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/html.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/html1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/html2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/html3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/ico.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/inc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/java.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/jpg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/js.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/max.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/mid.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/mov.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/mp3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/mpeg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/mpg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/pcd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/pcx.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/pdf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/php3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/png.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/ps.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/psd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/rtf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/sgml.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/swf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/sxc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/sxw.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/t3d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/t3x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/tga.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/tif.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/tmpl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/ttf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/txt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/wav.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/wrl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/xls.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/xml.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/xsl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons/zip.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/filter_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/CREDITS.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/at.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ba.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/br.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ch.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/cn.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/cs.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/cy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/cz.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/de.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/dk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ee.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/eg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/es-basque.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/es.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/fi.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/fr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ga.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/gb.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/gl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/gr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/hr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ie.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/il.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ir.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/is.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/it.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/jp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/kr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/lt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/lv.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ma.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/mk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/mt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/multi-language.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/nl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/no.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/pl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/pt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ro.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ru.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/sa.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/se.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/sk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/sl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/tn.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/tr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/ua.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/unknown.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/us.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags/vn.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/garbage.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/go.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/goback.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/group_clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/group_clipbrd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/group_tobottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/group_totop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/group_upload.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/helpbubble.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/helpbubble_old.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/helpmark.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/hidden_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/history.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/history2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/history_details.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_folders.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_folders_ro.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_folders_tmp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_ftp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_ftp__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_ftp__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_ftp_group.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_ftp_readonly.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_ftp_user.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_webfolders.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_webfolders_ro.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/_icon_website.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/backup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_groups.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_groups__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_groups__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_groups_lists.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_groups_lists__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_groups_lists__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_admin.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_admin__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_admin__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_admin__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_admin__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_admin__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_section.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_section__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_section__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_section__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/be_users_section__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/catalog.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/db_database.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_black.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_blue.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_gray1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_gray2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_gray3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_gray4.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_gray5.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_gray6.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_green.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_purple.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_red.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/default_yellow.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/dmail.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/domain.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/domain__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/domain__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/fe_groups.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/fe_groups__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/fe_groups__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/fe_users.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/fe_users__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/fe_users__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/fe_users__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/fe_users__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/fe_users__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/folder.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/folder_up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/mail.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/mailgroup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/module.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modulefolder.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_approvals.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_approvals__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_board.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_board__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_fe_users.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_fe_users__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_news.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_news__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_shop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/modules_shop__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/no_icon_found.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/notfound.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__fp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__fu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__fup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__hfp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__hfup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__hp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__htf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__htfp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__htfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__htfup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__htp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__htup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__hup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__tf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__tfp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__tfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__tfup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__tp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__tu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__tup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_catalog.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_language_overlay.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_language_overlay__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_language_overlay__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_language_overlay__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_language_overlay__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_language_overlay__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_link__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_link__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_link__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_link__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_mountpoint.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_mountpoint__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_mountpoint__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_mountpoint__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_mountpoint__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_notinmenu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_notinmenu__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_notinmenu__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_notinmenu__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_notinmenu__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_shortcut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_shortcut__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_shortcut__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_shortcut__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_shortcut__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_sitemap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/pages_up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/recycler.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/recycler__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/recycler__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/recycler__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/recycler__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/setup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/shadow_delete.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/shadow_hide.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/shadow_moveto_plh.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/shadow_moveto_pointer.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sitemap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/spacer_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/spacer_icon__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/spacer_icon__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/spacer_icon__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/spacer_icon__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_action.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_lang.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_language.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_language__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_language__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_note.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_staticfile.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_subscriber.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_workflows.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sys_workspace.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sysf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sysf__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sysf__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sysf__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sysf__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/sysf_feuser.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_actions.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_mails.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_mails_group.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_modules.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_notepad.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_pages.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_todos.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_todos_foreign.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_todos_foreign_group.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_todos_group.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tc_workflow.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template_add.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template_add__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template_add__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template_add__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template_add__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/template_standard.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_address.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_antiques.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_bookstore_author.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_bookstore_books.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_bookstore_category.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_bookstore_publisher.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender_cat.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender_todo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender_todo__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender_todo__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender_todo__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_calender_todo__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_bullets.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_bullets__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_bullets__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_bullets__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_bullets__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_bullets__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_bullets__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_bullets__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_div.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_div__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_div__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_div__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_div__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_div__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_div__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_div__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_form.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_form__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_form__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_form__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_form__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_form__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_form__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_form__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_header.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_header__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_header__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_header__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_header__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_header__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_header__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_header__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_html.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_html__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_html__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_html__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_html__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_html__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_html__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_html__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_image.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_image__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_image__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_image__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_image__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_image__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_image__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_image__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_list__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_list__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_list__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_list__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_list__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_list__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_list__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_login.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_login__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_login__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_login__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_login__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_login__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_login__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_login__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_menu__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_menu__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_menu__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_menu__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_menu__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_menu__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_menu__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_mm.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_mm__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_mm__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_mm__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_mm__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_mm__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_mm__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_mm__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_news.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_news__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_news__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_news__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_news__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_news__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_news__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_news__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_script.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_script__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_script__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_script__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_script__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_script__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_script__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_script__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_search.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_search__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_search__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_search__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_search__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_search__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_search__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_search__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_shortcut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_shortcut__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_shortcut__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_shortcut__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_shortcut__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_shortcut__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_shortcut__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_shortcut__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_table__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_table__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_table__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_table__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_table__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_table__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_table__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_textpic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_textpic__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_textpic__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_textpic__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_textpic__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_textpic__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_textpic__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_textpic__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_uploads.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_uploads__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_uploads__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_uploads__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_uploads__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_uploads__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_uploads__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_content_uploads__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_faq.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_faq_board.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_faq_board_root.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_faq_board_root__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_faq_faq.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_faq_no.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_heritage.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_images.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_links.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_article.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_article__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_article__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_article__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_article__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_article__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_article__tu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_article__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_article__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_cat.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_exturl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_exturl__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_exturl__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_exturl__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_exturl__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_exturl__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_exturl__tu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_exturl__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_news_exturl__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_poll.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_products.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_products_cat.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_rating.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_user_antiques.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_user_event.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_user_heritage.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/tt_user_profile.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/user2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/user_event.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/user_profile.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i/userdatabase.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/icon_fatalerror.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/icon_note.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/icon_ok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/icon_ok2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/icon_ok_blue.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/icon_ok_brown.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/icon_ok_dim.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/icon_warning.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/icon_warning2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ie6/arrowdown.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ie6/arrowleft.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ie6/arrowright.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ie6/arrowup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/import.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/import_update.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/info.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/insert1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/insert2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/insert3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/insert4.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/insert5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/lightning.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/lightning_green.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/lightning_red.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/line.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/link_popup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/localize_el.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/localize_green.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/localize_red.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/loginbox_image.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/loginbox_image_dev.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/loginlogo_transp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/loginlogo_transp.old.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/magnifier.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/mailicon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/markstate.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/maximize.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/menu_dummy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/minimize.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/minusbullet_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/mode1_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/mode2_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/mode3_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/mode4_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/mode5_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/mode6_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/mode7_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/move.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/move_folder_into.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/move_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/move_page_after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/move_page_into.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/move_record.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/napshot.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/new_el.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/new_file.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/new_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/new_record.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/newmail.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/newrecord2_marker.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/newrecord2_marker_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/newrecord_marker.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/newrecord_marker_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/notfound_thumb.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/notfound_thumb.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/arrowbullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/blank.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/halfline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/join.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/joinbottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/jointop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/line.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/minus.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/minusbottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/minusbullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/minusonly.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/minustop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/plus.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/plusbottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/plusbullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/plusonly.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/plustop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/quadline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol/stopper.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/old2_button_unhide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/old_button_hide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/old_button_unhide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/open_in_new_window.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/options.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_accesssection.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_deleted.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_group.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_hidden.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_hidden_timing.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_no_icon_found.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_sub.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_sub4.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_sub5.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/overlay_timing.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/perm-allowed.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/perm-denied.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/perm.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pil2down.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pil2left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pil2right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pil2up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pildown.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pilleft_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pilleft_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pilleft_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pilright_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pilright_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pilright_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/pilup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/placeasroot.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/plusbullet2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/plusbullet_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/recordlock_warning.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/recordlock_warning2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/recordlock_warning2_ani.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/recordlock_warning3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/reddown.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/10.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/11.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/12.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/13.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/14.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/15.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/16.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/17.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/18.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/19.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/20.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/4.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/5.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/6.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/7.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/8.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers/9.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/redup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/refresh.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/refresh_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/refresh_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rel_db.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rel_db_lost.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rel_db_static.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rel_file.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rel_softref.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rename.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/required_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/revert_0.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/revert_1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/revert_2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/saveandclosedok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/saveandclosedok_2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/savedok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/savedok_red.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/savedoknew.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/savedokshow.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/savedokshow_red.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/savesnapshot.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/select_duplicates.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selectall.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selectmode_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selectmode_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selectmode_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selectmode_s.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selectnone.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/above_center.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/above_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/above_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/below_center.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/below_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/below_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/intext_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/intext_left_nowrap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/intext_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons/intext_right_nowrap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/shortcut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/shortcut_background.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/shortcutgroups-bg.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/spacer.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/spinner.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stiblet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stiblet_large.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stiblet_medium.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stiblet_medium2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stiblet_mini.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stiblet_mini2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stiblet_minidoc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stiblet_minidoc2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stiblet_nodoc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/stop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/su.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/su_back.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/swap.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/switch.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/synchronize_el.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/thumb_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/thumb_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/thumb_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/thumb_s.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/todoicon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/todoicon_group.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/todoicon_user.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/toolbar_item_active_bg.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/toolbar_separator.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/toolbar_shortcut.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/translationsavedok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/turn_down.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/turn_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/turn_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/turn_up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/typo3logo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/typo3logo.old.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/typo3logo_mini.png
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/typo3logo_old.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/undelete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/undelete_and_edit.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/undo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/unmarkstate.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/upload.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/viewdok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/wizard_colorpickerex.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/wizard_forms.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/wizard_rte.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/wizard_rte2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/wizard_table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/wizard_tsconfig.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/wizard_tsconfig_s.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/working.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/zoom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/zoom2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/index.htm
${TYPO3DIR}/${TYPO3NAME}/typo3/index.html
${TYPO3DIR}/${TYPO3NAME}/typo3/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/index_re.php
${TYPO3DIR}/${TYPO3NAME}/typo3/init.php
${TYPO3DIR}/${TYPO3NAME}/typo3/install/README.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/install/_.htaccess
${TYPO3DIR}/${TYPO3NAME}/typo3/install/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/install/default.htm
${TYPO3DIR}/${TYPO3NAME}/typo3/install/default.html
${TYPO3DIR}/${TYPO3NAME}/typo3/install/index.htm
${TYPO3DIR}/${TYPO3NAME}/typo3/install/index.html
${TYPO3DIR}/${TYPO3NAME}/typo3/install/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/interfaces/interface.backend_toolbaritem.php
${TYPO3DIR}/${TYPO3NAME}/typo3/interfaces/interface.localrecordlist_actionsHook.php
${TYPO3DIR}/${TYPO3NAME}/typo3/js/backend.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/backendsearch.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/browse_links.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/clearcachemenu.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/clickmenu.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/common.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/constantEditor.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/iecompatibility.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/modulemenu.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/shortcutmenu.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/sizemanager.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/toolbarmanager.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/tree.js
${TYPO3DIR}/${TYPO3NAME}/typo3/js/workspaces.js
${TYPO3DIR}/${TYPO3NAME}/typo3/jsfunc.tbe_editor.js
${TYPO3DIR}/${TYPO3NAME}/typo3/listframe_loader.php
${TYPO3DIR}/${TYPO3NAME}/typo3/login_frameset.php
${TYPO3DIR}/${TYPO3NAME}/typo3/logomenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/logout.php
${TYPO3DIR}/${TYPO3NAME}/typo3/md5.js
${TYPO3DIR}/${TYPO3NAME}/typo3/mod.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/README.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/file/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/file/file.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/file/list/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/file/list/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/file/list/list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/about/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/about/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/about/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/about/info.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/cshmanual/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/cshmanual/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/help.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/class.em_index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/class.em_soap.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/class.em_terconnection.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/class.em_unzip.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/class.em_xmlhandler.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/class.nusoap.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/download.png
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/em.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/install.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/oodoc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em/uninstall.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/note.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/tool.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/user.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/_.htaccess
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/class.wslib.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/class.wslib_gui.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/cli/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/cli/ws_cli.phpsh
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/progress.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/publish.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/sys_workspace.png
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/workspaceforms.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/wsol_preview.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/func/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/func/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/func/func.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/func/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/info/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/info/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/info/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/info/info.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/info/log.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/list/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/list/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/list/list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/perm/class.sc_mod_web_perm_ajax.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/perm/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/perm/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/perm/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/perm/legend.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/perm/perm.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/perm/perm.js
${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/website.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/move_el.php
${TYPO3DIR}/${TYPO3NAME}/typo3/show_item.php
${TYPO3DIR}/${TYPO3NAME}/typo3/show_rechis.php
${TYPO3DIR}/${TYPO3NAME}/typo3/stylesheet.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/README.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/_.htaccess
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/aboutmodules/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/aboutmodules/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/aboutmodules/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/aboutmodules/mod/aboutmodules.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/aboutmodules/mod/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/aboutmodules/mod/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-active-record.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-csvlib.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-datadict.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-error.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-errorhandler.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-errorpear.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-exceptions.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-iterator.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-lib.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-memcache.lib.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-pager.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-pear.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-perf.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-php4.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-time.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-xmlschema.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb-xmlschema03.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/adodb.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/contrib/toxmlrpc.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-access.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-db2.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-firebird.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-generic.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-ibase.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-informix.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-mssql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-mysql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-oci8.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-postgres.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-sapdb.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict/datadict-sybase.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-access.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-ado.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-ado5.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-ado_access.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-ado_mssql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-borland_ibase.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-csv.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-db2.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-fbsql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-firebird.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-ibase.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-informix.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-informix72.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-ldap.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-mssql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-mssqlpo.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-mysql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-mysqli.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-mysqlt.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-netezza.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-oci8.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-oci805.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-oci8po.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-odbc.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-odbc_db2.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-odbc_mssql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-odbc_oracle.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-odbtp.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-odbtp_unicode.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-oracle.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-pdo.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-pdo_mssql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-pdo_mysql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-pdo_oci.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-pdo_pgsql.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-postgres.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-postgres64.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-postgres7.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-postgres8.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-proxy.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-sapdb.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-sqlanywhere.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-sqlite.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-sqlitepo.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-sybase.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-sybase_ase.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers/adodb-vfp.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-ar.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-bg.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-bgutf8.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-ca.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-cn.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-cz.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-da.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-de.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-en.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-es.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-esperanto.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-fr.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-hu.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-it.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-nl.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-pl.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-pt-br.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-ro.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-ru1251.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-sv.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang/adodb-uk1251.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/license.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/pear/Auth/Container/ADOdb.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/pear/readme.Auth.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/pivottable.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/readme.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/rsfilter.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/server.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/toexport.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/tohtml.inc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/xmlschema.dtd
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/xmlschema03.dtd
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/xsl/convert-0.1-0.2.xsl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/xsl/convert-0.1-0.3.xsl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/xsl/convert-0.2-0.1.xsl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/xsl/convert-0.2-0.3.xsl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/xsl/remove-0.2.xsl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/xsl/remove-0.3.xsl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/checkconnectionwizard.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/class.tx_adodb_tceforms.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/datasource_flexform_ds.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/doc/494.DBAL.patch
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/doc/README
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/doc/mssql-error-fix.patch
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/locallang_datasource_config.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/locallang_wizard.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/res/checkconnection.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/class.tx_belog_webinfo.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/mod/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/mod/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/mod/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/mod/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/mod/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/mod/log.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/class.tx_beuser.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/class.tx_beuser_switchbackuser.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/mod/beuser.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/mod/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/mod/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/mod/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/mod/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/localizationoverview.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/localizationoverview1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_10.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_11.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_12.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_13.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_14.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_15.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_6.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_7.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagemodule_9.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagetree_overview_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagetree_overview_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagetree_overview_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagetree_overview_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagetree_overview_5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagetree_overview_6.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagetree_overview_7.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagetree_overview_8.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages/pagetree_overview_9.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/ext_tables.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/ext_tables_static+adt.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout/class.tx_cms_layout.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout/db_layout.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout/db_new_content_el.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout/layout.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout/locallang_db_new_content_el.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/locallang_csh_webinfo.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/locallang_csh_weblayout.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/locallang_tca.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/locallang_ttc.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/readme.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tbl_cms.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tbl_tt_content.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/GPL.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/README.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_content.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_eidtools.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_fe.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_fetce.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_feuserauth.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_gifbuilder.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_menu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_pagegen.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_pibase.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/class.tslib_search.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/index.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/index_ts.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/interfaces/interface.tslib_content_cobjgetsinglehook.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/interfaces/interface.tslib_content_getdatahook.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/interfaces/interface.tslib_content_stdwraphook.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/arrow_act.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/arrow_no.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/blackclear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/blackdot.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/blank.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet1_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet1_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet2_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet2_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet3_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet3_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet4.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet4_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet4_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet5_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/bullet5_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/dot.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/dots1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/dots2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/fwd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/greenclear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/mark.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/pen1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/pen2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/punktmrk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/redclear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/rew.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets/stipler3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/left_ro.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/maskpart1.tif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/maskpart2.tif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/maskpart3.tif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/menubottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/menulevel1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/menulevel2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/menutop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/middle.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/middle_ro.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons/right_ro.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/emoticons/angry.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/emoticons/grin.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/emoticons/sad.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/emoticons/smile.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/emoticons/tongue.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/emoticons/tonguewink.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/emoticons/veryhappy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/emoticons/wink.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/3ds.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/CREDITS.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/ai.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/ani.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/au.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/avi.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/bmp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/cdr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/css.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/csv.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/default.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/doc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/dtd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/eps.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/exe.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/fh3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/flash.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/folder.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/gif.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/htm.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/html.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/html1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/html2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/html3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/ico.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/inc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/java.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/jpg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/js.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/max.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/mid.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/mov.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/mpeg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/mpg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/pcd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/pcx.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/pdf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/php3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/png.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/ps.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/psd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/rtf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/sgml.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/swf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/sxc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/sxw.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/t3d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/t3x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/tga.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/tif.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/tmpl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/ttf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/txt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/wav.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/wrl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/xls.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/xml.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/xsl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons/zip.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/cctld.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/credits.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_cz.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_cz_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_cz_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_de.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_de_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_de_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_dk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_dk_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_dk_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_es.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_es_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_es_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_fi.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_fi_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_fi_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_fr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_fr_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_fr_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_it.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_it_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_it_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_lt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_lt_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_lt_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_lv.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_lv_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_lv_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_nl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_nl_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_nl_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_pl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_pl_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_pl_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_se.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_se_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_se_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_si.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_si_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_si_si.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_sk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_sk_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_sk_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_uk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_uk_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/flag_uk_f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_at.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_be.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_ch.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_cz.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_de.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_dk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_es.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_fi.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_fr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_gr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_ie.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_is.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_it.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_lt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_no.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_pl.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_pt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_se.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_sk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_tr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags/hl_uk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist1_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist1_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist2_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist2_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist3_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist3_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist4_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist4_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist5_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist5_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist6_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist6_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist7_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist7_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist8_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/artist8_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom1_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom1_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom2_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom2_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom3_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom3_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom4_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom4_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom5_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom5_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom6_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom6_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom7_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom7_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom8_bottom.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames/darkroom8_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/icons_misc/content_client.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/icons_misc/content_default.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/icons_misc/content_fresh.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/icons_misc/content_selected.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/icons_misc/notfound_thumb.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/icons_misc/notfound_thumb.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/creditcard_control_numbers.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/creditcard_control_numbers_mini.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/dankort.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/dankort_small.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/diners.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/diners_small.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/express.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/letter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/mastercard.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/mastercard_small.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/money.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/nordea.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/nordea_orig.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/nordea_small.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/pakketrans.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/postdanmark.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/set.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/soloe.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/soloe_small.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/visa.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos/visa_small.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/blank.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/defaultstylesheet.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/end.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/example_callfunction.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/example_itemArrayProcFunc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/example_keepRollover.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/example_keepRollover.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/example_languageMenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/example_typolinkpop.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/freesite_dummy_page_menu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/gmenu_foldout.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/gmenu_layers.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/join.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/joinbottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/jsfunc.foldout.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/jsfunc.layermenu.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/line.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/makeMenu_datedirectory.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/pdaversion_content.tmpl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/plaintextLib.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/plaintext_content.tmpl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/postit.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/printversion_content.tmpl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/testscript.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/testscript_EXT.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/testscript_INT.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/thread.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/tmenu_layers.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/wapversionLib.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/xmenu_layers.diff
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts/xmlversionLib.inc
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/back1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/back2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/back3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/back4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/back5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/candidate/bar_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/candidate/bar_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/candidate/dot_round.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/candidate/line.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/crcph/home.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/crcph/logo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/crcph/logo_welcome.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/crcph/main.htm
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/crcph/pil.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/crcph/pil2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/crcph/search.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/crcph/toparrow.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/flag_de.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/flag_de_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/flag_dk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/flag_dk_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/flag_uk.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/flag_uk_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green/background_page.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green/menu_back.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green/menu_first.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green/menu_last.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green/menu_middle.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green/menu_sublevel.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green/pict_logo.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green/pict_top.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green/template.tmpl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/hyper/background_main.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/hyper/background_top.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/hyper/sprache.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/hyper/titel.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/menuRO_mask.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/menuback_image.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/menuback_mask.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/menuback_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/newsletter/600.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/newsletter/blue.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/newsletter/signup.htm
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/newsletter/style.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/newsletter/template.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/newsletter/toplogo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/postit_1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/postit_2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/postit_3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re/left_background.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re/leftmenu_act.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re/leftmenu_no.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re/leftmenu_ro.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re/menu_afterimage.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re/menuback.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re/my_logo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re/top_background.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re/top_leftofmenu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/testlogo.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/testlogo2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/topimage.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/topimage.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/toplogo.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/topmask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/typo3logo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/typo3power1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/typo3power2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/typologo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/pagegen.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/publish.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/showpic.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/web_info/class.tx_cms_webinfo.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/web_info/class.tx_cms_webinfo_lang.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/web_info/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/fegroups_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/fegroups_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/feusers_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/feusers_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/hidden_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/hidden_page.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/page_shortcut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/page_shortcut.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/pages_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/pages_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/static.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/systemplate.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/systemplate1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/systemplate2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/ttcontent_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/ttcontent_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/ttcontent_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/ttcontent_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/ttcontent_5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/ttcontent_6.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages/ttcontent_7.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/locallang_csh_fe_groups.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/locallang_csh_fe_users.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/locallang_csh_pages.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/locallang_csh_pageslol.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/locallang_csh_statictpl.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/locallang_csh_sysdomain.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/locallang_csh_systmpl.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/locallang_csh_ttcontent.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/css/example.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/css/example_outlines.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/css/img/background_gradient.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/css/img/red_arrow_bullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/css/readme.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/doc/manual.sxw
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/ext_conf_template.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/flexform_ds.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/locallang_db.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/pageTSconfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/pi1/class.tx_cssstyledcontent_pi1.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/pi1/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/static/constants.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/static/editorcfg.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/static/setup.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/class.ux_db_list_extra.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/class.ux_t3lib_db.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/class.ux_t3lib_sqlengine.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/class.ux_t3lib_sqlparser.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/doc/class.tslib_fe.php.diff
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/doc/manual.sxw
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/ext_tables.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/handlers/class.tx_dbal_handler_openoffice.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/handlers/class.tx_dbal_handler_rawmysql.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/handlers/class.tx_dbal_handler_xmldb.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/mod1/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/mod1/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/mod1/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/mod1/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/mod1/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/mod1/moduleicon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/extra_page_cm_options/class.tx_extrapagecmoptions.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/extra_page_cm_options/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/extra_page_cm_options/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/extra_page_cm_options/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/extra_page_cm_options/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/doc/manual.sxw
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/ext_tables.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/ext_typoscript_setup.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/flexform.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/locallang_db.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/pi1/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/template.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/func_wizards/class.tx_funcwizards_webfunc.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/func_wizards/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/func_wizards/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/func_wizards/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/func_wizards/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/func_wizards/locallang_csh.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/app/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/app/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/app/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/app/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/class.tx_impexp.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/class.tx_impexp_clickmenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/diffview.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/excludebox.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/export.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/export1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/export2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/extdep.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/fileformat.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/htmlcss.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/impexp.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/impexp_misc.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/impexp_misc1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/impexp_misc2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/impexp_misc3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/impexp_misc4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/import.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/import_selectfile.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/metadata.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/pagetreecfg.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/phpext.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/references.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/references1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/references2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/singlerecord.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/static.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/static1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/tablelist.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages/update.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/export.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/ext_tables.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/import.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/locallang_csh.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/modfunc1/class.tx_impexp_modfunc1.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/modfunc1/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/class.crawler.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/class.doublemetaphone.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/class.external_parser.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/class.indexer.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/class.lexer.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/cli/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/cli/indexer_cli.phpsh
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/doc/README.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/example/class.crawlerhook.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/example/class.pihook.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/ext_conf_template.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/ext_tables.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/ext_typoscript_editorcfg.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/ext_typoscript_setup.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/locallang_csh_indexcfg.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/locallang_db.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/mod/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/mod/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/mod/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/mod/isearch.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/mod/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/modfunc1/class.tx_indexedsearch_modfunc1.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/modfunc1/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/modfunc2/class.tx_indexedsearch_modfunc2.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/modfunc2/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/class.tx_indexedsearch.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/considerations.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/indexed_search.tmpl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/csv.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/doc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/html.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/jpg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/locked.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/pages.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/pdf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/pps.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/ppt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/rtf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/sxc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/sxi.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/sxw.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/tif.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/txt.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/xls.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res/xml.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/template_css.tmpl
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/tca.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/class.tx_infopagetsconfig_webinfo.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/cshimages/img_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/cshimages/img_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/cshimages/img_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/cshimages/img_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/cshimages/img_5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/locallang_csh_webinfo.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/blackwhite_mask.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/combine_back.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/combine_mask.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/copyrights.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/greenback.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/jesus.bmp
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/jesus.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/jesus.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/jesus.pcx
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/jesus.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/jesus.tga
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/jesus.tif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/jesus2_transp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/jesus2_transp.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/pdf_from_imagemagick.pdf
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs/typo3logotype.ai
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/mod/class.tx_install.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/mod/class.tx_install_eid.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/mod/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/mod/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/mod/install.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/mod/install.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/mod/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/updates/class.tx_coreupdates_compatversion.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/updates/class.tx_coreupdates_mergeadvanced.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/updates/class.tx_coreupdates_notinmenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_44f1273ab1.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_48784f637a.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_48784f637a.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_a8f7a333c8.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_a8f7a333c8.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_d1fa76faad.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_d1fa76faad.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_f6b0cedc4d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_f6b0cedc4d.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_fcaf26c521.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_fe1e67e805.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_fe1e67e805.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_read_ai.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_read_bmp.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_read_gif.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_read_jpg.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_read_pcx.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_read_pdf.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_read_png.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_read_tga.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_read_tif.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_scale_gif.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_scale_jpg.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_scale_png.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_write_gif.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/install_write_png.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs/readme.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_10.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_11.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_12.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_13.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_14.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_15.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_16.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_17.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_18.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_19.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_20.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_6.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_7.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_8.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/be_groups_9.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/beuser_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/beuser_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/beuser_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/beuser_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_10.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_11.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_12.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_13.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_14.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_15.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_16.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_17.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_18.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_19.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_20.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_21.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_22.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_23.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_24.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_25.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_26.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_27.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_28.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_29.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_30.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_31.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_32.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_33.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_34.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_35.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_36.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_37.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_38.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_39.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_40.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_41.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_42.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_43.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_44.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_46.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_47.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_48.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_49.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_50.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_51.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_52.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_53.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_54.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_55.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_56.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_57.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_58.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_59.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_6.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_60.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_61.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_62.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_63.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_64.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_65.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_67.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_68.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_69.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_7.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_70.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_8.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/core_9.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_10.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_11.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_12.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_6.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_7.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_8.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/em_9.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/filemount_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/login.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pages_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pages_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pages_3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pages_4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pages_5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pages_6.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pages_7.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pages_8.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pagetree_overview_10.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages/pagetree_overview_11.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/lang.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_alt_doc.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_alt_intro.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_browse_links.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_core.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_be_groups.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_be_users.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_corebe.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_em.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_pages.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_sysfilem.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_syslang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_sysws.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_web_func.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_csh_web_info.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_general.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_misc.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_admintools.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_doc.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_file.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_file_list.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_help.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_help_about.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_help_cshmanual.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_tools.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_tools_em.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_user.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_user_ws.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_usertools.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_web.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_web_func.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_web_info.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_web_list.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_mod_web_perm.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_show_rechis.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_tca.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_tsfe.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_view_help.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/locallang_wizards.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/HOWTO_clean_up_TYPO3_installations.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/class.tx_lowlevel_cleaner.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/class.tx_lowlevel_cleaner_core.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.cleanflexform.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.deleted.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.double_files.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.lost_files.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.missing_files.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.missing_relations.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.orphan_records.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.rte_images.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.syslog.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods/class.versions.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/config/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/config/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/config/config.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/config/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/config/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint/cli/cleaner_cli.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint/cli/refindex_cli.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint/db.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/class.tx_opendocs.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/ext_conf_template.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/locallang_opendocs.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/mod/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/mod/document.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/mod/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/opendocs.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/opendocs.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/opendocs.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/registerToolbarItem.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/toolbar_item_active_bg.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/class.tx_rtehtmlarea_base.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/class.tx_rtehtmlareaapi.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/doc/manual.sxw
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/ext_conf_template.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/ext_tables.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/AboutEditor/class.tx_rtehtmlarea_abouteditor.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/AboutEditor/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/AboutEditor/skin/images/about.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Acronym/class.tx_rtehtmlarea_acronym.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Acronym/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Acronym/skin/images/acronym.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/class.tx_rtehtmlarea_blockelements.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/blockquote.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/indent.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/insertOrderedList.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/insertParagraphAfter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/insertParagraphBefore.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/insertUnorderedList.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/justifyCenter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/justifyFull.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/justifyLeft.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/justifyRight.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images/outdent.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockStyle/class.tx_rtehtmlarea_blockstyle.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockStyle/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/CharacterMap/class.tx_rtehtmlarea_charactermap.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/CharacterMap/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/CharacterMap/skin/images/insertCharacter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/ContextMenu/class.tx_rtehtmlarea_contextmenu.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultClean/class.tx_rtehtmlarea_defaultclean.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultColor/class.tx_rtehtmlarea_defaultcolor.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultColor/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultColor/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultColor/skin/images/forecolor.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultColor/skin/images/hilitecolor.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultFont/class.tx_rtehtmlarea_defaultfont.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultFont/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultImage/class.tx_rtehtmlarea_defaultimage.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultImage/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultImage/skin/images/image.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/class.tx_rtehtmlarea_defaultinline.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/skin/images/bold.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/skin/images/italic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/skin/images/strikethrough.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/skin/images/subscript.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/skin/images/superscript.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/skin/images/underline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultLink/class.tx_rtehtmlarea_defaultlink.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultLink/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultLink/skin/images/link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultLink/skin/images/unlink.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DynamicCSS/class.tx_rtehtmlarea_dynamiccss.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DynamicCSS/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/FindReplace/class.tx_rtehtmlarea_findreplace.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/FindReplace/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/FindReplace/skin/images/find.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineCSS/class.tx_rtehtmlarea_inlinecss.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineCSS/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/class.tx_rtehtmlarea_inlineelements.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/res/pageTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/bidioverride.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/big.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/bold.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/citation.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/code.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/definition.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/deletedtext.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/emphasis.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/insertedtext.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/italic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/keyboard.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/monospaced.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/quotation.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/sample.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/small.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/span.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/strikethrough.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/strong.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/subscript.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/superscript.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/underline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images/variable.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InsertSmiley/class.tx_rtehtmlarea_insertsmiley.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InsertSmiley/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InsertSmiley/skin/images/smiley.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Language/class.tx_rtehtmlarea_language.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Language/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Language/skin/images/left_to_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Language/skin/images/right_to_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/QuickTag/class.tx_rtehtmlarea_quicktag.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/QuickTag/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/QuickTag/skin/images/inserttag.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/RemoveFormat/class.tx_rtehtmlarea_removeformat.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/RemoveFormat/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/RemoveFormat/skin/images/clean.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/SpellChecker/class.tx_rtehtmlarea_spellchecker.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/SpellChecker/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/SpellChecker/skin/images/spell-check.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Color/class.tx_rtehtmlarea_typo3color.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Color/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Color/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Color/skin/images/forecolor.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Color/skin/images/hilitecolor.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3HtmlParser/class.tx_rtehtmlarea_typo3htmlparser.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Image/class.tx_rtehtmlarea_typo3image.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Image/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Image/skin/images/image.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Link/class.tx_rtehtmlarea_typo3link.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Link/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Link/skin/images/link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Link/skin/images/unlink.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/class.tx_rtehtmlarea_tableoperations.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/cell-delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/cell-insert-after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/cell-insert-before.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/cell-merge.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/cell-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/cell-split.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/col-delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/col-insert-after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/col-insert-before.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/col-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/col-split.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/insert_table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/row-delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/row-insert-above.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/row-insert-under.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/row-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/row-split.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/table-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/table-restyle.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images/toggle-borders.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TextStyle/class.tx_rtehtmlarea_textstyle.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TextStyle/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/UserElements/class.tx_rtehtmlarea_userelements.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/UserElements/skin/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/UserElements/skin/images/user.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/HTMLAREA_LICENSE.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/htmlarea-gecko.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/htmlarea-ie.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/locallang_dialogs.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/locallang_msg.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/locallang_tooltips.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/AboutEditor/about-editor.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/AboutEditor/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/AboutEditor/popups/about.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/Acronym/acronym.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/Acronym/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/BlockElements/block-elements.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/BlockElements/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/BlockStyle/block-style.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/BlockStyle/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/CharacterMap/character-map.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/CharacterMap/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/CharacterMap/popups/select_character.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/ContextMenu/context-menu.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/ContextMenu/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultClean/default-clean.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultClean/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultColor/default-color.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultColor/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultColor/popups/select_color.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultFont/default-font.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultFont/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultImage/default-image.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultImage/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultImage/popups/insert_image.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultInline/default-inline.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultInline/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultLink/default-link.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultLink/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultLink/popups/link.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DynamicCSS/dynamiccss.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DynamicCSS/dynamiccss.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DynamicCSS/img/red_arrow_bullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DynamicCSS/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/FindReplace/find-replace.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/FindReplace/fr_engine.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/FindReplace/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/FindReplace/popups/find_replace.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InlineCSS/inlinecss.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InlineCSS/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InlineElements/inline-elements.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InlineElements/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/insert-smiley.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/popups/insertsmiley.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0001.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0002.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0003.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0004.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0005.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0006.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0007.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0008.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0009.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0010.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0011.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0012.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0013.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0014.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0015.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0016.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0017.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0018.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0019.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys/0020.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/Language/language.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/Language/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/popups/quicktag.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/quick-tag.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/tag-lib.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/RemoveFormat/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/RemoveFormat/popups/removeformat.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/RemoveFormat/remove-format.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SelectColor/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SelectColor/select-color.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SpellChecker/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SpellChecker/popups/spell-check-ui-iso-8859-1.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SpellChecker/popups/spell-check-ui.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SpellChecker/spell-check-logic.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SpellChecker/spell-check-style.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SpellChecker/spell-check-ui.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SpellChecker/spell-checker.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers/img/download.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers/img/external_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers/img/external_link_new_window.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers/img/internal_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers/img/internal_link_new_window.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers/img/mail.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers/typo3browsers.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Color/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Color/typo3color.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3HtmlParser/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3HtmlParser/typo3html-parser.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Image/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Image/typo3image.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Link/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Link/typo3link.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/popups/insert_table.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TextStyle/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TextStyle/text-style.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/UserElements/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/UserElements/user-elements.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/popups/blank.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/popups/editor_help.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/htmlarea-edited-content.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/Acronym/ed_acronym.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements/blockquote.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements/indent.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements/insertParagraphAfter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements/insertParagraphBefore.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements/justifyCenter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements/justifyFull.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements/justifyLeft.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements/justifyRight.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements/outdent.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/CharacterMap/ed_charmap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/FindReplace/ed_find.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/bidioverride.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/big.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/bold.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/citation.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/code.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/definition.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/deletedtext.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/emphasis.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/insertedtext.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/italic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/keyboard.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/monospaced.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/quotation.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/sample.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/small.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/span.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/strikethrough.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/strong.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/subscript.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/superscript.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/underline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements/variable.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InsertSmiley/ed_smiley.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/QuickTag/ed_quicktag.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/RemoveFormat/ed_clean.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/SelectColor/CO-forecolor.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/SelectColor/CO-hilitecolor.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/SpellChecker/spell-check.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TYPO3Browsers/ed_image.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TYPO3Browsers/ed_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TYPO3Browsers/ed_unlink.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TYPO3ViewHelp/module_help.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/cell-delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/cell-insert-after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/cell-insert-before.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/cell-merge.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/cell-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/cell-split.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/col-delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/col-insert-after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/col-insert-before.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/col-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/col-split.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/insert_table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/row-delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/row-insert-above.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/row-insert-after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/row-insert-under.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/row-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/row-split.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/table-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/table-restyle.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations/toggle-borders.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/UserElements/ed_user.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/definitionItem.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/definitionList.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_about.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_blank.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_color_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_color_fg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_copy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_custom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_cut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_help.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_hr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_html.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_image.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_left_to_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_list_bullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_list_num.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_paste.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_redo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_right_to_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_save.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_splitblock.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_splitcel.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_undo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/ed_unlink.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/fullscreen_maximize.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/fullscreen_minimize.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/insert_table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/locallang_db.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod2/acronym.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod2/class.tx_rtehtmlarea_acronym_mod.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod2/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod2/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod2/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod3/browse_links.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod3/class.tx_rtehtmlarea_browse_links.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod3/class.tx_rtehtmlarea_dam_browse_links.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod3/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod3/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod3/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_dam_browse_media.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_select_image.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod4/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod4/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod4/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod4/select_image.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod5/class.tx_rtehtmlarea_user.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod5/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod5/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod5/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod5/user.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod6/class.tx_rtehtmlarea_parse_html.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod6/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod6/parse_html.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/pi1/class.tx_rtehtmlarea_pi1.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/pi1/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/pi2/class.tx_rtehtmlarea_pi2.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/pi2/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/pi3/class.tx_rtehtmlarea_pi3.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons/img/download.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons/img/external_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons/img/external_link_new_window.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons/img/internal_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons/img/internal_link_new_window.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons/img/mail.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons/pageTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/advanced/pageTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/advanced/userTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/contentcss/default.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/contentcss/img/red_arrow_bullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/contentcss/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/demo/pageTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/demo/userTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/image/pageTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/indentalign/pageTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/proc/pageTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/typical/pageTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/typical/userTSConfig.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/static/clickenlarge/setup.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/tca.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/lang.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/rte.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup10.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup11.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup12.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup3.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup4.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup6.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup7.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup8.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages/setup9.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/locallang_csh_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/mod/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/mod/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/mod/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/mod/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/mod/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/mod/setup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sv/class.tx_sv_auth.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sv/class.tx_sv_authbase.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sv/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sv/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sv/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sv/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/class.tx_sysaction.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/ext_tables.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/locallang_csh_sysaction.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/locallang_tca.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/sys_action.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/sys_action__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action/tca.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_note/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_note/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_note/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_note/ext_tables.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_note/locallang_csh_sysnote.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_note/locallang_tca.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/LICENSE
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/class.tx_t3editor.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/css/t3editor.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/css/t3editor_inner.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/icons/loader_eeeeee.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/LICENSE
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/README
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/codemirror.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/editor.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/parsejavascript.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/parsetyposcript.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/parsexml.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/patch.codemirror055.diff
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/select.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/stringstream.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/tokenizejavascript.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/tokenizetyposcript.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/undo.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror/util.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/t3editor.js
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/alt_backend_logo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/alt_intro_image.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/border_collapse.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/border_expand.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/border_right_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/border_right_top.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/button_bg_o.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/c_mainitem_hl_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/dropdown_arrow.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/dropdown_arrow_o.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/faded_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/forms_line_top.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/h2_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/h3_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/h4_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/h_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/h_bgdots.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/icon_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/icon_toolbar_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/icon_toolbar_bg_light.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/icon_toolbar_bg_light_o.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/intro_all_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/intro_all_bg.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/intro_image.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/li.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/lightgrey_fade.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/list_sep.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/list_sep2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/login_all_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/login_back.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/login_back.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/login_submit_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/menu_back.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/menu_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/navframe_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/small_arrow.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/toolbar-icon-over.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/toolbar-sep.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/top_logo_back.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/top_logo_bg.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds/ul.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/debuglib.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/ext_localconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/acm_spacer2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/sys_action/sys_action.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/sys_action/sys_action__h.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/sys_note/ext_icon.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/templavoila/mod1/clip_ref.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/templavoila/mod1/moduleicon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/templavoila/mod1/moduleicon.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_address/ext_icon.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_address/ext_icon__h.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_board/ext_icon.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_board/ext_icon__h.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_calender/ext_icon.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_calender/ext_icon__h.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_calender/ext_icon__ht.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_calender/ext_icon__t.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_calender/ext_icon__x.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_guest/ext_icon.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_guest/ext_icon__h.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news/ext_icon.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news/ext_icon__h.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news/ext_icon__ht.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news/ext_icon__htu.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news/ext_icon__hu.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news/ext_icon__t.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news/ext_icon__tu.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news/ext_icon__u.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news/ext_icon__x.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/user_photomarathon/photomarathon/user_pm_icon.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/user_photomarathon/photomarathon/user_pm_icon__h.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/user_photomarathon/tab_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/user_photomarathon/tab_icon.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/acm_spacer.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/acm_spacer2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/add.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/alt_backend_logo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/alt_menu_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/alt_menu_mainitem_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/alt_topmenu_back_dummy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/alt_topmenu_back_full.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/altmenuline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/blackclear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/blinkarrow_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/blinkarrow_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/border_back.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/button_down.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/button_hide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/button_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/button_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/button_unhide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/button_up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/bullet_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/filelinks.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/html.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/images_only.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/login_form.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/mailform.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/multimedia.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/regular_text.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/searchform.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/sitemap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/sitemap2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/text_image_below.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/text_image_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz/user_defined.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clear_all_cache.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clear_cache.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clear_cache_files_in_typo3c.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clearout.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clip_copy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clip_copy_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clip_cut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clip_cut_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clip_deselect.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clip_pasteafter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clip_pasteinto.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clip_select.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/clipbrd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/close.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/close_12h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/closedok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/closedok_2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/content_client.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/content_default.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/content_fresh.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/content_selected.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/copy_page_after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/copy_page_into.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/copymode_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/copymode_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/copymode_s.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/csv.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/delete_record.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/deleted_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/deletedok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/dmailerping.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/down.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/dummy_button.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/dummy_click.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/dummy_module.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/dummy_pane.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/edit.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/edit2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/edit2_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/edit2_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/edit_fe.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/edit_file.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/edit_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/edit_rtewiz.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/editaccess.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/expand_window.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/fileicons/css.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/fileicons/folder.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/garbage.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/go.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/goback.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/group_clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/group_clipbrd.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/group_tobottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/group_totop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/group_upload.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/helpbubble.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/helpbubble_old.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/helpmark.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/hidden_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/history.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/history2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/history_details.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/_icon_ftp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/_icon_ftp_2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/_icon_ftp_readonly.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/_icon_webfolders.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/_icon_website.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_admin.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_groups.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_groups__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_groups_lists.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users_admin.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users_admin__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users_admin__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users_admin__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/be_users_admin__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/domain.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/domain__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/folder_up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/halfline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/modules_fe_users.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__fup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__hfup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__htup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__hup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__tup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_language_overlay.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__fup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__hfup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__htup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__hup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__tup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_notinmenu__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__fup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__hfup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__htup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__hup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__tup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_shortcut__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/pages_up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__fup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__hfup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__htup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__hup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__tup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/recycler__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/shadow_deleted.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/shadow_hide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__fup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__hfup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__htup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__hup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__tup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/spacer_icon__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__fup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__hfup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__htup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__hup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__tup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/sysf__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_add__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/template_standard__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_bullets__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_form__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_header__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_html__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_image__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_list__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_login__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_menu__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_mm__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_search__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_shortcut__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_table__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_textpic__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__f.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__hf.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__hfu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__ht.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__htu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__hu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__t.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__u.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i/tt_content_uploads__x.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/icon_fatalerror.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/icon_note.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/icon_ok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/icon_ok2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/icon_ok_blue.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/icon_ok_brown.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/icon_ok_dim.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/icon_warning.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/icon_warning2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/import.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/import_update.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/info.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/insert1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/insert2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/insert3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/insert4.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/insert5.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/legend.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/line.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/link_popup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/loginlogo_transp.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/logo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/logout.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/mailicon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/maximize.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/menu_dummy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/minimize.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/minusbullet_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/mode1_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/mode2_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/mode3_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/mode4_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/mode5_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/mode6_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/mode7_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/move_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/move_page_after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/move_page_into.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/move_record.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/napshot.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/new_el.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/new_file.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/new_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/new_record.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/newmail.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/newrecord2_marker.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/newrecord2_marker_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/newrecord_marker.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/newrecord_marker_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/notfound_thumb.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/notfound_thumb.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/arrowbullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/blank.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/halfline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/join.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/joinbottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/jointop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/line.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/minus.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/minusbottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/minusbullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/minusonly.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/minustop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/plus.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/plusbottom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/plusbullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/plusbullet_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/plusonly.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/plustop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/quadline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol/stopper.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/old2_button_unhide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/old_button_hide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/old_button_unhide.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/open_in_new_window.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/options.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_accesssection.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_deleted.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_group.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_hidden.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_hidden_timing.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_no_icon_found.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_no_icon_found.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_sub.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_sub4.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_sub5.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/overlay_timing.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/perm.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pil2down.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pil2left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pil2right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pil2up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pildown.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pilleft_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pilleft_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pilleft_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pilright_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pilright_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pilright_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/pilup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/plusbullet2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/plusbullet_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/recordlock_warning.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/recordlock_warning2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/recordlock_warning2_ani.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/recordlock_warning3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/reddown.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/10.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/11.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/12.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/13.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/14.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/15.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/16.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/17.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/18.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/19.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/20.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/4.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/5.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/6.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/7.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/8.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers/9.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/redup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/refresh.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/refresh_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/refresh_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rel_db.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rel_db_lost.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rel_db_static.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rel_file.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rel_softref.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rename.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/required_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/saveandclosedok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/saveandclosedok_2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/savedok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/savedok_red.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/savedoknew.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/savedokshow.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/savedokshow_red.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/savesnapshot.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/select_duplicates.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selectall.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selectmode_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selectmode_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selectmode_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selectmode_s.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selectnone.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/above_center.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/above_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/above_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/below_center.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/below_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/below_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/intext_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/intext_left_nowrap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/intext_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons/intext_right_nowrap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/shortcut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/shortcut_background.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/spacer.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stiblet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stiblet_large.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stiblet_medium.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stiblet_medium2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stiblet_mini.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stiblet_mini2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stiblet_minidoc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stiblet_minidoc2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stiblet_nodoc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/stop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/su.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/su_back.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/switch.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/thumb_d.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/thumb_h.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/thumb_n.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/thumb_s.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/todoicon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/todoicon_group.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/todoicon_user.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/topmenu_background.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/topmenu_background_palette.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/turn_down.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/turn_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/turn_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/turn_up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/typo3logo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/undo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/up.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/upload.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/viewdok.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/wizard_colorpickerex.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/wizard_forms.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/wizard_rte.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/wizard_rte2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/wizard_table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/wizard_tsconfig.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/wizard_tsconfig_s.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/working.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/zoom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/zoom2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/legend.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/mod/web/perm/legend.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_doc.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_file.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_file_images.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_file_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_file_list_big.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_help.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_help_about.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_help_aboutmodules.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_help_cshmanual.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_help_ts.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_tools.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_tools_config.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_tools_dbint.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_tools_em.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_tools_install.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_tools_isearch.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_tools_log.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_tools_phpmyadmin.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_tools_user.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_user.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_user_setup.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_user_taskcenter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_user_taskcenter_big.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_func.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_info.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_layout.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_layout_big.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_list.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_list_big.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_modules.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_perms.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_ts.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_view.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/module_web_view_big.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/options.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/images/login/loginimage_4_2.jpg
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/issues.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/registerIe6Stylesheet.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/alt_menu_mainitem_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/htmlarea-edited-content.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/htmlarea.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/Acronym/ed_acronym.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements/blockquote.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements/indent.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements/insertParagraphAfter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements/insertParagraphBefore.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements/justifyCenter.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements/justifyFull.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements/justifyLeft.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements/justifyRight.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements/outdent.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/CharacterMap/ed_charmap.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/FindReplace/ed_find.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/bidioverride.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/big.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/bold.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/citation.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/code.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/definition.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/deletedtext.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/emphasis.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/insertedtext.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/italic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/keyboard.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/monospaced.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/quotation.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/sample.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/small.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/span.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/strikethrough.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/strong.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/subscript.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/superscript.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/underline.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements/variable.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InsertSmiley/ed_smiley.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/QuickTag/ed_quicktag.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/RemoveFormat/ed_clean.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/SelectColor/CO-forecolor.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/SelectColor/CO-hilitecolor.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/SpellChecker/spell-check.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TYPO3Browsers/ed_image.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TYPO3Browsers/ed_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TYPO3Browsers/ed_unlink.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TYPO3ViewHelp/module_help.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/cell-delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/cell-insert-after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/cell-insert-before.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/cell-merge.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/cell-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/cell-split.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/col-delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/col-insert-after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/col-insert-before.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/col-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/col-split.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/insert_table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/row-delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/row-insert-above.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/row-insert-after.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/row-insert-under.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/row-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/row-split.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/table-prop.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/table-restyle.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations/toggle-borders.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/UserElements/ed_user.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/definitionItem.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/definitionList.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_about.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_blank.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_color_bg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_color_fg.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_copy.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_custom.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_cut.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_delete.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_help.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_hr.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_html.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_image.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_left_to_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_link.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_list_bullet.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_list_num.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_paste.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_redo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_right_to_left.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_splitblock.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_splitcel.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_undo.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/ed_unlink.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/insert_table.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/separator.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/_.htaccess
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/backend-style.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/ext-cms-layout-db-layout-php.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/ie6.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/modulemenu.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/stylesheet_post.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-TCEforms.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-alt-db-navframe-php.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-alt-menu-php.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-alt-palette-php.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-alt-topmenu-dummy-php.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-clipboard.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-colors.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-csh.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-db-list-php.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-dyntabmenu.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-file-list.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-index-php.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-tree.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets/typo3-workspaces.css
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/task/class.mod_user_task.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/task/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/task/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/task/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/task/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/task/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/task/task.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/ext_tables.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/ext_tables_static+adt.sql
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/mod1/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/mod1/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/mod1/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/mod1/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/mod1/moduleicon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ts/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ts/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ts/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ts/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ts/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ts/ts.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ts/ts1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_analyzer/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_analyzer/class.tx_tstemplateanalyzer.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_analyzer/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_analyzer/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_analyzer/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/class.tx_tstemplateceditor.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/1.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/10.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/11.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/12.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/13.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/14.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/15.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/16.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/17.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/18.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/19.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/20.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/4.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/5.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/6.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/7.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/8.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/9.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/BUG_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/BUG_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/BUG_menu2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/BUSINESS_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/BUSINESS_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/CANDIDATE_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/CANDIDATE_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/CANDIDATE_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/CrCPH_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/FIRST_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/FIRST_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/GLCK_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/GLCK_columns.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/GLCK_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/GREEN_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/GREEN_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/GREEN_menu2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/GREEN_menu3.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/HYPER_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/HYPER_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/HYPER_menu2.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/HYPER_page.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/HYPER_toptitle.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/MM_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/MM_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/MM_right.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/NEWSLETTER_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/RE_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/RE_leftmenu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/RE_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/RE_top.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/TU_basic.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx/TU_menu.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_info/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_info/class.tx_tstemplateinfo.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_info/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_info/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_info/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_objbrowser/ChangeLog
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_objbrowser/class.tx_tstemplateobjbrowser.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_objbrowser/doc/TODO.txt
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_objbrowser/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_objbrowser/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_objbrowser/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/class.tx_version_cm1.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/cm1/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/cm1/cm_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/cm1/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/cm1/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/view/clear.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/view/conf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/view/dummy.html
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/view/frameset.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/view/index.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/view/layout.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/view/locallang_mod.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/view/view.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages/class.tx_wizardcrpages_webfunc_2.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages/cshimages/wizards_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages/cshimages/wizards_2.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages/locallang_csh.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_sortpages/class.tx_wizardsortpages_webfunc_2.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_sortpages/cshimages/wizards_1.png
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_sortpages/ext_emconf.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_sortpages/ext_icon.gif
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_sortpages/ext_tables.php
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_sortpages/locallang.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_sortpages/locallang_csh.xml
${TYPO3DIR}/${TYPO3NAME}/typo3/tab.js
${TYPO3DIR}/${TYPO3NAME}/typo3/tce_db.php
${TYPO3DIR}/${TYPO3NAME}/typo3/tce_file.php
${TYPO3DIR}/${TYPO3NAME}/typo3/template.php
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/alt_db_navframe.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/alt_doc.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/belog.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/beuser.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/config.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/db_layout.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/db_layout_quickedit.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/db_list.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/db_new.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/db_new_content_el.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/dbint.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/em_index.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/file_edit.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/file_list.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/file_newfolder.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/file_rename.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/file_upload.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/func.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/info.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/move_el.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/perm.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/setup.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/show_rechis.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/tsconfig_help.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/tstemplate.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/version.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/ws.html
${TYPO3DIR}/${TYPO3NAME}/typo3/templates/ws_forms.html
${TYPO3DIR}/${TYPO3NAME}/typo3/thumbs.php
${TYPO3DIR}/${TYPO3NAME}/typo3/view_help.php
${TYPO3DIR}/${TYPO3NAME}/typo3/wizard_add.php
${TYPO3DIR}/${TYPO3NAME}/typo3/wizard_colorpicker.php
${TYPO3DIR}/${TYPO3NAME}/typo3/wizard_edit.php
${TYPO3DIR}/${TYPO3NAME}/typo3/wizard_forms.php
${TYPO3DIR}/${TYPO3NAME}/typo3/wizard_list.php
${TYPO3DIR}/${TYPO3NAME}/typo3/wizard_rte.php
${TYPO3DIR}/${TYPO3NAME}/typo3/wizard_table.php
${TYPO3DIR}/${TYPO3NAME}/typo3/wizard_tsconfig.php
${TYPO3DIR}/${SITEDIR}/INSTALL.txt
${TYPO3DIR}/${SITEDIR}/README.txt
${TYPO3DIR}/${SITEDIR}/RELEASE_NOTES.txt
${TYPO3DIR}/${SITEDIR}/_.htaccess
${TYPO3DIR}/${SITEDIR}/clear.gif
${TYPO3DIR}/${SITEDIR}/fileadmin/_temp_/.htaccess
${TYPO3DIR}/${SITEDIR}/fileadmin/_temp_/index.html
${TYPO3DIR}/${SITEDIR}/typo3conf/extTables.php
${TYPO3DIR}/${SITEDIR}/typo3conf/index.html
${TYPO3DIR}/${SITEDIR}/typo3_src
${TYPO3DIR}/${SITEDIR}/typo3
${TYPO3DIR}/${SITEDIR}/t3lib
${TYPO3DIR}/${SITEDIR}/index.php
${TYPO3DIR}/${SITEDIR}/uploads/index.html
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/templates
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_sortpages/cshimages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_sortpages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages/cshimages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/wizard_crpages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage/view
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/viewpage
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version/cm1
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/version
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_objbrowser/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_objbrowser
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_info
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/gfx
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_ceditor
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate_analyzer
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate/ts
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tstemplate
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/mod1
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/tsconfig_help
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter/task
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/taskcenter
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/stylesheets
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/UserElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TableOperations
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TYPO3ViewHelp
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/TYPO3Browsers
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/SpellChecker
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/SelectColor
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/RemoveFormat
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/QuickTag
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InsertSmiley
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/InlineElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/FindReplace
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/CharacterMap
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/BlockElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images/Acronym
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/rtehtmlarea
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/images/login
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/mod/web/perm
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/mod/web
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/mod
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/selicons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/rednumbers
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/ol
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/i
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/fileicons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx/c_wiz
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/gfx
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/user_photomarathon/photomarathon
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/user_photomarathon
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_news
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_guest
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_calender
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_board
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/tt_address
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/templavoila/mod1
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/templavoila
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/sys_note
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext/sys_action
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons/ext
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/icons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin/backgrounds
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib/codemirror
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/jslib
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/icons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor/css
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/t3editor
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_note
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sys_action
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/sv
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/mod
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup/cshimages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/setup
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/static/clickenlarge
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/static
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/typical
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/proc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/indentalign
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/image
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/demo
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/contentcss/img
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/contentcss
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/advanced
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons/img
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res/accessibilityicons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/res
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/pi3
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/pi2
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/pi1
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod6
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod5
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod4
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod3
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/mod2
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/UserElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TableOperations
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TYPO3ViewHelp
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/TYPO3Browsers
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/SpellChecker
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/SelectColor
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/RemoveFormat
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/QuickTag
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InsertSmiley
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/InlineElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/FindReplace
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/CharacterMap
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/BlockElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images/Acronym
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins/default
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/skins
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/UserElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TextStyle
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Link
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Image
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3HtmlParser
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Color
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers/img
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Browsers
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SpellChecker/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SpellChecker
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/SelectColor
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/RemoveFormat/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/RemoveFormat
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/QuickTag
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/Language
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/smileys
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InsertSmiley
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InlineElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/InlineCSS
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/FindReplace/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/FindReplace
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DynamicCSS/img
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DynamicCSS
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultLink/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultLink
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultInline
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultImage/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultImage
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultFont
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultColor/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultColor
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultClean
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/ContextMenu
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/CharacterMap/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/CharacterMap
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/BlockStyle
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/BlockElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/Acronym
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/AboutEditor/popups
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins/AboutEditor
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea/plugins
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/htmlarea
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/UserElements/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/UserElements/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/UserElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TextStyle
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TableOperations
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Link/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Link/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Link
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Image/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Image/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Image
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3HtmlParser
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Color/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Color/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/TYPO3Color
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/SpellChecker/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/SpellChecker/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/SpellChecker
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/RemoveFormat/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/RemoveFormat/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/RemoveFormat
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/QuickTag/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/QuickTag/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/QuickTag
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Language/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Language/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Language
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InsertSmiley/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InsertSmiley/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InsertSmiley
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements/res
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/InlineCSS
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/FindReplace/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/FindReplace/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/FindReplace
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DynamicCSS
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultLink/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultLink/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultLink
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultInline
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultImage/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultImage/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultImage
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultFont
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultColor/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultColor/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultColor
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/DefaultClean
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/ContextMenu
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/CharacterMap/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/CharacterMap/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/CharacterMap
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockStyle
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/BlockElements
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Acronym/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Acronym/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/Acronym
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/AboutEditor/skin/images
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/AboutEditor/skin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions/AboutEditor
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/extensions
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/rtehtmlarea
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs/mod
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/opendocs
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint/cli
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/dbint
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/config
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel/clmods
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lowlevel
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang/cshimages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/lang
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/verify_imgs
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/updates
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/mod
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install/imgs
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/install
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig/cshimages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/info_pagetsconfig
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi/res
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/pi
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/modfunc2
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/modfunc1
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/mod
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/example
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search/cli
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/indexed_search
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/modfunc1
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/cshimages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp/app
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/impexp
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/func_wizards
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/pi1
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/felogin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/extra_page_cm_options
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/mod1
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/handlers
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/dbal
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/static
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/pi1
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/css/img
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content/css
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/css_styled_content
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help/cshimages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/context_help
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/web_info
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/re
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/newsletter
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/hyper
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/green
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/crcph
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads/candidate
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/uploads
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/scripts
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/logos
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/icons_misc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/frames
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/flags
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/fileicons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/emoticons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/buttons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media/bullets
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/media
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib/interfaces
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/tslib
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/layout
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms/cshimages
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/cms
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/mod
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/beuser
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/mod
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/belog
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/res
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/doc
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/xsl
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/pear/Auth/Container
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/pear/Auth
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/pear
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/lang
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/drivers
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/datadict
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb/contrib
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb/adodb
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/adodb
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/aboutmodules/mod
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext/aboutmodules
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/sysext
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/perm
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/list
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/info
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web/func
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/web
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws/cli
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user/ws
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/user
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools/em
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/tools
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/cshmanual
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help/about
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/help
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/file/list
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod/file
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/mod
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/js
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/interfaces
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/install
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/selicons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/rednumbers
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ol
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/ie6
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/i
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/flags
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/fileicons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/faner
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/emoticons
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/clickmenu
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx/c_wiz
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/gfx
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/ext
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/css
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/scriptaculous
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/prototype
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/json
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/jsmin
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/contrib/RemoveXSS
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/contrib
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3/classes
@dirrm ${TYPO3DIR}/${TYPO3NAME}/typo3
@dirrm ${TYPO3DIR}/${TYPO3NAME}/t3lib/unidata
@dirrm ${TYPO3DIR}/${TYPO3NAME}/t3lib/stddb
@dirrm ${TYPO3DIR}/${TYPO3NAME}/t3lib/interfaces
@dirrm ${TYPO3DIR}/${TYPO3NAME}/t3lib/fonts
@dirrm ${TYPO3DIR}/${TYPO3NAME}/t3lib/csconvtbl
@dirrm ${TYPO3DIR}/${TYPO3NAME}/t3lib
@dirrm ${TYPO3DIR}/${TYPO3NAME}/misc/phpcheck
@dirrm ${TYPO3DIR}/${TYPO3NAME}/misc
@dirrm ${TYPO3DIR}/${TYPO3NAME}
@dirrm ${EGDIR}