summaryrefslogtreecommitdiff
path: root/astro/google-earth/pkg-plist
blob: 6baba24b3670fec1a1c8d8644190d53385f6a004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
bin/googleearth
%%DATADIR%%/Google-googleearth.desktop
%%DATADIR%%/ImporterGlobalSettings.ini
%%DATADIR%%/ImporterUISettings.ini
%%DATADIR%%/PCOptimizations.ini
%%DATADIR%%/README.linux
%%DATADIR%%/bin/googleearth
%%DATADIR%%/drivers.ini
%%DATADIR%%/googleearth-bin
%%DATADIR%%/googleearth-icon.png
%%DATADIR%%/googleearth.xpm
%%DATADIR%%/kvw/default_lt.kvw
%%DATADIR%%/lang/cs.qm
%%DATADIR%%/lang/de.qm
%%DATADIR%%/lang/en.qm
%%DATADIR%%/lang/es.qm
%%DATADIR%%/lang/fr.qm
%%DATADIR%%/lang/it.qm
%%DATADIR%%/lang/ja.qm
%%DATADIR%%/lang/ko.qm
%%DATADIR%%/lang/nl.qm
%%DATADIR%%/lang/pl.qm
%%DATADIR%%/lang/pt-BR.qm
%%DATADIR%%/lang/pt.qm
%%DATADIR%%/lang/qt_de.qm
%%DATADIR%%/lang/qt_en.qm
%%DATADIR%%/lang/qt_es.qm
%%DATADIR%%/lang/qt_fr.qm
%%DATADIR%%/lang/qt_it.qm
%%DATADIR%%/lang/qt_ja.qm
%%DATADIR%%/lang/qt_pt-br.qm
%%DATADIR%%/lang/qt_zh-Hant.qm
%%DATADIR%%/lang/ru.qm
%%DATADIR%%/lang/zh-Hant.qm
%%DATADIR%%/libGLU.so.1
%%DATADIR%%/libIGAttrs.so
%%DATADIR%%/libIGCollision.so
%%DATADIR%%/libIGCore.so
%%DATADIR%%/libIGDisplay.so
%%DATADIR%%/libIGExportCommon.so
%%DATADIR%%/libIGGfx.so
%%DATADIR%%/libIGGui.so
%%DATADIR%%/libIGMath.so
%%DATADIR%%/libIGOpt.so
%%DATADIR%%/libIGSg.so
%%DATADIR%%/libIGUtils.so
%%DATADIR%%/libalchemyext.so
%%DATADIR%%/libauth.so
%%DATADIR%%/libbase.so
%%DATADIR%%/libbasicIngest.so
%%DATADIR%%/libcollada.so
%%DATADIR%%/libcommon.so
%%DATADIR%%/libcomponent.so
%%DATADIR%%/libcrypto.so.0.9.8
%%DATADIR%%/libcurl.so.3
%%DATADIR%%/libevll.so
%%DATADIR%%/libflightsim.so
%%DATADIR%%/libframework.so
%%DATADIR%%/libfreeimage.so.3
%%DATADIR%%/libfusion.so
%%DATADIR%%/libgcc_s.so.1
%%DATADIR%%/libgeobase.so
%%DATADIR%%/libgoogleearth.so
%%DATADIR%%/libgooglesearch.so
%%DATADIR%%/libgps.so
%%DATADIR%%/libinput_plugin.so
%%DATADIR%%/libjpeg.so.62
%%DATADIR%%/liblayer.so
%%DATADIR%%/libmath.so
%%DATADIR%%/libmeasure.so
%%DATADIR%%/libmng.so.1
%%DATADIR%%/libnavigate.so
%%DATADIR%%/libnet.so
%%DATADIR%%/libpng12.so.0
%%DATADIR%%/libqt-mt.so.3
%%DATADIR%%/libqui.so.1
%%DATADIR%%/librender.so
%%DATADIR%%/libssl.so.0.9.8
%%DATADIR%%/libstdc++.so.6
%%DATADIR%%/libtiff.so.3
%%DATADIR%%/libtime.so
%%DATADIR%%/libwebbrowser.so
%%DATADIR%%/libwmsbase.so
%%DATADIR%%/libz.so.1
%%DATADIR%%/linux/README-mailto.txt
%%DATADIR%%/linux/mailto-scripts/mailto-balsa.pl
%%DATADIR%%/linux/mailto-scripts/mailto-kmail.pl
%%DATADIR%%/linux/mailto-scripts/mailto-sylpheed.pl
%%DATADIR%%/linux/mailto-scripts/mailto-thunderbird.pl
%%DATADIR%%/linux/xdg/xdg-desktop-icon
%%DATADIR%%/linux/xdg/xdg-desktop-menu
%%DATADIR%%/linux/xdg/xdg-mime
%%DATADIR%%/res/arrow.png
%%DATADIR%%/res/arrow_e_active.png
%%DATADIR%%/res/arrow_e_hover.png
%%DATADIR%%/res/arrow_e_norm.png
%%DATADIR%%/res/arrow_n_active.png
%%DATADIR%%/res/arrow_n_hover.png
%%DATADIR%%/res/arrow_n_norm.png
%%DATADIR%%/res/arrow_s_active.png
%%DATADIR%%/res/arrow_s_hover.png
%%DATADIR%%/res/arrow_s_norm.png
%%DATADIR%%/res/arrow_w_active.png
%%DATADIR%%/res/arrow_w_hover.png
%%DATADIR%%/res/arrow_w_norm.png
%%DATADIR%%/res/arrows_e_active.png
%%DATADIR%%/res/arrows_e_hover.png
%%DATADIR%%/res/arrows_n_active.png
%%DATADIR%%/res/arrows_n_hover.png
%%DATADIR%%/res/arrows_norm.png
%%DATADIR%%/res/arrows_s_active.png
%%DATADIR%%/res/arrows_s_hover.png
%%DATADIR%%/res/arrows_w_active.png
%%DATADIR%%/res/arrows_w_hover.png
%%DATADIR%%/res/camera_mode.png
%%DATADIR%%/res/close_circle_active.png
%%DATADIR%%/res/close_circle_hover.png
%%DATADIR%%/res/close_circle_norm.png
%%DATADIR%%/res/compass.png
%%DATADIR%%/res/crosshair.png
%%DATADIR%%/res/decal.png
%%DATADIR%%/res/descrip_center.png
%%DATADIR%%/res/descrip_l.png
%%DATADIR%%/res/descrip_ll.png
%%DATADIR%%/res/descrip_ll_noad.png
%%DATADIR%%/res/descrip_lo.png
%%DATADIR%%/res/descrip_lr.png
%%DATADIR%%/res/descrip_lr_noad.png
%%DATADIR%%/res/descrip_r.png
%%DATADIR%%/res/descrip_ul.png
%%DATADIR%%/res/descrip_up.png
%%DATADIR%%/res/descrip_ur.png
%%DATADIR%%/res/dot.png
%%DATADIR%%/res/flatarrow.png
%%DATADIR%%/res/flex_button_active.png
%%DATADIR%%/res/flex_button_hover.png
%%DATADIR%%/res/flex_button_norm.png
%%DATADIR%%/res/hand.png
%%DATADIR%%/res/joystick_active.png
%%DATADIR%%/res/joystick_background.png
%%DATADIR%%/res/joystick_hover.png
%%DATADIR%%/res/joystick_norm.png
%%DATADIR%%/res/layers_16.png
%%DATADIR%%/res/leftbar_active.png
%%DATADIR%%/res/leftbar_hover.png
%%DATADIR%%/res/leftbar_norm.png
%%DATADIR%%/res/loading.png
%%DATADIR%%/res/mysavedplaces_closed.png
%%DATADIR%%/res/mysavedplaces_open.png
%%DATADIR%%/res/nav_background.png
%%DATADIR%%/res/notfound.png
%%DATADIR%%/res/overviewframe.png
%%DATADIR%%/res/palette-2.png
%%DATADIR%%/res/palette-3.png
%%DATADIR%%/res/palette-4.png
%%DATADIR%%/res/palette-5.png
%%DATADIR%%/res/photo_arrows_fade.png
%%DATADIR%%/res/progress0.png
%%DATADIR%%/res/progress1.png
%%DATADIR%%/res/progress2.png
%%DATADIR%%/res/progress3.png
%%DATADIR%%/res/progress4.png
%%DATADIR%%/res/progress5.png
%%DATADIR%%/res/progress6.png
%%DATADIR%%/res/progress7.png
%%DATADIR%%/res/resizeiconmac.png
%%DATADIR%%/res/rightbar_active.png
%%DATADIR%%/res/rightbar_hover.png
%%DATADIR%%/res/rightbar_norm.png
%%DATADIR%%/res/ring-md.png
%%DATADIR%%/res/ring-mo.png
%%DATADIR%%/res/ring-norm.png
%%DATADIR%%/res/ring-thumb-md.png
%%DATADIR%%/res/ring-thumb-mo.png
%%DATADIR%%/res/roundrect_bottom.png
%%DATADIR%%/res/roundrect_bottomleft.png
%%DATADIR%%/res/roundrect_bottomright.png
%%DATADIR%%/res/roundrect_center.png
%%DATADIR%%/res/roundrect_left.png
%%DATADIR%%/res/roundrect_right.png
%%DATADIR%%/res/roundrect_top.png
%%DATADIR%%/res/roundrect_topleft.png
%%DATADIR%%/res/roundrect_topright.png
%%DATADIR%%/res/tile.png
%%DATADIR%%/res/tilt_minus_active.png
%%DATADIR%%/res/tilt_minus_hover.png
%%DATADIR%%/res/tilt_norm.png
%%DATADIR%%/res/tilt_plus_active.png
%%DATADIR%%/res/tilt_plus_hover.png
%%DATADIR%%/res/tiltbar_active.png
%%DATADIR%%/res/tiltbar_hover.png
%%DATADIR%%/res/tiltbar_norm.png
%%DATADIR%%/res/time_minus_active.png
%%DATADIR%%/res/time_minus_hover.png
%%DATADIR%%/res/time_norm.png
%%DATADIR%%/res/time_plus_active.png
%%DATADIR%%/res/time_plus_hover.png
%%DATADIR%%/res/timebar_active.png
%%DATADIR%%/res/timebar_hover.png
%%DATADIR%%/res/timebar_norm.png
%%DATADIR%%/res/timeclock_active.png
%%DATADIR%%/res/timeclock_hover.png
%%DATADIR%%/res/timeclock_norm.png
%%DATADIR%%/res/timedashed_left.png
%%DATADIR%%/res/timedashed_right.png
%%DATADIR%%/res/timedate_dashed.png
%%DATADIR%%/res/timepause_active.png
%%DATADIR%%/res/timepause_hover.png
%%DATADIR%%/res/timepause_norm.png
%%DATADIR%%/res/timeplay_active.png
%%DATADIR%%/res/timeplay_hover.png
%%DATADIR%%/res/timeplay_norm.png
%%DATADIR%%/res/timewindow.png
%%DATADIR%%/res/userpalette.kml
%%DATADIR%%/res/zoom_minus_active.png
%%DATADIR%%/res/zoom_minus_hover.png
%%DATADIR%%/res/zoom_norm.png
%%DATADIR%%/res/zoom_plus_active.png
%%DATADIR%%/res/zoom_plus_hover.png
%%DATADIR%%/res/zoombar_active.png
%%DATADIR%%/res/zoombar_hover.png
%%DATADIR%%/res/zoombar_norm.png
%%DATADIR%%/resources/%maps-gr.png
%%DATADIR%%/resources/%maps-md.png
%%DATADIR%%/resources/%maps-mo.png
%%DATADIR%%/resources/%maps-pl.png
%%DATADIR%%/resources/%panel-close.png
%%DATADIR%%/resources/%rgb.png
%%DATADIR%%/resources/%rgba.png
%%DATADIR%%/resources/1-lv.png
%%DATADIR%%/resources/1.png
%%DATADIR%%/resources/10-lv.png
%%DATADIR%%/resources/10.png
%%DATADIR%%/resources/16x16.png
%%DATADIR%%/resources/2-lv.png
%%DATADIR%%/resources/2.png
%%DATADIR%%/resources/3-lv.png
%%DATADIR%%/resources/3.png
%%DATADIR%%/resources/3d_buildings_16.png
%%DATADIR%%/resources/3d_terrain_16.png
%%DATADIR%%/resources/3dterrain_off.png
%%DATADIR%%/resources/3dterrain_on.png
%%DATADIR%%/resources/4-lv.png
%%DATADIR%%/resources/4.png
%%DATADIR%%/resources/4x4_RGBW_columns.png
%%DATADIR%%/resources/5-lv.png
%%DATADIR%%/resources/5.png
%%DATADIR%%/resources/6-lv.png
%%DATADIR%%/resources/6.png
%%DATADIR%%/resources/7-lv.png
%%DATADIR%%/resources/7.png
%%DATADIR%%/resources/8-lv.png
%%DATADIR%%/resources/8.png
%%DATADIR%%/resources/9-lv.png
%%DATADIR%%/resources/9.png
%%DATADIR%%/resources/Non_Square.png
%%DATADIR%%/resources/San_Mateo.png
%%DATADIR%%/resources/SouthBayTransparency.png
%%DATADIR%%/resources/South_Bay_(GrayScale).png
%%DATADIR%%/resources/UV-Clamp.png
%%DATADIR%%/resources/a-lv.png
%%DATADIR%%/resources/a.png
%%DATADIR%%/resources/aboutlogo.png
%%DATADIR%%/resources/ad.country/startinglocation.kml
%%DATADIR%%/resources/ad_center.png
%%DATADIR%%/resources/ad_l.png
%%DATADIR%%/resources/ad_ll.png
%%DATADIR%%/resources/ad_lo.png
%%DATADIR%%/resources/ad_lr.png
%%DATADIR%%/resources/ad_r.png
%%DATADIR%%/resources/ad_ul.png
%%DATADIR%%/resources/ad_up.png
%%DATADIR%%/resources/ad_ur.png
%%DATADIR%%/resources/add_button_click.png
%%DATADIR%%/resources/add_button_glow.png
%%DATADIR%%/resources/add_button_off.png
%%DATADIR%%/resources/add_clickx42.png
%%DATADIR%%/resources/add_glowx42.png
%%DATADIR%%/resources/addx42.png
%%DATADIR%%/resources/ae.country/startinglocation.kml
%%DATADIR%%/resources/af.country/startinglocation.kml
%%DATADIR%%/resources/ag.country/startinglocation.kml
%%DATADIR%%/resources/ai.country/startinglocation.kml
%%DATADIR%%/resources/airports.png
%%DATADIR%%/resources/al.country/startinglocation.kml
%%DATADIR%%/resources/al.png
%%DATADIR%%/resources/alhl.png
%%DATADIR%%/resources/am.country/startinglocation.kml
%%DATADIR%%/resources/american-flag.png
%%DATADIR%%/resources/american_state_border_fade_out_mask.png
%%DATADIR%%/resources/an.country/startinglocation.kml
%%DATADIR%%/resources/ao.country/startinglocation.kml
%%DATADIR%%/resources/aq.country/startinglocation.kml
%%DATADIR%%/resources/ar.country/startinglocation.kml
%%DATADIR%%/resources/arrow-reverse.png
%%DATADIR%%/resources/arrow.png
%%DATADIR%%/resources/arrow_e_active.png
%%DATADIR%%/resources/arrow_e_hover.png
%%DATADIR%%/resources/arrow_e_norm.png
%%DATADIR%%/resources/arrow_n_active.png
%%DATADIR%%/resources/arrow_n_hover.png
%%DATADIR%%/resources/arrow_n_norm.png
%%DATADIR%%/resources/arrow_s_active.png
%%DATADIR%%/resources/arrow_s_hover.png
%%DATADIR%%/resources/arrow_s_norm.png
%%DATADIR%%/resources/arrow_w_active.png
%%DATADIR%%/resources/arrow_w_hover.png
%%DATADIR%%/resources/arrow_w_norm.png
%%DATADIR%%/resources/arrows_e_active.png
%%DATADIR%%/resources/arrows_e_hover.png
%%DATADIR%%/resources/arrows_n_active.png
%%DATADIR%%/resources/arrows_n_hover.png
%%DATADIR%%/resources/arrows_norm.png
%%DATADIR%%/resources/arrows_s_active.png
%%DATADIR%%/resources/arrows_s_hover.png
%%DATADIR%%/resources/arrows_w_active.png
%%DATADIR%%/resources/arrows_w_hover.png
%%DATADIR%%/resources/arts.png
%%DATADIR%%/resources/as.country/startinglocation.kml
%%DATADIR%%/resources/asian-flag.png
%%DATADIR%%/resources/at.country/startinglocation.kml
%%DATADIR%%/resources/au.country/startinglocation.kml
%%DATADIR%%/resources/auto-service.png
%%DATADIR%%/resources/auto.png
%%DATADIR%%/resources/aw.country/startinglocation.kml
%%DATADIR%%/resources/ax.country/startinglocation.kml
%%DATADIR%%/resources/az.country/startinglocation.kml
%%DATADIR%%/resources/b-lv.png
%%DATADIR%%/resources/b.png
%%DATADIR%%/resources/ba.country/startinglocation.kml
%%DATADIR%%/resources/back-dis.png
%%DATADIR%%/resources/back.png
%%DATADIR%%/resources/back_click.png
%%DATADIR%%/resources/back_click_1.png
%%DATADIR%%/resources/back_disabled_1.png
%%DATADIR%%/resources/back_glow.png
%%DATADIR%%/resources/back_glow_1.png
%%DATADIR%%/resources/back_off.png
%%DATADIR%%/resources/back_off_1.png
%%DATADIR%%/resources/balloon.png
%%DATADIR%%/resources/balloon_center.png
%%DATADIR%%/resources/balloon_left.png
%%DATADIR%%/resources/balloon_ll.png
%%DATADIR%%/resources/balloon_lower.png
%%DATADIR%%/resources/balloon_lr.png
%%DATADIR%%/resources/balloon_right.png
%%DATADIR%%/resources/balloon_ul.png
%%DATADIR%%/resources/balloon_upper.png
%%DATADIR%%/resources/balloon_ur.png
%%DATADIR%%/resources/balloon_x.png
%%DATADIR%%/resources/bang.png
%%DATADIR%%/resources/bars.png
%%DATADIR%%/resources/bb.country/startinglocation.kml
%%DATADIR%%/resources/bd.country/startinglocation.kml
%%DATADIR%%/resources/be.country/startinglocation.kml
%%DATADIR%%/resources/bf.country/startinglocation.kml
%%DATADIR%%/resources/bg.country/startinglocation.kml
%%DATADIR%%/resources/bh.country/startinglocation.kml
%%DATADIR%%/resources/bi.country/startinglocation.kml
%%DATADIR%%/resources/bj.country/startinglocation.kml
%%DATADIR%%/resources/blu-blank-lv.png
%%DATADIR%%/resources/blu-blank.png
%%DATADIR%%/resources/blu-circle-lv.png
%%DATADIR%%/resources/blu-circle.png
%%DATADIR%%/resources/blu-diamond-lv.png
%%DATADIR%%/resources/blu-diamond.png
%%DATADIR%%/resources/blu-square-lv.png
%%DATADIR%%/resources/blu-square.png
%%DATADIR%%/resources/blu-stars-lv.png
%%DATADIR%%/resources/blu-stars.png
%%DATADIR%%/resources/blue-pushpin.png
%%DATADIR%%/resources/bm.country/startinglocation.kml
%%DATADIR%%/resources/bn.country/startinglocation.kml
%%DATADIR%%/resources/bo.country/startinglocation.kml
%%DATADIR%%/resources/bookmark_01_16.png
%%DATADIR%%/resources/borders_off.png
%%DATADIR%%/resources/borders_on.png
%%DATADIR%%/resources/boulder_city_block_mask.png
%%DATADIR%%/resources/br.country/startinglocation.kml
%%DATADIR%%/resources/broken_link.png
%%DATADIR%%/resources/browser-base-dis.png
%%DATADIR%%/resources/browser-base.png
%%DATADIR%%/resources/browser-pop-dis.png
%%DATADIR%%/resources/browser-pop.png
%%DATADIR%%/resources/browser-side-dis.png
%%DATADIR%%/resources/browser-side.png
%%DATADIR%%/resources/bs.country/startinglocation.kml
%%DATADIR%%/resources/bt.country/startinglocation.kml
%%DATADIR%%/resources/building.png
%%DATADIR%%/resources/bus.png
%%DATADIR%%/resources/button-dis-leftendcap.png
%%DATADIR%%/resources/button-dis-repeating.png
%%DATADIR%%/resources/button-dis-rightendcap.png
%%DATADIR%%/resources/button-md-leftendcap.png
%%DATADIR%%/resources/button-md-repeating.png
%%DATADIR%%/resources/button-md-rightendcap.png
%%DATADIR%%/resources/button-mo-leftendcap.png
%%DATADIR%%/resources/button-mo-repeating.png
%%DATADIR%%/resources/button-mo-rightendcap.png
%%DATADIR%%/resources/button-normal-leftendcap.png
%%DATADIR%%/resources/button-normal-repeating.png
%%DATADIR%%/resources/button-normal-rightendcap.png
%%DATADIR%%/resources/bv.country/startinglocation.kml
%%DATADIR%%/resources/bw.country/startinglocation.kml
%%DATADIR%%/resources/by.country/startinglocation.kml
%%DATADIR%%/resources/bz.country/startinglocation.kml
%%DATADIR%%/resources/c-lv.png
%%DATADIR%%/resources/c.png
%%DATADIR%%/resources/ca.country/startinglocation.kml
%%DATADIR%%/resources/cabs.png
%%DATADIR%%/resources/camera-lv.png
%%DATADIR%%/resources/camera.png
%%DATADIR%%/resources/camera32.png
%%DATADIR%%/resources/camera_mode.png
%%DATADIR%%/resources/campfire.png
%%DATADIR%%/resources/campground.png
%%DATADIR%%/resources/cancel-dis.png
%%DATADIR%%/resources/cancel.png
%%DATADIR%%/resources/capital_big.png
%%DATADIR%%/resources/capital_big_highlight.png
%%DATADIR%%/resources/capital_small.png
%%DATADIR%%/resources/capital_small_highlight.png
%%DATADIR%%/resources/caution.png
%%DATADIR%%/resources/cc.country/startinglocation.kml
%%DATADIR%%/resources/cd.country/startinglocation.kml
%%DATADIR%%/resources/cf.country/startinglocation.kml
%%DATADIR%%/resources/cg.country/startinglocation.kml
%%DATADIR%%/resources/ch.country/startinglocation.kml
%%DATADIR%%/resources/check-sel.png
%%DATADIR%%/resources/check-somechildsel.png
%%DATADIR%%/resources/check-unsel.png
%%DATADIR%%/resources/check.png
%%DATADIR%%/resources/church.png
%%DATADIR%%/resources/ci.country/startinglocation.kml
%%DATADIR%%/resources/circle-gr.png
%%DATADIR%%/resources/circle-md.png
%%DATADIR%%/resources/circle-mo.png
%%DATADIR%%/resources/circle-pl.png
%%DATADIR%%/resources/circle.png
%%DATADIR%%/resources/ck.country/startinglocation.kml
%%DATADIR%%/resources/cl.country/startinglocation.kml
%%DATADIR%%/resources/clear_off.png
%%DATADIR%%/resources/clear_on.png
%%DATADIR%%/resources/close_circle_active.png
%%DATADIR%%/resources/close_circle_hover.png
%%DATADIR%%/resources/close_circle_norm.png
%%DATADIR%%/resources/closedarrow.png
%%DATADIR%%/resources/closedfolder.png
%%DATADIR%%/resources/closednetworkfolder.png
%%DATADIR%%/resources/cm.country/startinglocation.kml
%%DATADIR%%/resources/cn.country/startinglocation.kml
%%DATADIR%%/resources/co.country/startinglocation.kml
%%DATADIR%%/resources/coffee.png
%%DATADIR%%/resources/coffee_house_16.png
%%DATADIR%%/resources/collapsedtree.png
%%DATADIR%%/resources/colorincomelevel.png
%%DATADIR%%/resources/colorsingle.png
%%DATADIR%%/resources/compass.png
%%DATADIR%%/resources/compass_1.png
%%DATADIR%%/resources/compass_click.png
%%DATADIR%%/resources/compass_click_1.png
%%DATADIR%%/resources/compass_glow.png
%%DATADIR%%/resources/compass_glow_1.png
%%DATADIR%%/resources/compass_off.png
%%DATADIR%%/resources/compass_off_1.png
%%DATADIR%%/resources/compasstop.png
%%DATADIR%%/resources/contour.png
%%DATADIR%%/resources/contour0.png
%%DATADIR%%/resources/contour1.png
%%DATADIR%%/resources/contour2.png
%%DATADIR%%/resources/contour3.png
%%DATADIR%%/resources/contour4.png
%%DATADIR%%/resources/contour5.png
%%DATADIR%%/resources/contour6.png
%%DATADIR%%/resources/contour7.png
%%DATADIR%%/resources/convenience.png
%%DATADIR%%/resources/cr.country/startinglocation.kml
%%DATADIR%%/resources/cross-hairs.png
%%DATADIR%%/resources/cross-hairs_highlight.png
%%DATADIR%%/resources/crosshair.png
%%DATADIR%%/resources/cu.country/startinglocation.kml
%%DATADIR%%/resources/cursor_crosshair_inverse.png
%%DATADIR%%/resources/cursor_crosshair_open.png
%%DATADIR%%/resources/cursor_crosshair_thick.png
%%DATADIR%%/resources/cursor_hand_grab.png
%%DATADIR%%/resources/cursor_hand_open.png
%%DATADIR%%/resources/cv.country/startinglocation.kml
%%DATADIR%%/resources/cx.country/startinglocation.kml
%%DATADIR%%/resources/cy.country/startinglocation.kml
%%DATADIR%%/resources/cycling.png
%%DATADIR%%/resources/cz.country/startinglocation.kml
%%DATADIR%%/resources/d-lv.png
%%DATADIR%%/resources/d.png
%%DATADIR%%/resources/dc_benchmark_mask.png
%%DATADIR%%/resources/de.country/startinglocation.kml
%%DATADIR%%/resources/de.locale/default_myplaces.kml
%%DATADIR%%/resources/decal.png
%%DATADIR%%/resources/default_myplaces.kml
%%DATADIR%%/resources/descrip_center.png
%%DATADIR%%/resources/descrip_l.png
%%DATADIR%%/resources/descrip_ll.png
%%DATADIR%%/resources/descrip_ll_noad.png
%%DATADIR%%/resources/descrip_lo.png
%%DATADIR%%/resources/descrip_lr.png
%%DATADIR%%/resources/descrip_lr_noad.png
%%DATADIR%%/resources/descrip_r.png
%%DATADIR%%/resources/descrip_ul.png
%%DATADIR%%/resources/descrip_up.png
%%DATADIR%%/resources/descrip_ur.png
%%DATADIR%%/resources/dfwblocks.png
%%DATADIR%%/resources/dining.png
%%DATADIR%%/resources/dining_16.png
%%DATADIR%%/resources/dj.country/startinglocation.kml
%%DATADIR%%/resources/dk.country/startinglocation.kml
%%DATADIR%%/resources/dm.country/startinglocation.kml
%%DATADIR%%/resources/do.country/startinglocation.kml
%%DATADIR%%/resources/dollar.png
%%DATADIR%%/resources/donut.png
%%DATADIR%%/resources/dot.png
%%DATADIR%%/resources/down.png
%%DATADIR%%/resources/draw_big_placemark_mask.png
%%DATADIR%%/resources/draw_building_mask.png
%%DATADIR%%/resources/draw_clamped_mask.png
%%DATADIR%%/resources/draw_extruded_mask.png
%%DATADIR%%/resources/draw_lines_mask.png
%%DATADIR%%/resources/draw_transparency_mask.png
%%DATADIR%%/resources/draw_walls_mask.png
%%DATADIR%%/resources/drawcircle.png
%%DATADIR%%/resources/drawline.png
%%DATADIR%%/resources/drawpolygon.png
%%DATADIR%%/resources/drawpolyline.png
%%DATADIR%%/resources/dropdown.png
%%DATADIR%%/resources/dummy.png
%%DATADIR%%/resources/dz.country/startinglocation.kml
%%DATADIR%%/resources/e-lv.png
%%DATADIR%%/resources/e.png
%%DATADIR%%/resources/earthquake.png
%%DATADIR%%/resources/ec.country/startinglocation.kml
%%DATADIR%%/resources/ee.country/startinglocation.kml
%%DATADIR%%/resources/eg.country/startinglocation.kml
%%DATADIR%%/resources/eh.country/startinglocation.kml
%%DATADIR%%/resources/electronics.png
%%DATADIR%%/resources/email.png
%%DATADIR%%/resources/email_button_click.png
%%DATADIR%%/resources/email_button_glow.png
%%DATADIR%%/resources/email_button_off.png
%%DATADIR%%/resources/email_click.png
%%DATADIR%%/resources/email_glow.png
%%DATADIR%%/resources/email_large.png
%%DATADIR%%/resources/email_off.png
%%DATADIR%%/resources/email_on.png
%%DATADIR%%/resources/en.locale/default_myplaces.kml
%%DATADIR%%/resources/en_AU.locale/default_myplaces.kml
%%DATADIR%%/resources/en_CA.locale/default_myplaces.kml
%%DATADIR%%/resources/en_GB.locale/default_myplaces.kml
%%DATADIR%%/resources/en_NZ.locale/default_myplaces.kml
%%DATADIR%%/resources/en_US.locale/default_myplaces.kml
%%DATADIR%%/resources/er.country/startinglocation.kml
%%DATADIR%%/resources/es.country/startinglocation.kml
%%DATADIR%%/resources/es.locale/default_myplaces.kml
%%DATADIR%%/resources/et.country/startinglocation.kml
%%DATADIR%%/resources/euro.png
%%DATADIR%%/resources/f-lv.png
%%DATADIR%%/resources/f.png
%%DATADIR%%/resources/falling_rocks.png
%%DATADIR%%/resources/fast-food.png
%%DATADIR%%/resources/ferry.png
%%DATADIR%%/resources/fi.country/startinglocation.kml
%%DATADIR%%/resources/firedept.png
%%DATADIR%%/resources/fishing.png
%%DATADIR%%/resources/fj.country/startinglocation.kml
%%DATADIR%%/resources/fk.country/startinglocation.kml
%%DATADIR%%/resources/flag.png
%%DATADIR%%/resources/flatarrow.png
%%DATADIR%%/resources/flex_button_active.png
%%DATADIR%%/resources/flex_button_hover.png
%%DATADIR%%/resources/flex_button_norm.png
%%DATADIR%%/resources/flightsim/aircraft/f16.acf
%%DATADIR%%/resources/flightsim/aircraft/sr22.acf
%%DATADIR%%/resources/flightsim/controller/generic.ini
%%DATADIR%%/resources/flightsim/controller/genius_maxfighter_f16u.ini
%%DATADIR%%/resources/flightsim/controller/logitech_attack3.ini
%%DATADIR%%/resources/flightsim/controller/logitech_extreme_3d.ini
%%DATADIR%%/resources/flightsim/controller/logitech_force_3d.ini
%%DATADIR%%/resources/flightsim/controller/logitech_freedom.ini
%%DATADIR%%/resources/flightsim/controller/saitek_cyborg_evo.ini
%%DATADIR%%/resources/flightsim/controller/saitek_x52.ini
%%DATADIR%%/resources/flightsim/controller/speed_link_black_hawk.ini
%%DATADIR%%/resources/flightsim/controller/speed_link_black_widow.ini
%%DATADIR%%/resources/flightsim/controller/speed_link_cougar_flightstick.ini
%%DATADIR%%/resources/flightsim/controller/speed_link_dark_tornado.ini
%%DATADIR%%/resources/flightsim/controller/xbox_360.ini
%%DATADIR%%/resources/flightsim/flightsim.ini
%%DATADIR%%/resources/flightsim/hud/generic.ini
%%DATADIR%%/resources/flightsim/hud/sr22.ini
%%DATADIR%%/resources/flightsim/keyboard/generic.ini
%%DATADIR%%/resources/flightsim/keyboard/sr22.ini
%%DATADIR%%/resources/flightsim/planet/earth.ini
%%DATADIR%%/resources/fm.country/startinglocation.kml
%%DATADIR%%/resources/fo.country/startinglocation.kml
%%DATADIR%%/resources/fonts_mask.png
%%DATADIR%%/resources/forbidden.png
%%DATADIR%%/resources/forward_click.png
%%DATADIR%%/resources/forward_click_1.png
%%DATADIR%%/resources/forward_disabled_1.png
%%DATADIR%%/resources/forward_glow.png
%%DATADIR%%/resources/forward_glow_1.png
%%DATADIR%%/resources/forward_off.png
%%DATADIR%%/resources/forward_off_1.png
%%DATADIR%%/resources/four-dollars.png
%%DATADIR%%/resources/fr-layers.png
%%DATADIR%%/resources/fr.country/startinglocation.kml
%%DATADIR%%/resources/fr.locale/default_myplaces.kml
%%DATADIR%%/resources/french-flag.png
%%DATADIR%%/resources/g-lv.png
%%DATADIR%%/resources/g.png
%%DATADIR%%/resources/ga.country/startinglocation.kml
%%DATADIR%%/resources/gas_stations.png
%%DATADIR%%/resources/gb.country/startinglocation.kml
%%DATADIR%%/resources/gd.country/startinglocation.kml
%%DATADIR%%/resources/gdalicon.png
%%DATADIR%%/resources/ge.country/startinglocation.kml
%%DATADIR%%/resources/geforce_cursor.png
%%DATADIR%%/resources/geforce_cursor_32.png
%%DATADIR%%/resources/gf.country/startinglocation.kml
%%DATADIR%%/resources/gg.country/startinglocation.kml
%%DATADIR%%/resources/gh.country/startinglocation.kml
%%DATADIR%%/resources/gi.country/startinglocation.kml
%%DATADIR%%/resources/gl.country/startinglocation.kml
%%DATADIR%%/resources/gm.country/startinglocation.kml
%%DATADIR%%/resources/gmail.png
%%DATADIR%%/resources/gn.country/startinglocation.kml
%%DATADIR%%/resources/go-lv.png
%%DATADIR%%/resources/go.png
%%DATADIR%%/resources/go_off.png
%%DATADIR%%/resources/go_on.png
%%DATADIR%%/resources/golf.png
%%DATADIR%%/resources/google_earth_splash.jpg
%%DATADIR%%/resources/google_logo_small.png
%%DATADIR%%/resources/googleearth-icon.png
%%DATADIR%%/resources/googlelogo.png
%%DATADIR%%/resources/googlelogo_unix.png
%%DATADIR%%/resources/googlesmall.png
%%DATADIR%%/resources/gp.country/startinglocation.kml
%%DATADIR%%/resources/gq.country/startinglocation.kml
%%DATADIR%%/resources/gr.country/startinglocation.kml
%%DATADIR%%/resources/grab_off.png
%%DATADIR%%/resources/grab_on.png
%%DATADIR%%/resources/green_mid.png
%%DATADIR%%/resources/green_mid_glow.png
%%DATADIR%%/resources/green_tabclick_arrow.png
%%DATADIR%%/resources/green_tabclose_arrow.png
%%DATADIR%%/resources/green_tabopen.png
%%DATADIR%%/resources/green_tabopen_glow.png
%%DATADIR%%/resources/green_tile.png
%%DATADIR%%/resources/green_tile_glow.png
%%DATADIR%%/resources/greenheader.png
%%DATADIR%%/resources/grey_head_tile.png
%%DATADIR%%/resources/grn-blank-lv.png
%%DATADIR%%/resources/grn-blank.png
%%DATADIR%%/resources/grn-circle-lv.png
%%DATADIR%%/resources/grn-circle.png
%%DATADIR%%/resources/grn-diamond-lv.png
%%DATADIR%%/resources/grn-diamond.png
%%DATADIR%%/resources/grn-pushpin.png
%%DATADIR%%/resources/grn-square-lv.png
%%DATADIR%%/resources/grn-square.png
%%DATADIR%%/resources/grn-stars-lv.png
%%DATADIR%%/resources/grn-stars.png
%%DATADIR%%/resources/grocery.png
%%DATADIR%%/resources/gs.country/startinglocation.kml
%%DATADIR%%/resources/gt.country/startinglocation.kml
%%DATADIR%%/resources/gu.country/startinglocation.kml
%%DATADIR%%/resources/gw.country/startinglocation.kml
%%DATADIR%%/resources/gy.country/startinglocation.kml
%%DATADIR%%/resources/h-lv.png
%%DATADIR%%/resources/h.png
%%DATADIR%%/resources/hand.png
%%DATADIR%%/resources/he.locale/panel-close.png
%%DATADIR%%/resources/heliport.png
%%DATADIR%%/resources/high_res_places.png
%%DATADIR%%/resources/highway.png
%%DATADIR%%/resources/highway_16.png
%%DATADIR%%/resources/hiker.png
%%DATADIR%%/resources/hk.country/startinglocation.kml
%%DATADIR%%/resources/hm.country/startinglocation.kml
%%DATADIR%%/resources/hn.country/startinglocation.kml
%%DATADIR%%/resources/homegardenbusiness.png
%%DATADIR%%/resources/horsebackriding.png
%%DATADIR%%/resources/hospitals.png
%%DATADIR%%/resources/hotel_off_24.png
%%DATADIR%%/resources/hr.country/startinglocation.kml
%%DATADIR%%/resources/ht.country/startinglocation.kml
%%DATADIR%%/resources/hu.country/startinglocation.kml
%%DATADIR%%/resources/i-lv.png
%%DATADIR%%/resources/i.png
%%DATADIR%%/resources/id.country/startinglocation.kml
%%DATADIR%%/resources/ie.country/startinglocation.kml
%%DATADIR%%/resources/il.country/startinglocation.kml
%%DATADIR%%/resources/im.country/startinglocation.kml
%%DATADIR%%/resources/in.country/startinglocation.kml
%%DATADIR%%/resources/indxed-interlaced.png
%%DATADIR%%/resources/indxed-non-interlaced.png
%%DATADIR%%/resources/info-i.png
%%DATADIR%%/resources/info.png
%%DATADIR%%/resources/info_circle.png
%%DATADIR%%/resources/instances_mask.png
%%DATADIR%%/resources/interstate_highway_16.png
%%DATADIR%%/resources/invisible.png
%%DATADIR%%/resources/io.country/startinglocation.kml
%%DATADIR%%/resources/iq.country/startinglocation.kml
%%DATADIR%%/resources/ir.country/startinglocation.kml
%%DATADIR%%/resources/is.country/startinglocation.kml
%%DATADIR%%/resources/it.country/startinglocation.kml
%%DATADIR%%/resources/it.locale/default_myplaces.kml
%%DATADIR%%/resources/italian-flag.png
%%DATADIR%%/resources/j-lv.png
%%DATADIR%%/resources/j.png
%%DATADIR%%/resources/ja.locale/default_myplaces.kml
%%DATADIR%%/resources/je.country/startinglocation.kml
%%DATADIR%%/resources/jm.country/startinglocation.kml
%%DATADIR%%/resources/jo.country/startinglocation.kml
%%DATADIR%%/resources/joystick_active.png
%%DATADIR%%/resources/joystick_background.png
%%DATADIR%%/resources/joystick_hover.png
%%DATADIR%%/resources/joystick_leftup.png
%%DATADIR%%/resources/joystick_norm.png
%%DATADIR%%/resources/joystick_rightup.png
%%DATADIR%%/resources/joystickon_down.png
%%DATADIR%%/resources/joystickon_left.png
%%DATADIR%%/resources/joystickon_leftdow.png
%%DATADIR%%/resources/joystickon_off.png
%%DATADIR%%/resources/joystickon_right.png
%%DATADIR%%/resources/joystickon_rightdown.png
%%DATADIR%%/resources/joystickon_up.png
%%DATADIR%%/resources/jp.country/startinglocation.kml
%%DATADIR%%/resources/k-lv.png
%%DATADIR%%/resources/k.png
%%DATADIR%%/resources/ke.country/startinglocation.kml
%%DATADIR%%/resources/keyholelogo-sm.png
%%DATADIR%%/resources/keyholelogo.png
%%DATADIR%%/resources/kg.country/startinglocation.kml
%%DATADIR%%/resources/kh.country/startinglocation.kml
%%DATADIR%%/resources/ki.country/startinglocation.kml
%%DATADIR%%/resources/km.country/startinglocation.kml
%%DATADIR%%/resources/kn.country/startinglocation.kml
%%DATADIR%%/resources/ko.locale/google_earth_splash.jpg
%%DATADIR%%/resources/kp.country/startinglocation.kml
%%DATADIR%%/resources/kr.country/startinglocation.kml
%%DATADIR%%/resources/kw.country/startinglocation.kml
%%DATADIR%%/resources/ky.country/startinglocation.kml
%%DATADIR%%/resources/kz.country/startinglocation.kml
%%DATADIR%%/resources/l-lv.png
%%DATADIR%%/resources/l.png
%%DATADIR%%/resources/la.country/startinglocation.kml
%%DATADIR%%/resources/large_traffic_count_16.png
%%DATADIR%%/resources/layers_16.png
%%DATADIR%%/resources/lb.country/startinglocation.kml
%%DATADIR%%/resources/lc.country/startinglocation.kml
%%DATADIR%%/resources/left.png
%%DATADIR%%/resources/leftbar_active.png
%%DATADIR%%/resources/leftbar_hover.png
%%DATADIR%%/resources/leftbar_norm.png
%%DATADIR%%/resources/li.country/startinglocation.kml
%%DATADIR%%/resources/line-gr.png
%%DATADIR%%/resources/line-md.png
%%DATADIR%%/resources/line-mo.png
%%DATADIR%%/resources/line-pl.png
%%DATADIR%%/resources/line.png
%%DATADIR%%/resources/lk.country/startinglocation.kml
%%DATADIR%%/resources/loading.png
%%DATADIR%%/resources/lodging.png
%%DATADIR%%/resources/loginicon.png
%%DATADIR%%/resources/logo.png
%%DATADIR%%/resources/logobluewhite200.png
%%DATADIR%%/resources/logouticon.png
%%DATADIR%%/resources/lr.country/startinglocation.kml
%%DATADIR%%/resources/ls.country/startinglocation.kml
%%DATADIR%%/resources/lt.country/startinglocation.kml
%%DATADIR%%/resources/ltblu-blank-lv.png
%%DATADIR%%/resources/ltblu-blank.png
%%DATADIR%%/resources/ltblu-circle-lv.png
%%DATADIR%%/resources/ltblu-circle.png
%%DATADIR%%/resources/ltblu-diamond-lv.png
%%DATADIR%%/resources/ltblu-diamond.png
%%DATADIR%%/resources/ltblu-pushpin.png
%%DATADIR%%/resources/ltblu-square-lv.png
%%DATADIR%%/resources/ltblu-square.png
%%DATADIR%%/resources/ltblu-stars-lv.png
%%DATADIR%%/resources/ltblu-stars.png
%%DATADIR%%/resources/ltnv_print_banner.png
%%DATADIR%%/resources/lu.country/startinglocation.kml
%%DATADIR%%/resources/lv.country/startinglocation.kml
%%DATADIR%%/resources/ly.country/startinglocation.kml
%%DATADIR%%/resources/m-lv.png
%%DATADIR%%/resources/m.png
%%DATADIR%%/resources/ma.country/startinglocation.kml
%%DATADIR%%/resources/mail-gr.png
%%DATADIR%%/resources/mail-md.png
%%DATADIR%%/resources/mail-mo.png
%%DATADIR%%/resources/mail-pl.png
%%DATADIR%%/resources/mail.png
%%DATADIR%%/resources/man.png
%%DATADIR%%/resources/maps-gr.png
%%DATADIR%%/resources/maps-md.png
%%DATADIR%%/resources/maps-mo.png
%%DATADIR%%/resources/maps-pl.png
%%DATADIR%%/resources/marina.png
%%DATADIR%%/resources/materials_test_mask.png
%%DATADIR%%/resources/mc.country/startinglocation.kml
%%DATADIR%%/resources/md.country/startinglocation.kml
%%DATADIR%%/resources/me.country/startinglocation.kml
%%DATADIR%%/resources/mechanic.png
%%DATADIR%%/resources/mexican-flag.png
%%DATADIR%%/resources/mg.country/startinglocation.kml
%%DATADIR%%/resources/mh.country/startinglocation.kml
%%DATADIR%%/resources/misc-dining.png
%%DATADIR%%/resources/mk.country/startinglocation.kml
%%DATADIR%%/resources/ml.country/startinglocation.kml
%%DATADIR%%/resources/mm.country/startinglocation.kml
%%DATADIR%%/resources/mn.country/startinglocation.kml
%%DATADIR%%/resources/mo.country/startinglocation.kml
%%DATADIR%%/resources/motorcycling.png
%%DATADIR%%/resources/mountains.png
%%DATADIR%%/resources/mouseleft.png
%%DATADIR%%/resources/mouseright.png
%%DATADIR%%/resources/movies.png
%%DATADIR%%/resources/mp.country/startinglocation.kml
%%DATADIR%%/resources/mq.country/startinglocation.kml
%%DATADIR%%/resources/mr.country/startinglocation.kml
%%DATADIR%%/resources/ms.country/startinglocation.kml
%%DATADIR%%/resources/mt.country/startinglocation.kml
%%DATADIR%%/resources/mt_st_helens_mask.png
%%DATADIR%%/resources/mu.country/startinglocation.kml
%%DATADIR%%/resources/multiple_polygons_mask.png
%%DATADIR%%/resources/mv.country/startinglocation.kml
%%DATADIR%%/resources/mw.country/startinglocation.kml
%%DATADIR%%/resources/mx.country/startinglocation.kml
%%DATADIR%%/resources/my.country/startinglocation.kml
%%DATADIR%%/resources/mysavedplaces.png
%%DATADIR%%/resources/mysavedplaces_closed.png
%%DATADIR%%/resources/mysavedplaces_open.png
%%DATADIR%%/resources/mz.country/startinglocation.kml
%%DATADIR%%/resources/n-lv.png
%%DATADIR%%/resources/n.png
%%DATADIR%%/resources/na.country/startinglocation.kml
%%DATADIR%%/resources/nav.png
%%DATADIR%%/resources/nav_background.png
%%DATADIR%%/resources/nav_down.png
%%DATADIR%%/resources/nav_left.png
%%DATADIR%%/resources/nav_leftdown.png
%%DATADIR%%/resources/nav_leftup.png
%%DATADIR%%/resources/nav_off.png
%%DATADIR%%/resources/nav_right.png
%%DATADIR%%/resources/nav_rightdown.png
%%DATADIR%%/resources/nav_rightup.png
%%DATADIR%%/resources/nav_up.png
%%DATADIR%%/resources/navcenter.png
%%DATADIR%%/resources/navcenter_down_click.png
%%DATADIR%%/resources/navcenter_down_glow.png
%%DATADIR%%/resources/navcenter_left_click.png
%%DATADIR%%/resources/navcenter_left_glow.png
%%DATADIR%%/resources/navcenter_on.png
%%DATADIR%%/resources/navcenter_right_click.png
%%DATADIR%%/resources/navcenter_right_glow.png
%%DATADIR%%/resources/navcenter_up_click.png
%%DATADIR%%/resources/navcenter_up_glow.png
%%DATADIR%%/resources/navcontrol.png
%%DATADIR%%/resources/navleft_alloff.png
%%DATADIR%%/resources/navleft_compass_click.png
%%DATADIR%%/resources/navleft_compass_glow.png
%%DATADIR%%/resources/navleft_rot_click.png
%%DATADIR%%/resources/navleft_rot_glow.png
%%DATADIR%%/resources/navright_alloff.png
%%DATADIR%%/resources/navright_rot_click.png
%%DATADIR%%/resources/navright_rot_glow.png
%%DATADIR%%/resources/navright_tilt_click.png
%%DATADIR%%/resources/navright_tilt_glow.png
%%DATADIR%%/resources/nc.country/startinglocation.kml
%%DATADIR%%/resources/ne.country/startinglocation.kml
%%DATADIR%%/resources/new-overlay.png
%%DATADIR%%/resources/nf.country/startinglocation.kml
%%DATADIR%%/resources/ng.country/startinglocation.kml
%%DATADIR%%/resources/ngm_seals_mask.png
%%DATADIR%%/resources/ni.country/startinglocation.kml
%%DATADIR%%/resources/ni_closed_connected.png
%%DATADIR%%/resources/ni_closed_disconnected.png
%%DATADIR%%/resources/ni_closed_fetching_01.png
%%DATADIR%%/resources/ni_closed_fetching_02.png
%%DATADIR%%/resources/ni_closed_fetching_03.png
%%DATADIR%%/resources/ni_open_connected.png
%%DATADIR%%/resources/ni_open_disconnected.png
%%DATADIR%%/resources/ni_open_fetching_01.png
%%DATADIR%%/resources/ni_open_fetching_02.png
%%DATADIR%%/resources/ni_open_fetching_03.png
%%DATADIR%%/resources/nl.country/startinglocation.kml
%%DATADIR%%/resources/nl.png
%%DATADIR%%/resources/nlhl.png
%%DATADIR%%/resources/no.country/startinglocation.kml
%%DATADIR%%/resources/node-closed.png
%%DATADIR%%/resources/node-open.png
%%DATADIR%%/resources/northreset_off.png
%%DATADIR%%/resources/northreset_on.png
%%DATADIR%%/resources/note.png
%%DATADIR%%/resources/notfound.png
%%DATADIR%%/resources/np.country/startinglocation.kml
%%DATADIR%%/resources/nr.country/startinglocation.kml
%%DATADIR%%/resources/nu.country/startinglocation.kml
%%DATADIR%%/resources/nz.country/startinglocation.kml
%%DATADIR%%/resources/o-lv.png
%%DATADIR%%/resources/o.png
%%DATADIR%%/resources/oftab_trans.png
%%DATADIR%%/resources/oftab_trans_glow.png
%%DATADIR%%/resources/om.country/startinglocation.kml
%%DATADIR%%/resources/one-dollar.png
%%DATADIR%%/resources/ontab_trans.png
%%DATADIR%%/resources/ontab_trans_glow.png
%%DATADIR%%/resources/open-diamond.png
%%DATADIR%%/resources/openarrow.png
%%DATADIR%%/resources/openfolder.png
%%DATADIR%%/resources/opennetworkfolder.png
%%DATADIR%%/resources/opentree.png
%%DATADIR%%/resources/overlay-gr.png
%%DATADIR%%/resources/overlay-md.png
%%DATADIR%%/resources/overlay-mo.png
%%DATADIR%%/resources/overlay-pl.png
%%DATADIR%%/resources/overlay.png
%%DATADIR%%/resources/overlay_mask.png
%%DATADIR%%/resources/overviewframe.png
%%DATADIR%%/resources/p-lv.png
%%DATADIR%%/resources/p.png
%%DATADIR%%/resources/pa.country/startinglocation.kml
%%DATADIR%%/resources/paddle/1-lv.png
%%DATADIR%%/resources/paddle/1.png
%%DATADIR%%/resources/paddle/10-lv.png
%%DATADIR%%/resources/paddle/10.png
%%DATADIR%%/resources/paddle/2-lv.png
%%DATADIR%%/resources/paddle/2.png
%%DATADIR%%/resources/paddle/3-lv.png
%%DATADIR%%/resources/paddle/3.png
%%DATADIR%%/resources/paddle/4-lv.png
%%DATADIR%%/resources/paddle/4.png
%%DATADIR%%/resources/paddle/5-lv.png
%%DATADIR%%/resources/paddle/5.png
%%DATADIR%%/resources/paddle/6-lv.png
%%DATADIR%%/resources/paddle/6.png
%%DATADIR%%/resources/paddle/7-lv.png
%%DATADIR%%/resources/paddle/7.png
%%DATADIR%%/resources/paddle/8-lv.png
%%DATADIR%%/resources/paddle/8.png
%%DATADIR%%/resources/paddle/9-lv.png
%%DATADIR%%/resources/paddle/9.png
%%DATADIR%%/resources/paddle/a-lv.png
%%DATADIR%%/resources/paddle/a.png
%%DATADIR%%/resources/paddle/b-lv.png
%%DATADIR%%/resources/paddle/b.png
%%DATADIR%%/resources/paddle/blu-blank-lv.png
%%DATADIR%%/resources/paddle/blu-blank.png
%%DATADIR%%/resources/paddle/blu-circle-lv.png
%%DATADIR%%/resources/paddle/blu-circle.png
%%DATADIR%%/resources/paddle/blu-diamond-lv.png
%%DATADIR%%/resources/paddle/blu-diamond.png
%%DATADIR%%/resources/paddle/blu-square-lv.png
%%DATADIR%%/resources/paddle/blu-square.png
%%DATADIR%%/resources/paddle/blu-stars-lv.png
%%DATADIR%%/resources/paddle/blu-stars.png
%%DATADIR%%/resources/paddle/c-lv.png
%%DATADIR%%/resources/paddle/c.png
%%DATADIR%%/resources/paddle/d-lv.png
%%DATADIR%%/resources/paddle/d.png
%%DATADIR%%/resources/paddle/e-lv.png
%%DATADIR%%/resources/paddle/e.png
%%DATADIR%%/resources/paddle/f-lv.png
%%DATADIR%%/resources/paddle/f.png
%%DATADIR%%/resources/paddle/g-lv.png
%%DATADIR%%/resources/paddle/g.png
%%DATADIR%%/resources/paddle/go-lv.png
%%DATADIR%%/resources/paddle/go.png
%%DATADIR%%/resources/paddle/grn-blank-lv.png
%%DATADIR%%/resources/paddle/grn-blank.png
%%DATADIR%%/resources/paddle/grn-circle-lv.png
%%DATADIR%%/resources/paddle/grn-circle.png
%%DATADIR%%/resources/paddle/grn-diamond-lv.png
%%DATADIR%%/resources/paddle/grn-diamond.png
%%DATADIR%%/resources/paddle/grn-square-lv.png
%%DATADIR%%/resources/paddle/grn-square.png
%%DATADIR%%/resources/paddle/grn-stars-lv.png
%%DATADIR%%/resources/paddle/grn-stars.png
%%DATADIR%%/resources/paddle/h-lv.png
%%DATADIR%%/resources/paddle/h.png
%%DATADIR%%/resources/paddle/i-lv.png
%%DATADIR%%/resources/paddle/i.png
%%DATADIR%%/resources/paddle/j-lv.png
%%DATADIR%%/resources/paddle/j.png
%%DATADIR%%/resources/paddle/k-lv.png
%%DATADIR%%/resources/paddle/k.png
%%DATADIR%%/resources/paddle/l-lv.png
%%DATADIR%%/resources/paddle/l.png
%%DATADIR%%/resources/paddle/ltblu-blank-lv.png
%%DATADIR%%/resources/paddle/ltblu-blank.png
%%DATADIR%%/resources/paddle/ltblu-circle-lv.png
%%DATADIR%%/resources/paddle/ltblu-circle.png
%%DATADIR%%/resources/paddle/ltblu-diamond-lv.png
%%DATADIR%%/resources/paddle/ltblu-diamond.png
%%DATADIR%%/resources/paddle/ltblu-square-lv.png
%%DATADIR%%/resources/paddle/ltblu-square.png
%%DATADIR%%/resources/paddle/ltblu-stars-lv.png
%%DATADIR%%/resources/paddle/ltblu-stars.png
%%DATADIR%%/resources/paddle/m-lv.png
%%DATADIR%%/resources/paddle/m.png
%%DATADIR%%/resources/paddle/n-lv.png
%%DATADIR%%/resources/paddle/n.png
%%DATADIR%%/resources/paddle/o-lv.png
%%DATADIR%%/resources/paddle/o.png
%%DATADIR%%/resources/paddle/p-lv.png
%%DATADIR%%/resources/paddle/p.png
%%DATADIR%%/resources/paddle/pause-lv.png
%%DATADIR%%/resources/paddle/pause.png
%%DATADIR%%/resources/paddle/pink-blank-lv.png
%%DATADIR%%/resources/paddle/pink-blank.png
%%DATADIR%%/resources/paddle/pink-circle-lv.png
%%DATADIR%%/resources/paddle/pink-circle.png
%%DATADIR%%/resources/paddle/pink-diamond-lv.png
%%DATADIR%%/resources/paddle/pink-diamond.png
%%DATADIR%%/resources/paddle/pink-square-lv.png
%%DATADIR%%/resources/paddle/pink-square.png
%%DATADIR%%/resources/paddle/pink-stars-lv.png
%%DATADIR%%/resources/paddle/pink-stars.png
%%DATADIR%%/resources/paddle/purple-circle-lv.png
%%DATADIR%%/resources/paddle/purple-circle.png
%%DATADIR%%/resources/paddle/purple-diamond-lv.png
%%DATADIR%%/resources/paddle/purple-diamond.png
%%DATADIR%%/resources/paddle/purple-square-lv.png
%%DATADIR%%/resources/paddle/purple-square.png
%%DATADIR%%/resources/paddle/purple-stars-lv.png
%%DATADIR%%/resources/paddle/purple-stars.png
%%DATADIR%%/resources/paddle/q-lv.png
%%DATADIR%%/resources/paddle/q.png
%%DATADIR%%/resources/paddle/r-lv.png
%%DATADIR%%/resources/paddle/r.png
%%DATADIR%%/resources/paddle/red-circle-lv.png
%%DATADIR%%/resources/paddle/red-circle.png
%%DATADIR%%/resources/paddle/red-diamond-lv.png
%%DATADIR%%/resources/paddle/red-diamond.png
%%DATADIR%%/resources/paddle/red-square-lv.png
%%DATADIR%%/resources/paddle/red-square.png
%%DATADIR%%/resources/paddle/red-stars-lv.png
%%DATADIR%%/resources/paddle/red-stars.png
%%DATADIR%%/resources/paddle/route.png
%%DATADIR%%/resources/paddle/s-lv.png
%%DATADIR%%/resources/paddle/s.png
%%DATADIR%%/resources/paddle/stop-lv.png
%%DATADIR%%/resources/paddle/stop.png
%%DATADIR%%/resources/paddle/t-lv.png
%%DATADIR%%/resources/paddle/t.png
%%DATADIR%%/resources/paddle/u-lv.png
%%DATADIR%%/resources/paddle/u.png
%%DATADIR%%/resources/paddle/v-lv.png
%%DATADIR%%/resources/paddle/v.png
%%DATADIR%%/resources/paddle/w-lv.png
%%DATADIR%%/resources/paddle/w.png
%%DATADIR%%/resources/paddle/wht-blank-lv.png
%%DATADIR%%/resources/paddle/wht-blank.png
%%DATADIR%%/resources/paddle/wht-circle-lv.png
%%DATADIR%%/resources/paddle/wht-circle.png
%%DATADIR%%/resources/paddle/wht-diamond-lv.png
%%DATADIR%%/resources/paddle/wht-diamond.png
%%DATADIR%%/resources/paddle/wht-square-lv.png
%%DATADIR%%/resources/paddle/wht-square.png
%%DATADIR%%/resources/paddle/wht-stars-lv.png
%%DATADIR%%/resources/paddle/wht-stars.png
%%DATADIR%%/resources/paddle/x-lv.png
%%DATADIR%%/resources/paddle/x.png
%%DATADIR%%/resources/paddle/y-lv.png
%%DATADIR%%/resources/paddle/y.png
%%DATADIR%%/resources/paddle/ylw-blank-lv.png
%%DATADIR%%/resources/paddle/ylw-blank.png
%%DATADIR%%/resources/paddle/ylw-circle-lv.png
%%DATADIR%%/resources/paddle/ylw-circle.png
%%DATADIR%%/resources/paddle/ylw-diamond-lv.png
%%DATADIR%%/resources/paddle/ylw-diamond.png
%%DATADIR%%/resources/paddle/ylw-square-lv.png
%%DATADIR%%/resources/paddle/ylw-square.png
%%DATADIR%%/resources/paddle/ylw-stars-lv.png
%%DATADIR%%/resources/paddle/ylw-stars.png
%%DATADIR%%/resources/paddle/z-lv.png
%%DATADIR%%/resources/paddle/z.png
%%DATADIR%%/resources/palette-2.png
%%DATADIR%%/resources/palette-3.png
%%DATADIR%%/resources/palette-4.png
%%DATADIR%%/resources/palette-5.png
%%DATADIR%%/resources/panel-bkgd.png
%%DATADIR%%/resources/panel-close.png
%%DATADIR%%/resources/panel-down.png
%%DATADIR%%/resources/panel-gr.png
%%DATADIR%%/resources/panel-md.png
%%DATADIR%%/resources/panel-mo.png
%%DATADIR%%/resources/panel-pl.png
%%DATADIR%%/resources/panel-repeat.png
%%DATADIR%%/resources/paperclip.png
%%DATADIR%%/resources/parking_lot.png
%%DATADIR%%/resources/parks.png
%%DATADIR%%/resources/partly_cloudy.png
%%DATADIR%%/resources/path-gr.png
%%DATADIR%%/resources/path-md.png
%%DATADIR%%/resources/path-mo.png
%%DATADIR%%/resources/path-pl.png
%%DATADIR%%/resources/path.png
%%DATADIR%%/resources/pause-dis.png
%%DATADIR%%/resources/pause-lv.png
%%DATADIR%%/resources/pause.png
%%DATADIR%%/resources/pause_click.png
%%DATADIR%%/resources/pause_glow.png
%%DATADIR%%/resources/pe.country/startinglocation.kml
%%DATADIR%%/resources/pf.country/startinglocation.kml
%%DATADIR%%/resources/pg.country/startinglocation.kml
%%DATADIR%%/resources/ph.country/startinglocation.kml
%%DATADIR%%/resources/pharmacy_rx.png
%%DATADIR%%/resources/phone.png
%%DATADIR%%/resources/photo_arrows_fade.png
%%DATADIR%%/resources/photo_icon_64.png
%%DATADIR%%/resources/photo_listview.png
%%DATADIR%%/resources/picnic.png
%%DATADIR%%/resources/pin-gr.png
%%DATADIR%%/resources/pin-md.png
%%DATADIR%%/resources/pin-mo.png
%%DATADIR%%/resources/pin-pl.png
%%DATADIR%%/resources/pink-blank-lv.png
%%DATADIR%%/resources/pink-blank.png
%%DATADIR%%/resources/pink-circle-lv.png
%%DATADIR%%/resources/pink-circle.png
%%DATADIR%%/resources/pink-diamond-lv.png
%%DATADIR%%/resources/pink-diamond.png
%%DATADIR%%/resources/pink-pushpin.png
%%DATADIR%%/resources/pink-square-lv.png
%%DATADIR%%/resources/pink-square.png
%%DATADIR%%/resources/pink-stars-lv.png
%%DATADIR%%/resources/pink-stars.png
%%DATADIR%%/resources/pinpoint.png
%%DATADIR%%/resources/pk.country/startinglocation.kml
%%DATADIR%%/resources/pl.country/startinglocation.kml
%%DATADIR%%/resources/placemark_circle.png
%%DATADIR%%/resources/placemark_circle_highlight.png
%%DATADIR%%/resources/placemark_off.png
%%DATADIR%%/resources/placemark_on.png
%%DATADIR%%/resources/placemark_square.png
%%DATADIR%%/resources/placemark_square_highlight.png
%%DATADIR%%/resources/play-forward-dis.png
%%DATADIR%%/resources/play-forward.png
%%DATADIR%%/resources/play.png
%%DATADIR%%/resources/play_click.png
%%DATADIR%%/resources/play_glow.png
%%DATADIR%%/resources/pm.country/startinglocation.kml
%%DATADIR%%/resources/pn.country/startinglocation.kml
%%DATADIR%%/resources/poi.png
%%DATADIR%%/resources/point_off.png
%%DATADIR%%/resources/point_on.png
%%DATADIR%%/resources/police.png
%%DATADIR%%/resources/polygon-gr.png
%%DATADIR%%/resources/polygon-md.png
%%DATADIR%%/resources/polygon-mo.png
%%DATADIR%%/resources/polygon-pl.png
%%DATADIR%%/resources/polygon.png
%%DATADIR%%/resources/post_office.png
%%DATADIR%%/resources/pr.country/startinglocation.kml
%%DATADIR%%/resources/premium_lock.png
%%DATADIR%%/resources/premium_locked.png
%%DATADIR%%/resources/premium_star.png
%%DATADIR%%/resources/print-gr.png
%%DATADIR%%/resources/print-md.png
%%DATADIR%%/resources/print-mo.png
%%DATADIR%%/resources/print-pl.png
%%DATADIR%%/resources/print.png
%%DATADIR%%/resources/print_button_click.png
%%DATADIR%%/resources/print_button_glow.png
%%DATADIR%%/resources/print_button_off.png
%%DATADIR%%/resources/print_click.png
%%DATADIR%%/resources/print_glow.png
%%DATADIR%%/resources/print_off.png
%%DATADIR%%/resources/print_on.png
%%DATADIR%%/resources/printlogo.png
%%DATADIR%%/resources/progress0.png
%%DATADIR%%/resources/progress1.png
%%DATADIR%%/resources/progress2.png
%%DATADIR%%/resources/progress3.png
%%DATADIR%%/resources/progress4.png
%%DATADIR%%/resources/progress5.png
%%DATADIR%%/resources/progress6.png
%%DATADIR%%/resources/progress7.png
%%DATADIR%%/resources/ps.country/startinglocation.kml
%%DATADIR%%/resources/pt.country/startinglocation.kml
%%DATADIR%%/resources/purple-circle-lv.png
%%DATADIR%%/resources/purple-circle.png
%%DATADIR%%/resources/purple-diamond-lv.png
%%DATADIR%%/resources/purple-diamond.png
%%DATADIR%%/resources/purple-pushpin.png
%%DATADIR%%/resources/purple-square-lv.png
%%DATADIR%%/resources/purple-square.png
%%DATADIR%%/resources/purple-stars-lv.png
%%DATADIR%%/resources/purple-stars.png
%%DATADIR%%/resources/pushpin/blue-pushpin.png
%%DATADIR%%/resources/pushpin/grn-pushpin.png
%%DATADIR%%/resources/pushpin/ltblu-pushpin.png
%%DATADIR%%/resources/pushpin/pink-pushpin.png
%%DATADIR%%/resources/pushpin/purple-pushpin.png
%%DATADIR%%/resources/pushpin/red-pushpin.png
%%DATADIR%%/resources/pushpin/wht-pushpin.png
%%DATADIR%%/resources/pushpin/ylw-pushpin.png
%%DATADIR%%/resources/pw.country/startinglocation.kml
%%DATADIR%%/resources/py.country/startinglocation.kml
%%DATADIR%%/resources/q-lv.png
%%DATADIR%%/resources/q.png
%%DATADIR%%/resources/qa.country/startinglocation.kml
%%DATADIR%%/resources/query.png
%%DATADIR%%/resources/r-lv.png
%%DATADIR%%/resources/r.png
%%DATADIR%%/resources/rail.png
%%DATADIR%%/resources/rainy.png
%%DATADIR%%/resources/ranger_station.png
%%DATADIR%%/resources/re.country/startinglocation.kml
%%DATADIR%%/resources/realestate.png
%%DATADIR%%/resources/recreation.png
%%DATADIR%%/resources/red-circle-lv.png
%%DATADIR%%/resources/red-circle.png
%%DATADIR%%/resources/red-diamond-lv.png
%%DATADIR%%/resources/red-diamond.png
%%DATADIR%%/resources/red-pushpin.png
%%DATADIR%%/resources/red-square-lv.png
%%DATADIR%%/resources/red-square.png
%%DATADIR%%/resources/red-stars-lv.png
%%DATADIR%%/resources/red-stars.png
%%DATADIR%%/resources/red_and_green_boxes_mask.png
%%DATADIR%%/resources/red_mid.png
%%DATADIR%%/resources/red_mid_glow.png
%%DATADIR%%/resources/red_tabclick_arrow.png
%%DATADIR%%/resources/red_tabclose_arrow.png
%%DATADIR%%/resources/red_tabopen.png
%%DATADIR%%/resources/red_tabopen_glow.png
%%DATADIR%%/resources/red_tile.png
%%DATADIR%%/resources/red_tile_glow.png
%%DATADIR%%/resources/redheader.png
%%DATADIR%%/resources/resizeiconmac.png
%%DATADIR%%/resources/rgb.png
%%DATADIR%%/resources/rgba.png
%%DATADIR%%/resources/right.png
%%DATADIR%%/resources/rightbar_active.png
%%DATADIR%%/resources/rightbar_hover.png
%%DATADIR%%/resources/rightbar_norm.png
%%DATADIR%%/resources/ring-md.png
%%DATADIR%%/resources/ring-mo.png
%%DATADIR%%/resources/ring-norm.png
%%DATADIR%%/resources/ring-thumb-md.png
%%DATADIR%%/resources/ring-thumb-mo.png
%%DATADIR%%/resources/ring_active.png
%%DATADIR%%/resources/ring_hover.png
%%DATADIR%%/resources/ring_n_active.png
%%DATADIR%%/resources/ring_n_hover.png
%%DATADIR%%/resources/ring_norm.png
%%DATADIR%%/resources/ro.country/startinglocation.kml
%%DATADIR%%/resources/road_labels_mask.png
%%DATADIR%%/resources/road_shield1.png
%%DATADIR%%/resources/road_shield2.png
%%DATADIR%%/resources/road_shield3.png
%%DATADIR%%/resources/roads_off.png
%%DATADIR%%/resources/roads_on.png
%%DATADIR%%/resources/rot_left_click.png
%%DATADIR%%/resources/rot_left_glow.png
%%DATADIR%%/resources/rot_left_off.png
%%DATADIR%%/resources/rot_right_click.png
%%DATADIR%%/resources/rot_right_glow.png
%%DATADIR%%/resources/rot_right_off.png
%%DATADIR%%/resources/rotate_ccw_off.png
%%DATADIR%%/resources/rotate_ccw_on.png
%%DATADIR%%/resources/rotate_cw_off.png
%%DATADIR%%/resources/rotate_cw_on.png
%%DATADIR%%/resources/rotleft_click.png
%%DATADIR%%/resources/rotleft_click_1.png
%%DATADIR%%/resources/rotleft_glow.png
%%DATADIR%%/resources/rotleft_glow_1.png
%%DATADIR%%/resources/rotleft_off.png
%%DATADIR%%/resources/rotleft_off_1.png
%%DATADIR%%/resources/rotright_click.png
%%DATADIR%%/resources/rotright_click_1.png
%%DATADIR%%/resources/rotright_glow.png
%%DATADIR%%/resources/rotright_glow_1.png
%%DATADIR%%/resources/rotright_off.png
%%DATADIR%%/resources/rotright_off_1.png
%%DATADIR%%/resources/roundrect_bottom.png
%%DATADIR%%/resources/roundrect_bottomleft.png
%%DATADIR%%/resources/roundrect_bottomright.png
%%DATADIR%%/resources/roundrect_center.png
%%DATADIR%%/resources/roundrect_left.png
%%DATADIR%%/resources/roundrect_right.png
%%DATADIR%%/resources/roundrect_top.png
%%DATADIR%%/resources/roundrect_topleft.png
%%DATADIR%%/resources/roundrect_topright.png
%%DATADIR%%/resources/route.png
%%DATADIR%%/resources/rs.country/startinglocation.kml
%%DATADIR%%/resources/ru.country/startinglocation.kml
%%DATADIR%%/resources/ru.locale/google_earth_splash.jpg
%%DATADIR%%/resources/ruler-gr.png
%%DATADIR%%/resources/ruler-md.png
%%DATADIR%%/resources/ruler-mo.png
%%DATADIR%%/resources/ruler-pl.png
%%DATADIR%%/resources/ruler.png
%%DATADIR%%/resources/rw.country/startinglocation.kml
%%DATADIR%%/resources/s-lv.png
%%DATADIR%%/resources/s.png
%%DATADIR%%/resources/sa.country/startinglocation.kml
%%DATADIR%%/resources/sailing.png
%%DATADIR%%/resources/salon.png
%%DATADIR%%/resources/sb.country/startinglocation.kml
%%DATADIR%%/resources/sc.country/startinglocation.kml
%%DATADIR%%/resources/school_16.png
%%DATADIR%%/resources/schools.png
%%DATADIR%%/resources/screen_overlay.png
%%DATADIR%%/resources/scrollbluetile.png
%%DATADIR%%/resources/scrolldown.png
%%DATADIR%%/resources/scrolldown_click.png
%%DATADIR%%/resources/scrolldown_glow.png
%%DATADIR%%/resources/scrollgreytile.png
%%DATADIR%%/resources/scrollup.png
%%DATADIR%%/resources/scrollup_click.png
%%DATADIR%%/resources/scrollup_glow.png
%%DATADIR%%/resources/sd.country/startinglocation.kml
%%DATADIR%%/resources/se.country/startinglocation.kml
%%DATADIR%%/resources/search-dis.png
%%DATADIR%%/resources/search-toolbar-md.png
%%DATADIR%%/resources/search-toolbar-mo.png
%%DATADIR%%/resources/search-toolbar-norm.png
%%DATADIR%%/resources/search.png
%%DATADIR%%/resources/search_l36.png
%%DATADIR%%/resources/search_r36.png
%%DATADIR%%/resources/search_tilebot.png
%%DATADIR%%/resources/search_tiletop.png
%%DATADIR%%/resources/searchbutton.png
%%DATADIR%%/resources/searchbutton_click.png
%%DATADIR%%/resources/searchbutton_glow.png
%%DATADIR%%/resources/sf_benchmark_mask.png
%%DATADIR%%/resources/sg.country/startinglocation.kml
%%DATADIR%%/resources/sh.country/startinglocation.kml
%%DATADIR%%/resources/shaded_dot.png
%%DATADIR%%/resources/shadedrelief.png
%%DATADIR%%/resources/shapes/airports.png
%%DATADIR%%/resources/shapes/arrow-reverse.png
%%DATADIR%%/resources/shapes/arrow.png
%%DATADIR%%/resources/shapes/arts.png
%%DATADIR%%/resources/shapes/bars.png
%%DATADIR%%/resources/shapes/broken_link.png
%%DATADIR%%/resources/shapes/bus.png
%%DATADIR%%/resources/shapes/cabs.png
%%DATADIR%%/resources/shapes/camera-lv.png
%%DATADIR%%/resources/shapes/camera.png
%%DATADIR%%/resources/shapes/campfire.png
%%DATADIR%%/resources/shapes/campground.png
%%DATADIR%%/resources/shapes/capital_big.png
%%DATADIR%%/resources/shapes/capital_big_highlight.png
%%DATADIR%%/resources/shapes/capital_small.png
%%DATADIR%%/resources/shapes/capital_small_highlight.png
%%DATADIR%%/resources/shapes/caution.png
%%DATADIR%%/resources/shapes/church.png
%%DATADIR%%/resources/shapes/coffee.png
%%DATADIR%%/resources/shapes/convenience.png
%%DATADIR%%/resources/shapes/cross-hairs.png
%%DATADIR%%/resources/shapes/cross-hairs_highlight.png
%%DATADIR%%/resources/shapes/cycling.png
%%DATADIR%%/resources/shapes/dining.png
%%DATADIR%%/resources/shapes/dollar.png
%%DATADIR%%/resources/shapes/donut.png
%%DATADIR%%/resources/shapes/earthquake.png
%%DATADIR%%/resources/shapes/electronics.png
%%DATADIR%%/resources/shapes/euro.png
%%DATADIR%%/resources/shapes/falling_rocks.png
%%DATADIR%%/resources/shapes/ferry.png
%%DATADIR%%/resources/shapes/firedept.png
%%DATADIR%%/resources/shapes/fishing.png
%%DATADIR%%/resources/shapes/flag.png
%%DATADIR%%/resources/shapes/forbidden.png
%%DATADIR%%/resources/shapes/gas_stations.png
%%DATADIR%%/resources/shapes/golf.png
%%DATADIR%%/resources/shapes/grocery.png
%%DATADIR%%/resources/shapes/heliport.png
%%DATADIR%%/resources/shapes/highway.png
%%DATADIR%%/resources/shapes/hiker.png
%%DATADIR%%/resources/shapes/homegardenbusiness.png
%%DATADIR%%/resources/shapes/horsebackriding.png
%%DATADIR%%/resources/shapes/hospitals.png
%%DATADIR%%/resources/shapes/info-i.png
%%DATADIR%%/resources/shapes/info.png
%%DATADIR%%/resources/shapes/info_circle.png
%%DATADIR%%/resources/shapes/lodging.png
%%DATADIR%%/resources/shapes/man.png
%%DATADIR%%/resources/shapes/marina.png
%%DATADIR%%/resources/shapes/mechanic.png
%%DATADIR%%/resources/shapes/motorcycling.png
%%DATADIR%%/resources/shapes/mountains.png
%%DATADIR%%/resources/shapes/movies.png
%%DATADIR%%/resources/shapes/open-diamond.png
%%DATADIR%%/resources/shapes/parking_lot.png
%%DATADIR%%/resources/shapes/parks.png
%%DATADIR%%/resources/shapes/partly_cloudy.png
%%DATADIR%%/resources/shapes/pharmacy_rx.png
%%DATADIR%%/resources/shapes/phone.png
%%DATADIR%%/resources/shapes/picnic.png
%%DATADIR%%/resources/shapes/placemark_circle.png
%%DATADIR%%/resources/shapes/placemark_circle_highlight.png
%%DATADIR%%/resources/shapes/placemark_square.png
%%DATADIR%%/resources/shapes/placemark_square_highlight.png
%%DATADIR%%/resources/shapes/play.png
%%DATADIR%%/resources/shapes/poi.png
%%DATADIR%%/resources/shapes/police.png
%%DATADIR%%/resources/shapes/polygon.png
%%DATADIR%%/resources/shapes/post_office.png
%%DATADIR%%/resources/shapes/rail.png
%%DATADIR%%/resources/shapes/rainy.png
%%DATADIR%%/resources/shapes/ranger_station.png
%%DATADIR%%/resources/shapes/realestate.png
%%DATADIR%%/resources/shapes/road_shield1.png
%%DATADIR%%/resources/shapes/road_shield2.png
%%DATADIR%%/resources/shapes/road_shield3.png
%%DATADIR%%/resources/shapes/ruler.png
%%DATADIR%%/resources/shapes/sailing.png
%%DATADIR%%/resources/shapes/salon.png
%%DATADIR%%/resources/shapes/schools.png
%%DATADIR%%/resources/shapes/shaded_dot.png
%%DATADIR%%/resources/shapes/shopping.png
%%DATADIR%%/resources/shapes/ski.png
%%DATADIR%%/resources/shapes/snack_bar.png
%%DATADIR%%/resources/shapes/snowflake_simple.png
%%DATADIR%%/resources/shapes/square.png
%%DATADIR%%/resources/shapes/star.png
%%DATADIR%%/resources/shapes/subway.png
%%DATADIR%%/resources/shapes/sunny.png
%%DATADIR%%/resources/shapes/swimming.png
%%DATADIR%%/resources/shapes/target.png
%%DATADIR%%/resources/shapes/terrain.png
%%DATADIR%%/resources/shapes/thunderstorm.png
%%DATADIR%%/resources/shapes/toilets.png
%%DATADIR%%/resources/shapes/trail.png
%%DATADIR%%/resources/shapes/tram.png
%%DATADIR%%/resources/shapes/triangle.png
%%DATADIR%%/resources/shapes/truck.png
%%DATADIR%%/resources/shapes/volcano.png
%%DATADIR%%/resources/shapes/water.png
%%DATADIR%%/resources/shapes/webcam.png
%%DATADIR%%/resources/shapes/wheel_chair_accessible.png
%%DATADIR%%/resources/shapes/woman.png
%%DATADIR%%/resources/shapes/yen.png
%%DATADIR%%/resources/shopping.png
%%DATADIR%%/resources/si.country/startinglocation.kml
%%DATADIR%%/resources/singlecontour.png
%%DATADIR%%/resources/sj.country/startinglocation.kml
%%DATADIR%%/resources/sk.country/startinglocation.kml
%%DATADIR%%/resources/ski.png
%%DATADIR%%/resources/sky-gr.png
%%DATADIR%%/resources/sky-md.png
%%DATADIR%%/resources/sky-mo.png
%%DATADIR%%/resources/sky-pl.png
%%DATADIR%%/resources/sl.country/startinglocation.kml
%%DATADIR%%/resources/slider_tickmarks.png
%%DATADIR%%/resources/slider_tilt_down.png
%%DATADIR%%/resources/slider_tilt_down_click.png
%%DATADIR%%/resources/slider_tilt_down_glow.png
%%DATADIR%%/resources/slider_tilt_up.png
%%DATADIR%%/resources/slider_tilt_up_click.png
%%DATADIR%%/resources/slider_tilt_up_glow.png
%%DATADIR%%/resources/slider_zoom_in.png
%%DATADIR%%/resources/slider_zoom_in_click.png
%%DATADIR%%/resources/slider_zoom_in_glow.png
%%DATADIR%%/resources/slider_zoom_out.png
%%DATADIR%%/resources/slider_zoom_out_click.png
%%DATADIR%%/resources/slider_zoom_out_glow.png
%%DATADIR%%/resources/sm.country/startinglocation.kml
%%DATADIR%%/resources/smallbutton.png
%%DATADIR%%/resources/smalllogo.png
%%DATADIR%%/resources/sn.country/startinglocation.kml
%%DATADIR%%/resources/snack_bar.png
%%DATADIR%%/resources/snowflake_simple.png
%%DATADIR%%/resources/so.country/startinglocation.kml
%%DATADIR%%/resources/square.png
%%DATADIR%%/resources/sr.country/startinglocation.kml
%%DATADIR%%/resources/st.country/startinglocation.kml
%%DATADIR%%/resources/star.png
%%DATADIR%%/resources/statue_of_liberty_mask.png
%%DATADIR%%/resources/stop-dis.png
%%DATADIR%%/resources/stop-lv.png
%%DATADIR%%/resources/stop.png
%%DATADIR%%/resources/stop_click.png
%%DATADIR%%/resources/stop_glow.png
%%DATADIR%%/resources/streamed_layer.png
%%DATADIR%%/resources/streamed_layers.png
%%DATADIR%%/resources/subway.png
%%DATADIR%%/resources/sunny.png
%%DATADIR%%/resources/sv.country/startinglocation.kml
%%DATADIR%%/resources/swimming.png
%%DATADIR%%/resources/sy.country/startinglocation.kml
%%DATADIR%%/resources/sz.country/startinglocation.kml
%%DATADIR%%/resources/t-lv.png
%%DATADIR%%/resources/t.png
%%DATADIR%%/resources/tab_background_tile.png
%%DATADIR%%/resources/target.png
%%DATADIR%%/resources/tc.country/startinglocation.kml
%%DATADIR%%/resources/td.country/startinglocation.kml
%%DATADIR%%/resources/terrain.png
%%DATADIR%%/resources/terrain_16.png
%%DATADIR%%/resources/tf.country/startinglocation.kml
%%DATADIR%%/resources/tg.country/startinglocation.kml
%%DATADIR%%/resources/th.country/startinglocation.kml
%%DATADIR%%/resources/three-dollars.png
%%DATADIR%%/resources/thunderstorm.png
%%DATADIR%%/resources/tile.png
%%DATADIR%%/resources/tilt_back01.png
%%DATADIR%%/resources/tilt_click.png
%%DATADIR%%/resources/tilt_click_1.png
%%DATADIR%%/resources/tilt_down.png
%%DATADIR%%/resources/tilt_down_click.png
%%DATADIR%%/resources/tilt_down_glow.png
%%DATADIR%%/resources/tilt_glow.png
%%DATADIR%%/resources/tilt_glow_1.png
%%DATADIR%%/resources/tilt_minus_active.png
%%DATADIR%%/resources/tilt_minus_hover.png
%%DATADIR%%/resources/tilt_norm.png
%%DATADIR%%/resources/tilt_off.png
%%DATADIR%%/resources/tilt_off_1.png
%%DATADIR%%/resources/tilt_plus_active.png
%%DATADIR%%/resources/tilt_plus_hover.png
%%DATADIR%%/resources/tilt_up.png
%%DATADIR%%/resources/tilt_up_click.png
%%DATADIR%%/resources/tilt_up_glow.png
%%DATADIR%%/resources/tiltbar_active.png
%%DATADIR%%/resources/tiltbar_hover.png
%%DATADIR%%/resources/tiltbar_norm.png
%%DATADIR%%/resources/tiltreset_off.png
%%DATADIR%%/resources/tiltreset_on.png
%%DATADIR%%/resources/time_minus_active.png
%%DATADIR%%/resources/time_minus_hover.png
%%DATADIR%%/resources/time_norm.png
%%DATADIR%%/resources/time_plus_active.png
%%DATADIR%%/resources/time_plus_hover.png
%%DATADIR%%/resources/timebar_active.png
%%DATADIR%%/resources/timebar_hover.png
%%DATADIR%%/resources/timebar_norm.png
%%DATADIR%%/resources/timeclock_active.png
%%DATADIR%%/resources/timeclock_hover.png
%%DATADIR%%/resources/timeclock_norm.png
%%DATADIR%%/resources/timedashed_left.png
%%DATADIR%%/resources/timedashed_right.png
%%DATADIR%%/resources/timedate_dashed.png
%%DATADIR%%/resources/timepause_active.png
%%DATADIR%%/resources/timepause_hover.png
%%DATADIR%%/resources/timepause_norm.png
%%DATADIR%%/resources/timeplay_active.png
%%DATADIR%%/resources/timeplay_hover.png
%%DATADIR%%/resources/timeplay_norm.png
%%DATADIR%%/resources/timewindow.png
%%DATADIR%%/resources/titlebarlogo.png
%%DATADIR%%/resources/tj.country/startinglocation.kml
%%DATADIR%%/resources/tk.country/startinglocation.kml
%%DATADIR%%/resources/tl.country/startinglocation.kml
%%DATADIR%%/resources/tm.country/startinglocation.kml
%%DATADIR%%/resources/tn.country/startinglocation.kml
%%DATADIR%%/resources/to.country/startinglocation.kml
%%DATADIR%%/resources/toggle.png
%%DATADIR%%/resources/toilets.png
%%DATADIR%%/resources/tr.country/startinglocation.kml
%%DATADIR%%/resources/trail.png
%%DATADIR%%/resources/tram.png
%%DATADIR%%/resources/trans_back.png
%%DATADIR%%/resources/trans_handle.png
%%DATADIR%%/resources/transp.png
%%DATADIR%%/resources/transportation.png
%%DATADIR%%/resources/trialmode_overlay.png
%%DATADIR%%/resources/triangle.png
%%DATADIR%%/resources/truck.png
%%DATADIR%%/resources/tt.country/startinglocation.kml
%%DATADIR%%/resources/tv.country/startinglocation.kml
%%DATADIR%%/resources/tw.country/startinglocation.kml
%%DATADIR%%/resources/two-dollars.png
%%DATADIR%%/resources/tz.country/startinglocation.kml
%%DATADIR%%/resources/u-lv.png
%%DATADIR%%/resources/u.png
%%DATADIR%%/resources/ua.country/startinglocation.kml
%%DATADIR%%/resources/ug.country/startinglocation.kml
%%DATADIR%%/resources/um.country/startinglocation.kml
%%DATADIR%%/resources/up.png
%%DATADIR%%/resources/us.country/startinglocation.kml
%%DATADIR%%/resources/uy.country/startinglocation.kml
%%DATADIR%%/resources/uz.country/startinglocation.kml
%%DATADIR%%/resources/v-lv.png
%%DATADIR%%/resources/v.png
%%DATADIR%%/resources/va.country/startinglocation.kml
%%DATADIR%%/resources/vc.country/startinglocation.kml
%%DATADIR%%/resources/ve.country/startinglocation.kml
%%DATADIR%%/resources/vg.country/startinglocation.kml
%%DATADIR%%/resources/vi.country/startinglocation.kml
%%DATADIR%%/resources/vn.country/startinglocation.kml
%%DATADIR%%/resources/volcano.png
%%DATADIR%%/resources/volcanodatamapping.png
%%DATADIR%%/resources/vu.country/startinglocation.kml
%%DATADIR%%/resources/w-lv.png
%%DATADIR%%/resources/w.png
%%DATADIR%%/resources/water.png
%%DATADIR%%/resources/waterlevel.png
%%DATADIR%%/resources/webcam.png
%%DATADIR%%/resources/webcam_16.png
%%DATADIR%%/resources/websearch_click.png
%%DATADIR%%/resources/websearch_click_1.png
%%DATADIR%%/resources/websearch_glow.png
%%DATADIR%%/resources/websearch_glow_1.png
%%DATADIR%%/resources/websearch_off.png
%%DATADIR%%/resources/websearch_off_1.png
%%DATADIR%%/resources/wf.country/startinglocation.kml
%%DATADIR%%/resources/wheel_chair_accessible.png
%%DATADIR%%/resources/white_3d.png
%%DATADIR%%/resources/white_linestring.png
%%DATADIR%%/resources/white_pixel.png
%%DATADIR%%/resources/white_polygon.png
%%DATADIR%%/resources/wht-blank-lv.png
%%DATADIR%%/resources/wht-blank.png
%%DATADIR%%/resources/wht-circle-lv.png
%%DATADIR%%/resources/wht-circle.png
%%DATADIR%%/resources/wht-diamond-lv.png
%%DATADIR%%/resources/wht-diamond.png
%%DATADIR%%/resources/wht-pushpin.png
%%DATADIR%%/resources/wht-square-lv.png
%%DATADIR%%/resources/wht-square.png
%%DATADIR%%/resources/wht-stars-lv.png
%%DATADIR%%/resources/wht-stars.png
%%DATADIR%%/resources/woman.png
%%DATADIR%%/resources/ws.country/startinglocation.kml
%%DATADIR%%/resources/x-lv.png
%%DATADIR%%/resources/x.png
%%DATADIR%%/resources/x_click.png
%%DATADIR%%/resources/x_click_1.png
%%DATADIR%%/resources/x_glow.png
%%DATADIR%%/resources/x_glow_1.png
%%DATADIR%%/resources/x_off.png
%%DATADIR%%/resources/x_off_1.png
%%DATADIR%%/resources/y-lv.png
%%DATADIR%%/resources/y.png
%%DATADIR%%/resources/ye.country/startinglocation.kml
%%DATADIR%%/resources/yen.png
%%DATADIR%%/resources/ylw-blank-lv.png
%%DATADIR%%/resources/ylw-blank.png
%%DATADIR%%/resources/ylw-circle-lv.png
%%DATADIR%%/resources/ylw-circle.png
%%DATADIR%%/resources/ylw-diamond-lv.png
%%DATADIR%%/resources/ylw-diamond.png
%%DATADIR%%/resources/ylw-pushpin.png
%%DATADIR%%/resources/ylw-square-lv.png
%%DATADIR%%/resources/ylw-square.png
%%DATADIR%%/resources/ylw-stars-lv.png
%%DATADIR%%/resources/ylw-stars.png
%%DATADIR%%/resources/yt.country/startinglocation.kml
%%DATADIR%%/resources/z-lv.png
%%DATADIR%%/resources/z.png
%%DATADIR%%/resources/za.country/startinglocation.kml
%%DATADIR%%/resources/zh-Hant.locale/google_earth_splash.jpg
%%DATADIR%%/resources/zm.country/startinglocation.kml
%%DATADIR%%/resources/zoom_back01.png
%%DATADIR%%/resources/zoom_in.png
%%DATADIR%%/resources/zoom_in_click.png
%%DATADIR%%/resources/zoom_in_glow.png
%%DATADIR%%/resources/zoom_minus_active.png
%%DATADIR%%/resources/zoom_minus_hover.png
%%DATADIR%%/resources/zoom_norm.png
%%DATADIR%%/resources/zoom_out.png
%%DATADIR%%/resources/zoom_out_click.png
%%DATADIR%%/resources/zoom_out_glow.png
%%DATADIR%%/resources/zoom_plus_active.png
%%DATADIR%%/resources/zoom_plus_hover.png
%%DATADIR%%/resources/zoombar_active.png
%%DATADIR%%/resources/zoombar_hover.png
%%DATADIR%%/resources/zoombar_norm.png
%%DATADIR%%/resources/zt_handle.png
%%DATADIR%%/resources/zt_handle_click.png
%%DATADIR%%/resources/zt_handle_glow.png
%%DATADIR%%/resources/zw.country/startinglocation.kml
%%DATADIR%%/resources/zz_screen_overlay_mask.png
%%DATADIR%%/xml/3dconnexion.plugin.xml
%%DATADIR%%/xml/app.module.xml
%%DATADIR%%/xml/auth.module.xml
%%DATADIR%%/xml/basicingest.module.xml
%%DATADIR%%/xml/flightsim.module.xml
%%DATADIR%%/xml/google.module.xml
%%DATADIR%%/xml/gps.module.xml
%%DATADIR%%/xml/input.plugin.xml
%%DATADIR%%/xml/layer.module.xml
%%DATADIR%%/xml/measure.module.xml
%%DATADIR%%/xml/navigate.module.xml
%%DATADIR%%/xml/render.module.xml
%%DATADIR%%/xml/time.module.xml
%%DATADIR%%/xml/web.module.xml
share/applications/googleearth.desktop
share/mime/application/earthviewer.xml
share/mime/application/keyhole.xml
share/mime/application/vnd.google-earth.kml+xml.xml
share/mime/application/vnd.google-earth.kmz.xml
share/mime/packages/googleearth-mimetypes.xml
@dirrm %%DATADIR%%/bin
@dirrm %%DATADIR%%/kvw
@dirrm %%DATADIR%%/lang
@dirrm %%DATADIR%%/linux/mailto-scripts
@dirrm %%DATADIR%%/linux/xdg
@dirrm %%DATADIR%%/linux
@dirrm %%DATADIR%%/res
@dirrm %%DATADIR%%/resources/ad.country
@dirrm %%DATADIR%%/resources/ae.country
@dirrm %%DATADIR%%/resources/af.country
@dirrm %%DATADIR%%/resources/ag.country
@dirrm %%DATADIR%%/resources/ai.country
@dirrm %%DATADIR%%/resources/al.country
@dirrm %%DATADIR%%/resources/am.country
@dirrm %%DATADIR%%/resources/an.country
@dirrm %%DATADIR%%/resources/ao.country
@dirrm %%DATADIR%%/resources/aq.country
@dirrm %%DATADIR%%/resources/ar.country
@dirrm %%DATADIR%%/resources/as.country
@dirrm %%DATADIR%%/resources/at.country
@dirrm %%DATADIR%%/resources/au.country
@dirrm %%DATADIR%%/resources/aw.country
@dirrm %%DATADIR%%/resources/ax.country
@dirrm %%DATADIR%%/resources/az.country
@dirrm %%DATADIR%%/resources/ba.country
@dirrm %%DATADIR%%/resources/bb.country
@dirrm %%DATADIR%%/resources/bd.country
@dirrm %%DATADIR%%/resources/be.country
@dirrm %%DATADIR%%/resources/bf.country
@dirrm %%DATADIR%%/resources/bg.country
@dirrm %%DATADIR%%/resources/bh.country
@dirrm %%DATADIR%%/resources/bi.country
@dirrm %%DATADIR%%/resources/bj.country
@dirrm %%DATADIR%%/resources/bm.country
@dirrm %%DATADIR%%/resources/bn.country
@dirrm %%DATADIR%%/resources/bo.country
@dirrm %%DATADIR%%/resources/br.country
@dirrm %%DATADIR%%/resources/bs.country
@dirrm %%DATADIR%%/resources/bt.country
@dirrm %%DATADIR%%/resources/bv.country
@dirrm %%DATADIR%%/resources/bw.country
@dirrm %%DATADIR%%/resources/by.country
@dirrm %%DATADIR%%/resources/bz.country
@dirrm %%DATADIR%%/resources/ca.country
@dirrm %%DATADIR%%/resources/cc.country
@dirrm %%DATADIR%%/resources/cd.country
@dirrm %%DATADIR%%/resources/cf.country
@dirrm %%DATADIR%%/resources/cg.country
@dirrm %%DATADIR%%/resources/ch.country
@dirrm %%DATADIR%%/resources/ci.country
@dirrm %%DATADIR%%/resources/ck.country
@dirrm %%DATADIR%%/resources/cl.country
@dirrm %%DATADIR%%/resources/cm.country
@dirrm %%DATADIR%%/resources/cn.country
@dirrm %%DATADIR%%/resources/co.country
@dirrm %%DATADIR%%/resources/cr.country
@dirrm %%DATADIR%%/resources/cu.country
@dirrm %%DATADIR%%/resources/cv.country
@dirrm %%DATADIR%%/resources/cx.country
@dirrm %%DATADIR%%/resources/cy.country
@dirrm %%DATADIR%%/resources/cz.country
@dirrm %%DATADIR%%/resources/de.country
@dirrm %%DATADIR%%/resources/de.locale
@dirrm %%DATADIR%%/resources/dj.country
@dirrm %%DATADIR%%/resources/dk.country
@dirrm %%DATADIR%%/resources/dm.country
@dirrm %%DATADIR%%/resources/do.country
@dirrm %%DATADIR%%/resources/dz.country
@dirrm %%DATADIR%%/resources/ec.country
@dirrm %%DATADIR%%/resources/ee.country
@dirrm %%DATADIR%%/resources/eg.country
@dirrm %%DATADIR%%/resources/eh.country
@dirrm %%DATADIR%%/resources/en.locale
@dirrm %%DATADIR%%/resources/en_AU.locale
@dirrm %%DATADIR%%/resources/en_CA.locale
@dirrm %%DATADIR%%/resources/en_GB.locale
@dirrm %%DATADIR%%/resources/en_NZ.locale
@dirrm %%DATADIR%%/resources/en_US.locale
@dirrm %%DATADIR%%/resources/er.country
@dirrm %%DATADIR%%/resources/es.country
@dirrm %%DATADIR%%/resources/es.locale
@dirrm %%DATADIR%%/resources/et.country
@dirrm %%DATADIR%%/resources/fi.country
@dirrm %%DATADIR%%/resources/fj.country
@dirrm %%DATADIR%%/resources/fk.country
@dirrm %%DATADIR%%/resources/flightsim/aircraft
@dirrm %%DATADIR%%/resources/flightsim/controller
@dirrm %%DATADIR%%/resources/flightsim/hud
@dirrm %%DATADIR%%/resources/flightsim/keyboard
@dirrm %%DATADIR%%/resources/flightsim/planet
@dirrm %%DATADIR%%/resources/flightsim
@dirrm %%DATADIR%%/resources/fm.country
@dirrm %%DATADIR%%/resources/fo.country
@dirrm %%DATADIR%%/resources/fr.country
@dirrm %%DATADIR%%/resources/fr.locale
@dirrm %%DATADIR%%/resources/ga.country
@dirrm %%DATADIR%%/resources/gb.country
@dirrm %%DATADIR%%/resources/gd.country
@dirrm %%DATADIR%%/resources/ge.country
@dirrm %%DATADIR%%/resources/gf.country
@dirrm %%DATADIR%%/resources/gg.country
@dirrm %%DATADIR%%/resources/gh.country
@dirrm %%DATADIR%%/resources/gi.country
@dirrm %%DATADIR%%/resources/gl.country
@dirrm %%DATADIR%%/resources/gm.country
@dirrm %%DATADIR%%/resources/gn.country
@dirrm %%DATADIR%%/resources/gp.country
@dirrm %%DATADIR%%/resources/gq.country
@dirrm %%DATADIR%%/resources/gr.country
@dirrm %%DATADIR%%/resources/gs.country
@dirrm %%DATADIR%%/resources/gt.country
@dirrm %%DATADIR%%/resources/gu.country
@dirrm %%DATADIR%%/resources/gw.country
@dirrm %%DATADIR%%/resources/gy.country
@dirrm %%DATADIR%%/resources/he.locale
@dirrm %%DATADIR%%/resources/hk.country
@dirrm %%DATADIR%%/resources/hm.country
@dirrm %%DATADIR%%/resources/hn.country
@dirrm %%DATADIR%%/resources/hr.country
@dirrm %%DATADIR%%/resources/ht.country
@dirrm %%DATADIR%%/resources/hu.country
@dirrm %%DATADIR%%/resources/id.country
@dirrm %%DATADIR%%/resources/ie.country
@dirrm %%DATADIR%%/resources/il.country
@dirrm %%DATADIR%%/resources/im.country
@dirrm %%DATADIR%%/resources/in.country
@dirrm %%DATADIR%%/resources/io.country
@dirrm %%DATADIR%%/resources/iq.country
@dirrm %%DATADIR%%/resources/ir.country
@dirrm %%DATADIR%%/resources/is.country
@dirrm %%DATADIR%%/resources/it.country
@dirrm %%DATADIR%%/resources/it.locale
@dirrm %%DATADIR%%/resources/ja.locale
@dirrm %%DATADIR%%/resources/je.country
@dirrm %%DATADIR%%/resources/jm.country
@dirrm %%DATADIR%%/resources/jo.country
@dirrm %%DATADIR%%/resources/jp.country
@dirrm %%DATADIR%%/resources/ke.country
@dirrm %%DATADIR%%/resources/kg.country
@dirrm %%DATADIR%%/resources/kh.country
@dirrm %%DATADIR%%/resources/ki.country
@dirrm %%DATADIR%%/resources/km.country
@dirrm %%DATADIR%%/resources/kn.country
@dirrm %%DATADIR%%/resources/ko.locale
@dirrm %%DATADIR%%/resources/kp.country
@dirrm %%DATADIR%%/resources/kr.country
@dirrm %%DATADIR%%/resources/kw.country
@dirrm %%DATADIR%%/resources/ky.country
@dirrm %%DATADIR%%/resources/kz.country
@dirrm %%DATADIR%%/resources/la.country
@dirrm %%DATADIR%%/resources/lb.country
@dirrm %%DATADIR%%/resources/lc.country
@dirrm %%DATADIR%%/resources/li.country
@dirrm %%DATADIR%%/resources/lk.country
@dirrm %%DATADIR%%/resources/lr.country
@dirrm %%DATADIR%%/resources/ls.country
@dirrm %%DATADIR%%/resources/lt.country
@dirrm %%DATADIR%%/resources/lu.country
@dirrm %%DATADIR%%/resources/lv.country
@dirrm %%DATADIR%%/resources/ly.country
@dirrm %%DATADIR%%/resources/ma.country
@dirrm %%DATADIR%%/resources/mc.country
@dirrm %%DATADIR%%/resources/md.country
@dirrm %%DATADIR%%/resources/me.country
@dirrm %%DATADIR%%/resources/mg.country
@dirrm %%DATADIR%%/resources/mh.country
@dirrm %%DATADIR%%/resources/mk.country
@dirrm %%DATADIR%%/resources/ml.country
@dirrm %%DATADIR%%/resources/mm.country
@dirrm %%DATADIR%%/resources/mn.country
@dirrm %%DATADIR%%/resources/mo.country
@dirrm %%DATADIR%%/resources/mp.country
@dirrm %%DATADIR%%/resources/mq.country
@dirrm %%DATADIR%%/resources/mr.country
@dirrm %%DATADIR%%/resources/ms.country
@dirrm %%DATADIR%%/resources/mt.country
@dirrm %%DATADIR%%/resources/mu.country
@dirrm %%DATADIR%%/resources/mv.country
@dirrm %%DATADIR%%/resources/mw.country
@dirrm %%DATADIR%%/resources/mx.country
@dirrm %%DATADIR%%/resources/my.country
@dirrm %%DATADIR%%/resources/mz.country
@dirrm %%DATADIR%%/resources/na.country
@dirrm %%DATADIR%%/resources/nc.country
@dirrm %%DATADIR%%/resources/ne.country
@dirrm %%DATADIR%%/resources/nf.country
@dirrm %%DATADIR%%/resources/ng.country
@dirrm %%DATADIR%%/resources/ni.country
@dirrm %%DATADIR%%/resources/nl.country
@dirrm %%DATADIR%%/resources/no.country
@dirrm %%DATADIR%%/resources/np.country
@dirrm %%DATADIR%%/resources/nr.country
@dirrm %%DATADIR%%/resources/nu.country
@dirrm %%DATADIR%%/resources/nz.country
@dirrm %%DATADIR%%/resources/om.country
@dirrm %%DATADIR%%/resources/pa.country
@dirrm %%DATADIR%%/resources/paddle
@dirrm %%DATADIR%%/resources/pe.country
@dirrm %%DATADIR%%/resources/pf.country
@dirrm %%DATADIR%%/resources/pg.country
@dirrm %%DATADIR%%/resources/ph.country
@dirrm %%DATADIR%%/resources/pk.country
@dirrm %%DATADIR%%/resources/pl.country
@dirrm %%DATADIR%%/resources/pm.country
@dirrm %%DATADIR%%/resources/pn.country
@dirrm %%DATADIR%%/resources/pr.country
@dirrm %%DATADIR%%/resources/ps.country
@dirrm %%DATADIR%%/resources/pt.country
@dirrm %%DATADIR%%/resources/pushpin
@dirrm %%DATADIR%%/resources/pw.country
@dirrm %%DATADIR%%/resources/py.country
@dirrm %%DATADIR%%/resources/qa.country
@dirrm %%DATADIR%%/resources/re.country
@dirrm %%DATADIR%%/resources/ro.country
@dirrm %%DATADIR%%/resources/rs.country
@dirrm %%DATADIR%%/resources/ru.country
@dirrm %%DATADIR%%/resources/ru.locale
@dirrm %%DATADIR%%/resources/rw.country
@dirrm %%DATADIR%%/resources/sa.country
@dirrm %%DATADIR%%/resources/sb.country
@dirrm %%DATADIR%%/resources/sc.country
@dirrm %%DATADIR%%/resources/sd.country
@dirrm %%DATADIR%%/resources/se.country
@dirrm %%DATADIR%%/resources/sg.country
@dirrm %%DATADIR%%/resources/sh.country
@dirrm %%DATADIR%%/resources/shapes
@dirrm %%DATADIR%%/resources/si.country
@dirrm %%DATADIR%%/resources/sj.country
@dirrm %%DATADIR%%/resources/sk.country
@dirrm %%DATADIR%%/resources/sl.country
@dirrm %%DATADIR%%/resources/sm.country
@dirrm %%DATADIR%%/resources/sn.country
@dirrm %%DATADIR%%/resources/so.country
@dirrm %%DATADIR%%/resources/sr.country
@dirrm %%DATADIR%%/resources/st.country
@dirrm %%DATADIR%%/resources/sv.country
@dirrm %%DATADIR%%/resources/sy.country
@dirrm %%DATADIR%%/resources/sz.country
@dirrm %%DATADIR%%/resources/tc.country
@dirrm %%DATADIR%%/resources/td.country
@dirrm %%DATADIR%%/resources/tf.country
@dirrm %%DATADIR%%/resources/tg.country
@dirrm %%DATADIR%%/resources/th.country
@dirrm %%DATADIR%%/resources/tj.country
@dirrm %%DATADIR%%/resources/tk.country
@dirrm %%DATADIR%%/resources/tl.country
@dirrm %%DATADIR%%/resources/tm.country
@dirrm %%DATADIR%%/resources/tn.country
@dirrm %%DATADIR%%/resources/to.country
@dirrm %%DATADIR%%/resources/tr.country
@dirrm %%DATADIR%%/resources/tt.country
@dirrm %%DATADIR%%/resources/tv.country
@dirrm %%DATADIR%%/resources/tw.country
@dirrm %%DATADIR%%/resources/tz.country
@dirrm %%DATADIR%%/resources/ua.country
@dirrm %%DATADIR%%/resources/ug.country
@dirrm %%DATADIR%%/resources/um.country
@dirrm %%DATADIR%%/resources/us.country
@dirrm %%DATADIR%%/resources/uy.country
@dirrm %%DATADIR%%/resources/uz.country
@dirrm %%DATADIR%%/resources/va.country
@dirrm %%DATADIR%%/resources/vc.country
@dirrm %%DATADIR%%/resources/ve.country
@dirrm %%DATADIR%%/resources/vg.country
@dirrm %%DATADIR%%/resources/vi.country
@dirrm %%DATADIR%%/resources/vn.country
@dirrm %%DATADIR%%/resources/vu.country
@dirrm %%DATADIR%%/resources/wf.country
@dirrm %%DATADIR%%/resources/ws.country
@dirrm %%DATADIR%%/resources/ye.country
@dirrm %%DATADIR%%/resources/yt.country
@dirrm %%DATADIR%%/resources/za.country
@dirrm %%DATADIR%%/resources/zh-Hant.locale
@dirrm %%DATADIR%%/resources/zm.country
@dirrm %%DATADIR%%/resources/zw.country
@dirrm %%DATADIR%%/resources
@dirrm %%DATADIR%%/xml
@dirrm %%DATADIR%%
@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime
@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime
@exec %%LOCALBASE%%/bin/update-desktop-database >/dev/null || true
@unexec %%LOCALBASE%%/bin/update-desktop-database >/dev/null || true