aboutsummaryrefslogtreecommitdiff
path: root/java/intellij-ultimate/pkg-plist
blob: 24284c43d7dd5e754b7bd9fd9a3f8c16cba6e509 (plain) (blame)
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
bin/idea
man/man1/idea.1.gz
share/applications/idea.desktop
%%DATADIR%%/Install-Linux-tar.txt
%%DATADIR%%/bin/appletviewer.policy
%%DATADIR%%/bin/brokenPlugins.db
%%DATADIR%%/bin/format.sh
%%DATADIR%%/bin/icons.db
%%DATADIR%%/bin/idea.png
%%DATADIR%%/bin/idea.properties
%%DATADIR%%/bin/idea.sh
%%DATADIR%%/bin/idea.svg
%%DATADIR%%/bin/idea64.vmoptions
%%DATADIR%%/bin/inspect.sh
%%DATADIR%%/bin/log.xml
%%DATADIR%%/bin/ltedit.sh
%%DATADIR%%/bin/printenv.py
%%DATADIR%%/bin/restart.py
%%DATADIR%%/build.txt
%%DATADIR%%/help/ReferenceCard.pdf
%%DATADIR%%/help/ReferenceCardForMac.pdf
%%DATADIR%%/lib/3rd-party.jar
%%DATADIR%%/lib/annotations.jar
%%DATADIR%%/lib/ant/CONTRIBUTORS
%%DATADIR%%/lib/ant/INSTALL
%%DATADIR%%/lib/ant/KEYS
%%DATADIR%%/lib/ant/LICENSE
%%DATADIR%%/lib/ant/NOTICE
%%DATADIR%%/lib/ant/README
%%DATADIR%%/lib/ant/WHATSNEW
%%DATADIR%%/lib/ant/contributors.xml
%%DATADIR%%/lib/ant/lib/README
%%DATADIR%%/lib/ant/lib/ant-antlr.jar
%%DATADIR%%/lib/ant/lib/ant-antlr.pom
%%DATADIR%%/lib/ant/lib/ant-apache-bcel.jar
%%DATADIR%%/lib/ant/lib/ant-apache-bcel.pom
%%DATADIR%%/lib/ant/lib/ant-apache-bsf.jar
%%DATADIR%%/lib/ant/lib/ant-apache-bsf.pom
%%DATADIR%%/lib/ant/lib/ant-apache-log4j.jar
%%DATADIR%%/lib/ant/lib/ant-apache-log4j.pom
%%DATADIR%%/lib/ant/lib/ant-apache-oro.jar
%%DATADIR%%/lib/ant/lib/ant-apache-oro.pom
%%DATADIR%%/lib/ant/lib/ant-apache-regexp.jar
%%DATADIR%%/lib/ant/lib/ant-apache-regexp.pom
%%DATADIR%%/lib/ant/lib/ant-apache-resolver.jar
%%DATADIR%%/lib/ant/lib/ant-apache-resolver.pom
%%DATADIR%%/lib/ant/lib/ant-apache-xalan2.jar
%%DATADIR%%/lib/ant/lib/ant-apache-xalan2.pom
%%DATADIR%%/lib/ant/lib/ant-commons-logging.jar
%%DATADIR%%/lib/ant/lib/ant-commons-logging.pom
%%DATADIR%%/lib/ant/lib/ant-commons-net.jar
%%DATADIR%%/lib/ant/lib/ant-commons-net.pom
%%DATADIR%%/lib/ant/lib/ant-jai.jar
%%DATADIR%%/lib/ant/lib/ant-jai.pom
%%DATADIR%%/lib/ant/lib/ant-javamail.jar
%%DATADIR%%/lib/ant/lib/ant-javamail.pom
%%DATADIR%%/lib/ant/lib/ant-jdepend.jar
%%DATADIR%%/lib/ant/lib/ant-jdepend.pom
%%DATADIR%%/lib/ant/lib/ant-jmf.jar
%%DATADIR%%/lib/ant/lib/ant-jmf.pom
%%DATADIR%%/lib/ant/lib/ant-jsch.jar
%%DATADIR%%/lib/ant/lib/ant-jsch.pom
%%DATADIR%%/lib/ant/lib/ant-junit.jar
%%DATADIR%%/lib/ant/lib/ant-junit.pom
%%DATADIR%%/lib/ant/lib/ant-junit4.jar
%%DATADIR%%/lib/ant/lib/ant-junit4.pom
%%DATADIR%%/lib/ant/lib/ant-junitlauncher.jar
%%DATADIR%%/lib/ant/lib/ant-junitlauncher.pom
%%DATADIR%%/lib/ant/lib/ant-launcher.jar
%%DATADIR%%/lib/ant/lib/ant-launcher.pom
%%DATADIR%%/lib/ant/lib/ant-netrexx.jar
%%DATADIR%%/lib/ant/lib/ant-netrexx.pom
%%DATADIR%%/lib/ant/lib/ant-parent.pom
%%DATADIR%%/lib/ant/lib/ant-swing.jar
%%DATADIR%%/lib/ant/lib/ant-swing.pom
%%DATADIR%%/lib/ant/lib/ant-testutil.jar
%%DATADIR%%/lib/ant/lib/ant-testutil.pom
%%DATADIR%%/lib/ant/lib/ant-xz.jar
%%DATADIR%%/lib/ant/lib/ant-xz.pom
%%DATADIR%%/lib/ant/lib/ant.jar
%%DATADIR%%/lib/ant/lib/ant.pom
%%DATADIR%%/lib/ant/lib/libraries.properties
%%DATADIR%%/lib/ant/src.zip
%%DATADIR%%/lib/asm-7.1.jar
%%DATADIR%%/lib/asm-analysis-7.1.jar
%%DATADIR%%/lib/asm-commons-7.1.jar
%%DATADIR%%/lib/asm-tree-7.1.jar
%%DATADIR%%/lib/asm-util-7.1.jar
%%DATADIR%%/lib/async-profiler-2.1-ea-2.jar
%%DATADIR%%/lib/async-profiler-windows-1.8.3-5.jar
%%DATADIR%%/lib/bootstrap.jar
%%DATADIR%%/lib/build-marker-%%BUILD_MARKER%%
%%DATADIR%%/lib/byte-buddy-agent-1.10.1.jar
%%DATADIR%%/lib/cds/classesLogAgent.jar
%%DATADIR%%/lib/classpath.txt
%%DATADIR%%/lib/coverage-common.jar
%%DATADIR%%/lib/dbus-java-3.2.1.jar
%%DATADIR%%/lib/dexlib2.jar
%%DATADIR%%/lib/dom-impl.jar
%%DATADIR%%/lib/dom-openapi.jar
%%DATADIR%%/lib/error_prone_annotations-2.3.1.jar
%%DATADIR%%/lib/external-system-rt.jar
%%DATADIR%%/lib/find-action-model-0.0.3.jar
%%DATADIR%%/lib/forms_rt.jar
%%DATADIR%%/lib/grazie-spellchecker-0.1.9.jar
%%DATADIR%%/lib/groovy-2.5.14.jar
%%DATADIR%%/lib/groovy-json-2.5.14.jar
%%DATADIR%%/lib/groovy-jsr223-2.5.14.jar
%%DATADIR%%/lib/groovy-templates-2.5.14.jar
%%DATADIR%%/lib/groovy-xml-2.5.14.jar
%%DATADIR%%/lib/grpc-netty-shaded-1.34.1.jar
%%DATADIR%%/lib/idea.jar
%%DATADIR%%/lib/idea_rt.jar
%%DATADIR%%/lib/intellij-coverage-agent-1.0.589.jar
%%DATADIR%%/lib/intellij-test-discovery-agent-1.0.589.jar
%%DATADIR%%/lib/isorelax-20030108.jar
%%DATADIR%%/lib/java-string-similarity-2.0.0.jar
%%DATADIR%%/lib/java-utils-1.0.6.jar
%%DATADIR%%/lib/jdkAnnotations.jar
%%DATADIR%%/lib/jffi-1.2.19-native.jar
%%DATADIR%%/lib/jffi-1.2.19.jar
%%DATADIR%%/lib/jing-20030619.jar
%%DATADIR%%/lib/jmc-common-8.0.0-7.jar
%%DATADIR%%/lib/jmc-flightrecorder-8.0.0-7.jar
%%DATADIR%%/lib/jna-platform.jar
%%DATADIR%%/lib/jna.jar
%%DATADIR%%/lib/jnr-a64asm-1.0.0.jar
%%DATADIR%%/lib/jnr-constants-0.9.12.jar
%%DATADIR%%/lib/jnr-enxio-0.21.jar
%%DATADIR%%/lib/jnr-ffi-2.1.10.jar
%%DATADIR%%/lib/jnr-posix-3.0.50.jar
%%DATADIR%%/lib/jnr-unixsocket-0.23.jar
%%DATADIR%%/lib/jnr-x86asm-1.0.2.jar
%%DATADIR%%/lib/jps-model.jar
%%DATADIR%%/lib/jshell-frontend.jar
%%DATADIR%%/lib/jsp-base-openapi.jar
%%DATADIR%%/lib/junit.jar
%%DATADIR%%/lib/junit4.jar
%%DATADIR%%/lib/junixsocket-core.jar
%%DATADIR%%/lib/kotlin-gradle-plugin-model-1.4.32.jar
%%DATADIR%%/lib/kotlin-reflect-1.5.10-release-931.jar
%%DATADIR%%/lib/kotlin-stdlib-jdk8.jar
%%DATADIR%%/lib/kotlin-test.jar
%%DATADIR%%/lib/kotlinx-coroutines-debug-1.5.0.jar
%%DATADIR%%/lib/kotlinx-coroutines-jdk8.jar
%%DATADIR%%/lib/kotlinx-serialization-core-jvm-1.1.0.jar
%%DATADIR%%/lib/kotlinx-serialization-json-jvm-1.1.0.jar
%%DATADIR%%/lib/openapi.jar
%%DATADIR%%/lib/platform-api.jar
%%DATADIR%%/lib/platform-impl.jar
%%DATADIR%%/lib/platform-objectSerializer-annotations.jar
%%DATADIR%%/lib/platform-statistics-devkit.jar
%%DATADIR%%/lib/protobuf-java-3.15.8.jar
%%DATADIR%%/lib/pty4j-native
%%DATADIR%%/lib/pty4j.jar
%%DATADIR%%/lib/rd-core-0.212.307.jar
%%DATADIR%%/lib/rd-framework-0.212.307.jar
%%DATADIR%%/lib/rd-swing-0.212.307.jar
%%DATADIR%%/lib/rngom-20051226-patched.jar
%%DATADIR%%/lib/rt/servlet.jar
%%DATADIR%%/lib/rt/xerces1.jar
%%DATADIR%%/lib/rt/xml-apis.jar
%%DATADIR%%/lib/slf4j.jar
%%DATADIR%%/lib/sqlite-jdbc-3.34.0.jar
%%DATADIR%%/lib/src/src_css-api.zip
%%DATADIR%%/lib/src/src_database-openapi.zip
%%DATADIR%%/lib/src/src_jam-openapi.zip
%%DATADIR%%/lib/src/src_javaee-openapi.zip
%%DATADIR%%/lib/src/src_persistence-openapi.zip
%%DATADIR%%/lib/src/src_spring-boot-openapi.zip
%%DATADIR%%/lib/src/src_spring-openapi.zip
%%DATADIR%%/lib/src/src_tomcat.zip
%%DATADIR%%/lib/stats.jar
%%DATADIR%%/lib/testFramework-java.jar
%%DATADIR%%/lib/testFramework.core.jar
%%DATADIR%%/lib/testFramework.jar
%%DATADIR%%/lib/tests_bootstrap.jar
%%DATADIR%%/lib/tips-intellij-idea-212.40.jar
%%DATADIR%%/lib/trang-core.jar
%%DATADIR%%/lib/uast-tests.jar
%%DATADIR%%/lib/util.jar
%%DATADIR%%/lib/winp-1.28.jar
%%DATADIR%%/lib/xmlbeans-4.0.0.jar
%%DATADIR%%/license/XStream_license.txt
%%DATADIR%%/license/ant_license.txt
%%DATADIR%%/license/asm_license.txt
%%DATADIR%%/license/eclipse_license.txt
%%DATADIR%%/license/eclipse_license2.txt
%%DATADIR%%/license/gson_license.txt
%%DATADIR%%/license/imgscalr_license.txt
%%DATADIR%%/license/j2ee_license.txt
%%DATADIR%%/license/jasper_license.txt
%%DATADIR%%/license/javaeeJar-CDDLv1.0.txt
%%DATADIR%%/license/javahelp_license.txt
%%DATADIR%%/license/javolution_license.txt
%%DATADIR%%/license/jaxb_license.txt
%%DATADIR%%/license/jaxen_license.txt
%%DATADIR%%/license/jdom_license.txt
%%DATADIR%%/license/jgoodies_forms_license.txt
%%DATADIR%%/license/junit_license.txt
%%DATADIR%%/license/kryo-license.txt
%%DATADIR%%/license/log4j_license.txt
%%DATADIR%%/license/microba_license.txt
%%DATADIR%%/license/miglayout_swing_license.txt
%%DATADIR%%/license/nanoxml_license.txt
%%DATADIR%%/license/oromatcher_license.txt
%%DATADIR%%/license/picoContainer_license.txt
%%DATADIR%%/license/saxon-conditions.html
%%DATADIR%%/license/servletJAR_license.txt
%%DATADIR%%/license/swingx_license.txt
%%DATADIR%%/license/third-party-libraries.html
%%DATADIR%%/license/third-party/W3C_Software_License.html
%%DATADIR%%/license/third-party/protobuf_license.txt
%%DATADIR%%/license/trove4j_license.txt
%%DATADIR%%/license/winp_license.txt
%%DATADIR%%/license/xerces_license.txt
%%DATADIR%%/license/xmlrpc_license.txt
%%DATADIR%%/license/yourkit-license-redist.txt
%%DATADIR%%/plugins/AngularJS/lib/AngularJS.jar
%%DATADIR%%/plugins/AngularJS/ngCli/commands/generate-impl.js
%%DATADIR%%/plugins/AngularJS/ngCli/commands/generate.json
%%DATADIR%%/plugins/AngularJS/ngCli/generate.js
%%DATADIR%%/plugins/AngularJS/ngCli/generateVirtual.js
%%DATADIR%%/plugins/AngularJS/ngCli/rerouteModulesToProject.js
%%DATADIR%%/plugins/AngularJS/ngCli/runner.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsInfoProvider.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider60.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider62.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider70.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider80.js
%%DATADIR%%/plugins/AngularJS/ngCli/schematicsProvider90.js
%%DATADIR%%/plugins/AppServersIntegration/lib/AppServersView.jar
%%DATADIR%%/plugins/AppServersIntegration/lib/app-servers-integration.jar
%%DATADIR%%/plugins/BatchApplications/lib/batch-applications-support.jar
%%DATADIR%%/plugins/BeanValidation/lib/bean_validation.jar
%%DATADIR%%/plugins/ByteCodeViewer/lib/byteCodeViewer.jar
%%DATADIR%%/plugins/CDI/lib/cdi-support.jar
%%DATADIR%%/plugins/CSS/lib/css-openapi.jar
%%DATADIR%%/plugins/CSS/lib/css.jar
%%DATADIR%%/plugins/DatabaseTools/lib/aether-dependency-resolver.jar
%%DATADIR%%/plugins/DatabaseTools/lib/completion-ranking-sql-0.1.1.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-dialects.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-impl.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-minicats.jar
%%DATADIR%%/plugins/DatabaseTools/lib/database-openapi.jar
%%DATADIR%%/plugins/DatabaseTools/lib/jdbc-console.jar
%%DATADIR%%/plugins/DatabaseTools/lib/maven-resolver-connector-basic-1.3.3.jar
%%DATADIR%%/plugins/DatabaseTools/lib/maven-resolver-transport-file-1.3.3.jar
%%DATADIR%%/plugins/DatabaseTools/lib/maven-resolver-transport-http-1.3.3.jar
%%DATADIR%%/plugins/DatabaseTools/lib/mssql-1.19.jar
%%DATADIR%%/plugins/DatabaseTools/lib/oracle-1.54.jar
%%DATADIR%%/plugins/DatabaseTools/lib/postgres-1.35.jar
%%DATADIR%%/plugins/DatabaseTools/lib/redshift-1.70.jar
%%DATADIR%%/plugins/DatabaseTools/lib/snowflake-1.17.jar
%%DATADIR%%/plugins/DatabaseTools/lib/tips-database-plugin-212.78.jar
%%DATADIR%%/plugins/DatabaseTools/lib/unidecode-0.0.7.jar
%%DATADIR%%/plugins/Docker/lib/Docker.jar
%%DATADIR%%/plugins/Docker/lib/commons-lang-2.6.jar
%%DATADIR%%/plugins/Docker/lib/docker-java-api-3.2.7.jar
%%DATADIR%%/plugins/Docker/lib/docker-java-core-3.2.7.jar
%%DATADIR%%/plugins/Docker/lib/docker-java-transport-3.2.7.jar
%%DATADIR%%/plugins/Docker/lib/docker-java-transport-okhttp-3.2.7.jar
%%DATADIR%%/plugins/Docker/lib/okhttp-3.14.4.jar
%%DATADIR%%/plugins/Docker/lib/okio-1.17.2.jar
%%DATADIR%%/plugins/FreeMarker/lib/core.jar
%%DATADIR%%/plugins/Glassfish/lib/glassfishIntegration.jar
%%DATADIR%%/plugins/Glassfish/lib/specifics/glassfish2-specifics.jar
%%DATADIR%%/plugins/Glassfish/lib/specifics/glassfish3-specifics.jar
%%DATADIR%%/plugins/Glassfish/lib/specifics/glassfish3.1-specifics.jar
%%DATADIR%%/plugins/Glassfish/lib/specifics/glassfish5.1-specifics.jar
%%DATADIR%%/plugins/Grails/lib/grails-gradle-tooling.jar
%%DATADIR%%/plugins/Grails/lib/grails-rt.jar
%%DATADIR%%/plugins/Grails/lib/grails_integration.jar
%%DATADIR%%/plugins/Grails/lib/groovy-grails-compilerPatch.jar
%%DATADIR%%/plugins/Grails/lib/groovy-grails-jps.jar
%%DATADIR%%/plugins/Grails/lib/standardDsls/GrailsStandardDSL.gdsl
%%DATADIR%%/plugins/Groovy/lib/Groovy.jar
%%DATADIR%%/plugins/Groovy/lib/agent/gragent.jar
%%DATADIR%%/plugins/Groovy/lib/console.groovy
%%DATADIR%%/plugins/Groovy/lib/groovy-constants-rt.jar
%%DATADIR%%/plugins/Groovy/lib/groovy-jps.jar
%%DATADIR%%/plugins/Groovy/lib/groovy-rt.jar
%%DATADIR%%/plugins/Groovy/lib/standardDsls/categoryTransform.gdsl
%%DATADIR%%/plugins/Groovy/lib/standardDsls/closuresInMethod.gdsl
%%DATADIR%%/plugins/Groovy/lib/standardDsls/defaultMethods.gdsl
%%DATADIR%%/plugins/Groovy/lib/standardDsls/gantScript.gdsl
%%DATADIR%%/plugins/Groovy/lib/standardDsls/metaDsl.gdsl
%%DATADIR%%/plugins/Hibernate/lib/hibernate-console.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate3-console.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate4-console.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate5-console.jar
%%DATADIR%%/plugins/Hibernate/lib/hibernate52-console.jar
%%DATADIR%%/plugins/IntelliLang/lib/IntelliLang.jar
%%DATADIR%%/plugins/IntelliLang/lib/java-langInjection-jps.jar
%%DATADIR%%/plugins/JBoss/lib/jbossIntegration.jar
%%DATADIR%%/plugins/JBoss/lib/specifics/jboss7-specifics.jar
%%DATADIR%%/plugins/JBoss/lib/specifics/legacy-specifics.jar
%%DATADIR%%/plugins/JBoss/lib/specifics/wildfly11-specifics.jar
%%DATADIR%%/plugins/JPA/lib/jakarta.persistence-api-3.0.0.jar
%%DATADIR%%/plugins/JPA/lib/jpa-support.jar
%%DATADIR%%/plugins/JPA/lib/jps/javaee-jpa-jps.jar
%%DATADIR%%/plugins/JSF/lib/jsf-support.jar
%%DATADIR%%/plugins/JSIntentionPowerPack/lib/JSIntentionPowerPack.jar
%%DATADIR%%/plugins/JavaEE/lib/jasper-v2-rt.jar
%%DATADIR%%/plugins/JavaEE/lib/javaee-jps.jar
%%DATADIR%%/plugins/JavaEE/lib/javaee-openapi.jar
%%DATADIR%%/plugins/JavaEE/lib/javaee-platform.jar
%%DATADIR%%/plugins/JavaEE/lib/rt/jasper-v21-rt.jar
%%DATADIR%%/plugins/JavaEE/lib/rt/jasper-v23-java8-rt.jar
%%DATADIR%%/plugins/JavaEE/lib/rt/jasper-v23-rt.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/ChromeConnector.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/FirefoxConnector.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/JavaScriptDebugger.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/debugConnector.js
%%DATADIR%%/plugins/JavaScriptDebugger/lib/nashorn-debugger-9-rt.jar
%%DATADIR%%/plugins/JavaScriptDebugger/lib/nashorn-debugger-rt.jar
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-stringifier.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-tree.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-util.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/buildTools/grunt/lib/grunt-intellij-util.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/buildTools/grunt/tasks/grunt-tasks-fetcher.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-jasmine-reporter.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-reporter.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-stdin-fix.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-test-results-processor.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-util.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/node-core-modules/node-core-modules-loader.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/nodejs/library/yarn/intellij-yarn-pnp-deps-tree-loader.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/bin/batch-matcher
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/CHANGELOG.md
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/LICENSE
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/README.md
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/bin/semver.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/package.json
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/range.bnf
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/node_modules/semver/semver.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/package-lock.json
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/package.json
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/semver-range-matcher.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/test/package.json
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/package-version-range-matcher/test/version-range-test.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/jasmine-reporter.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-cli.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-config.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-jasmine-reporter.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-plugin.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-stringifier.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-tree.js
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/protractor-intellij/lib/protractor-intellij-util.js
%%DATADIR%%/plugins/JavaScriptLanguage/js/js-predefined-ffdd448c697d-34490f0bdf90.ijx
%%DATADIR%%/plugins/JavaScriptLanguage/js/js-predefined-ffdd448c697d-34490f0bdf90.txt
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/browser.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/cancellationToken.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/es2019decorators.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/esnext.weakref.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/flow.utilities.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.dom.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.dom.iterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.collection.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.core.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.generator.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.iterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.promise.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.proxy.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.reflect.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.symbol.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2015.symbol.wellknown.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2016.array.include.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2016.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2016.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.intl.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.object.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.sharedmemory.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.string.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.typedarrays.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.asyncgenerator.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.asynciterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.intl.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.promise.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.regexp.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.array.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.object.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.string.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.symbol.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.bigint.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.intl.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.promise.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.sharedmemory.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.string.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.symbol.wellknown.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.promise.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.string.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2021.weakref.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es5.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es6.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.array.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.asynciterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.bigint.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.full.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.intl.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.promise.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.string.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.symbol.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.weakref.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.scripthost.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.importscripts.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.iterable.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/react.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/tsserverlibrary.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/typesMap.json
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/watchGuard.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/websql.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/xpath.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/bom.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/core.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/cssom.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/dom.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/indexeddb.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/intl.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/node.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/react-dom.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/react.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/serviceworkers.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/streams.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/webassembly.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/js-language-service.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ide-watcher.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/logger-impl.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/out-path-process.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/service-loader.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/compile-info-holder.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-common-session-1x_21.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-project-service-1x.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-project-service-21.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-session-1x.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts-session-21.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/session/old/ts15impl.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-default-options.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-plugin.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-session-latest.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ts-session-provider.js
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/util.js
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-api.js
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-common.js
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-plugin-provider.js
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-plugin.js
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint8-plugin.js
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/package-lock.json
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/package.json
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-api.ts
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-common.ts
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-plugin-provider.ts
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-plugin.ts
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint8-plugin.ts
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/typings/js-lanuage-api.d.ts
%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/tsconfig.json
%%DATADIR%%/plugins/JavaScriptLanguage/lib/JavaScriptLanguage.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/completion-ranking-js-0.1.3.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/completion-ranking-typescript-0.2.3.jar
%%DATADIR%%/plugins/JavaScriptLanguage/lib/semver4j-2.2.0.jar
%%DATADIR%%/plugins/JavaeeExtensions/lib/javaee-extensions.jar
%%DATADIR%%/plugins/Jetty/lib/jettyIntegration.jar
%%DATADIR%%/plugins/Kotlin/bin/linux/LLDBFrontend
%%DATADIR%%/plugins/Kotlin/bin/macos/LLDBFrontend
%%DATADIR%%/plugins/Kotlin/bin/windows/LLDBFrontend.exe
%%DATADIR%%/plugins/Kotlin/kotlinc/META-INF/MANIFEST.MF
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kapt
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kapt.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlin
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlin-dce-js
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlin-dce-js.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlin.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc-js
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc-js.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc-jvm
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc-jvm.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/bin/kotlinc.bat
%%DATADIR%%/plugins/Kotlin/kotlinc/build.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/allopen-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/android-extensions-compiler.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/android-extensions-runtime.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/annotations-13.0.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/js.engines.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/jvm-abi-gen.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing-cli.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing-runtime.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotations-jvm-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-annotations-jvm.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-ant.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-compiler.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-daemon-client.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-daemon.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-imports-dumper-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-main-kts.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-preloader.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-reflect-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-reflect.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-runner.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-script-runtime-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-script-runtime.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-common.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-compiler-impl.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-compiler.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-js.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-scripting-jvm.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk7-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk7.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk8-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk8.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-js-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-js.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-stdlib.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-js-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-js.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-junit-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-junit.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-junit5-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-junit5.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-testng-sources.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test-testng.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlin-test.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlinx-coroutines-core.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/kotlinx-serialization-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/mutability-annotations-compat.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/noarg-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/parcelize-compiler.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/parcelize-runtime.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/sam-with-receiver-compiler-plugin.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/lib/trove4j.jar
%%DATADIR%%/plugins/Kotlin/kotlinc/license/COPYRIGHT.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/COPYRIGHT_HEADER.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/NOTICE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/README.md
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/aosp_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/args4j_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/asm_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/asmble_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/boost_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/closure-compiler_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/dart_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/fastutil_licence
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/gradle_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/guava_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/gwt_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/jquery_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/jshashtable_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/karma-teamcity-reporter_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/karma_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/lodash_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/maven_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/mocha-teamcity-reporter_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/pcollections_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/prototype_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/qunit_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/rhino_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/scala_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/teamcity-service-messages_LICENSE.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/dagger_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/eclipse_distribution_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/eclipse_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/findbugs_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/lombok_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/rxjava_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/testdata/spring_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/trove_license.txt
%%DATADIR%%/plugins/Kotlin/kotlinc/license/third_party/trove_readme_license.txt
%%DATADIR%%/plugins/Kotlin/lib/allopen-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/android-extensions-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/completion-ranking-kotlin-0.3.2.jar
%%DATADIR%%/plugins/Kotlin/lib/javaslang-2.0.6.jar
%%DATADIR%%/plugins/Kotlin/lib/javaslang-match-2.0.6.jar
%%DATADIR%%/plugins/Kotlin/lib/javax.inject-1.jar
%%DATADIR%%/plugins/Kotlin/lib/jps/kotlin-jps-plugin.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-common.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-allopen.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-annotation-based-compiler-support.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-kapt.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-kotlinx-serialization.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-noarg.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-sam-with-receiver.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-compiler-plugins-scripting.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-core.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-eval4j.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-formatter.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-frontend-independent.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-git.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-gradle-gradle-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-gradle-gradle-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-gradle-gradle-tooling.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-gradle-statistics-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-i18n.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-injection.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-j2k-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-j2k-new.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-j2k-old.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-j2k-services.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jps-common.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-core.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-coroutines.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-evaluation.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-sequence.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm-debugger-util.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-jvm.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-line-indent-provider.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-maven.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-parcelize.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-plugin.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-project-wizard-cli.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-project-wizard-core.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-project-wizard-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-reflect.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-repl.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-script-runtime.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-script-util.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting-common.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting-compiler-impl.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting-ide-services.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting-jvm.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-scripting.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-stdlib-jdk7.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-stdlib-jdk8.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-stdlib.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-uast-kotlin-idea.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-uast-kotlin.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-ultimate-common-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-ultimate-common-noncidr-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-ultimate-native.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlin-ultimate.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlinx-collections-immutable-jvm-0.3.1.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlinx-coroutines-core-jvm-1.5.0.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlinx-coroutines-jdk8-1.5.0.jar
%%DATADIR%%/plugins/Kotlin/lib/kotlinx-serialization-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/noarg-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/parcelize-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/lib/sam-with-receiver-compiler-plugin-for-ide.jar
%%DATADIR%%/plugins/Kotlin/scripts/konan_lldb.py
%%DATADIR%%/plugins/Ktor/lib/ktor-plugin.jar
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/LICENSE
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/README.md
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mocha-intellij-stringifier.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mochaIntellijReporter.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mochaIntellijTree.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mochaIntellijUtil.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/mochaTreeUtil.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/lib/single-element-queue.js
%%DATADIR%%/plugins/NodeJS/js/mocha-intellij/package.json
%%DATADIR%%/plugins/NodeJS/js/nodeunit/nodeunit-intellij-starter.js
%%DATADIR%%/plugins/NodeJS/lib/NodeJS.jar
%%DATADIR%%/plugins/PerforceIntegration/lib/PerforceIntegration.jar
%%DATADIR%%/plugins/PersistenceSupport/lib/persistence-impl.jar
%%DATADIR%%/plugins/RefactorX/lib/RefactorX.jar
%%DATADIR%%/plugins/Spring/lib/customNs/customNs.jar
%%DATADIR%%/plugins/Spring/lib/spring.jar
%%DATADIR%%/plugins/SpringBatch/lib/SpringBatch.jar
%%DATADIR%%/plugins/SpringBoot/lib/spring-boot.jar
%%DATADIR%%/plugins/SpringData/lib/SpringData.jar
%%DATADIR%%/plugins/SpringIntegration/lib/SpringIntegration.jar
%%DATADIR%%/plugins/SpringMessaging/lib/SpringMessaging.jar
%%DATADIR%%/plugins/SpringMvc/lib/SpringMvc.jar
%%DATADIR%%/plugins/SpringSecurity/lib/SpringSecurity.jar
%%DATADIR%%/plugins/SpringWebServices/lib/SpringWebServices.jar
%%DATADIR%%/plugins/SpringWebSocket/lib/SpringWebSocket.jar
%%DATADIR%%/plugins/Tomcat/lib/specifics/tomee-specifics.jar
%%DATADIR%%/plugins/Tomcat/lib/tomcatIntegration.jar
%%DATADIR%%/plugins/Velocity/lib/core.jar
%%DATADIR%%/plugins/Web/lib/web-support.jar
%%DATADIR%%/plugins/WebServices/lib/wadlgen/wadlgen.jar
%%DATADIR%%/plugins/WebServices/lib/ws-rt.jar
%%DATADIR%%/plugins/WebServices/lib/ws.jar
%%DATADIR%%/plugins/WebSocket/lib/websocket-support.jar
%%DATADIR%%/plugins/android-gradle-dsl/lib/android-gradle-dsl.jar
%%DATADIR%%/plugins/android/lib/adt-ui.jar
%%DATADIR%%/plugins/android/lib/analytics-crash-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/analytics-shared-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/analytics-tracker-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/android-common.jar
%%DATADIR%%/plugins/android/lib/android-extensions-ide.jar
%%DATADIR%%/plugins/android/lib/android-kotlin.jar
%%DATADIR%%/plugins/android/lib/android-profilers.jar
%%DATADIR%%/plugins/android/lib/android-ultimate.jar
%%DATADIR%%/plugins/android/lib/android.jar
%%DATADIR%%/plugins/android/lib/androidAnnotations.jar
%%DATADIR%%/plugins/android/lib/antlr4-runtime-4.5.3.jar
%%DATADIR%%/plugins/android/lib/apksig-4.0.0.jar
%%DATADIR%%/plugins/android/lib/apkzlib-4.0.0.jar
%%DATADIR%%/plugins/android/lib/asm-tools.jar
%%DATADIR%%/plugins/android/lib/auto-common-0.10.jar
%%DATADIR%%/plugins/android/lib/build-common.jar
%%DATADIR%%/plugins/android/lib/checker-qual-2.5.8.jar
%%DATADIR%%/plugins/android/lib/commons-compress-1.8.1.jar
%%DATADIR%%/plugins/android/lib/commons-lang-2.6.jar
%%DATADIR%%/plugins/android/lib/core-proto-0.0.8-alpha01.jar
%%DATADIR%%/plugins/android/lib/deploy_java_proto-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/device-art-resources/automotive_1024/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/automotive_1024/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/automotive_1024/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/device-art.xml
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/galaxy_nexus/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_10/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_4/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_5x/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_6p/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_9/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/button.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/power.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/power_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/volume_down.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/volume_down_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/volume_up.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_one/volume_up_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/button.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/power.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/power_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/thumb.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/volume_down.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/volume_down_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/volume_up.png
%%DATADIR%%/plugins/android/lib/device-art-resources/nexus_s/volume_up_land.png
%%DATADIR%%/plugins/android/lib/device-art-resources/phone/phone_back_simple_land.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/phone/phone_back_simple_port.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/phone/phone_shadow_simple_land.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/phone/phone_shadow_simple_port.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_2_xl/round_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3/round_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3_xl/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3_xl/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3_xl/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3_xl/round_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a/rounded_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_3a_xl/rounded_corners.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_4/back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_4/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_4/mask.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_4_xl/back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_4_xl/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_4_xl/mask.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_4a/back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_4a/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_4a/mask.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_c/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_silver/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/pixel_xl_silver/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/tablet/tablet_back_simple.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tablet/tablet_shadow_simple_land.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tablet/tablet_shadow_simple_port.9.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_1080p/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_1080p/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_1080p/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_1080p/shadow.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_720p/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_720p/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_720p/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/tv_720p/shadow.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/arrow_down.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/arrow_left.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/arrow_right.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/arrow_up.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/button.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_320px.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_380px.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_380px_onion.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/controls.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/hardware.ini
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/key.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/mask.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/select.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round/shadow.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round_chin_320_290/device_bezel.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round_chin_320_290/hardware.ini
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_round_chin_320_290/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/back.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/fore.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/layout
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/mask.png
%%DATADIR%%/plugins/android/lib/device-art-resources/wear_square/shadow.png
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/land_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/land_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/land_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/port_back.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/port_fore.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/port_shadow.webp
%%DATADIR%%/plugins/android/lib/device-art-resources/xoom/thumb.png
%%DATADIR%%/plugins/android/lib/emulator_java_proto-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/explainer-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/flatbuffers-java-1.12.0.jar
%%DATADIR%%/plugins/android/lib/generator-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/instantapps-api-1.8.jar
%%DATADIR%%/plugins/android/lib/javapoet-1.10.0.jar
%%DATADIR%%/plugins/android/lib/javawriter-2.2.1.jar
%%DATADIR%%/plugins/android/lib/jetifier-core-1.0.0-beta09.jar
%%DATADIR%%/plugins/android/lib/juniversalchardet-1.0.3.jar
%%DATADIR%%/plugins/android/lib/kotlinx-coroutines-guava-1.5.0.jar
%%DATADIR%%/plugins/android/lib/kxml2-2.3.0.jar
%%DATADIR%%/plugins/android/lib/layout_inspector_java_proto-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/layoutlib-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/layoutlib-loader.jar
%%DATADIR%%/plugins/android/lib/libandroid-core-proto-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/libjava_version-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/lint-ide.jar
%%DATADIR%%/plugins/android/lib/moshi-1.6.0.jar
%%DATADIR%%/plugins/android/lib/okio-1.14.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.elk.alg.layered-0.3.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.elk.core-0.3.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.elk.graph-0.3.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.emf.common-2.12.0.jar
%%DATADIR%%/plugins/android/lib/org.eclipse.emf.ecore-2.12.0.jar
%%DATADIR%%/plugins/android/lib/pepk.jar
%%DATADIR%%/plugins/android/lib/perfetto-protos-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/r8-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_1.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_10.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_11.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_12.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_13.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_14.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_15.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_16.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_2.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_3.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_4.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_5.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_6.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_7.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_8.xml
%%DATADIR%%/plugins/android/lib/sampleData/avatars/avatar_9.xml
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/A_Photographer.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Apres_la_Pluie.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Caterpillar.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Colors_of_Autumn.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Countryside.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Death_Valley_-_Dunes.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Despair.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Eagle_Fall_Sunrise.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Green_Grass.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Hanging_Leaf.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Jelly_Fish_3.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Kauai.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Longue_Vue.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Lost_in_a_Field.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Monument_Valley_Overlook.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/One_Wheel.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Open_Sky.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Orange_Sunset.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Stream.webp
%%DATADIR%%/plugins/android/lib/sampleData/backgrounds/scenic/Yosemite_Tree.webp
%%DATADIR%%/plugins/android/lib/shared-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/spantable.jar
%%DATADIR%%/plugins/android/lib/sqlite_inspector_proto-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio-grpc-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio-proto-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.analyzer-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.android-annotations-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.binary-resources-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.builder-model-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.builder-test-api-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.chunkio-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.common-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.ddmlib-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.deployer-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.draw9patch-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.dvlib-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.flags-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.layoutinspector-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.layoutlib-api-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.lint-api-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.lint-checks-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.lint-model-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.manifest-merger-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.mlkit-common-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.ninepatch-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.perflib-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.pixelprobe-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.repository-27.2.0.1.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.sdk-common-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.sdklib-27.2.0.1.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.tracer-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.android.sdktools.zipflinger-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.baseLibrary-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.baseLibrarySupport-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.compiler-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.compilerCommon-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.intellij.android.wizardTemplate.impl-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.intellij.android.wizardTemplate.plugin-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/studio.usb-devices-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/tensorflow-lite-metadata-0.1.0-rc2.jar
%%DATADIR%%/plugins/android/lib/traceprocessor_protos-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/transport_java_proto-27.2.0.0.jar
%%DATADIR%%/plugins/android/lib/ui-animation-tooling-internal.jar
%%DATADIR%%/plugins/android/lib/workmanager_inspector_proto-27.2.0.0.jar
%%DATADIR%%/plugins/android/resources/images/asset_studio/ic_banner_image.xml
%%DATADIR%%/plugins/android/resources/images/asset_studio/ic_launcher_background.xml
%%DATADIR%%/plugins/android/resources/images/asset_studio/ic_launcher_foreground.xml
%%DATADIR%%/plugins/ant/lib/ant-jps.jar
%%DATADIR%%/plugins/ant/lib/antIntegration.jar
%%DATADIR%%/plugins/aop-common/lib/aop-common.jar
%%DATADIR%%/plugins/cloud-config/lib/cloud-config.jar
%%DATADIR%%/plugins/completionMlRanking/lib/completionMlRanking.jar
%%DATADIR%%/plugins/configurationScript/lib/configurationScript.jar
%%DATADIR%%/plugins/copyright/lib/copyright.jar
%%DATADIR%%/plugins/coverage/lib/asm-9.1.jar
%%DATADIR%%/plugins/coverage/lib/asm-analysis-9.1.jar
%%DATADIR%%/plugins/coverage/lib/asm-commons-9.1.jar
%%DATADIR%%/plugins/coverage/lib/asm-tree-9.1.jar
%%DATADIR%%/plugins/coverage/lib/coverage-report-1.0.5.jar
%%DATADIR%%/plugins/coverage/lib/coverage.jar
%%DATADIR%%/plugins/coverage/lib/coverage_rt.jar
%%DATADIR%%/plugins/coverage/lib/freemarker-2.3.30.jar
%%DATADIR%%/plugins/coverage/lib/org.jacoco.agent-0.8.7.jar
%%DATADIR%%/plugins/coverage/lib/org.jacoco.ant-0.8.7.jar
%%DATADIR%%/plugins/coverage/lib/org.jacoco.core-0.8.7.jar
%%DATADIR%%/plugins/coverage/lib/org.jacoco.report-0.8.7.jar
%%DATADIR%%/plugins/cucumber-groovy/lib/cucumber-groovy-1.2.4.jar
%%DATADIR%%/plugins/cucumber-groovy/lib/cucumber-groovy.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-core-1.2.4.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-expressions-6.1.2.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-java-1.2.4.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-java.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-jvmFormatter.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-jvmFormatter3.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-jvmFormatter4.jar
%%DATADIR%%/plugins/cucumber-java/lib/cucumber-jvmFormatter5.jar
%%DATADIR%%/plugins/cucumber-java/lib/gherkin-2.12.2.jar
%%DATADIR%%/plugins/cwm-plugin/lib/Java-WebSocket-1.4.0.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-common.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-host-unattended.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-host.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-lobby-common.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-plugin-terminal.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-plugin.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-unattended-common.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-unattended-ssh.jar
%%DATADIR%%/plugins/cwm-plugin/lib/cwm-unattended-util.jar
%%DATADIR%%/plugins/cwm-plugin/lib/idea-ultimate-build-dependencies.jar
%%DATADIR%%/plugins/cwm-plugin/lib/jnaerator-runtime-0.12.jar
%%DATADIR%%/plugins/cwm-plugin/lib/jstun-0.7.5.20200723.jar
%%DATADIR%%/plugins/cwm-plugin/lib/projector-client-swing-1.0-202106112000.jar
%%DATADIR%%/plugins/cwm-plugin/lib/quiche-jna-stubs-61.jar
%%DATADIR%%/plugins/cwm-plugin/lib/rd-text-0.212.307.jar
%%DATADIR%%/plugins/cwm-plugin/lib/tls-channel-0.3.2.jar
%%DATADIR%%/plugins/devkit/lib/devkit-jps.jar
%%DATADIR%%/plugins/devkit/lib/devkit.jar
%%DATADIR%%/plugins/devkit/lib/dtdparser113.jar
%%DATADIR%%/plugins/dsm/lib/dsm.jar
%%DATADIR%%/plugins/dynamicPluginsTests-performanceTesting/lib/dynamicPluginsTests-performanceTesting.jar
%%DATADIR%%/plugins/eclipse/lib/eclipse-common.jar
%%DATADIR%%/plugins/eclipse/lib/eclipse-jps.jar
%%DATADIR%%/plugins/eclipse/lib/eclipse.jar
%%DATADIR%%/plugins/editorconfig/lib/editorconfig-core-java.jar
%%DATADIR%%/plugins/editorconfig/lib/editorconfig.jar
%%DATADIR%%/plugins/emojipicker/lib/emojipicker.jar
%%DATADIR%%/plugins/externalSystem-dependencyUpdater/lib/externalSystem-dependencyUpdater.jar
%%DATADIR%%/plugins/featuresTrainer/lib/featuresTrainer.jar
%%DATADIR%%/plugins/featuresTrainer/lib/fest-swing-1.4.6.jar
%%DATADIR%%/plugins/featuresTrainer/lib/fest.jar
%%DATADIR%%/plugins/gherkin/lib/gherkin.jar
%%DATADIR%%/plugins/git4idea/lib/git4idea-rt.jar
%%DATADIR%%/plugins/git4idea/lib/git4idea.jar
%%DATADIR%%/plugins/github/lib/github.jar
%%DATADIR%%/plugins/gradle-dependencyUpdater/lib/gradle-dependencyUpdater.jar
%%DATADIR%%/plugins/gradle-ext/lib/gradle-ext.jar
%%DATADIR%%/plugins/gradle-java-maven/lib/gradle-java-maven.jar
%%DATADIR%%/plugins/gradle-java/lib/gradle-java.jar
%%DATADIR%%/plugins/gradle-java/lib/gradle-jps.jar
%%DATADIR%%/plugins/gradle-javaee/lib/javaee-gradle-support.jar
%%DATADIR%%/plugins/gradle/lib/gradle-api-7.1.jar
%%DATADIR%%/plugins/gradle/lib/gradle-api-impldep-7.1.jar
%%DATADIR%%/plugins/gradle/lib/gradle-launcher-7.1.jar
%%DATADIR%%/plugins/gradle/lib/gradle-tooling-extension-api.jar
%%DATADIR%%/plugins/gradle/lib/gradle-tooling-extension-impl.jar
%%DATADIR%%/plugins/gradle/lib/gradle-wrapper-7.1.jar
%%DATADIR%%/plugins/gradle/lib/gradle.jar
%%DATADIR%%/plugins/grazie/lib/aho-corasick-double-array-trie-1.2.2.jar
%%DATADIR%%/plugins/grazie/lib/bridj-0.7.0.jar
%%DATADIR%%/plugins/grazie/lib/commons-text-1.8.jar
%%DATADIR%%/plugins/grazie/lib/dx-1.7.jar
%%DATADIR%%/plugins/grazie/lib/emoji-java-5.1.1.jar
%%DATADIR%%/plugins/grazie/lib/grazie.jar
%%DATADIR%%/plugins/grazie/lib/hppc-0.8.2.jar
%%DATADIR%%/plugins/grazie/lib/hunspell-1.1.1.jar
%%DATADIR%%/plugins/grazie/lib/indriya-1.3.jar
%%DATADIR%%/plugins/grazie/lib/json-20170516.jar
%%DATADIR%%/plugins/grazie/lib/kotlinx-html-jvm-0.6.11.jar
%%DATADIR%%/plugins/grazie/lib/language-en-5.4.jar
%%DATADIR%%/plugins/grazie/lib/languagetool-core-5.4.jar
%%DATADIR%%/plugins/grazie/lib/morfologik-fsa-2.1.7.jar
%%DATADIR%%/plugins/grazie/lib/morfologik-fsa-builders-2.1.7.jar
%%DATADIR%%/plugins/grazie/lib/morfologik-speller-2.1.7.jar
%%DATADIR%%/plugins/grazie/lib/morfologik-stemming-2.1.7.jar
%%DATADIR%%/plugins/grazie/lib/nlp-common-0.1.26.jar
%%DATADIR%%/plugins/grazie/lib/nlp-detector-jvm-0.0.2.jar
%%DATADIR%%/plugins/grazie/lib/nlp-tokenizer-0.1.26.jar
%%DATADIR%%/plugins/grazie/lib/segment-2.0.1.jar
%%DATADIR%%/plugins/grazie/lib/unit-api-1.0.jar
%%DATADIR%%/plugins/grazie/lib/uom-lib-common-1.1.jar
%%DATADIR%%/plugins/grpc/lib/grpc.jar
%%DATADIR%%/plugins/haml/lib/haml.jar
%%DATADIR%%/plugins/hg4idea/lib/hg4idea.jar
%%DATADIR%%/plugins/htmltools/lib/htmltools.jar
%%DATADIR%%/plugins/indexing-shared-ultimate/lib/indexing-shared-ultimate.jar
%%DATADIR%%/plugins/indexing-shared/lib/indexing-shared.jar
%%DATADIR%%/plugins/java-decompiler/lib/java-decompiler.jar
%%DATADIR%%/plugins/java-i18n/lib/java-i18n.jar
%%DATADIR%%/plugins/java-ide-customization/lib/java-ide-customization.jar
%%DATADIR%%/plugins/java-pwa/lib/java-pwa.jar
%%DATADIR%%/plugins/java/lib/aether-dependency-resolver.jar
%%DATADIR%%/plugins/java/lib/completion-ranking-java-0.3.4.jar
%%DATADIR%%/plugins/java/lib/debugger-memory-agent-1.0.35.jar
%%DATADIR%%/plugins/java/lib/ecj-4.16.jar
%%DATADIR%%/plugins/java/lib/java-api.jar
%%DATADIR%%/plugins/java/lib/java-impl.jar
%%DATADIR%%/plugins/java/lib/javac2.jar
%%DATADIR%%/plugins/java/lib/jdkAnnotations.jar
%%DATADIR%%/plugins/java/lib/jgoodies-common-1.4.0.jar
%%DATADIR%%/plugins/java/lib/jps-builders-6.jar
%%DATADIR%%/plugins/java/lib/jps-builders.jar
%%DATADIR%%/plugins/java/lib/jps-javac-extension-1.jar
%%DATADIR%%/plugins/java/lib/jps-launcher.jar
%%DATADIR%%/plugins/java/lib/jshell-protocol.jar
%%DATADIR%%/plugins/java/lib/maven-resolver-connector-basic-1.3.3.jar
%%DATADIR%%/plugins/java/lib/maven-resolver-transport-file-1.3.3.jar
%%DATADIR%%/plugins/java/lib/maven-resolver-transport-http-1.3.3.jar
%%DATADIR%%/plugins/java/lib/nekohtml-1.9.22.jar
%%DATADIR%%/plugins/java/lib/platform-impl.jar
%%DATADIR%%/plugins/java/lib/rt/debugger-agent-storage.jar
%%DATADIR%%/plugins/java/lib/rt/debugger-agent.jar
%%DATADIR%%/plugins/java/lib/rt/jps-javac-rt-rpc.jar
%%DATADIR%%/plugins/java/lib/rt/protobuf-java-3.5.1.jar
%%DATADIR%%/plugins/java/lib/sa-jdwp-1.19.jar
%%DATADIR%%/plugins/javaFX/lib/javaFX-common.jar
%%DATADIR%%/plugins/javaFX/lib/javaFX-jps.jar
%%DATADIR%%/plugins/javaFX/lib/javaFX.jar
%%DATADIR%%/plugins/javaFX/lib/rt/sceneBuilderBridge.jar
%%DATADIR%%/plugins/javaHttpClients/lib/javaHttpClients.jar
%%DATADIR%%/plugins/javaSqlApis/lib/javaSqlApis.jar
%%DATADIR%%/plugins/jboss-core/lib/jboss-core.jar
%%DATADIR%%/plugins/jsp/lib/jsp-impl.jar
%%DATADIR%%/plugins/junit/lib/idea-junit.jar
%%DATADIR%%/plugins/junit/lib/junit-rt.jar
%%DATADIR%%/plugins/junit/lib/junit5-rt.jar
%%DATADIR%%/plugins/less/lib/less.jar
%%DATADIR%%/plugins/lombok/lib/lombok.jar
%%DATADIR%%/plugins/markdown/lib/google-api-client-1.25.0.jar
%%DATADIR%%/plugins/markdown/lib/google-api-services-drive-v3-rev197-1.25.0.jar
%%DATADIR%%/plugins/markdown/lib/google-http-client-1.25.0.jar
%%DATADIR%%/plugins/markdown/lib/google-http-client-jackson2-1.25.0.jar
%%DATADIR%%/plugins/markdown/lib/google-oauth-client-1.25.0.jar
%%DATADIR%%/plugins/markdown/lib/j2objc-annotations-1.1.jar
%%DATADIR%%/plugins/markdown/lib/markdown.jar
%%DATADIR%%/plugins/maven-ext/lib/maven-ext.jar
%%DATADIR%%/plugins/maven-model/lib/maven-model.jar
%%DATADIR%%/plugins/maven/lib/artifact-resolver-m2.jar
%%DATADIR%%/plugins/maven/lib/artifact-resolver-m3.jar
%%DATADIR%%/plugins/maven/lib/artifact-resolver-m31.jar
%%DATADIR%%/plugins/maven/lib/lucene-core-2.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven-event-listener.jar
%%DATADIR%%/plugins/maven/lib/maven-jps.jar
%%DATADIR%%/plugins/maven/lib/maven-server-api.jar
%%DATADIR%%/plugins/maven/lib/maven.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/archetype-common-2.0-alpha-4-SNAPSHOT.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/commons-beanutils.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/maven-dependency-tree-1.2.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/mercury-artifact-1.0-alpha-6.jar
%%DATADIR%%/plugins/maven/lib/maven2-server-lib/nexus-indexer-1.2.3.jar
%%DATADIR%%/plugins/maven/lib/maven2-server.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-common.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/archetype-catalog-2.2.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/archetype-common-2.2.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/maven-dependency-tree-1.2.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/nexus-indexer-3.0.4.jar
%%DATADIR%%/plugins/maven/lib/maven3-server-lib/nexus-indexer-artifact-1.0.1.jar
%%DATADIR%%/plugins/maven/lib/maven3-server.jar
%%DATADIR%%/plugins/maven/lib/maven3/LICENSE
%%DATADIR%%/plugins/maven/lib/maven3/NOTICE
%%DATADIR%%/plugins/maven/lib/maven3/README.txt
%%DATADIR%%/plugins/maven/lib/maven3/bin/m2.conf
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvn
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvn.cmd
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvnDebug
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvnDebug.cmd
%%DATADIR%%/plugins/maven/lib/maven3/bin/mvnyjp
%%DATADIR%%/plugins/maven/lib/maven3/boot/plexus-classworlds-2.6.0.jar
%%DATADIR%%/plugins/maven/lib/maven3/boot/plexus-classworlds.license
%%DATADIR%%/plugins/maven/lib/maven3/conf/logging/simplelogger.properties
%%DATADIR%%/plugins/maven/lib/maven3/conf/settings.xml
%%DATADIR%%/plugins/maven/lib/maven3/conf/toolchains.xml
%%DATADIR%%/plugins/maven/lib/maven3/lib/cdi-api-1.0.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/cdi-api.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-cli-1.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-cli.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-io-2.5.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-io.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-lang3-%%PYTHON_VER%%.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/commons-lang3.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/ext/README.txt
%%DATADIR%%/plugins/maven/lib/maven3/lib/guava-25.1-android.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/guava.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/guice-4.2.1-no_aop.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/guice.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi-1.17.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi-native/README.txt
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi-native/freebsd32/libjansi.so
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi-native/freebsd64/libjansi.so
%%DATADIR%%/plugins/maven/lib/maven3/lib/jansi.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/javax.inject-1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/javax.inject.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/jcl-over-slf4j-1.7.29.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/jcl-over-slf4j.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/jsoup-1.12.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/jsoup.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/jsr250-api-1.0.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/jsr250-api.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-artifact-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-builder-support-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-compat-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-core-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-embedder-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-model-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-model-builder-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-plugin-api-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-repository-metadata-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-api-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-connector-basic-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-impl-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-provider-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-spi-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-transport-wagon-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-resolver-util-1.4.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-settings-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-settings-builder-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-shared-utils-3.2.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/maven-slf4j-provider-3.6.3.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/org.eclipse.sisu.inject-0.3.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/org.eclipse.sisu.inject.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/org.eclipse.sisu.plexus-0.3.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/org.eclipse.sisu.plexus.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-cipher-1.7.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-cipher.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-component-annotations-2.1.0.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-component-annotations.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-interpolation-1.25.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-interpolation.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher-1.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-utils-3.2.1.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/plexus-utils.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/slf4j-api-1.7.29.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/slf4j-api.license
%%DATADIR%%/plugins/maven/lib/maven3/lib/wagon-file-3.3.4.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/wagon-http-3.3.4-shaded.jar
%%DATADIR%%/plugins/maven/lib/maven3/lib/wagon-provider-api-3.3.4.jar
%%DATADIR%%/plugins/maven/lib/maven30-server.jar
%%DATADIR%%/plugins/maven/lib/maven36-server.jar
%%DATADIR%%/plugins/maven/lib/plexus-archiver-3.0.3.jar
%%DATADIR%%/plugins/micronaut/lib/micronaut.jar
%%DATADIR%%/plugins/microservices-config/lib/microservices-config.jar
%%DATADIR%%/plugins/microservices-uast/lib/microservices-uast.jar
%%DATADIR%%/plugins/microservices-ui/lib/microservices-ui.jar
%%DATADIR%%/plugins/packageSearch/lib/api-models-2.2.3.jar
%%DATADIR%%/plugins/packageSearch/lib/package-version-utils-1.0.0.jar
%%DATADIR%%/plugins/packageSearch/lib/packageSearch.jar
%%DATADIR%%/plugins/performanceTesting-gradle/lib/performanceTesting-gradle.jar
%%DATADIR%%/plugins/performanceTesting-maven/lib/performanceTesting-maven.jar
%%DATADIR%%/plugins/performanceTesting/lib/byte-buddy-agent-1.10.1.jar
%%DATADIR%%/plugins/performanceTesting/lib/performanceTesting.jar
%%DATADIR%%/plugins/performanceTesting/lib/yjp-controller-api-redist.jar
%%DATADIR%%/plugins/platform-images/lib/platform-images.jar
%%DATADIR%%/plugins/properties/lib/properties.jar
%%DATADIR%%/plugins/protoeditor/lib/protoeditor.jar
%%DATADIR%%/plugins/pwa-core/lib/pwa-core.jar
%%DATADIR%%/plugins/quarkus/lib/quarkus.jar
%%DATADIR%%/plugins/reactivestreams-core/lib/reactivestreams-core.jar
%%DATADIR%%/plugins/recommenders/lib/commons-pool2-2.8.0.jar
%%DATADIR%%/plugins/recommenders/lib/inference-0.1.1.jar
%%DATADIR%%/plugins/recommenders/lib/maven-resolver-connector-basic-1.3.3.jar
%%DATADIR%%/plugins/recommenders/lib/maven-resolver-transport-file-1.3.3.jar
%%DATADIR%%/plugins/recommenders/lib/maven-resolver-transport-http-1.3.3.jar
%%DATADIR%%/plugins/recommenders/lib/ndarray-0.1.1.jar
%%DATADIR%%/plugins/recommenders/lib/okio-2.5.0.jar
%%DATADIR%%/plugins/recommenders/lib/primitives-annotations-0.1.2.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-java-commons-0.5.3.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-java-jayes-0.5.3.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-jayes-2.5.5.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders-jayes-io-2.5.5.jar
%%DATADIR%%/plugins/recommenders/lib/recommenders.jar
%%DATADIR%%/plugins/recommenders/lib/wire-runtime-3.2.2.jar
%%DATADIR%%/plugins/remote-run/lib/remote-run.jar
%%DATADIR%%/plugins/repository-search/lib/repository-search.jar
%%DATADIR%%/plugins/restClient/lib/restClient.jar
%%DATADIR%%/plugins/restWebServices/lib/rs.jar
%%DATADIR%%/plugins/restWebServices/lib/ws-rt.jar
%%DATADIR%%/plugins/sass/lib/jrubyparser-0.5.4.jar
%%DATADIR%%/plugins/sass/lib/sass.jar
%%DATADIR%%/plugins/settings-repository/lib/jgit.jar
%%DATADIR%%/plugins/settings-repository/lib/settings-repository.jar
%%DATADIR%%/plugins/sh/lib/sh.jar
%%DATADIR%%/plugins/smali/lib/smali.jar
%%DATADIR%%/plugins/space/lib/ivy-2.5.0.jar
%%DATADIR%%/plugins/space/lib/jackson-datatype-joda.jar
%%DATADIR%%/plugins/space/lib/kotlin-scripting-dependencies-1.4.21.jar
%%DATADIR%%/plugins/space/lib/kotlinx-coroutines-slf4j-1.3.4.jar
%%DATADIR%%/plugins/space/lib/okhttp-3.12.10.jar
%%DATADIR%%/plugins/space/lib/okio-1.15.0.jar
%%DATADIR%%/plugins/space/lib/space-idea-sdk-1.1.73769.jar
%%DATADIR%%/plugins/space/lib/space-java-jps.jar
%%DATADIR%%/plugins/space/lib/space.jar
%%DATADIR%%/plugins/spy-js/lib/socketio.jar
%%DATADIR%%/plugins/spy-js/lib/spy-js.jar
%%DATADIR%%/plugins/spy-js/server/lib/app.js
%%DATADIR%%/plugins/spy-js/server/lib/defaultConfig.js
%%DATADIR%%/plugins/spy-js/server/lib/evaluator.js
%%DATADIR%%/plugins/spy-js/server/lib/global.js
%%DATADIR%%/plugins/spy-js/server/lib/instrument.js
%%DATADIR%%/plugins/spy-js/server/lib/proxyUtil.js
%%DATADIR%%/plugins/spy-js/server/lib/session.js
%%DATADIR%%/plugins/spy-js/server/lib/sessionCore.js
%%DATADIR%%/plugins/spy-js/server/lib/sessionNode.js
%%DATADIR%%/plugins/spy-js/server/lib/sessionStore.js
%%DATADIR%%/plugins/spy-js/server/lib/tracer.js
%%DATADIR%%/plugins/spy-js/server/lib/tracerDependencies.js
%%DATADIR%%/plugins/spy-js/server/lib/tracerNode.js
%%DATADIR%%/plugins/spy-js/server/lib/urlUtil.js
%%DATADIR%%/plugins/spy-js/server/lib/worker.js
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/acorn
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/escodegen
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/esgenerate
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/esparse
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/esvalidate
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/express
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/ncp
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/node-http-proxy
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/rimraf
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/semver
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/uglifyjs
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/uuid
%%DATADIR%%/plugins/spy-js/server/node_modules/.bin/wscat
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/.editorconfig
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/.tern-project
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/AUTHORS
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/bin/acorn
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/bin/build-acorn.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/bin/generate-identifier-regex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/bin/update_authors.sh
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/dist/.keep
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/dist/acorn.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/dist/acorn_loose.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/dist/walk.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/bin/acorn.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/expression.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/identifier.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/location.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/locutil.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/acorn_loose.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/expression.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/parseutil.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/state.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/statement.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/loose/tokenize.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/lval.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/options.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/parseutil.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/state.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/statement.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/tokencontext.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/tokenize.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/tokentype.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/walk/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/acorn/src/whitespace.js
%%DATADIR%%/plugins/spy-js/server/node_modules/active-x-obfuscator/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/active-x-obfuscator/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/active-x-obfuscator/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/active-x-obfuscator/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/amdefine/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/amdefine/amdefine.js
%%DATADIR%%/plugins/spy-js/server/node_modules/amdefine/intercept.js
%%DATADIR%%/plugins/spy-js/server/node_modules/amdefine/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/archiver.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/core/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/core/queue.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/json/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/tar/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/modules/zip/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/lib/util/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/archiver/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/errors.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/reader.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/types.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/ber/writer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/tst/ber/reader.test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/asn1/tst/ber/writer.test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/assert-plus/assert.js
%%DATADIR%%/plugins/spy-js/server/node_modules/assert-plus/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/async/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/async/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/async/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/async/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/async/lib/async.js
%%DATADIR%%/plugins/spy-js/server/node_modules/async/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/aws-sign2/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/aws-sign2/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/aws-sign2/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/balanced-match/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/balanced-match/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/balanced-match/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/balanced-match/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/base64id/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/base64id/lib/base64id.js
%%DATADIR%%/plugins/spy-js/server/node_modules/base64id/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/bl.js
%%DATADIR%%/plugins/spy-js/server/node_modules/bl/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/images/boom.png
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/boom/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/brace-expansion/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/brace-expansion/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/buffer-crc32/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/buffer-crc32/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/buffer-crc32/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/bytes/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/caseless/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/caseless/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/caseless/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/MIT-LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/colors.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/example.html
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/example.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/themes/winston-dark.js
%%DATADIR%%/plugins/spy-js/server/node_modules/colors/themes/winston-light.js
%%DATADIR%%/plugins/spy-js/server/node_modules/combined-stream/License
%%DATADIR%%/plugins/spy-js/server/node_modules/combined-stream/lib/combined_stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/combined-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/commander/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/commander/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/README.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/example/map.js
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/concat-map/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/cache.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/connect.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/basicAuth.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/bodyParser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/compress.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/cookieParser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/cookieSession.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/csrf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/directory.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/errorHandler.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/favicon.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/json.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/limit.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/logger.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/methodOverride.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/multipart.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/query.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/responseTime.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/cookie.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/memory.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/session.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/session/store.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/static.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/staticCache.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/timeout.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/urlencoded.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/middleware/vhost.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/patch.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/proto.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/public/directory.html
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/public/error.html
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/public/favicon.ico
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/public/style.css
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/buffer-crc32/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/Readme.md
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/lib/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/node_modules/debug/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/connect/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie-signature/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/cookie/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/core-util-is/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/core-util-is/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/core-util-is/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/core-util-is/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/CHANGELOG
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/CONTRIBUTING.md
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/lib/crc32-stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/crc32-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/cryptiles/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/CHANGELOG
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/README.old
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/ctf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/ctio.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/ctype.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/man/man3ctype/ctio.3ctype
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/tools/jsl.conf
%%DATADIR%%/plugins/spy-js/server/node_modules/ctype/tools/jsstyle
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/debug/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/example/cmp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/lib/is_arguments.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/lib/keys.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-equal/readme.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/README.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/example/cmp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deep-is/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/lib/deflate-crc32-stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/deflate-crc32-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/License
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/lib/delayed_stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/delayed-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/end-of-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/end-of-stream/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/end-of-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/LICENSE.BSD
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/LICENSE.source-map
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/bin/escodegen.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/bin/esgenerate.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/escodegen.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/CHANGELOG.md
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/Makefile.dryice.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/assert-shim.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/mini-require.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/prefix-source-map.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/prefix-utils.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/suffix-browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/suffix-source-map.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/suffix-utils.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/test-prefix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/build/test-suffix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/array-set.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/base64-vlq.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/base64.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/basic-source-map-consumer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/binary-search.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/indexed-source-map-consumer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/mapping-list.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/source-map-consumer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/source-map-generator.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/source-node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/lib/source-map/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/node_modules/source-map/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/escodegen/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/ChangeLog
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/LICENSE.BSD
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/bin/esparse.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/bin/esvalidate.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/esprima.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esprima/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/.editorconfig
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/LICENSE.BSD
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/estraverse.js
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/gulpfile.js
%%DATADIR%%/plugins/spy-js/server/node_modules/estraverse/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/LICENSE.BSD
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/lib/ast.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/lib/code.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/lib/keyword.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/esutils/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/express/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/express/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/express/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/express/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/express/bin/express
%%DATADIR%%/plugins/spy-js/server/node_modules/express/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/application.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/express.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/request.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/response.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/router/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/router/route.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/lib/view.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/buffer-crc32/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/commander/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/commander/Readme.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/commander/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/commander/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/debug/Readme.md
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/debug/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/debug/lib/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/express/node_modules/debug/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/express/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/fast-levenshtein/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/fast-levenshtein/levenshtein.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fast-levenshtein/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fd-slicer/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/lib/env.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/lib/file.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/lib/logger.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/lib/query.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/Changelog.md
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/dbcs-codec.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/dbcs-data.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/internal.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/sbcs-codec.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/sbcs-data-generated.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/sbcs-data.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/big5-added.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/cp936.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/cp949.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/cp950.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/eucjp.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/gbk-added.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/tables/shiftjis.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/utf16.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/encodings/utf7.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/bom-handling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/extend-node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/index.d.ts
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/lib/streams.js
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/node_modules/iconv-lite/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/file-utils/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/lib/findup-sync.js
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/common.js
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/glob.js
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/node_modules/glob/sync.js
%%DATADIR%%/plugins/spy-js/server/node_modules/findup-sync/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/forever-agent/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/forever-agent/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/forever-agent/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/License
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/lib/form_data.js
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/bower.json
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/lib/async.js
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/node_modules/async/support/sync-package-managers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/form-data/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fresh/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/fs.realpath/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/fs.realpath/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fs.realpath/old.js
%%DATADIR%%/plugins/spy-js/server/node_modules/fs.realpath/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/common.js
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/glob.js
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/glob/sync.js
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/fs.js
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/graceful-fs.js
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/legacy-streams.js
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/graceful-fs/polyfills.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/example/usage.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/images/hawk.png
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/images/logo.png
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/client.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/crypto.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hawk/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/images/hoek.png
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/lib/escape.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/hoek/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/benchmark/websockets-throughput.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/bin/node-http-proxy
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/config.sample.json
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/balancer/simple-balancer-with-websockets.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/balancer/simple-balancer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/helpers/store.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/basic-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/concurrent-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/custom-proxy-error.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/forward-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/latent-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/proxy-https-to-http.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/proxy-https-to-https.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/proxy-table.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/http/standalone-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/bodyDecoder-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/gzip-middleware-proxytable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/gzip-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/jsonp-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/modifyResponse-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/url-middleware.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/middleware/url-middleware2.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/websocket/latent-websocket-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/websocket/standalone-websocket-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/examples/websocket/websocket-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy/http-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy/proxy-table.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/lib/node-http-proxy/routing-proxy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-proxy/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/.dir-locals.el
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/http_signing.md
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/signer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/lib/verify.js
%%DATADIR%%/plugins/spy-js/server/node_modules/http-signature/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/i/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/i/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/i/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/defaults.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/inflect.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/inflections.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/methods.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/native.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/i/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/big5.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/gbk.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/singlebyte.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/table/big5.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/encodings/table/gbk.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/generation/generate-big5-table.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/generation/generate-singlebyte.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/iconv-lite/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/inflight/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/inflight/inflight.js
%%DATADIR%%/plugins/spy-js/server/node_modules/inflight/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/inherits/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/inherits/inherits.js
%%DATADIR%%/plugins/spy-js/server/node_modules/inherits/inherits_browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/inherits/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/isarray/build/build.js
%%DATADIR%%/plugins/spy-js/server/node_modules/isarray/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/isarray/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/isarray/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/isbinaryfile/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/isbinaryfile/LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/isbinaryfile/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/isbinaryfile/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/json-stringify-safe/stringify.js
%%DATADIR%%/plugins/spy-js/server/node_modules/keypress/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/keypress/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/keypress/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/lib/lazystream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lazystream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/cast.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/coerce.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/parse-string.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/lib/parse.js
%%DATADIR%%/plugins/spy-js/server/node_modules/levn/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.compat.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.compat.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.underscore.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/dist/lodash.underscore.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/lodash.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lodash/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/AUTHORS
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/lib/lru-cache.js
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/lru-cache/s.js
%%DATADIR%%/plugins/spy-js/server/node_modules/methods/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/methods/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/methods/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/SOURCES.md
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/lib/custom.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/lib/mime.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/lib/node.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime-types/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/mime.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/types/mime.types
%%DATADIR%%/plugins/spy-js/server/node_modules/mime/types/node.types
%%DATADIR%%/plugins/spy-js/server/node_modules/minimatch/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/minimatch/browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/minimatch/minimatch.js
%%DATADIR%%/plugins/spy-js/server/node_modules/minimatch/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/examples/pow.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mkdirp/readme.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/ms/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ms/license.md
%%DATADIR%%/plugins/spy-js/server/node_modules/ms/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/examples/parent.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/examples/worker.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/mule/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/.name
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/encodings.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/jsLibraryMappings.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/libraries/multi_stage_sourcemap_node_modules.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/misc.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/modules.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/multi-stage-sourcemap.iml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/scopes/scope_settings.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/vcs.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.idea/workspace.xml
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/.bower.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/MIT-LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/bower.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/build/power-assert.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/bower_components/power-assert/lib/power-assert.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/build.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/index.html
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/one_pass_result.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/origin.coffee
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/exp/two_pass_result.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/lib/multi-stage-sourcemap.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multi-stage-sourcemap/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/examples/azureblobstorage.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/examples/s3.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/examples/upload.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/lib/_stream_writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/node_modules/readable-stream/writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/multiparty/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/.dntrc
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/build/config.gypi
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/include_dirs.js
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/nan.h
%%DATADIR%%/plugins/spy-js/server/node_modules/nan/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/bin/ncp
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/lib/ncp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ncp/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/examples/accept.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/examples/charset.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/examples/encoding.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/examples/language.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/charset.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/encoding.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/language.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/mediaType.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/lib/negotiator.js
%%DATADIR%%/plugins/spy-js/server/node_modules/negotiator/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/LICENSE.md
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/bench.gnu
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/bench.sh
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/benchmark-native.c
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/benchmark/benchmark.js
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/bin/uuid
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/bower.json
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/lib/sha1-browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/uuid.js
%%DATADIR%%/plugins/spy-js/server/node_modules/node-uuid/v3.js
%%DATADIR%%/plugins/spy-js/server/node_modules/oauth-sign/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/oauth-sign/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/oauth-sign/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/oauth-sign/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/once/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/once/once.js
%%DATADIR%%/plugins/spy-js/server/node_modules/once/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/bool.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/boolean_double.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/boolean_single.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/default_hash.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/default_singles.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/divide.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/line_count.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/line_count_options.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/line_count_wrap.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/nonopt.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/reflect.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/short.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/string.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/usage-options.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/example/xup.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/optimist/readme.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/coerce.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/help.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/parse-type.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/optionator/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/options/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/options/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/options/lib/options.js
%%DATADIR%%/plugins/spy-js/server/node_modules/options/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/os-tmpdir/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/os-tmpdir/license
%%DATADIR%%/plugins/spy-js/server/node_modules/os-tmpdir/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/path-is-absolute/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/path-is-absolute/license
%%DATADIR%%/plugins/spy-js/server/node_modules/path-is-absolute/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pause/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/pend/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/pend/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pend/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/pend/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/docs/docco.css
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/docs/pkginfo.html
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/all-properties.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/array-argument.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/multiple-properties.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/object-argument.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/examples/single-property.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/lib/pkginfo.js
%%DATADIR%%/plugins/spy-js/server/node_modules/pkginfo/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/doc/index.html
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/examples/basic.fallback.js
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/examples/basic.js
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/lib/server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/policyfile/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Func.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/List.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Num.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Obj.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/Str.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/prelude-ls/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/punycode/LICENSE-MIT.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/punycode/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/punycode/punycode.js
%%DATADIR%%/plugins/spy-js/server/node_modules/qs/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/qs/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/qs/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/range-parser/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/raw-body/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/lib/_stream_writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/readable-stream/writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/buffer_bench.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/hiredis_parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/re_sub_test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/reconnect_test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/codec.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/pubsub/pub.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/pubsub/run
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/pubsub/server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/rpushblpop/pub.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/rpushblpop/run
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/rpushblpop/server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/00
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/plot
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/size-rate.png
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/stress/speed/speed.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/benches/sub_quit_test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/diff_multi_bench_output.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/auth.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/backpressure_drain.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/eval.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/extend.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/file.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/mget.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/monitor.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/multi.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/multi2.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/psubscribe.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/pub_sub.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/simple.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/sort.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/subqueries.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/subquery.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/unix_socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/examples/web_server.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/generate_commands.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/commands.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/parser/hiredis.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/parser/javascript.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/queue.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/to_array.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/mem.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/multi_bench.js
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/redis/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/request/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/request/CONTRIBUTING.md
%%DATADIR%%/plugins/spy-js/server/node_modules/request/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/request/disabled.appveyor.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/request/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/cookies.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/copy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/helpers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/lib/optional.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/.jshintignore
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/CONTRIBUTING.md
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/parse.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/stringify.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/request/node_modules/qs/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/request/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/request/request.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/bin.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/changelog.md
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/common.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/glob.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/glob/sync.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/minimatch.js
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/node_modules/minimatch/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/rimraf/rimraf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/bin/semver
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/foot.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/head.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/semver.browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/semver.js
%%DATADIR%%/plugins/spy-js/server/node_modules/semver/semver.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/send/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/send/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/send/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/send/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/send/lib/send.js
%%DATADIR%%/plugins/spy-js/server/node_modules/send/lib/utils.js
%%DATADIR%%/plugins/spy-js/server/node_modules/send/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/examples/offset.js
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/examples/time.js
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/sntp/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/bin/builder.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-bind/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-bind/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-emitter/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-emitter/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json-fallback/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json-fallback/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/component-json/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/emitter.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transport.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/flashsocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-jsonp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-xhr.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/websocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-socket.io-protocol/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/learnboost-socket.io-protocol/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/timoxley-to-array/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/timoxley-to-array/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/visionmedia-debug/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/visionmedia-debug/debug.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/components/visionmedia-debug/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/dist/WebSocketMain.swf
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/dist/WebSocketMainInsecure.swf
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/dist/socket.io.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/dist/socket.io.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/events.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/io.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/json.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/namespace.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transport.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/flashsocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/htmlfile.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/jsonp-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/websocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/xhr-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/transports/xhr.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMain.swf
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMainInsecure.zip
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/sample.html
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/swfobject.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/lib/vendor/web-socket-js/web_socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io-client/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/benchmarks/decode.bench.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/benchmarks/encode.bench.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/benchmarks/runner.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/logger.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/manager.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/namespace.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/parser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/socket.io.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/socket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/static.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/store.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/stores/memory.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/stores/redis.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transport.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/flashsocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/htmlfile.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/http-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/http.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/jsonp-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/default.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/hybi-07-12.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/hybi-16.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/websocket/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/transports/xhr-polling.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/lib/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/socket.io/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/Makefile.dryice.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/assert-shim.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/mini-require.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/prefix-source-map.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/prefix-utils.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/suffix-browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/suffix-source-map.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/suffix-utils.jsm
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/test-prefix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/build/test-suffix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/array-set.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/base64-vlq.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/base64.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/binary-search.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/mapping-list.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/source-map-consumer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/source-map-generator.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/source-node.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/lib/source-map/util.js
%%DATADIR%%/plugins/spy-js/server/node_modules/source-map/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_duplex.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/lib/_stream_writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/passthrough.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/readable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/transform.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/node_modules/readable-stream/writable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stream-counter/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/string_decoder/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/string_decoder/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/string_decoder/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/string_decoder/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/LICENSE.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/example.js
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/stringstream/stringstream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/extract.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/headers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/pack.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tar-stream/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/examples/grepcount.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/examples/pdfcreator.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/lib/temp.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/no_cleanup.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/no_cleanup_on_exit.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/no_cleanup_on_exit.spec.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/.bin/rimraf
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/AUTHORS
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/bin.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/node_modules/rimraf/rimraf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/temp/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/tinycolor/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/tinycolor/example.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tinycolor/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/tinycolor/tinycolor.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/cookie.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/memstore.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/pathMatch.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/permuteDomain.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/pubsuffix.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/lib/store.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tough-cookie/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/tunnel-agent/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/tunnel-agent/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/tunnel-agent/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/lib/check.js
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/lib/parse-type.js
%%DATADIR%%/plugins/spy-js/server/node_modules/type-check/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/README.html
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/README.org
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/bin/uglifyjs
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/docstyle.css
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/lib/object-ast.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/lib/parse-js.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/lib/process.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/lib/squeeze-more.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/uglify-js/uglify-js.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uid2/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/uid2/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/uid2/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/Gemfile
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/Gemfile.lock
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/README.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/Rakefile
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/component.json
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/dist/underscore.string.min.js
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/lib/underscore.string.js
%%DATADIR%%/plugins/spy-js/server/node_modules/underscore.string/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/CREDITS
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/bin/testfiles.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/bin/update.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/features/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/lib/regexps.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/lib/update.js
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/useragent/static/user_agent.after.yaml
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/args.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/base64.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/file.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/format.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/lib/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/AUTHORS
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/README.md
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/fiber.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/node_modules/rimraf/rimraf.js
%%DATADIR%%/plugins/spy-js/server/node_modules/utile/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/README.markdown
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/example/center.js
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/example/meat.js
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/wordwrap/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/wrappy/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/wrappy/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/wrappy/wrappy.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/.travis.yml
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/History.md
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/bin/wscat
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/binding.gyp
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/Release/.deps/Release/obj.target/bufferutil/src/bufferutil.o.d.raw
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/binding.Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/bufferutil.target.mk
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/config.gypi
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/gyp-mac-tool
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/build/validation.target.mk
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/BufferPool.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/BufferUtil.fallback.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/BufferUtil.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/ErrorCodes.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Receiver.hixie.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Receiver.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Sender.hixie.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Sender.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Validation.fallback.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/Validation.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/WebSocket.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/WebSocketServer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/lib/browser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/src/bufferutil.cc
%%DATADIR%%/plugins/spy-js/server/node_modules/ws/src/validation.cc
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/autotest.watchr
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/example/demo.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/lib/XMLHttpRequest.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-constants.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-events.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-exceptions.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-headers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-request-methods.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/test-request-protocols.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xmlhttprequest/tests/testdata.txt
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/.jshintrc
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/LICENCE
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/Makefile
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/immutable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/mutable.js
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/xtend/test.js
%%DATADIR%%/plugins/spy-js/server/node_modules/yauzl/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/yauzl/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/yauzl/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/.npmignore
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/LICENSE
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/Tokenizer.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/ZeParser.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/package.json
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/test-parser.html
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/test-tokenizer.html
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/tests.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zeparser/unicodecategories.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/LICENSE-MIT
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/lib/headers.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/lib/util/index.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/lib/zip-stream.js
%%DATADIR%%/plugins/spy-js/server/node_modules/zip-stream/package.json
%%DATADIR%%/plugins/spy-js/server/proxy-nix.sh
%%DATADIR%%/plugins/spy-js/server/proxy-osx.sh
%%DATADIR%%/plugins/spy-js/server/spy.js
%%DATADIR%%/plugins/spy-js/server/spyNode.js
%%DATADIR%%/plugins/stream-debugger/lib/stream-debugger.jar
%%DATADIR%%/plugins/stylus/lib/stylus.jar
%%DATADIR%%/plugins/svn4idea/lib/sqlite-jdbc-3.34.0.jar
%%DATADIR%%/plugins/svn4idea/lib/svn4idea.jar
%%DATADIR%%/plugins/swagger/lib/swagger-ui-3.32.5.jar
%%DATADIR%%/plugins/swagger/lib/swagger.jar
%%DATADIR%%/plugins/tasks-time-tracking/lib/tasks-time-tracking.jar
%%DATADIR%%/plugins/tasks/lib/axis-1.4.jar
%%DATADIR%%/plugins/tasks/lib/axis-jaxrpc-1.4.jar
%%DATADIR%%/plugins/tasks/lib/axis-saaj-1.3.jar
%%DATADIR%%/plugins/tasks/lib/commons-discovery-0.4.jar
%%DATADIR%%/plugins/tasks/lib/tasks-core.jar
%%DATADIR%%/plugins/tasks/lib/wsdl4j-1.4.jar
%%DATADIR%%/plugins/terminal/.zshenv
%%DATADIR%%/plugins/terminal/fish/config.fish
%%DATADIR%%/plugins/terminal/jediterm-bash.in
%%DATADIR%%/plugins/terminal/lib/terminal.jar
%%DATADIR%%/plugins/testng/lib/testng-plugin.jar
%%DATADIR%%/plugins/testng/lib/testng-rt.jar
%%DATADIR%%/plugins/testng/lib/testng.jar
%%DATADIR%%/plugins/textmate/lib/bundles/bat/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/bat/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/bat/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/bat/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/bat/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/bat/snippets/batchfile.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/bat/syntaxes/batchfile.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/syntaxes/clojure.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/snippets/coffeescript.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/syntaxes/coffeescript.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/snippets/c.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/snippets/cpp.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/c.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.embedded.macro.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/cuda-cpp.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/platform.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/snippets/csharp.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/syntaxes/csharp.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/.vscode/launch.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/css/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/css/syntaxes/css.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/docker/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/docker/syntaxes/docker.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/snippets/fsharp.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/syntaxes/fsharp.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/git/README.md
%%DATADIR%%/plugins/textmate/lib/bundles/git/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/extension.webpack.config.js
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/diff.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/git-commit.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/git-rebase.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/ignore.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/api/api1.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/api/extension.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/api/git.d.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass-empty.sh
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass-main.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass.sh
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/autofetch.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/commands.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/contentProvider.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/decorationProvider.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/decorators.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/emoji.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/encoding.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/fileSystemProvider.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/git.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/ipc/ipcClient.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/ipc/ipcServer.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/log.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/main.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/model.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/protocolHandler.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/pushError.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/remoteProvider.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/remoteSource.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/repository.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/staging.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/statusbar.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/terminal.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/test/git.test.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/test/index.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/test/smoke.test.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/timelineProvider.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/typings/refs.d.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/uri.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/util.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/watch.ts
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/diff.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/git-commit.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/git-rebase.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/ignore.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/tsconfig.json
%%DATADIR%%/plugins/textmate/lib/bundles/git/yarn.lock
%%DATADIR%%/plugins/textmate/lib/bundles/go/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/go/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/go/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/go/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/go/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/go/syntaxes/go.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/snippets/groovy.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/syntaxes/groovy.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/syntaxes/Handlebars.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/syntaxes/hlsl.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/html/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/syntaxes/html-derivative.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/html/syntaxes/html.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/ini/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/ini.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/properties.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/ini/syntaxes/ini.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/java/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/java/snippets/java.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/java/syntaxes/java.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/javascript-language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/snippets/javascript.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScript.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScriptReact.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/Readme.md
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/tags-language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/json/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/syntaxes/JSON.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/json/syntaxes/JSONC.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/julia/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/julia/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/julia/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/julia/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/julia/syntaxes/julia.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/info.plist
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/snippets/class.tmSnippet
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/snippets/println.tmSnippet
%%DATADIR%%/plugins/textmate/lib/bundles/kotlin/syntaxes/Kotlin.tmLanguage
%%DATADIR%%/plugins/textmate/lib/bundles/less/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/less/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/less/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/less/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/less/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/less/syntaxes/less.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/log/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/log/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/log/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/log/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/log/syntaxes/log.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/lua/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/lua/syntaxes/lua.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/make/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/make/syntaxes/make.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/snippets/markdown.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/syntaxes/markdown.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/mdx/license
%%DATADIR%%/plugins/textmate/lib/bundles/mdx/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/mdx/syntaxes/mdx.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c++.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/perl/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/perl.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/perl6.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/syntaxes/perl.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/perl/syntaxes/perl6.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/.vscode/launch.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/.vscode/tasks.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/php/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/snippets/php.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/php/syntaxes/html.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/php/syntaxes/php.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/snippets/powershell.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/syntaxes/powershell.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/pug/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/pug/syntaxes/pug.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/.vscode/launch.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/.vscode/tasks.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/python/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/extension-browser.webpack.config.js
%%DATADIR%%/plugins/textmate/lib/bundles/python/extension.webpack.config.js
%%DATADIR%%/plugins/textmate/lib/bundles/python/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/src/pythonMain.ts
%%DATADIR%%/plugins/textmate/lib/bundles/python/src/typings/ref.d.ts
%%DATADIR%%/plugins/textmate/lib/bundles/python/syntaxes/MagicPython.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/syntaxes/MagicRegExp.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/python/tsconfig.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/r/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/r/syntaxes/r.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/razor/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/razor/syntaxes/cshtml.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/syntaxes/ruby.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/rust/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/rust/syntaxes/rust.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/scss/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/syntaxes/sassdoc.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/scss/syntaxes/scss.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/README.md
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/extension-browser.webpack.config.js
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/extension.webpack.config.js
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/src/extension.ts
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/src/media/refresh-dark.svg
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/src/media/refresh-light.svg
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/src/typings/refs.d.ts
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/syntaxes/generateTMLanguage.js
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/syntaxes/searchResult.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/tsconfig.json
%%DATADIR%%/plugins/textmate/lib/bundles/search-result/yarn.lock
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/syntaxes/shaderlab.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/syntaxes/shell-unix-bash.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/sql/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/sql/syntaxes/sql.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/swift/LICENSE.md
%%DATADIR%%/plugins/textmate/lib/bundles/swift/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/swift/snippets/swift.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/swift/syntaxes/swift.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Comments.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Folding.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Indent.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Symbol List.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Preferences/Typing Pairs.tmPreferences
%%DATADIR%%/plugins/textmate/lib/bundles/toml/README.mdown
%%DATADIR%%/plugins/textmate/lib/bundles/toml/Syntaxes/TOML.tmLanguage
%%DATADIR%%/plugins/textmate/lib/bundles/toml/info.plist
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/snippets/typescript.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/Readme.md
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScript.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScriptReact.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/jsdoc.js.injection.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/jsdoc.ts.injection.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/vb/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/vb/snippets/vb.code-snippets
%%DATADIR%%/plugins/textmate/lib/bundles/vb/syntaxes/asp-vb-net.tmlanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/viml/LICENSE.txt
%%DATADIR%%/plugins/textmate/lib/bundles/viml/grammars/viml.json
%%DATADIR%%/plugins/textmate/lib/bundles/viml/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/basic.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/example-help.txt
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/flavours.of.snippet
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/modeline.md
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/neo.snippets
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/solarized.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/syntax.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/textobj-rubyblock.vmb
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/tpope-characterize.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/tpope-fugitive.vim
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/ulti.snip
%%DATADIR%%/plugins/textmate/lib/bundles/viml/tests/vim-syntax.vim
%%DATADIR%%/plugins/textmate/lib/bundles/xml/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/xml/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/syntaxes/xml.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/syntaxes/xsl.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/xml.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/xml/xsl.language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/.vscodeignore
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/cgmanifest.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/language-configuration.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/package.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/package.nls.json
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/syntaxes/yaml.tmLanguage.json
%%DATADIR%%/plugins/textmate/lib/textmate.jar
%%DATADIR%%/plugins/thymeleaf/lib/thymeleaf-support.jar
%%DATADIR%%/plugins/tslint/js/convert-tslint-config.js
%%DATADIR%%/plugins/tslint/js/languageService/tslint-plugin-provider.js
%%DATADIR%%/plugins/tslint/js/languageService/tslint-plugin.js
%%DATADIR%%/plugins/tslint/js/utils.js
%%DATADIR%%/plugins/tslint/lib/tslint.jar
%%DATADIR%%/plugins/uiDesigner/lib/jps/java-guiForms-jps.jar
%%DATADIR%%/plugins/uiDesigner/lib/uiDesigner.jar
%%DATADIR%%/plugins/uml/lib/uml-support.jar
%%DATADIR%%/plugins/vcs-changeReminder/lib/randomForestRegressor-0.0.11.jar
%%DATADIR%%/plugins/vcs-changeReminder/lib/vcs-changeReminder.jar
%%DATADIR%%/plugins/vcs-git-featuresTrainer/lib/git-learning-project-212.0.2.jar
%%DATADIR%%/plugins/vcs-git-featuresTrainer/lib/vcs-git-featuresTrainer.jar
%%DATADIR%%/plugins/w3validators/lib/tagsoup-1.2.1.jar
%%DATADIR%%/plugins/w3validators/lib/w3-css-validator.jar
%%DATADIR%%/plugins/w3validators/lib/w3validators.jar
%%DATADIR%%/plugins/webDeployment/lib/commons-vfs2-2.2.2.4.jar
%%DATADIR%%/plugins/webDeployment/lib/webDeployment.jar
%%DATADIR%%/plugins/webSphereIntegration/lib/jps/javaee-appServers-websphere-jps.jar
%%DATADIR%%/plugins/webSphereIntegration/lib/specifics/webSphereClientImpl.jar
%%DATADIR%%/plugins/webSphereIntegration/lib/webSphereIntegration.jar
%%DATADIR%%/plugins/weblogicIntegration/lib/jps/javaee-appServers-weblogic-jps.jar
%%DATADIR%%/plugins/weblogicIntegration/lib/specifics/weblogicSpecifics.jar
%%DATADIR%%/plugins/weblogicIntegration/lib/weblogicIntegration.jar
%%DATADIR%%/plugins/webp/lib/libwebp.jar
%%DATADIR%%/plugins/webp/lib/webp.jar
%%DATADIR%%/plugins/workspaceModel-performanceTesting/lib/workspaceModel-performanceTesting.jar
%%DATADIR%%/plugins/wsl-fs-helper/bin/server
%%DATADIR%%/plugins/wsl-fs-helper/lib/logback-classic-1.2.3.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/logback-core-1.2.3.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/logstash-logback-encoder-6.5.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/okhttp.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/opentelemetry-api-0.10.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/opentelemetry-context-0.10.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/opentelemetry-exporters-newrelic-0.10.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/opentelemetry-sdk-0.10.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/opentelemetry-sdk-common-0.10.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/opentelemetry-sdk-metrics-0.10.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/opentelemetry-sdk-tracing-0.10.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/semver4j-3.1.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/slf4j-api-1.7.25.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/telemetry-0.9.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/telemetry-core-0.9.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/telemetry-http-okhttp-0.9.0.jar
%%DATADIR%%/plugins/wsl-fs-helper/lib/wsl-fs-helper.jar
%%DATADIR%%/plugins/xpath/lib/rt/xslt-rt.jar
%%DATADIR%%/plugins/xpath/lib/xpath.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rmi-stubs.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/saxon.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/saxon9he.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/serializer-2.7.2.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/xalan-2.7.2.jar
%%DATADIR%%/plugins/xslt-debugger/lib/rt/xslt-debugger-impl-rt.jar
%%DATADIR%%/plugins/xslt-debugger/lib/xslt-debugger-rt.jar
%%DATADIR%%/plugins/xslt-debugger/lib/xslt-debugger.jar
%%DATADIR%%/plugins/yaml/lib/yaml.jar
%%DATADIR%%/plugins/zkm/lib/zkm.jar
%%DATADIR%%/product-info.json
%%DATADIR%%/redist/annotations-java8.jar
%%DATADIR%%/redist/annotations.jar
%%DATADIR%%/redist/forms_rt.jar
%%DATADIR%%/redist/javac2.jar
%%DATADIR%%/redist/readme.txt
%%DATADIR%%/redist/src/src_forms_rt.zip
%%DATADIR%%/redist/src/src_javac2.zip