summaryrefslogtreecommitdiff
path: root/pyaxmlparser/resources/public.json
blob: 9fb8b909bd10290b4d96a055a215f6bcedbe0c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
{
    "attr": {
        "theme": 16842752,
        "label": 16842753,
        "icon": 16842754,
        "name": 16842755,
        "manageSpaceActivity": 16842756,
        "allowClearUserData": 16842757,
        "permission": 16842758,
        "readPermission": 16842759,
        "writePermission": 16842760,
        "protectionLevel": 16842761,
        "permissionGroup": 16842762,
        "sharedUserId": 16842763,
        "hasCode": 16842764,
        "persistent": 16842765,
        "enabled": 16842766,
        "debuggable": 16842767,
        "exported": 16842768,
        "process": 16842769,
        "taskAffinity": 16842770,
        "multiprocess": 16842771,
        "finishOnTaskLaunch": 16842772,
        "clearTaskOnLaunch": 16842773,
        "stateNotNeeded": 16842774,
        "excludeFromRecents": 16842775,
        "authorities": 16842776,
        "syncable": 16842777,
        "initOrder": 16842778,
        "grantUriPermissions": 16842779,
        "priority": 16842780,
        "launchMode": 16842781,
        "screenOrientation": 16842782,
        "configChanges": 16842783,
        "description": 16842784,
        "targetPackage": 16842785,
        "handleProfiling": 16842786,
        "functionalTest": 16842787,
        "value": 16842788,
        "resource": 16842789,
        "mimeType": 16842790,
        "scheme": 16842791,
        "host": 16842792,
        "port": 16842793,
        "path": 16842794,
        "pathPrefix": 16842795,
        "pathPattern": 16842796,
        "action": 16842797,
        "data": 16842798,
        "targetClass": 16842799,
        "colorForeground": 16842800,
        "colorBackground": 16842801,
        "backgroundDimAmount": 16842802,
        "disabledAlpha": 16842803,
        "textAppearance": 16842804,
        "textAppearanceInverse": 16842805,
        "textColorPrimary": 16842806,
        "textColorPrimaryDisableOnly": 16842807,
        "textColorSecondary": 16842808,
        "textColorPrimaryInverse": 16842809,
        "textColorSecondaryInverse": 16842810,
        "textColorPrimaryNoDisable": 16842811,
        "textColorSecondaryNoDisable": 16842812,
        "textColorPrimaryInverseNoDisable": 16842813,
        "textColorSecondaryInverseNoDisable": 16842814,
        "textColorHintInverse": 16842815,
        "textAppearanceLarge": 16842816,
        "textAppearanceMedium": 16842817,
        "textAppearanceSmall": 16842818,
        "textAppearanceLargeInverse": 16842819,
        "textAppearanceMediumInverse": 16842820,
        "textAppearanceSmallInverse": 16842821,
        "textCheckMark": 16842822,
        "textCheckMarkInverse": 16842823,
        "buttonStyle": 16842824,
        "buttonStyleSmall": 16842825,
        "buttonStyleInset": 16842826,
        "buttonStyleToggle": 16842827,
        "galleryItemBackground": 16842828,
        "listPreferredItemHeight": 16842829,
        "expandableListPreferredItemPaddingLeft": 16842830,
        "expandableListPreferredChildPaddingLeft": 16842831,
        "expandableListPreferredItemIndicatorLeft": 16842832,
        "expandableListPreferredItemIndicatorRight": 16842833,
        "expandableListPreferredChildIndicatorLeft": 16842834,
        "expandableListPreferredChildIndicatorRight": 16842835,
        "windowBackground": 16842836,
        "windowFrame": 16842837,
        "windowNoTitle": 16842838,
        "windowIsFloating": 16842839,
        "windowIsTranslucent": 16842840,
        "windowContentOverlay": 16842841,
        "windowTitleSize": 16842842,
        "windowTitleStyle": 16842843,
        "windowTitleBackgroundStyle": 16842844,
        "alertDialogStyle": 16842845,
        "panelBackground": 16842846,
        "panelFullBackground": 16842847,
        "panelColorForeground": 16842848,
        "panelColorBackground": 16842849,
        "panelTextAppearance": 16842850,
        "scrollbarSize": 16842851,
        "scrollbarThumbHorizontal": 16842852,
        "scrollbarThumbVertical": 16842853,
        "scrollbarTrackHorizontal": 16842854,
        "scrollbarTrackVertical": 16842855,
        "scrollbarAlwaysDrawHorizontalTrack": 16842856,
        "scrollbarAlwaysDrawVerticalTrack": 16842857,
        "absListViewStyle": 16842858,
        "autoCompleteTextViewStyle": 16842859,
        "checkboxStyle": 16842860,
        "dropDownListViewStyle": 16842861,
        "editTextStyle": 16842862,
        "expandableListViewStyle": 16842863,
        "galleryStyle": 16842864,
        "gridViewStyle": 16842865,
        "imageButtonStyle": 16842866,
        "imageWellStyle": 16842867,
        "listViewStyle": 16842868,
        "listViewWhiteStyle": 16842869,
        "popupWindowStyle": 16842870,
        "progressBarStyle": 16842871,
        "progressBarStyleHorizontal": 16842872,
        "progressBarStyleSmall": 16842873,
        "progressBarStyleLarge": 16842874,
        "seekBarStyle": 16842875,
        "ratingBarStyle": 16842876,
        "ratingBarStyleSmall": 16842877,
        "radioButtonStyle": 16842878,
        "scrollbarStyle": 16842879,
        "scrollViewStyle": 16842880,
        "spinnerStyle": 16842881,
        "starStyle": 16842882,
        "tabWidgetStyle": 16842883,
        "textViewStyle": 16842884,
        "webViewStyle": 16842885,
        "dropDownItemStyle": 16842886,
        "spinnerDropDownItemStyle": 16842887,
        "dropDownHintAppearance": 16842888,
        "spinnerItemStyle": 16842889,
        "mapViewStyle": 16842890,
        "preferenceScreenStyle": 16842891,
        "preferenceCategoryStyle": 16842892,
        "preferenceInformationStyle": 16842893,
        "preferenceStyle": 16842894,
        "checkBoxPreferenceStyle": 16842895,
        "yesNoPreferenceStyle": 16842896,
        "dialogPreferenceStyle": 16842897,
        "editTextPreferenceStyle": 16842898,
        "ringtonePreferenceStyle": 16842899,
        "preferenceLayoutChild": 16842900,
        "textSize": 16842901,
        "typeface": 16842902,
        "textStyle": 16842903,
        "textColor": 16842904,
        "textColorHighlight": 16842905,
        "textColorHint": 16842906,
        "textColorLink": 16842907,
        "state_focused": 16842908,
        "state_window_focused": 16842909,
        "state_enabled": 16842910,
        "state_checkable": 16842911,
        "state_checked": 16842912,
        "state_selected": 16842913,
        "state_active": 16842914,
        "state_single": 16842915,
        "state_first": 16842916,
        "state_middle": 16842917,
        "state_last": 16842918,
        "state_pressed": 16842919,
        "state_expanded": 16842920,
        "state_empty": 16842921,
        "state_above_anchor": 16842922,
        "ellipsize": 16842923,
        "x": 16842924,
        "y": 16842925,
        "windowAnimationStyle": 16842926,
        "gravity": 16842927,
        "autoLink": 16842928,
        "linksClickable": 16842929,
        "entries": 16842930,
        "layout_gravity": 16842931,
        "windowEnterAnimation": 16842932,
        "windowExitAnimation": 16842933,
        "windowShowAnimation": 16842934,
        "windowHideAnimation": 16842935,
        "activityOpenEnterAnimation": 16842936,
        "activityOpenExitAnimation": 16842937,
        "activityCloseEnterAnimation": 16842938,
        "activityCloseExitAnimation": 16842939,
        "taskOpenEnterAnimation": 16842940,
        "taskOpenExitAnimation": 16842941,
        "taskCloseEnterAnimation": 16842942,
        "taskCloseExitAnimation": 16842943,
        "taskToFrontEnterAnimation": 16842944,
        "taskToFrontExitAnimation": 16842945,
        "taskToBackEnterAnimation": 16842946,
        "taskToBackExitAnimation": 16842947,
        "orientation": 16842948,
        "keycode": 16842949,
        "fullDark": 16842950,
        "topDark": 16842951,
        "centerDark": 16842952,
        "bottomDark": 16842953,
        "fullBright": 16842954,
        "topBright": 16842955,
        "centerBright": 16842956,
        "bottomBright": 16842957,
        "bottomMedium": 16842958,
        "centerMedium": 16842959,
        "id": 16842960,
        "tag": 16842961,
        "scrollX": 16842962,
        "scrollY": 16842963,
        "background": 16842964,
        "padding": 16842965,
        "paddingLeft": 16842966,
        "paddingTop": 16842967,
        "paddingRight": 16842968,
        "paddingBottom": 16842969,
        "focusable": 16842970,
        "focusableInTouchMode": 16842971,
        "visibility": 16842972,
        "fitsSystemWindows": 16842973,
        "scrollbars": 16842974,
        "fadingEdge": 16842975,
        "fadingEdgeLength": 16842976,
        "nextFocusLeft": 16842977,
        "nextFocusRight": 16842978,
        "nextFocusUp": 16842979,
        "nextFocusDown": 16842980,
        "clickable": 16842981,
        "longClickable": 16842982,
        "saveEnabled": 16842983,
        "drawingCacheQuality": 16842984,
        "duplicateParentState": 16842985,
        "clipChildren": 16842986,
        "clipToPadding": 16842987,
        "layoutAnimation": 16842988,
        "animationCache": 16842989,
        "persistentDrawingCache": 16842990,
        "alwaysDrawnWithCache": 16842991,
        "addStatesFromChildren": 16842992,
        "descendantFocusability": 16842993,
        "layout": 16842994,
        "inflatedId": 16842995,
        "layout_width": 16842996,
        "layout_height": 16842997,
        "layout_margin": 16842998,
        "layout_marginLeft": 16842999,
        "layout_marginTop": 16843000,
        "layout_marginRight": 16843001,
        "layout_marginBottom": 16843002,
        "listSelector": 16843003,
        "drawSelectorOnTop": 16843004,
        "stackFromBottom": 16843005,
        "scrollingCache": 16843006,
        "textFilterEnabled": 16843007,
        "transcriptMode": 16843008,
        "cacheColorHint": 16843009,
        "dial": 16843010,
        "hand_hour": 16843011,
        "hand_minute": 16843012,
        "format": 16843013,
        "checked": 16843014,
        "button": 16843015,
        "checkMark": 16843016,
        "foreground": 16843017,
        "measureAllChildren": 16843018,
        "groupIndicator": 16843019,
        "childIndicator": 16843020,
        "indicatorLeft": 16843021,
        "indicatorRight": 16843022,
        "childIndicatorLeft": 16843023,
        "childIndicatorRight": 16843024,
        "childDivider": 16843025,
        "animationDuration": 16843026,
        "spacing": 16843027,
        "horizontalSpacing": 16843028,
        "verticalSpacing": 16843029,
        "stretchMode": 16843030,
        "columnWidth": 16843031,
        "numColumns": 16843032,
        "src": 16843033,
        "antialias": 16843034,
        "filter": 16843035,
        "dither": 16843036,
        "scaleType": 16843037,
        "adjustViewBounds": 16843038,
        "maxWidth": 16843039,
        "maxHeight": 16843040,
        "tint": 16843041,
        "baselineAlignBottom": 16843042,
        "cropToPadding": 16843043,
        "textOn": 16843044,
        "textOff": 16843045,
        "baselineAligned": 16843046,
        "baselineAlignedChildIndex": 16843047,
        "weightSum": 16843048,
        "divider": 16843049,
        "dividerHeight": 16843050,
        "choiceMode": 16843051,
        "itemTextAppearance": 16843052,
        "horizontalDivider": 16843053,
        "verticalDivider": 16843054,
        "headerBackground": 16843055,
        "itemBackground": 16843056,
        "itemIconDisabledAlpha": 16843057,
        "rowHeight": 16843058,
        "maxRows": 16843059,
        "maxItemsPerRow": 16843060,
        "moreIcon": 16843061,
        "max": 16843062,
        "progress": 16843063,
        "secondaryProgress": 16843064,
        "indeterminate": 16843065,
        "indeterminateOnly": 16843066,
        "indeterminateDrawable": 16843067,
        "progressDrawable": 16843068,
        "indeterminateDuration": 16843069,
        "indeterminateBehavior": 16843070,
        "minWidth": 16843071,
        "minHeight": 16843072,
        "interpolator": 16843073,
        "thumb": 16843074,
        "thumbOffset": 16843075,
        "numStars": 16843076,
        "rating": 16843077,
        "stepSize": 16843078,
        "isIndicator": 16843079,
        "checkedButton": 16843080,
        "stretchColumns": 16843081,
        "shrinkColumns": 16843082,
        "collapseColumns": 16843083,
        "layout_column": 16843084,
        "layout_span": 16843085,
        "bufferType": 16843086,
        "text": 16843087,
        "hint": 16843088,
        "textScaleX": 16843089,
        "cursorVisible": 16843090,
        "maxLines": 16843091,
        "lines": 16843092,
        "height": 16843093,
        "minLines": 16843094,
        "maxEms": 16843095,
        "ems": 16843096,
        "width": 16843097,
        "minEms": 16843098,
        "scrollHorizontally": 16843099,
        "password": 16843100,
        "singleLine": 16843101,
        "selectAllOnFocus": 16843102,
        "includeFontPadding": 16843103,
        "maxLength": 16843104,
        "shadowColor": 16843105,
        "shadowDx": 16843106,
        "shadowDy": 16843107,
        "shadowRadius": 16843108,
        "numeric": 16843109,
        "digits": 16843110,
        "phoneNumber": 16843111,
        "inputMethod": 16843112,
        "capitalize": 16843113,
        "autoText": 16843114,
        "editable": 16843115,
        "freezesText": 16843116,
        "drawableTop": 16843117,
        "drawableBottom": 16843118,
        "drawableLeft": 16843119,
        "drawableRight": 16843120,
        "drawablePadding": 16843121,
        "completionHint": 16843122,
        "completionHintView": 16843123,
        "completionThreshold": 16843124,
        "dropDownSelector": 16843125,
        "popupBackground": 16843126,
        "inAnimation": 16843127,
        "outAnimation": 16843128,
        "flipInterval": 16843129,
        "fillViewport": 16843130,
        "prompt": 16843131,
        "startYear": 16843132,
        "endYear": 16843133,
        "mode": 16843134,
        "layout_x": 16843135,
        "layout_y": 16843136,
        "layout_weight": 16843137,
        "layout_toLeftOf": 16843138,
        "layout_toRightOf": 16843139,
        "layout_above": 16843140,
        "layout_below": 16843141,
        "layout_alignBaseline": 16843142,
        "layout_alignLeft": 16843143,
        "layout_alignTop": 16843144,
        "layout_alignRight": 16843145,
        "layout_alignBottom": 16843146,
        "layout_alignParentLeft": 16843147,
        "layout_alignParentTop": 16843148,
        "layout_alignParentRight": 16843149,
        "layout_alignParentBottom": 16843150,
        "layout_centerInParent": 16843151,
        "layout_centerHorizontal": 16843152,
        "layout_centerVertical": 16843153,
        "layout_alignWithParentIfMissing": 16843154,
        "layout_scale": 16843155,
        "visible": 16843156,
        "variablePadding": 16843157,
        "constantSize": 16843158,
        "oneshot": 16843159,
        "duration": 16843160,
        "drawable": 16843161,
        "shape": 16843162,
        "innerRadiusRatio": 16843163,
        "thicknessRatio": 16843164,
        "startColor": 16843165,
        "endColor": 16843166,
        "useLevel": 16843167,
        "angle": 16843168,
        "type": 16843169,
        "centerX": 16843170,
        "centerY": 16843171,
        "gradientRadius": 16843172,
        "color": 16843173,
        "dashWidth": 16843174,
        "dashGap": 16843175,
        "radius": 16843176,
        "topLeftRadius": 16843177,
        "topRightRadius": 16843178,
        "bottomLeftRadius": 16843179,
        "bottomRightRadius": 16843180,
        "left": 16843181,
        "top": 16843182,
        "right": 16843183,
        "bottom": 16843184,
        "minLevel": 16843185,
        "maxLevel": 16843186,
        "fromDegrees": 16843187,
        "toDegrees": 16843188,
        "pivotX": 16843189,
        "pivotY": 16843190,
        "insetLeft": 16843191,
        "insetRight": 16843192,
        "insetTop": 16843193,
        "insetBottom": 16843194,
        "shareInterpolator": 16843195,
        "fillBefore": 16843196,
        "fillAfter": 16843197,
        "startOffset": 16843198,
        "repeatCount": 16843199,
        "repeatMode": 16843200,
        "zAdjustment": 16843201,
        "fromXScale": 16843202,
        "toXScale": 16843203,
        "fromYScale": 16843204,
        "toYScale": 16843205,
        "fromXDelta": 16843206,
        "toXDelta": 16843207,
        "fromYDelta": 16843208,
        "toYDelta": 16843209,
        "fromAlpha": 16843210,
        "toAlpha": 16843211,
        "delay": 16843212,
        "animation": 16843213,
        "animationOrder": 16843214,
        "columnDelay": 16843215,
        "rowDelay": 16843216,
        "direction": 16843217,
        "directionPriority": 16843218,
        "factor": 16843219,
        "cycles": 16843220,
        "searchMode": 16843221,
        "searchSuggestAuthority": 16843222,
        "searchSuggestPath": 16843223,
        "searchSuggestSelection": 16843224,
        "searchSuggestIntentAction": 16843225,
        "searchSuggestIntentData": 16843226,
        "queryActionMsg": 16843227,
        "suggestActionMsg": 16843228,
        "suggestActionMsgColumn": 16843229,
        "menuCategory": 16843230,
        "orderInCategory": 16843231,
        "checkableBehavior": 16843232,
        "title": 16843233,
        "titleCondensed": 16843234,
        "alphabeticShortcut": 16843235,
        "numericShortcut": 16843236,
        "checkable": 16843237,
        "selectable": 16843238,
        "orderingFromXml": 16843239,
        "key": 16843240,
        "summary": 16843241,
        "order": 16843242,
        "widgetLayout": 16843243,
        "dependency": 16843244,
        "defaultValue": 16843245,
        "shouldDisableView": 16843246,
        "summaryOn": 16843247,
        "summaryOff": 16843248,
        "disableDependentsState": 16843249,
        "dialogTitle": 16843250,
        "dialogMessage": 16843251,
        "dialogIcon": 16843252,
        "positiveButtonText": 16843253,
        "negativeButtonText": 16843254,
        "dialogLayout": 16843255,
        "entryValues": 16843256,
        "ringtoneType": 16843257,
        "showDefault": 16843258,
        "showSilent": 16843259,
        "scaleWidth": 16843260,
        "scaleHeight": 16843261,
        "scaleGravity": 16843262,
        "ignoreGravity": 16843263,
        "foregroundGravity": 16843264,
        "tileMode": 16843265,
        "targetActivity": 16843266,
        "alwaysRetainTaskState": 16843267,
        "allowTaskReparenting": 16843268,
        "searchButtonText": 16843269,
        "colorForegroundInverse": 16843270,
        "textAppearanceButton": 16843271,
        "listSeparatorTextViewStyle": 16843272,
        "streamType": 16843273,
        "clipOrientation": 16843274,
        "centerColor": 16843275,
        "minSdkVersion": 16843276,
        "windowFullscreen": 16843277,
        "unselectedAlpha": 16843278,
        "progressBarStyleSmallTitle": 16843279,
        "ratingBarStyleIndicator": 16843280,
        "apiKey": 16843281,
        "textColorTertiary": 16843282,
        "textColorTertiaryInverse": 16843283,
        "listDivider": 16843284,
        "soundEffectsEnabled": 16843285,
        "keepScreenOn": 16843286,
        "lineSpacingExtra": 16843287,
        "lineSpacingMultiplier": 16843288,
        "listChoiceIndicatorSingle": 16843289,
        "listChoiceIndicatorMultiple": 16843290,
        "versionCode": 16843291,
        "versionName": 16843292,
        "marqueeRepeatLimit": 16843293,
        "windowNoDisplay": 16843294,
        "backgroundDimEnabled": 16843295,
        "inputType": 16843296,
        "isDefault": 16843297,
        "windowDisablePreview": 16843298,
        "privateImeOptions": 16843299,
        "editorExtras": 16843300,
        "settingsActivity": 16843301,
        "fastScrollEnabled": 16843302,
        "reqTouchScreen": 16843303,
        "reqKeyboardType": 16843304,
        "reqHardKeyboard": 16843305,
        "reqNavigation": 16843306,
        "windowSoftInputMode": 16843307,
        "imeFullscreenBackground": 16843308,
        "noHistory": 16843309,
        "headerDividersEnabled": 16843310,
        "footerDividersEnabled": 16843311,
        "candidatesTextStyleSpans": 16843312,
        "smoothScrollbar": 16843313,
        "reqFiveWayNav": 16843314,
        "keyBackground": 16843315,
        "keyTextSize": 16843316,
        "labelTextSize": 16843317,
        "keyTextColor": 16843318,
        "keyPreviewLayout": 16843319,
        "keyPreviewOffset": 16843320,
        "keyPreviewHeight": 16843321,
        "verticalCorrection": 16843322,
        "popupLayout": 16843323,
        "state_long_pressable": 16843324,
        "keyWidth": 16843325,
        "keyHeight": 16843326,
        "horizontalGap": 16843327,
        "verticalGap": 16843328,
        "rowEdgeFlags": 16843329,
        "codes": 16843330,
        "popupKeyboard": 16843331,
        "popupCharacters": 16843332,
        "keyEdgeFlags": 16843333,
        "isModifier": 16843334,
        "isSticky": 16843335,
        "isRepeatable": 16843336,
        "iconPreview": 16843337,
        "keyOutputText": 16843338,
        "keyLabel": 16843339,
        "keyIcon": 16843340,
        "keyboardMode": 16843341,
        "isScrollContainer": 16843342,
        "fillEnabled": 16843343,
        "updatePeriodMillis": 16843344,
        "initialLayout": 16843345,
        "voiceSearchMode": 16843346,
        "voiceLanguageModel": 16843347,
        "voicePromptText": 16843348,
        "voiceLanguage": 16843349,
        "voiceMaxResults": 16843350,
        "bottomOffset": 16843351,
        "topOffset": 16843352,
        "allowSingleTap": 16843353,
        "handle": 16843354,
        "content": 16843355,
        "animateOnClick": 16843356,
        "configure": 16843357,
        "hapticFeedbackEnabled": 16843358,
        "innerRadius": 16843359,
        "thickness": 16843360,
        "sharedUserLabel": 16843361,
        "dropDownWidth": 16843362,
        "dropDownAnchor": 16843363,
        "imeOptions": 16843364,
        "imeActionLabel": 16843365,
        "imeActionId": 16843366,
        "imeExtractEnterAnimation": 16843368,
        "imeExtractExitAnimation": 16843369,
        "tension": 16843370,
        "extraTension": 16843371,
        "anyDensity": 16843372,
        "searchSuggestThreshold": 16843373,
        "includeInGlobalSearch": 16843374,
        "onClick": 16843375,
        "targetSdkVersion": 16843376,
        "maxSdkVersion": 16843377,
        "testOnly": 16843378,
        "contentDescription": 16843379,
        "gestureStrokeWidth": 16843380,
        "gestureColor": 16843381,
        "uncertainGestureColor": 16843382,
        "fadeOffset": 16843383,
        "fadeDuration": 16843384,
        "gestureStrokeType": 16843385,
        "gestureStrokeLengthThreshold": 16843386,
        "gestureStrokeSquarenessThreshold": 16843387,
        "gestureStrokeAngleThreshold": 16843388,
        "eventsInterceptionEnabled": 16843389,
        "fadeEnabled": 16843390,
        "backupAgent": 16843391,
        "allowBackup": 16843392,
        "glEsVersion": 16843393,
        "queryAfterZeroResults": 16843394,
        "dropDownHeight": 16843395,
        "smallScreens": 16843396,
        "normalScreens": 16843397,
        "largeScreens": 16843398,
        "progressBarStyleInverse": 16843399,
        "progressBarStyleSmallInverse": 16843400,
        "progressBarStyleLargeInverse": 16843401,
        "searchSettingsDescription": 16843402,
        "textColorPrimaryInverseDisableOnly": 16843403,
        "autoUrlDetect": 16843404,
        "resizeable": 16843405,
        "required": 16843406,
        "accountType": 16843407,
        "contentAuthority": 16843408,
        "userVisible": 16843409,
        "windowShowWallpaper": 16843410,
        "wallpaperOpenEnterAnimation": 16843411,
        "wallpaperOpenExitAnimation": 16843412,
        "wallpaperCloseEnterAnimation": 16843413,
        "wallpaperCloseExitAnimation": 16843414,
        "wallpaperIntraOpenEnterAnimation": 16843415,
        "wallpaperIntraOpenExitAnimation": 16843416,
        "wallpaperIntraCloseEnterAnimation": 16843417,
        "wallpaperIntraCloseExitAnimation": 16843418,
        "supportsUploading": 16843419,
        "killAfterRestore": 16843420,
        "restoreNeedsApplication": 16843421,
        "smallIcon": 16843422,
        "accountPreferences": 16843423,
        "textAppearanceSearchResultSubtitle": 16843424,
        "textAppearanceSearchResultTitle": 16843425,
        "summaryColumn": 16843426,
        "detailColumn": 16843427,
        "detailSocialSummary": 16843428,
        "thumbnail": 16843429,
        "detachWallpaper": 16843430,
        "finishOnCloseSystemDialogs": 16843431,
        "scrollbarFadeDuration": 16843432,
        "scrollbarDefaultDelayBeforeFade": 16843433,
        "fadeScrollbars": 16843434,
        "colorBackgroundCacheHint": 16843435,
        "dropDownHorizontalOffset": 16843436,
        "dropDownVerticalOffset": 16843437,
        "quickContactBadgeStyleWindowSmall": 16843438,
        "quickContactBadgeStyleWindowMedium": 16843439,
        "quickContactBadgeStyleWindowLarge": 16843440,
        "quickContactBadgeStyleSmallWindowSmall": 16843441,
        "quickContactBadgeStyleSmallWindowMedium": 16843442,
        "quickContactBadgeStyleSmallWindowLarge": 16843443,
        "author": 16843444,
        "autoStart": 16843445,
        "expandableListViewWhiteStyle": 16843446,
        "installLocation": 16843447,
        "vmSafeMode": 16843448,
        "webTextViewStyle": 16843449,
        "restoreAnyVersion": 16843450,
        "tabStripLeft": 16843451,
        "tabStripRight": 16843452,
        "tabStripEnabled": 16843453,
        "logo": 16843454,
        "xlargeScreens": 16843455,
        "immersive": 16843456,
        "overScrollMode": 16843457,
        "overScrollHeader": 16843458,
        "overScrollFooter": 16843459,
        "filterTouchesWhenObscured": 16843460,
        "textSelectHandleLeft": 16843461,
        "textSelectHandleRight": 16843462,
        "textSelectHandle": 16843463,
        "textSelectHandleWindowStyle": 16843464,
        "popupAnimationStyle": 16843465,
        "screenSize": 16843466,
        "screenDensity": 16843467,
        "allContactsName": 16843468,
        "windowActionBar": 16843469,
        "actionBarStyle": 16843470,
        "navigationMode": 16843471,
        "displayOptions": 16843472,
        "subtitle": 16843473,
        "customNavigationLayout": 16843474,
        "hardwareAccelerated": 16843475,
        "measureWithLargestChild": 16843476,
        "animateFirstView": 16843477,
        "dropDownSpinnerStyle": 16843478,
        "actionDropDownStyle": 16843479,
        "actionButtonStyle": 16843480,
        "showAsAction": 16843481,
        "previewImage": 16843482,
        "actionModeBackground": 16843483,
        "actionModeCloseDrawable": 16843484,
        "windowActionModeOverlay": 16843485,
        "valueFrom": 16843486,
        "valueTo": 16843487,
        "valueType": 16843488,
        "propertyName": 16843489,
        "ordering": 16843490,
        "fragment": 16843491,
        "windowActionBarOverlay": 16843492,
        "fragmentOpenEnterAnimation": 16843493,
        "fragmentOpenExitAnimation": 16843494,
        "fragmentCloseEnterAnimation": 16843495,
        "fragmentCloseExitAnimation": 16843496,
        "fragmentFadeEnterAnimation": 16843497,
        "fragmentFadeExitAnimation": 16843498,
        "actionBarSize": 16843499,
        "imeSubtypeLocale": 16843500,
        "imeSubtypeMode": 16843501,
        "imeSubtypeExtraValue": 16843502,
        "splitMotionEvents": 16843503,
        "listChoiceBackgroundIndicator": 16843504,
        "spinnerMode": 16843505,
        "animateLayoutChanges": 16843506,
        "actionBarTabStyle": 16843507,
        "actionBarTabBarStyle": 16843508,
        "actionBarTabTextStyle": 16843509,
        "actionOverflowButtonStyle": 16843510,
        "actionModeCloseButtonStyle": 16843511,
        "titleTextStyle": 16843512,
        "subtitleTextStyle": 16843513,
        "iconifiedByDefault": 16843514,
        "actionLayout": 16843515,
        "actionViewClass": 16843516,
        "activatedBackgroundIndicator": 16843517,
        "state_activated": 16843518,
        "listPopupWindowStyle": 16843519,
        "popupMenuStyle": 16843520,
        "textAppearanceLargePopupMenu": 16843521,
        "textAppearanceSmallPopupMenu": 16843522,
        "breadCrumbTitle": 16843523,
        "breadCrumbShortTitle": 16843524,
        "listDividerAlertDialog": 16843525,
        "textColorAlertDialogListItem": 16843526,
        "loopViews": 16843527,
        "dialogTheme": 16843528,
        "alertDialogTheme": 16843529,
        "dividerVertical": 16843530,
        "homeAsUpIndicator": 16843531,
        "enterFadeDuration": 16843532,
        "exitFadeDuration": 16843533,
        "selectableItemBackground": 16843534,
        "autoAdvanceViewId": 16843535,
        "useIntrinsicSizeAsMinimum": 16843536,
        "actionModeCutDrawable": 16843537,
        "actionModeCopyDrawable": 16843538,
        "actionModePasteDrawable": 16843539,
        "textEditPasteWindowLayout": 16843540,
        "textEditNoPasteWindowLayout": 16843541,
        "textIsSelectable": 16843542,
        "windowEnableSplitTouch": 16843543,
        "indeterminateProgressStyle": 16843544,
        "progressBarPadding": 16843545,
        "animationResolution": 16843546,
        "state_accelerated": 16843547,
        "baseline": 16843548,
        "homeLayout": 16843549,
        "opacity": 16843550,
        "alpha": 16843551,
        "transformPivotX": 16843552,
        "transformPivotY": 16843553,
        "translationX": 16843554,
        "translationY": 16843555,
        "scaleX": 16843556,
        "scaleY": 16843557,
        "rotation": 16843558,
        "rotationX": 16843559,
        "rotationY": 16843560,
        "showDividers": 16843561,
        "dividerPadding": 16843562,
        "borderlessButtonStyle": 16843563,
        "dividerHorizontal": 16843564,
        "itemPadding": 16843565,
        "buttonBarStyle": 16843566,
        "buttonBarButtonStyle": 16843567,
        "segmentedButtonStyle": 16843568,
        "staticWallpaperPreview": 16843569,
        "allowParallelSyncs": 16843570,
        "isAlwaysSyncable": 16843571,
        "verticalScrollbarPosition": 16843572,
        "fastScrollAlwaysVisible": 16843573,
        "fastScrollThumbDrawable": 16843574,
        "fastScrollPreviewBackgroundLeft": 16843575,
        "fastScrollPreviewBackgroundRight": 16843576,
        "fastScrollTrackDrawable": 16843577,
        "fastScrollOverlayPosition": 16843578,
        "customTokens": 16843579,
        "nextFocusForward": 16843580,
        "firstDayOfWeek": 16843581,
        "showWeekNumber": 16843582,
        "minDate": 16843583,
        "maxDate": 16843584,
        "shownWeekCount": 16843585,
        "selectedWeekBackgroundColor": 16843586,
        "focusedMonthDateColor": 16843587,
        "unfocusedMonthDateColor": 16843588,
        "weekNumberColor": 16843589,
        "weekSeparatorLineColor": 16843590,
        "selectedDateVerticalBar": 16843591,
        "weekDayTextAppearance": 16843592,
        "dateTextAppearance": 16843593,
        "solidColor": 16843594,
        "spinnersShown": 16843595,
        "calendarViewShown": 16843596,
        "state_multiline": 16843597,
        "detailsElementBackground": 16843598,
        "textColorHighlightInverse": 16843599,
        "textColorLinkInverse": 16843600,
        "editTextColor": 16843601,
        "editTextBackground": 16843602,
        "horizontalScrollViewStyle": 16843603,
        "layerType": 16843604,
        "alertDialogIcon": 16843605,
        "windowMinWidthMajor": 16843606,
        "windowMinWidthMinor": 16843607,
        "queryHint": 16843608,
        "fastScrollTextColor": 16843609,
        "largeHeap": 16843610,
        "windowCloseOnTouchOutside": 16843611,
        "datePickerStyle": 16843612,
        "calendarViewStyle": 16843613,
        "textEditSidePasteWindowLayout": 16843614,
        "textEditSideNoPasteWindowLayout": 16843615,
        "actionMenuTextAppearance": 16843616,
        "actionMenuTextColor": 16843617,
        "textCursorDrawable": 16843618,
        "resizeMode": 16843619,
        "requiresSmallestWidthDp": 16843620,
        "compatibleWidthLimitDp": 16843621,
        "largestWidthLimitDp": 16843622,
        "state_hovered": 16843623,
        "state_drag_can_accept": 16843624,
        "state_drag_hovered": 16843625,
        "stopWithTask": 16843626,
        "switchTextOn": 16843627,
        "switchTextOff": 16843628,
        "switchPreferenceStyle": 16843629,
        "switchTextAppearance": 16843630,
        "track": 16843631,
        "switchMinWidth": 16843632,
        "switchPadding": 16843633,
        "thumbTextPadding": 16843634,
        "textSuggestionsWindowStyle": 16843635,
        "textEditSuggestionItemLayout": 16843636,
        "rowCount": 16843637,
        "rowOrderPreserved": 16843638,
        "columnCount": 16843639,
        "columnOrderPreserved": 16843640,
        "useDefaultMargins": 16843641,
        "alignmentMode": 16843642,
        "layout_row": 16843643,
        "layout_rowSpan": 16843644,
        "layout_columnSpan": 16843645,
        "actionModeSelectAllDrawable": 16843646,
        "isAuxiliary": 16843647,
        "accessibilityEventTypes": 16843648,
        "packageNames": 16843649,
        "accessibilityFeedbackType": 16843650,
        "notificationTimeout": 16843651,
        "accessibilityFlags": 16843652,
        "canRetrieveWindowContent": 16843653,
        "listPreferredItemHeightLarge": 16843654,
        "listPreferredItemHeightSmall": 16843655,
        "actionBarSplitStyle": 16843656,
        "actionProviderClass": 16843657,
        "backgroundStacked": 16843658,
        "backgroundSplit": 16843659,
        "textAllCaps": 16843660,
        "colorPressedHighlight": 16843661,
        "colorLongPressedHighlight": 16843662,
        "colorFocusedHighlight": 16843663,
        "colorActivatedHighlight": 16843664,
        "colorMultiSelectHighlight": 16843665,
        "drawableStart": 16843666,
        "drawableEnd": 16843667,
        "actionModeStyle": 16843668,
        "minResizeWidth": 16843669,
        "minResizeHeight": 16843670,
        "actionBarWidgetTheme": 16843671,
        "uiOptions": 16843672,
        "subtypeLocale": 16843673,
        "subtypeExtraValue": 16843674,
        "actionBarDivider": 16843675,
        "actionBarItemBackground": 16843676,
        "actionModeSplitBackground": 16843677,
        "textAppearanceListItem": 16843678,
        "textAppearanceListItemSmall": 16843679,
        "targetDescriptions": 16843680,
        "directionDescriptions": 16843681,
        "overridesImplicitlyEnabledSubtype": 16843682,
        "listPreferredItemPaddingLeft": 16843683,
        "listPreferredItemPaddingRight": 16843684,
        "requiresFadingEdge": 16843685,
        "publicKey": 16843686,
        "parentActivityName": 16843687,
        "isolatedProcess": 16843689,
        "importantForAccessibility": 16843690,
        "keyboardLayout": 16843691,
        "fontFamily": 16843692,
        "mediaRouteButtonStyle": 16843693,
        "mediaRouteTypes": 16843694,
        "supportsRtl": 16843695,
        "textDirection": 16843696,
        "textAlignment": 16843697,
        "layoutDirection": 16843698,
        "paddingStart": 16843699,
        "paddingEnd": 16843700,
        "layout_marginStart": 16843701,
        "layout_marginEnd": 16843702,
        "layout_toStartOf": 16843703,
        "layout_toEndOf": 16843704,
        "layout_alignStart": 16843705,
        "layout_alignEnd": 16843706,
        "layout_alignParentStart": 16843707,
        "layout_alignParentEnd": 16843708,
        "listPreferredItemPaddingStart": 16843709,
        "listPreferredItemPaddingEnd": 16843710,
        "singleUser": 16843711,
        "presentationTheme": 16843712,
        "subtypeId": 16843713,
        "initialKeyguardLayout": 16843714,
        "widgetCategory": 16843716,
        "permissionGroupFlags": 16843717,
        "labelFor": 16843718,
        "permissionFlags": 16843719,
        "checkedTextViewStyle": 16843720,
        "showOnLockScreen": 16843721,
        "format12Hour": 16843722,
        "format24Hour": 16843723,
        "timeZone": 16843724,
        "mipMap": 16843725,
        "mirrorForRtl": 16843726,
        "windowOverscan": 16843727,
        "requiredForAllUsers": 16843728,
        "indicatorStart": 16843729,
        "indicatorEnd": 16843730,
        "childIndicatorStart": 16843731,
        "childIndicatorEnd": 16843732,
        "restrictedAccountType": 16843733,
        "requiredAccountType": 16843734,
        "canRequestTouchExplorationMode": 16843735,
        "canRequestEnhancedWebAccessibility": 16843736,
        "canRequestFilterKeyEvents": 16843737,
        "layoutMode": 16843738,
        "keySet": 16843739,
        "targetId": 16843740,
        "fromScene": 16843741,
        "toScene": 16843742,
        "transition": 16843743,
        "transitionOrdering": 16843744,
        "fadingMode": 16843745,
        "startDelay": 16843746,
        "ssp": 16843747,
        "sspPrefix": 16843748,
        "sspPattern": 16843749,
        "addPrintersActivity": 16843750,
        "vendor": 16843751,
        "category": 16843752,
        "isAsciiCapable": 16843753,
        "autoMirrored": 16843754,
        "supportsSwitchingToNextInputMethod": 16843755,
        "requireDeviceUnlock": 16843756,
        "apduServiceBanner": 16843757,
        "accessibilityLiveRegion": 16843758,
        "windowTranslucentStatus": 16843759,
        "windowTranslucentNavigation": 16843760,
        "advancedPrintOptionsActivity": 16843761,
        "banner": 16843762,
        "windowSwipeToDismiss": 16843763,
        "isGame": 16843764,
        "allowEmbedded": 16843765,
        "setupActivity": 16843766,
        "fastScrollStyle": 16843767,
        "windowContentTransitions": 16843768,
        "windowContentTransitionManager": 16843769,
        "translationZ": 16843770,
        "tintMode": 16843771,
        "controlX1": 16843772,
        "controlY1": 16843773,
        "controlX2": 16843774,
        "controlY2": 16843775,
        "transitionName": 16843776,
        "transitionGroup": 16843777,
        "viewportWidth": 16843778,
        "viewportHeight": 16843779,
        "fillColor": 16843780,
        "pathData": 16843781,
        "strokeColor": 16843782,
        "strokeWidth": 16843783,
        "trimPathStart": 16843784,
        "trimPathEnd": 16843785,
        "trimPathOffset": 16843786,
        "strokeLineCap": 16843787,
        "strokeLineJoin": 16843788,
        "strokeMiterLimit": 16843789,
        "colorControlNormal": 16843817,
        "colorControlActivated": 16843818,
        "colorButtonNormal": 16843819,
        "colorControlHighlight": 16843820,
        "persistableMode": 16843821,
        "titleTextAppearance": 16843822,
        "subtitleTextAppearance": 16843823,
        "slideEdge": 16843824,
        "actionBarTheme": 16843825,
        "textAppearanceListItemSecondary": 16843826,
        "colorPrimary": 16843827,
        "colorPrimaryDark": 16843828,
        "colorAccent": 16843829,
        "nestedScrollingEnabled": 16843830,
        "windowEnterTransition": 16843831,
        "windowExitTransition": 16843832,
        "windowSharedElementEnterTransition": 16843833,
        "windowSharedElementExitTransition": 16843834,
        "windowAllowReturnTransitionOverlap": 16843835,
        "windowAllowEnterTransitionOverlap": 16843836,
        "sessionService": 16843837,
        "stackViewStyle": 16843838,
        "switchStyle": 16843839,
        "elevation": 16843840,
        "excludeId": 16843841,
        "excludeClass": 16843842,
        "hideOnContentScroll": 16843843,
        "actionOverflowMenuStyle": 16843844,
        "documentLaunchMode": 16843845,
        "maxRecents": 16843846,
        "autoRemoveFromRecents": 16843847,
        "stateListAnimator": 16843848,
        "toId": 16843849,
        "fromId": 16843850,
        "reversible": 16843851,
        "splitTrack": 16843852,
        "targetName": 16843853,
        "excludeName": 16843854,
        "matchOrder": 16843855,
        "windowDrawsSystemBarBackgrounds": 16843856,
        "statusBarColor": 16843857,
        "navigationBarColor": 16843858,
        "contentInsetStart": 16843859,
        "contentInsetEnd": 16843860,
        "contentInsetLeft": 16843861,
        "contentInsetRight": 16843862,
        "paddingMode": 16843863,
        "layout_rowWeight": 16843864,
        "layout_columnWeight": 16843865,
        "translateX": 16843866,
        "translateY": 16843867,
        "selectableItemBackgroundBorderless": 16843868,
        "elegantTextHeight": 16843869,
        "searchKeyphraseId": 16843870,
        "searchKeyphrase": 16843871,
        "searchKeyphraseSupportedLocales": 16843872,
        "windowTransitionBackgroundFadeDuration": 16843873,
        "overlapAnchor": 16843874,
        "progressTint": 16843875,
        "progressTintMode": 16843876,
        "progressBackgroundTint": 16843877,
        "progressBackgroundTintMode": 16843878,
        "secondaryProgressTint": 16843879,
        "secondaryProgressTintMode": 16843880,
        "indeterminateTint": 16843881,
        "indeterminateTintMode": 16843882,
        "backgroundTint": 16843883,
        "backgroundTintMode": 16843884,
        "foregroundTint": 16843885,
        "foregroundTintMode": 16843886,
        "buttonTint": 16843887,
        "buttonTintMode": 16843888,
        "thumbTint": 16843889,
        "thumbTintMode": 16843890,
        "fullBackupOnly": 16843891,
        "propertyXName": 16843892,
        "propertyYName": 16843893,
        "relinquishTaskIdentity": 16843894,
        "tileModeX": 16843895,
        "tileModeY": 16843896,
        "actionModeShareDrawable": 16843897,
        "actionModeFindDrawable": 16843898,
        "actionModeWebSearchDrawable": 16843899,
        "transitionVisibilityMode": 16843900,
        "minimumHorizontalAngle": 16843901,
        "minimumVerticalAngle": 16843902,
        "maximumAngle": 16843903,
        "searchViewStyle": 16843904,
        "closeIcon": 16843905,
        "goIcon": 16843906,
        "searchIcon": 16843907,
        "voiceIcon": 16843908,
        "commitIcon": 16843909,
        "suggestionRowLayout": 16843910,
        "queryBackground": 16843911,
        "submitBackground": 16843912,
        "buttonBarPositiveButtonStyle": 16843913,
        "buttonBarNeutralButtonStyle": 16843914,
        "buttonBarNegativeButtonStyle": 16843915,
        "popupElevation": 16843916,
        "actionBarPopupTheme": 16843917,
        "multiArch": 16843918,
        "touchscreenBlocksFocus": 16843919,
        "windowElevation": 16843920,
        "launchTaskBehindTargetAnimation": 16843921,
        "launchTaskBehindSourceAnimation": 16843922,
        "restrictionType": 16843923,
        "dayOfWeekBackground": 16843924,
        "dayOfWeekTextAppearance": 16843925,
        "headerMonthTextAppearance": 16843926,
        "headerDayOfMonthTextAppearance": 16843927,
        "headerYearTextAppearance": 16843928,
        "yearListItemTextAppearance": 16843929,
        "yearListSelectorColor": 16843930,
        "calendarTextColor": 16843931,
        "recognitionService": 16843932,
        "timePickerStyle": 16843933,
        "timePickerDialogTheme": 16843934,
        "headerTimeTextAppearance": 16843935,
        "headerAmPmTextAppearance": 16843936,
        "numbersTextColor": 16843937,
        "numbersBackgroundColor": 16843938,
        "numbersSelectorColor": 16843939,
        "amPmTextColor": 16843940,
        "amPmBackgroundColor": 16843941,
        "searchKeyphraseRecognitionFlags": 16843942,
        "checkMarkTint": 16843943,
        "checkMarkTintMode": 16843944,
        "popupTheme": 16843945,
        "toolbarStyle": 16843946,
        "windowClipToOutline": 16843947,
        "datePickerDialogTheme": 16843948,
        "showText": 16843949,
        "windowReturnTransition": 16843950,
        "windowReenterTransition": 16843951,
        "windowSharedElementReturnTransition": 16843952,
        "windowSharedElementReenterTransition": 16843953,
        "resumeWhilePausing": 16843954,
        "datePickerMode": 16843955,
        "timePickerMode": 16843956,
        "inset": 16843957,
        "letterSpacing": 16843958,
        "fontFeatureSettings": 16843959,
        "outlineProvider": 16843960,
        "contentAgeHint": 16843961,
        "country": 16843962,
        "windowSharedElementsUseOverlay": 16843963,
        "reparent": 16843964,
        "reparentWithOverlay": 16843965,
        "ambientShadowAlpha": 16843966,
        "spotShadowAlpha": 16843967,
        "navigationIcon": 16843968,
        "navigationContentDescription": 16843969,
        "fragmentExitTransition": 16843970,
        "fragmentEnterTransition": 16843971,
        "fragmentSharedElementEnterTransition": 16843972,
        "fragmentReturnTransition": 16843973,
        "fragmentSharedElementReturnTransition": 16843974,
        "fragmentReenterTransition": 16843975,
        "fragmentAllowEnterTransitionOverlap": 16843976,
        "fragmentAllowReturnTransitionOverlap": 16843977,
        "patternPathData": 16843978,
        "strokeAlpha": 16843979,
        "fillAlpha": 16843980,
        "windowActivityTransitions": 16843981,
        "colorEdgeEffect": 16843982,
        "resizeClip": 16843983,
        "collapseContentDescription": 16843984,
        "accessibilityTraversalBefore": 16843985,
        "accessibilityTraversalAfter": 16843986,
        "dialogPreferredPadding": 16843987,
        "searchHintIcon": 16843988,
        "revisionCode": 16843989,
        "drawableTint": 16843990,
        "drawableTintMode": 16843991,
        "fraction": 16843992,
        "trackTint": 16843993,
        "trackTintMode": 16843994,
        "start": 16843995,
        "end": 16843996,
        "breakStrategy": 16843997,
        "hyphenationFrequency": 16843998,
        "allowUndo": 16843999,
        "windowLightStatusBar": 16844000,
        "numbersInnerTextColor": 16844001,
        "colorBackgroundFloating": 16844002,
        "titleTextColor": 16844003,
        "subtitleTextColor": 16844004,
        "thumbPosition": 16844005,
        "scrollIndicators": 16844006,
        "contextClickable": 16844007,
        "fingerprintAuthDrawable": 16844008,
        "logoDescription": 16844009,
        "extractNativeLibs": 16844010,
        "fullBackupContent": 16844011,
        "usesCleartextTraffic": 16844012,
        "lockTaskMode": 16844013,
        "autoVerify": 16844014,
        "showForAllUsers": 16844015,
        "supportsAssist": 16844016,
        "supportsLaunchVoiceAssistFromKeyguard": 16844017,
        "listMenuViewStyle": 16844018,
        "subMenuArrow": 16844019,
        "defaultWidth": 16844020,
        "defaultHeight": 16844021,
        "resizeableActivity": 16844022,
        "supportsPictureInPicture": 16844023,
        "titleMargin": 16844024,
        "titleMarginStart": 16844025,
        "titleMarginEnd": 16844026,
        "titleMarginTop": 16844027,
        "titleMarginBottom": 16844028,
        "maxButtonHeight": 16844029,
        "buttonGravity": 16844030,
        "collapseIcon": 16844031,
        "level": 16844032,
        "contextPopupMenuStyle": 16844033,
        "textAppearancePopupMenuHeader": 16844034,
        "windowBackgroundFallback": 16844035,
        "defaultToDeviceProtectedStorage": 16844036,
        "directBootAware": 16844037,
        "preferenceFragmentStyle": 16844038,
        "canControlMagnification": 16844039,
        "languageTag": 16844040,
        "pointerIcon": 16844041,
        "tickMark": 16844042,
        "tickMarkTint": 16844043,
        "tickMarkTintMode": 16844044,
        "canPerformGestures": 16844045,
        "externalService": 16844046,
        "supportsLocalInteraction": 16844047,
        "startX": 16844048,
        "startY": 16844049,
        "endX": 16844050,
        "endY": 16844051,
        "offset": 16844052,
        "use32bitAbi": 16844053,
        "bitmap": 16844054,
        "hotSpotX": 16844055,
        "hotSpotY": 16844056,
        "version": 16844057,
        "backupInForeground": 16844058,
        "countDown": 16844059,
        "canRecord": 16844060,
        "tunerCount": 16844061,
        "fillType": 16844062,
        "popupEnterTransition": 16844063,
        "popupExitTransition": 16844064,
        "forceHasOverlappingRendering": 16844065,
        "contentInsetStartWithNavigation": 16844066,
        "contentInsetEndWithActions": 16844067,
        "numberPickerStyle": 16844068,
        "enableVrMode": 16844069,
        "hash": 16844070,
        "networkSecurityConfig": 16844071,
        "shortcutId": 16844072,
        "shortcutShortLabel": 16844073,
        "shortcutLongLabel": 16844074,
        "shortcutDisabledMessage": 16844075,
        "roundIcon": 16844076,
        "contextUri": 16844077,
        "contextDescription": 16844078,
        "showMetadataInPreview": 16844079,
        "colorSecondary": 16844080,
        "visibleToInstantApps": 16844081,
        "font": 16844082,
        "fontWeight": 16844083,
        "tooltipText": 16844084,
        "autoSizeTextType": 16844085,
        "autoSizeStepGranularity": 16844086,
        "autoSizePresetSizes": 16844087,
        "autoSizeMinTextSize": 16844088,
        "min": 16844089,
        "rotationAnimation": 16844090,
        "layout_marginHorizontal": 16844091,
        "layout_marginVertical": 16844092,
        "paddingHorizontal": 16844093,
        "paddingVertical": 16844094,
        "fontStyle": 16844095,
        "keyboardNavigationCluster": 16844096,
        "targetProcesses": 16844097,
        "nextClusterForward": 16844098,
        "colorError": 16844099,
        "focusedByDefault": 16844100,
        "appCategory": 16844101,
        "autoSizeMaxTextSize": 16844102,
        "recreateOnConfigChanges": 16844103,
        "certDigest": 16844104,
        "splitName": 16844105,
        "colorMode": 16844106,
        "isolatedSplits": 16844107,
        "targetSandboxVersion": 16844108,
        "canRequestFingerprintGestures": 16844109,
        "alphabeticModifiers": 16844110,
        "numericModifiers": 16844111,
        "fontProviderAuthority": 16844112,
        "fontProviderQuery": 16844113,
        "primaryContentAlpha": 16844114,
        "secondaryContentAlpha": 16844115,
        "requiredFeature": 16844116,
        "requiredNotFeature": 16844117,
        "autofillHints": 16844118,
        "fontProviderPackage": 16844119,
        "importantForAutofill": 16844120,
        "recycleEnabled": 16844121,
        "isStatic": 16844122,
        "isFeatureSplit": 16844123,
        "singleLineTitle": 16844124,
        "fontProviderCerts": 16844125,
        "iconTint": 16844126,
        "iconTintMode": 16844127,
        "maxAspectRatio": 16844128,
        "iconSpaceReserved": 16844129,
        "defaultFocusHighlightEnabled": 16844130,
        "persistentWhenFeatureAvailable": 16844131,
        "windowSplashscreenContent": 16844132,
        "requiredSystemPropertyName": 16844133,
        "requiredSystemPropertyValue": 16844134,
        "justificationMode": 16844135,
        "autofilledHighlight": 16844136,
        "showWhenLocked": 16844137,
        "turnScreenOn": 16844138,
        "classLoader": 16844139,
        "windowLightNavigationBar": 16844140,
        "navigationBarDividerColor": 16844141
    },
    "id": {
        "background": 16908288,
        "checkbox": 16908289,
        "content": 16908290,
        "edit": 16908291,
        "empty": 16908292,
        "hint": 16908293,
        "icon": 16908294,
        "icon1": 16908295,
        "icon2": 16908296,
        "input": 16908297,
        "list": 16908298,
        "message": 16908299,
        "primary": 16908300,
        "progress": 16908301,
        "selectedIcon": 16908302,
        "secondaryProgress": 16908303,
        "summary": 16908304,
        "tabcontent": 16908305,
        "tabhost": 16908306,
        "tabs": 16908307,
        "text1": 16908308,
        "text2": 16908309,
        "title": 16908310,
        "toggle": 16908311,
        "widget_frame": 16908312,
        "button1": 16908313,
        "button2": 16908314,
        "button3": 16908315,
        "extractArea": 16908316,
        "candidatesArea": 16908317,
        "inputArea": 16908318,
        "selectAll": 16908319,
        "cut": 16908320,
        "copy": 16908321,
        "paste": 16908322,
        "copyUrl": 16908323,
        "switchInputMethod": 16908324,
        "inputExtractEditText": 16908325,
        "keyboardView": 16908326,
        "closeButton": 16908327,
        "startSelectingText": 16908328,
        "stopSelectingText": 16908329,
        "addToDictionary": 16908330,
        "custom": 16908331,
        "home": 16908332,
        "selectTextMode": 16908333,
        "mask": 16908334,
        "statusBarBackground": 16908335,
        "navigationBarBackground": 16908336,
        "pasteAsPlainText": 16908337,
        "undo": 16908338,
        "redo": 16908339,
        "replaceText": 16908340,
        "shareText": 16908341,
        "accessibilityActionShowOnScreen": 16908342,
        "accessibilityActionScrollToPosition": 16908343,
        "accessibilityActionScrollUp": 16908344,
        "accessibilityActionScrollLeft": 16908345,
        "accessibilityActionScrollDown": 16908346,
        "accessibilityActionScrollRight": 16908347,
        "accessibilityActionContextClick": 16908348,
        "accessibilityActionSetProgress": 16908349,
        "icon_frame": 16908350,
        "list_container": 16908351,
        "switch_widget": 16908352,
        "textAssist": 16908353,
        "accessibilityActionMoveWindow": 16908354,
        "autofill": 16908355
    },
    "style": {
        "Animation": 16973824,
        "Animation.Activity": 16973825,
        "Animation.Dialog": 16973826,
        "Animation.Translucent": 16973827,
        "Animation.Toast": 16973828,
        "Theme": 16973829,
        "Theme.NoTitleBar": 16973830,
        "Theme.NoTitleBar.Fullscreen": 16973831,
        "Theme.Black": 16973832,
        "Theme.Black.NoTitleBar": 16973833,
        "Theme.Black.NoTitleBar.Fullscreen": 16973834,
        "Theme.Dialog": 16973835,
        "Theme.Light": 16973836,
        "Theme.Light.NoTitleBar": 16973837,
        "Theme.Light.NoTitleBar.Fullscreen": 16973838,
        "Theme.Translucent": 16973839,
        "Theme.Translucent.NoTitleBar": 16973840,
        "Theme.Translucent.NoTitleBar.Fullscreen": 16973841,
        "Widget": 16973842,
        "Widget.AbsListView": 16973843,
        "Widget.Button": 16973844,
        "Widget.Button.Inset": 16973845,
        "Widget.Button.Small": 16973846,
        "Widget.Button.Toggle": 16973847,
        "Widget.CompoundButton": 16973848,
        "Widget.CompoundButton.CheckBox": 16973849,
        "Widget.CompoundButton.RadioButton": 16973850,
        "Widget.CompoundButton.Star": 16973851,
        "Widget.ProgressBar": 16973852,
        "Widget.ProgressBar.Large": 16973853,
        "Widget.ProgressBar.Small": 16973854,
        "Widget.ProgressBar.Horizontal": 16973855,
        "Widget.SeekBar": 16973856,
        "Widget.RatingBar": 16973857,
        "Widget.TextView": 16973858,
        "Widget.EditText": 16973859,
        "Widget.ExpandableListView": 16973860,
        "Widget.ImageWell": 16973861,
        "Widget.ImageButton": 16973862,
        "Widget.AutoCompleteTextView": 16973863,
        "Widget.Spinner": 16973864,
        "Widget.TextView.PopupMenu": 16973865,
        "Widget.TextView.SpinnerItem": 16973866,
        "Widget.DropDownItem": 16973867,
        "Widget.DropDownItem.Spinner": 16973868,
        "Widget.ScrollView": 16973869,
        "Widget.ListView": 16973870,
        "Widget.ListView.White": 16973871,
        "Widget.ListView.DropDown": 16973872,
        "Widget.ListView.Menu": 16973873,
        "Widget.GridView": 16973874,
        "Widget.WebView": 16973875,
        "Widget.TabWidget": 16973876,
        "Widget.Gallery": 16973877,
        "Widget.PopupWindow": 16973878,
        "MediaButton": 16973879,
        "MediaButton.Previous": 16973880,
        "MediaButton.Next": 16973881,
        "MediaButton.Play": 16973882,
        "MediaButton.Ffwd": 16973883,
        "MediaButton.Rew": 16973884,
        "MediaButton.Pause": 16973885,
        "TextAppearance": 16973886,
        "TextAppearance.Inverse": 16973887,
        "TextAppearance.Theme": 16973888,
        "TextAppearance.DialogWindowTitle": 16973889,
        "TextAppearance.Large": 16973890,
        "TextAppearance.Large.Inverse": 16973891,
        "TextAppearance.Medium": 16973892,
        "TextAppearance.Medium.Inverse": 16973893,
        "TextAppearance.Small": 16973894,
        "TextAppearance.Small.Inverse": 16973895,
        "TextAppearance.Theme.Dialog": 16973896,
        "TextAppearance.Widget": 16973897,
        "TextAppearance.Widget.Button": 16973898,
        "TextAppearance.Widget.IconMenu.Item": 16973899,
        "TextAppearance.Widget.EditText": 16973900,
        "TextAppearance.Widget.TabWidget": 16973901,
        "TextAppearance.Widget.TextView": 16973902,
        "TextAppearance.Widget.TextView.PopupMenu": 16973903,
        "TextAppearance.Widget.DropDownHint": 16973904,
        "TextAppearance.Widget.DropDownItem": 16973905,
        "TextAppearance.Widget.TextView.SpinnerItem": 16973906,
        "TextAppearance.WindowTitle": 16973907,
        "Theme.InputMethod": 16973908,
        "Theme.NoDisplay": 16973909,
        "Animation.InputMethod": 16973910,
        "Widget.KeyboardView": 16973911,
        "ButtonBar": 16973912,
        "Theme.Panel": 16973913,
        "Theme.Light.Panel": 16973914,
        "Widget.ProgressBar.Inverse": 16973915,
        "Widget.ProgressBar.Large.Inverse": 16973916,
        "Widget.ProgressBar.Small.Inverse": 16973917,
        "Theme.Wallpaper": 16973918,
        "Theme.Wallpaper.NoTitleBar": 16973919,
        "Theme.Wallpaper.NoTitleBar.Fullscreen": 16973920,
        "Theme.WallpaperSettings": 16973921,
        "Theme.Light.WallpaperSettings": 16973922,
        "TextAppearance.SearchResult.Title": 16973923,
        "TextAppearance.SearchResult.Subtitle": 16973924,
        "TextAppearance.StatusBar.Title": 16973925,
        "TextAppearance.StatusBar.Icon": 16973926,
        "TextAppearance.StatusBar.EventContent": 16973927,
        "TextAppearance.StatusBar.EventContent.Title": 16973928,
        "Theme.WithActionBar": 16973929,
        "Theme.NoTitleBar.OverlayActionModes": 16973930,
        "Theme.Holo": 16973931,
        "Theme.Holo.NoActionBar": 16973932,
        "Theme.Holo.NoActionBar.Fullscreen": 16973933,
        "Theme.Holo.Light": 16973934,
        "Theme.Holo.Dialog": 16973935,
        "Theme.Holo.Dialog.MinWidth": 16973936,
        "Theme.Holo.Dialog.NoActionBar": 16973937,
        "Theme.Holo.Dialog.NoActionBar.MinWidth": 16973938,
        "Theme.Holo.Light.Dialog": 16973939,
        "Theme.Holo.Light.Dialog.MinWidth": 16973940,
        "Theme.Holo.Light.Dialog.NoActionBar": 16973941,
        "Theme.Holo.Light.Dialog.NoActionBar.MinWidth": 16973942,
        "Theme.Holo.DialogWhenLarge": 16973943,
        "Theme.Holo.DialogWhenLarge.NoActionBar": 16973944,
        "Theme.Holo.Light.DialogWhenLarge": 16973945,
        "Theme.Holo.Light.DialogWhenLarge.NoActionBar": 16973946,
        "Theme.Holo.Panel": 16973947,
        "Theme.Holo.Light.Panel": 16973948,
        "Theme.Holo.Wallpaper": 16973949,
        "Theme.Holo.Wallpaper.NoTitleBar": 16973950,
        "Theme.Holo.InputMethod": 16973951,
        "TextAppearance.Widget.PopupMenu.Large": 16973952,
        "TextAppearance.Widget.PopupMenu.Small": 16973953,
        "Widget.ActionBar": 16973954,
        "Widget.Spinner.DropDown": 16973955,
        "Widget.ActionButton": 16973956,
        "Widget.ListPopupWindow": 16973957,
        "Widget.PopupMenu": 16973958,
        "Widget.ActionButton.Overflow": 16973959,
        "Widget.ActionButton.CloseMode": 16973960,
        "Widget.FragmentBreadCrumbs": 16973961,
        "Widget.Holo": 16973962,
        "Widget.Holo.Button": 16973963,
        "Widget.Holo.Button.Small": 16973964,
        "Widget.Holo.Button.Inset": 16973965,
        "Widget.Holo.Button.Toggle": 16973966,
        "Widget.Holo.TextView": 16973967,
        "Widget.Holo.AutoCompleteTextView": 16973968,
        "Widget.Holo.CompoundButton.CheckBox": 16973969,
        "Widget.Holo.ListView.DropDown": 16973970,
        "Widget.Holo.EditText": 16973971,
        "Widget.Holo.ExpandableListView": 16973972,
        "Widget.Holo.GridView": 16973973,
        "Widget.Holo.ImageButton": 16973974,
        "Widget.Holo.ListView": 16973975,
        "Widget.Holo.PopupWindow": 16973976,
        "Widget.Holo.ProgressBar": 16973977,
        "Widget.Holo.ProgressBar.Horizontal": 16973978,
        "Widget.Holo.ProgressBar.Small": 16973979,
        "Widget.Holo.ProgressBar.Small.Title": 16973980,
        "Widget.Holo.ProgressBar.Large": 16973981,
        "Widget.Holo.SeekBar": 16973982,
        "Widget.Holo.RatingBar": 16973983,
        "Widget.Holo.RatingBar.Indicator": 16973984,
        "Widget.Holo.RatingBar.Small": 16973985,
        "Widget.Holo.CompoundButton.RadioButton": 16973986,
        "Widget.Holo.ScrollView": 16973987,
        "Widget.Holo.HorizontalScrollView": 16973988,
        "Widget.Holo.Spinner": 16973989,
        "Widget.Holo.CompoundButton.Star": 16973990,
        "Widget.Holo.TabWidget": 16973991,
        "Widget.Holo.WebTextView": 16973992,
        "Widget.Holo.WebView": 16973993,
        "Widget.Holo.DropDownItem": 16973994,
        "Widget.Holo.DropDownItem.Spinner": 16973995,
        "Widget.Holo.TextView.SpinnerItem": 16973996,
        "Widget.Holo.ListPopupWindow": 16973997,
        "Widget.Holo.PopupMenu": 16973998,
        "Widget.Holo.ActionButton": 16973999,
        "Widget.Holo.ActionButton.Overflow": 16974000,
        "Widget.Holo.ActionButton.TextButton": 16974001,
        "Widget.Holo.ActionMode": 16974002,
        "Widget.Holo.ActionButton.CloseMode": 16974003,
        "Widget.Holo.ActionBar": 16974004,
        "Widget.Holo.Light": 16974005,
        "Widget.Holo.Light.Button": 16974006,
        "Widget.Holo.Light.Button.Small": 16974007,
        "Widget.Holo.Light.Button.Inset": 16974008,
        "Widget.Holo.Light.Button.Toggle": 16974009,
        "Widget.Holo.Light.TextView": 16974010,
        "Widget.Holo.Light.AutoCompleteTextView": 16974011,
        "Widget.Holo.Light.CompoundButton.CheckBox": 16974012,
        "Widget.Holo.Light.ListView.DropDown": 16974013,
        "Widget.Holo.Light.EditText": 16974014,
        "Widget.Holo.Light.ExpandableListView": 16974015,
        "Widget.Holo.Light.GridView": 16974016,
        "Widget.Holo.Light.ImageButton": 16974017,
        "Widget.Holo.Light.ListView": 16974018,
        "Widget.Holo.Light.PopupWindow": 16974019,
        "Widget.Holo.Light.ProgressBar": 16974020,
        "Widget.Holo.Light.ProgressBar.Horizontal": 16974021,
        "Widget.Holo.Light.ProgressBar.Small": 16974022,
        "Widget.Holo.Light.ProgressBar.Small.Title": 16974023,
        "Widget.Holo.Light.ProgressBar.Large": 16974024,
        "Widget.Holo.Light.ProgressBar.Inverse": 16974025,
        "Widget.Holo.Light.ProgressBar.Small.Inverse": 16974026,
        "Widget.Holo.Light.ProgressBar.Large.Inverse": 16974027,
        "Widget.Holo.Light.SeekBar": 16974028,
        "Widget.Holo.Light.RatingBar": 16974029,
        "Widget.Holo.Light.RatingBar.Indicator": 16974030,
        "Widget.Holo.Light.RatingBar.Small": 16974031,
        "Widget.Holo.Light.CompoundButton.RadioButton": 16974032,
        "Widget.Holo.Light.ScrollView": 16974033,
        "Widget.Holo.Light.HorizontalScrollView": 16974034,
        "Widget.Holo.Light.Spinner": 16974035,
        "Widget.Holo.Light.CompoundButton.Star": 16974036,
        "Widget.Holo.Light.TabWidget": 16974037,
        "Widget.Holo.Light.WebTextView": 16974038,
        "Widget.Holo.Light.WebView": 16974039,
        "Widget.Holo.Light.DropDownItem": 16974040,
        "Widget.Holo.Light.DropDownItem.Spinner": 16974041,
        "Widget.Holo.Light.TextView.SpinnerItem": 16974042,
        "Widget.Holo.Light.ListPopupWindow": 16974043,
        "Widget.Holo.Light.PopupMenu": 16974044,
        "Widget.Holo.Light.ActionButton": 16974045,
        "Widget.Holo.Light.ActionButton.Overflow": 16974046,
        "Widget.Holo.Light.ActionMode": 16974047,
        "Widget.Holo.Light.ActionButton.CloseMode": 16974048,
        "Widget.Holo.Light.ActionBar": 16974049,
        "Widget.Holo.Button.Borderless": 16974050,
        "Widget.Holo.Tab": 16974051,
        "Widget.Holo.Light.Tab": 16974052,
        "Holo.ButtonBar": 16974053,
        "Holo.Light.ButtonBar": 16974054,
        "Holo.ButtonBar.AlertDialog": 16974055,
        "Holo.Light.ButtonBar.AlertDialog": 16974056,
        "Holo.SegmentedButton": 16974057,
        "Holo.Light.SegmentedButton": 16974058,
        "Widget.CalendarView": 16974059,
        "Widget.Holo.CalendarView": 16974060,
        "Widget.Holo.Light.CalendarView": 16974061,
        "Widget.DatePicker": 16974062,
        "Widget.Holo.DatePicker": 16974063,
        "Theme.Holo.Light.NoActionBar": 16974064,
        "Theme.Holo.Light.NoActionBar.Fullscreen": 16974065,
        "Widget.ActionBar.TabView": 16974066,
        "Widget.ActionBar.TabText": 16974067,
        "Widget.ActionBar.TabBar": 16974068,
        "Widget.Holo.ActionBar.TabView": 16974069,
        "Widget.Holo.ActionBar.TabText": 16974070,
        "Widget.Holo.ActionBar.TabBar": 16974071,
        "Widget.Holo.Light.ActionBar.TabView": 16974072,
        "Widget.Holo.Light.ActionBar.TabText": 16974073,
        "Widget.Holo.Light.ActionBar.TabBar": 16974074,
        "TextAppearance.Holo": 16974075,
        "TextAppearance.Holo.Inverse": 16974076,
        "TextAppearance.Holo.Large": 16974077,
        "TextAppearance.Holo.Large.Inverse": 16974078,
        "TextAppearance.Holo.Medium": 16974079,
        "TextAppearance.Holo.Medium.Inverse": 16974080,
        "TextAppearance.Holo.Small": 16974081,
        "TextAppearance.Holo.Small.Inverse": 16974082,
        "TextAppearance.Holo.SearchResult.Title": 16974083,
        "TextAppearance.Holo.SearchResult.Subtitle": 16974084,
        "TextAppearance.Holo.Widget": 16974085,
        "TextAppearance.Holo.Widget.Button": 16974086,
        "TextAppearance.Holo.Widget.IconMenu.Item": 16974087,
        "TextAppearance.Holo.Widget.TabWidget": 16974088,
        "TextAppearance.Holo.Widget.TextView": 16974089,
        "TextAppearance.Holo.Widget.TextView.PopupMenu": 16974090,
        "TextAppearance.Holo.Widget.DropDownHint": 16974091,
        "TextAppearance.Holo.Widget.DropDownItem": 16974092,
        "TextAppearance.Holo.Widget.TextView.SpinnerItem": 16974093,
        "TextAppearance.Holo.Widget.EditText": 16974094,
        "TextAppearance.Holo.Widget.PopupMenu": 16974095,
        "TextAppearance.Holo.Widget.PopupMenu.Large": 16974096,
        "TextAppearance.Holo.Widget.PopupMenu.Small": 16974097,
        "TextAppearance.Holo.Widget.ActionBar.Title": 16974098,
        "TextAppearance.Holo.Widget.ActionBar.Subtitle": 16974099,
        "TextAppearance.Holo.Widget.ActionMode.Title": 16974100,
        "TextAppearance.Holo.Widget.ActionMode.Subtitle": 16974101,
        "TextAppearance.Holo.WindowTitle": 16974102,
        "TextAppearance.Holo.DialogWindowTitle": 16974103,
        "TextAppearance.SuggestionHighlight": 16974104,
        "Theme.Holo.Light.DarkActionBar": 16974105,
        "Widget.Holo.Button.Borderless.Small": 16974106,
        "Widget.Holo.Light.Button.Borderless.Small": 16974107,
        "TextAppearance.Holo.Widget.ActionBar.Title.Inverse": 16974108,
        "TextAppearance.Holo.Widget.ActionBar.Subtitle.Inverse": 16974109,
        "TextAppearance.Holo.Widget.ActionMode.Title.Inverse": 16974110,
        "TextAppearance.Holo.Widget.ActionMode.Subtitle.Inverse": 16974111,
        "TextAppearance.Holo.Widget.ActionBar.Menu": 16974112,
        "Widget.Holo.ActionBar.Solid": 16974113,
        "Widget.Holo.Light.ActionBar.Solid": 16974114,
        "Widget.Holo.Light.ActionBar.Solid.Inverse": 16974115,
        "Widget.Holo.Light.ActionBar.TabBar.Inverse": 16974116,
        "Widget.Holo.Light.ActionBar.TabView.Inverse": 16974117,
        "Widget.Holo.Light.ActionBar.TabText.Inverse": 16974118,
        "Widget.Holo.Light.ActionMode.Inverse": 16974119,
        "Theme.DeviceDefault": 16974120,
        "Theme.DeviceDefault.NoActionBar": 16974121,
        "Theme.DeviceDefault.NoActionBar.Fullscreen": 16974122,
        "Theme.DeviceDefault.Light": 16974123,
        "Theme.DeviceDefault.Light.NoActionBar": 16974124,
        "Theme.DeviceDefault.Light.NoActionBar.Fullscreen": 16974125,
        "Theme.DeviceDefault.Dialog": 16974126,
        "Theme.DeviceDefault.Dialog.MinWidth": 16974127,
        "Theme.DeviceDefault.Dialog.NoActionBar": 16974128,
        "Theme.DeviceDefault.Dialog.NoActionBar.MinWidth": 16974129,
        "Theme.DeviceDefault.Light.Dialog": 16974130,
        "Theme.DeviceDefault.Light.Dialog.MinWidth": 16974131,
        "Theme.DeviceDefault.Light.Dialog.NoActionBar": 16974132,
        "Theme.DeviceDefault.Light.Dialog.NoActionBar.MinWidth": 16974133,
        "Theme.DeviceDefault.DialogWhenLarge": 16974134,
        "Theme.DeviceDefault.DialogWhenLarge.NoActionBar": 16974135,
        "Theme.DeviceDefault.Light.DialogWhenLarge": 16974136,
        "Theme.DeviceDefault.Light.DialogWhenLarge.NoActionBar": 16974137,
        "Theme.DeviceDefault.Panel": 16974138,
        "Theme.DeviceDefault.Light.Panel": 16974139,
        "Theme.DeviceDefault.Wallpaper": 16974140,
        "Theme.DeviceDefault.Wallpaper.NoTitleBar": 16974141,
        "Theme.DeviceDefault.InputMethod": 16974142,
        "Theme.DeviceDefault.Light.DarkActionBar": 16974143,
        "Widget.DeviceDefault": 16974144,
        "Widget.DeviceDefault.Button": 16974145,
        "Widget.DeviceDefault.Button.Small": 16974146,
        "Widget.DeviceDefault.Button.Inset": 16974147,
        "Widget.DeviceDefault.Button.Toggle": 16974148,
        "Widget.DeviceDefault.Button.Borderless.Small": 16974149,
        "Widget.DeviceDefault.TextView": 16974150,
        "Widget.DeviceDefault.AutoCompleteTextView": 16974151,
        "Widget.DeviceDefault.CompoundButton.CheckBox": 16974152,
        "Widget.DeviceDefault.ListView.DropDown": 16974153,
        "Widget.DeviceDefault.EditText": 16974154,
        "Widget.DeviceDefault.ExpandableListView": 16974155,
        "Widget.DeviceDefault.GridView": 16974156,
        "Widget.DeviceDefault.ImageButton": 16974157,
        "Widget.DeviceDefault.ListView": 16974158,
        "Widget.DeviceDefault.PopupWindow": 16974159,
        "Widget.DeviceDefault.ProgressBar": 16974160,
        "Widget.DeviceDefault.ProgressBar.Horizontal": 16974161,
        "Widget.DeviceDefault.ProgressBar.Small": 16974162,
        "Widget.DeviceDefault.ProgressBar.Small.Title": 16974163,
        "Widget.DeviceDefault.ProgressBar.Large": 16974164,
        "Widget.DeviceDefault.SeekBar": 16974165,
        "Widget.DeviceDefault.RatingBar": 16974166,
        "Widget.DeviceDefault.RatingBar.Indicator": 16974167,
        "Widget.DeviceDefault.RatingBar.Small": 16974168,
        "Widget.DeviceDefault.CompoundButton.RadioButton": 16974169,
        "Widget.DeviceDefault.ScrollView": 16974170,
        "Widget.DeviceDefault.HorizontalScrollView": 16974171,
        "Widget.DeviceDefault.Spinner": 16974172,
        "Widget.DeviceDefault.CompoundButton.Star": 16974173,
        "Widget.DeviceDefault.TabWidget": 16974174,
        "Widget.DeviceDefault.WebTextView": 16974175,
        "Widget.DeviceDefault.WebView": 16974176,
        "Widget.DeviceDefault.DropDownItem": 16974177,
        "Widget.DeviceDefault.DropDownItem.Spinner": 16974178,
        "Widget.DeviceDefault.TextView.SpinnerItem": 16974179,
        "Widget.DeviceDefault.ListPopupWindow": 16974180,
        "Widget.DeviceDefault.PopupMenu": 16974181,
        "Widget.DeviceDefault.ActionButton": 16974182,
        "Widget.DeviceDefault.ActionButton.Overflow": 16974183,
        "Widget.DeviceDefault.ActionButton.TextButton": 16974184,
        "Widget.DeviceDefault.ActionMode": 16974185,
        "Widget.DeviceDefault.ActionButton.CloseMode": 16974186,
        "Widget.DeviceDefault.ActionBar": 16974187,
        "Widget.DeviceDefault.Button.Borderless": 16974188,
        "Widget.DeviceDefault.Tab": 16974189,
        "Widget.DeviceDefault.CalendarView": 16974190,
        "Widget.DeviceDefault.DatePicker": 16974191,
        "Widget.DeviceDefault.ActionBar.TabView": 16974192,
        "Widget.DeviceDefault.ActionBar.TabText": 16974193,
        "Widget.DeviceDefault.ActionBar.TabBar": 16974194,
        "Widget.DeviceDefault.ActionBar.Solid": 16974195,
        "Widget.DeviceDefault.Light": 16974196,
        "Widget.DeviceDefault.Light.Button": 16974197,
        "Widget.DeviceDefault.Light.Button.Small": 16974198,
        "Widget.DeviceDefault.Light.Button.Inset": 16974199,
        "Widget.DeviceDefault.Light.Button.Toggle": 16974200,
        "Widget.DeviceDefault.Light.Button.Borderless.Small": 16974201,
        "Widget.DeviceDefault.Light.TextView": 16974202,
        "Widget.DeviceDefault.Light.AutoCompleteTextView": 16974203,
        "Widget.DeviceDefault.Light.CompoundButton.CheckBox": 16974204,
        "Widget.DeviceDefault.Light.ListView.DropDown": 16974205,
        "Widget.DeviceDefault.Light.EditText": 16974206,
        "Widget.DeviceDefault.Light.ExpandableListView": 16974207,
        "Widget.DeviceDefault.Light.GridView": 16974208,
        "Widget.DeviceDefault.Light.ImageButton": 16974209,
        "Widget.DeviceDefault.Light.ListView": 16974210,
        "Widget.DeviceDefault.Light.PopupWindow": 16974211,
        "Widget.DeviceDefault.Light.ProgressBar": 16974212,
        "Widget.DeviceDefault.Light.ProgressBar.Horizontal": 16974213,
        "Widget.DeviceDefault.Light.ProgressBar.Small": 16974214,
        "Widget.DeviceDefault.Light.ProgressBar.Small.Title": 16974215,
        "Widget.DeviceDefault.Light.ProgressBar.Large": 16974216,
        "Widget.DeviceDefault.Light.ProgressBar.Inverse": 16974217,
        "Widget.DeviceDefault.Light.ProgressBar.Small.Inverse": 16974218,
        "Widget.DeviceDefault.Light.ProgressBar.Large.Inverse": 16974219,
        "Widget.DeviceDefault.Light.SeekBar": 16974220,
        "Widget.DeviceDefault.Light.RatingBar": 16974221,
        "Widget.DeviceDefault.Light.RatingBar.Indicator": 16974222,
        "Widget.DeviceDefault.Light.RatingBar.Small": 16974223,
        "Widget.DeviceDefault.Light.CompoundButton.RadioButton": 16974224,
        "Widget.DeviceDefault.Light.ScrollView": 16974225,
        "Widget.DeviceDefault.Light.HorizontalScrollView": 16974226,
        "Widget.DeviceDefault.Light.Spinner": 16974227,
        "Widget.DeviceDefault.Light.CompoundButton.Star": 16974228,
        "Widget.DeviceDefault.Light.TabWidget": 16974229,
        "Widget.DeviceDefault.Light.WebTextView": 16974230,
        "Widget.DeviceDefault.Light.WebView": 16974231,
        "Widget.DeviceDefault.Light.DropDownItem": 16974232,
        "Widget.DeviceDefault.Light.DropDownItem.Spinner": 16974233,
        "Widget.DeviceDefault.Light.TextView.SpinnerItem": 16974234,
        "Widget.DeviceDefault.Light.ListPopupWindow": 16974235,
        "Widget.DeviceDefault.Light.PopupMenu": 16974236,
        "Widget.DeviceDefault.Light.Tab": 16974237,
        "Widget.DeviceDefault.Light.CalendarView": 16974238,
        "Widget.DeviceDefault.Light.ActionButton": 16974239,
        "Widget.DeviceDefault.Light.ActionButton.Overflow": 16974240,
        "Widget.DeviceDefault.Light.ActionMode": 16974241,
        "Widget.DeviceDefault.Light.ActionButton.CloseMode": 16974242,
        "Widget.DeviceDefault.Light.ActionBar": 16974243,
        "Widget.DeviceDefault.Light.ActionBar.TabView": 16974244,
        "Widget.DeviceDefault.Light.ActionBar.TabText": 16974245,
        "Widget.DeviceDefault.Light.ActionBar.TabBar": 16974246,
        "Widget.DeviceDefault.Light.ActionBar.Solid": 16974247,
        "Widget.DeviceDefault.Light.ActionBar.Solid.Inverse": 16974248,
        "Widget.DeviceDefault.Light.ActionBar.TabBar.Inverse": 16974249,
        "Widget.DeviceDefault.Light.ActionBar.TabView.Inverse": 16974250,
        "Widget.DeviceDefault.Light.ActionBar.TabText.Inverse": 16974251,
        "Widget.DeviceDefault.Light.ActionMode.Inverse": 16974252,
        "TextAppearance.DeviceDefault": 16974253,
        "TextAppearance.DeviceDefault.Inverse": 16974254,
        "TextAppearance.DeviceDefault.Large": 16974255,
        "TextAppearance.DeviceDefault.Large.Inverse": 16974256,
        "TextAppearance.DeviceDefault.Medium": 16974257,
        "TextAppearance.DeviceDefault.Medium.Inverse": 16974258,
        "TextAppearance.DeviceDefault.Small": 16974259,
        "TextAppearance.DeviceDefault.Small.Inverse": 16974260,
        "TextAppearance.DeviceDefault.SearchResult.Title": 16974261,
        "TextAppearance.DeviceDefault.SearchResult.Subtitle": 16974262,
        "TextAppearance.DeviceDefault.WindowTitle": 16974263,
        "TextAppearance.DeviceDefault.DialogWindowTitle": 16974264,
        "TextAppearance.DeviceDefault.Widget": 16974265,
        "TextAppearance.DeviceDefault.Widget.Button": 16974266,
        "TextAppearance.DeviceDefault.Widget.IconMenu.Item": 16974267,
        "TextAppearance.DeviceDefault.Widget.TabWidget": 16974268,
        "TextAppearance.DeviceDefault.Widget.TextView": 16974269,
        "TextAppearance.DeviceDefault.Widget.TextView.PopupMenu": 16974270,
        "TextAppearance.DeviceDefault.Widget.DropDownHint": 16974271,
        "TextAppearance.DeviceDefault.Widget.DropDownItem": 16974272,
        "TextAppearance.DeviceDefault.Widget.TextView.SpinnerItem": 16974273,
        "TextAppearance.DeviceDefault.Widget.EditText": 16974274,
        "TextAppearance.DeviceDefault.Widget.PopupMenu": 16974275,
        "TextAppearance.DeviceDefault.Widget.PopupMenu.Large": 16974276,
        "TextAppearance.DeviceDefault.Widget.PopupMenu.Small": 16974277,
        "TextAppearance.DeviceDefault.Widget.ActionBar.Title": 16974278,
        "TextAppearance.DeviceDefault.Widget.ActionBar.Subtitle": 16974279,
        "TextAppearance.DeviceDefault.Widget.ActionMode.Title": 16974280,
        "TextAppearance.DeviceDefault.Widget.ActionMode.Subtitle": 16974281,
        "TextAppearance.DeviceDefault.Widget.ActionBar.Title.Inverse": 16974282,
        "TextAppearance.DeviceDefault.Widget.ActionBar.Subtitle.Inverse": 16974283,
        "TextAppearance.DeviceDefault.Widget.ActionMode.Title.Inverse": 16974284,
        "TextAppearance.DeviceDefault.Widget.ActionMode.Subtitle.Inverse": 16974285,
        "TextAppearance.DeviceDefault.Widget.ActionBar.Menu": 16974286,
        "DeviceDefault.ButtonBar": 16974287,
        "DeviceDefault.ButtonBar.AlertDialog": 16974288,
        "DeviceDefault.SegmentedButton": 16974289,
        "DeviceDefault.Light.ButtonBar": 16974290,
        "DeviceDefault.Light.ButtonBar.AlertDialog": 16974291,
        "DeviceDefault.Light.SegmentedButton": 16974292,
        "Widget.Holo.MediaRouteButton": 16974293,
        "Widget.Holo.Light.MediaRouteButton": 16974294,
        "Widget.DeviceDefault.MediaRouteButton": 16974295,
        "Widget.DeviceDefault.Light.MediaRouteButton": 16974296,
        "Widget.Holo.CheckedTextView": 16974297,
        "Widget.Holo.Light.CheckedTextView": 16974298,
        "Widget.DeviceDefault.CheckedTextView": 16974299,
        "Widget.DeviceDefault.Light.CheckedTextView": 16974300,
        "Theme.Holo.NoActionBar.Overscan": 16974301,
        "Theme.Holo.Light.NoActionBar.Overscan": 16974302,
        "Theme.DeviceDefault.NoActionBar.Overscan": 16974303,
        "Theme.DeviceDefault.Light.NoActionBar.Overscan": 16974304,
        "Theme.Holo.NoActionBar.TranslucentDecor": 16974305,
        "Theme.Holo.Light.NoActionBar.TranslucentDecor": 16974306,
        "Theme.DeviceDefault.NoActionBar.TranslucentDecor": 16974307,
        "Theme.DeviceDefault.Light.NoActionBar.TranslucentDecor": 16974308,
        "Widget.FastScroll": 16974309,
        "Widget.StackView": 16974310,
        "Widget.Toolbar": 16974311,
        "Widget.Toolbar.Button.Navigation": 16974312,
        "Widget.DeviceDefault.FastScroll": 16974313,
        "Widget.DeviceDefault.StackView": 16974314,
        "Widget.DeviceDefault.Light.FastScroll": 16974315,
        "Widget.DeviceDefault.Light.StackView": 16974316,
        "TextAppearance.Material": 16974317,
        "TextAppearance.Material.Button": 16974318,
        "TextAppearance.Material.Body2": 16974319,
        "TextAppearance.Material.Body1": 16974320,
        "TextAppearance.Material.Caption": 16974321,
        "TextAppearance.Material.DialogWindowTitle": 16974322,
        "TextAppearance.Material.Display4": 16974323,
        "TextAppearance.Material.Display3": 16974324,
        "TextAppearance.Material.Display2": 16974325,
        "TextAppearance.Material.Display1": 16974326,
        "TextAppearance.Material.Headline": 16974327,
        "TextAppearance.Material.Inverse": 16974328,
        "TextAppearance.Material.Large": 16974329,
        "TextAppearance.Material.Large.Inverse": 16974330,
        "TextAppearance.Material.Medium": 16974331,
        "TextAppearance.Material.Medium.Inverse": 16974332,
        "TextAppearance.Material.Menu": 16974333,
        "TextAppearance.Material.Notification": 16974334,
        "TextAppearance.Material.Notification.Emphasis": 16974335,
        "TextAppearance.Material.Notification.Info": 16974336,
        "TextAppearance.Material.Notification.Line2": 16974337,
        "TextAppearance.Material.Notification.Time": 16974338,
        "TextAppearance.Material.Notification.Title": 16974339,
        "TextAppearance.Material.SearchResult.Subtitle": 16974340,
        "TextAppearance.Material.SearchResult.Title": 16974341,
        "TextAppearance.Material.Small": 16974342,
        "TextAppearance.Material.Small.Inverse": 16974343,
        "TextAppearance.Material.Subhead": 16974344,
        "TextAppearance.Material.Title": 16974345,
        "TextAppearance.Material.WindowTitle": 16974346,
        "TextAppearance.Material.Widget": 16974347,
        "TextAppearance.Material.Widget.ActionBar.Menu": 16974348,
        "TextAppearance.Material.Widget.ActionBar.Subtitle": 16974349,
        "TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse": 16974350,
        "TextAppearance.Material.Widget.ActionBar.Title": 16974351,
        "TextAppearance.Material.Widget.ActionBar.Title.Inverse": 16974352,
        "TextAppearance.Material.Widget.ActionMode.Subtitle": 16974353,
        "TextAppearance.Material.Widget.ActionMode.Subtitle.Inverse": 16974354,
        "TextAppearance.Material.Widget.ActionMode.Title": 16974355,
        "TextAppearance.Material.Widget.ActionMode.Title.Inverse": 16974356,
        "TextAppearance.Material.Widget.Button": 16974357,
        "TextAppearance.Material.Widget.DropDownHint": 16974358,
        "TextAppearance.Material.Widget.DropDownItem": 16974359,
        "TextAppearance.Material.Widget.EditText": 16974360,
        "TextAppearance.Material.Widget.IconMenu.Item": 16974361,
        "TextAppearance.Material.Widget.PopupMenu": 16974362,
        "TextAppearance.Material.Widget.PopupMenu.Large": 16974363,
        "TextAppearance.Material.Widget.PopupMenu.Small": 16974364,
        "TextAppearance.Material.Widget.TabWidget": 16974365,
        "TextAppearance.Material.Widget.TextView": 16974366,
        "TextAppearance.Material.Widget.TextView.PopupMenu": 16974367,
        "TextAppearance.Material.Widget.TextView.SpinnerItem": 16974368,
        "TextAppearance.Material.Widget.Toolbar.Subtitle": 16974369,
        "TextAppearance.Material.Widget.Toolbar.Title": 16974370,
        "Theme.DeviceDefault.Settings": 16974371,
        "Theme.Material": 16974372,
        "Theme.Material.Dialog": 16974373,
        "Theme.Material.Dialog.Alert": 16974374,
        "Theme.Material.Dialog.MinWidth": 16974375,
        "Theme.Material.Dialog.NoActionBar": 16974376,
        "Theme.Material.Dialog.NoActionBar.MinWidth": 16974377,
        "Theme.Material.Dialog.Presentation": 16974378,
        "Theme.Material.DialogWhenLarge": 16974379,
        "Theme.Material.DialogWhenLarge.NoActionBar": 16974380,
        "Theme.Material.InputMethod": 16974381,
        "Theme.Material.NoActionBar": 16974382,
        "Theme.Material.NoActionBar.Fullscreen": 16974383,
        "Theme.Material.NoActionBar.Overscan": 16974384,
        "Theme.Material.NoActionBar.TranslucentDecor": 16974385,
        "Theme.Material.Panel": 16974386,
        "Theme.Material.Settings": 16974387,
        "Theme.Material.Voice": 16974388,
        "Theme.Material.Wallpaper": 16974389,
        "Theme.Material.Wallpaper.NoTitleBar": 16974390,
        "Theme.Material.Light": 16974391,
        "Theme.Material.Light.DarkActionBar": 16974392,
        "Theme.Material.Light.Dialog": 16974393,
        "Theme.Material.Light.Dialog.Alert": 16974394,
        "Theme.Material.Light.Dialog.MinWidth": 16974395,
        "Theme.Material.Light.Dialog.NoActionBar": 16974396,
        "Theme.Material.Light.Dialog.NoActionBar.MinWidth": 16974397,
        "Theme.Material.Light.Dialog.Presentation": 16974398,
        "Theme.Material.Light.DialogWhenLarge": 16974399,
        "Theme.Material.Light.DialogWhenLarge.NoActionBar": 16974400,
        "Theme.Material.Light.NoActionBar": 16974401,
        "Theme.Material.Light.NoActionBar.Fullscreen": 16974402,
        "Theme.Material.Light.NoActionBar.Overscan": 16974403,
        "Theme.Material.Light.NoActionBar.TranslucentDecor": 16974404,
        "Theme.Material.Light.Panel": 16974405,
        "Theme.Material.Light.Voice": 16974406,
        "ThemeOverlay": 16974407,
        "ThemeOverlay.Material": 16974408,
        "ThemeOverlay.Material.ActionBar": 16974409,
        "ThemeOverlay.Material.Light": 16974410,
        "ThemeOverlay.Material.Dark": 16974411,
        "ThemeOverlay.Material.Dark.ActionBar": 16974412,
        "Widget.Material": 16974413,
        "Widget.Material.ActionBar": 16974414,
        "Widget.Material.ActionBar.Solid": 16974415,
        "Widget.Material.ActionBar.TabBar": 16974416,
        "Widget.Material.ActionBar.TabText": 16974417,
        "Widget.Material.ActionBar.TabView": 16974418,
        "Widget.Material.ActionButton": 16974419,
        "Widget.Material.ActionButton.CloseMode": 16974420,
        "Widget.Material.ActionButton.Overflow": 16974421,
        "Widget.Material.ActionMode": 16974422,
        "Widget.Material.AutoCompleteTextView": 16974423,
        "Widget.Material.Button": 16974424,
        "Widget.Material.Button.Borderless": 16974425,
        "Widget.Material.Button.Borderless.Colored": 16974426,
        "Widget.Material.Button.Borderless.Small": 16974427,
        "Widget.Material.Button.Inset": 16974428,
        "Widget.Material.Button.Small": 16974429,
        "Widget.Material.Button.Toggle": 16974430,
        "Widget.Material.ButtonBar": 16974431,
        "Widget.Material.ButtonBar.AlertDialog": 16974432,
        "Widget.Material.CalendarView": 16974433,
        "Widget.Material.CheckedTextView": 16974434,
        "Widget.Material.CompoundButton.CheckBox": 16974435,
        "Widget.Material.CompoundButton.RadioButton": 16974436,
        "Widget.Material.CompoundButton.Star": 16974437,
        "Widget.Material.DatePicker": 16974438,
        "Widget.Material.DropDownItem": 16974439,
        "Widget.Material.DropDownItem.Spinner": 16974440,
        "Widget.Material.EditText": 16974441,
        "Widget.Material.ExpandableListView": 16974442,
        "Widget.Material.FastScroll": 16974443,
        "Widget.Material.GridView": 16974444,
        "Widget.Material.HorizontalScrollView": 16974445,
        "Widget.Material.ImageButton": 16974446,
        "Widget.Material.ListPopupWindow": 16974447,
        "Widget.Material.ListView": 16974448,
        "Widget.Material.ListView.DropDown": 16974449,
        "Widget.Material.MediaRouteButton": 16974450,
        "Widget.Material.PopupMenu": 16974451,
        "Widget.Material.PopupMenu.Overflow": 16974452,
        "Widget.Material.PopupWindow": 16974453,
        "Widget.Material.ProgressBar": 16974454,
        "Widget.Material.ProgressBar.Horizontal": 16974455,
        "Widget.Material.ProgressBar.Large": 16974456,
        "Widget.Material.ProgressBar.Small": 16974457,
        "Widget.Material.ProgressBar.Small.Title": 16974458,
        "Widget.Material.RatingBar": 16974459,
        "Widget.Material.RatingBar.Indicator": 16974460,
        "Widget.Material.RatingBar.Small": 16974461,
        "Widget.Material.ScrollView": 16974462,
        "Widget.Material.SearchView": 16974463,
        "Widget.Material.SeekBar": 16974464,
        "Widget.Material.SegmentedButton": 16974465,
        "Widget.Material.StackView": 16974466,
        "Widget.Material.Spinner": 16974467,
        "Widget.Material.Spinner.Underlined": 16974468,
        "Widget.Material.Tab": 16974469,
        "Widget.Material.TabWidget": 16974470,
        "Widget.Material.TextView": 16974471,
        "Widget.Material.TextView.SpinnerItem": 16974472,
        "Widget.Material.TimePicker": 16974473,
        "Widget.Material.Toolbar": 16974474,
        "Widget.Material.Toolbar.Button.Navigation": 16974475,
        "Widget.Material.WebTextView": 16974476,
        "Widget.Material.WebView": 16974477,
        "Widget.Material.Light": 16974478,
        "Widget.Material.Light.ActionBar": 16974479,
        "Widget.Material.Light.ActionBar.Solid": 16974480,
        "Widget.Material.Light.ActionBar.TabBar": 16974481,
        "Widget.Material.Light.ActionBar.TabText": 16974482,
        "Widget.Material.Light.ActionBar.TabView": 16974483,
        "Widget.Material.Light.ActionButton": 16974484,
        "Widget.Material.Light.ActionButton.CloseMode": 16974485,
        "Widget.Material.Light.ActionButton.Overflow": 16974486,
        "Widget.Material.Light.ActionMode": 16974487,
        "Widget.Material.Light.AutoCompleteTextView": 16974488,
        "Widget.Material.Light.Button": 16974489,
        "Widget.Material.Light.Button.Borderless": 16974490,
        "Widget.Material.Light.Button.Borderless.Colored": 16974491,
        "Widget.Material.Light.Button.Borderless.Small": 16974492,
        "Widget.Material.Light.Button.Inset": 16974493,
        "Widget.Material.Light.Button.Small": 16974494,
        "Widget.Material.Light.Button.Toggle": 16974495,
        "Widget.Material.Light.ButtonBar": 16974496,
        "Widget.Material.Light.ButtonBar.AlertDialog": 16974497,
        "Widget.Material.Light.CalendarView": 16974498,
        "Widget.Material.Light.CheckedTextView": 16974499,
        "Widget.Material.Light.CompoundButton.CheckBox": 16974500,
        "Widget.Material.Light.CompoundButton.RadioButton": 16974501,
        "Widget.Material.Light.CompoundButton.Star": 16974502,
        "Widget.Material.Light.DatePicker": 16974503,
        "Widget.Material.Light.DropDownItem": 16974504,
        "Widget.Material.Light.DropDownItem.Spinner": 16974505,
        "Widget.Material.Light.EditText": 16974506,
        "Widget.Material.Light.ExpandableListView": 16974507,
        "Widget.Material.Light.FastScroll": 16974508,
        "Widget.Material.Light.GridView": 16974509,
        "Widget.Material.Light.HorizontalScrollView": 16974510,
        "Widget.Material.Light.ImageButton": 16974511,
        "Widget.Material.Light.ListPopupWindow": 16974512,
        "Widget.Material.Light.ListView": 16974513,
        "Widget.Material.Light.ListView.DropDown": 16974514,
        "Widget.Material.Light.MediaRouteButton": 16974515,
        "Widget.Material.Light.PopupMenu": 16974516,
        "Widget.Material.Light.PopupMenu.Overflow": 16974517,
        "Widget.Material.Light.PopupWindow": 16974518,
        "Widget.Material.Light.ProgressBar": 16974519,
        "Widget.Material.Light.ProgressBar.Horizontal": 16974520,
        "Widget.Material.Light.ProgressBar.Inverse": 16974521,
        "Widget.Material.Light.ProgressBar.Large": 16974522,
        "Widget.Material.Light.ProgressBar.Large.Inverse": 16974523,
        "Widget.Material.Light.ProgressBar.Small": 16974524,
        "Widget.Material.Light.ProgressBar.Small.Inverse": 16974525,
        "Widget.Material.Light.ProgressBar.Small.Title": 16974526,
        "Widget.Material.Light.RatingBar": 16974527,
        "Widget.Material.Light.RatingBar.Indicator": 16974528,
        "Widget.Material.Light.RatingBar.Small": 16974529,
        "Widget.Material.Light.ScrollView": 16974530,
        "Widget.Material.Light.SearchView": 16974531,
        "Widget.Material.Light.SeekBar": 16974532,
        "Widget.Material.Light.SegmentedButton": 16974533,
        "Widget.Material.Light.StackView": 16974534,
        "Widget.Material.Light.Spinner": 16974535,
        "Widget.Material.Light.Spinner.Underlined": 16974536,
        "Widget.Material.Light.Tab": 16974537,
        "Widget.Material.Light.TabWidget": 16974538,
        "Widget.Material.Light.TextView": 16974539,
        "Widget.Material.Light.TextView.SpinnerItem": 16974540,
        "Widget.Material.Light.TimePicker": 16974541,
        "Widget.Material.Light.WebTextView": 16974542,
        "Widget.Material.Light.WebView": 16974543,
        "Theme.Leanback.FormWizard": 16974544,
        "Theme.DeviceDefault.Dialog.Alert": 16974545,
        "Theme.DeviceDefault.Light.Dialog.Alert": 16974546,
        "Widget.Material.Button.Colored": 16974547,
        "TextAppearance.Material.Widget.Button.Inverse": 16974548,
        "Theme.Material.Light.LightStatusBar": 16974549,
        "ThemeOverlay.Material.Dialog": 16974550,
        "ThemeOverlay.Material.Dialog.Alert": 16974551,
        "Theme.Material.Light.DialogWhenLarge.DarkActionBar": 16974552,
        "Widget.Material.SeekBar.Discrete": 16974553,
        "Widget.Material.CompoundButton.Switch": 16974554,
        "Widget.Material.Light.CompoundButton.Switch": 16974555,
        "Widget.Material.NumberPicker": 16974556,
        "Widget.Material.Light.NumberPicker": 16974557,
        "TextAppearance.Material.Widget.Button.Colored": 16974558,
        "TextAppearance.Material.Widget.Button.Borderless.Colored": 16974559
    },
    "string": {
        "cancel": 17039360,
        "copy": 17039361,
        "copyUrl": 17039362,
        "cut": 17039363,
        "defaultVoiceMailAlphaTag": 17039364,
        "defaultMsisdnAlphaTag": 17039365,
        "emptyPhoneNumber": 17039366,
        "httpErrorBadUrl": 17039367,
        "httpErrorUnsupportedScheme": 17039368,
        "no": 17039369,
        "ok": 17039370,
        "paste": 17039371,
        "search_go": 17039372,
        "selectAll": 17039373,
        "unknownName": 17039374,
        "untitled": 17039375,
        "VideoView_error_button": 17039376,
        "VideoView_error_text_unknown": 17039377,
        "VideoView_error_title": 17039378,
        "yes": 17039379,
        "dialog_alert_title": 17039380,
        "VideoView_error_text_invalid_progressive_playback": 17039381,
        "selectTextMode": 17039382,
        "status_bar_notification_info_overflow": 17039383,
        "fingerprint_icon_content_description": 17039384,
        "paste_as_plain_text": 17039385,
        "autofill": 17039386
    },
    "dimen": {
        "app_icon_size": 17104896,
        "thumbnail_height": 17104897,
        "thumbnail_width": 17104898,
        "dialog_min_width_major": 17104899,
        "dialog_min_width_minor": 17104900,
        "notification_large_icon_width": 17104901,
        "notification_large_icon_height": 17104902
    },
    "color": {
        "darker_gray": 17170432,
        "primary_text_dark": 17170433,
        "primary_text_dark_nodisable": 17170434,
        "primary_text_light": 17170435,
        "primary_text_light_nodisable": 17170436,
        "secondary_text_dark": 17170437,
        "secondary_text_dark_nodisable": 17170438,
        "secondary_text_light": 17170439,
        "secondary_text_light_nodisable": 17170440,
        "tab_indicator_text": 17170441,
        "widget_edittext_dark": 17170442,
        "white": 17170443,
        "black": 17170444,
        "transparent": 17170445,
        "background_dark": 17170446,
        "background_light": 17170447,
        "tertiary_text_dark": 17170448,
        "tertiary_text_light": 17170449,
        "holo_blue_light": 17170450,
        "holo_blue_dark": 17170451,
        "holo_green_light": 17170452,
        "holo_green_dark": 17170453,
        "holo_red_light": 17170454,
        "holo_red_dark": 17170455,
        "holo_orange_light": 17170456,
        "holo_orange_dark": 17170457,
        "holo_purple": 17170458,
        "holo_blue_bright": 17170459
    },
    "array": {
        "emailAddressTypes": 17235968,
        "imProtocols": 17235969,
        "organizationTypes": 17235970,
        "phoneTypes": 17235971,
        "postalAddressTypes": 17235972,
        "config_keySystemUuidMapping": 17235973
    },
    "drawable": {
        "alert_dark_frame": 17301504,
        "alert_light_frame": 17301505,
        "arrow_down_float": 17301506,
        "arrow_up_float": 17301507,
        "btn_default": 17301508,
        "btn_default_small": 17301509,
        "btn_dropdown": 17301510,
        "btn_minus": 17301511,
        "btn_plus": 17301512,
        "btn_radio": 17301513,
        "btn_star": 17301514,
        "btn_star_big_off": 17301515,
        "btn_star_big_on": 17301516,
        "button_onoff_indicator_on": 17301517,
        "button_onoff_indicator_off": 17301518,
        "checkbox_off_background": 17301519,
        "checkbox_on_background": 17301520,
        "dialog_frame": 17301521,
        "divider_horizontal_bright": 17301522,
        "divider_horizontal_textfield": 17301523,
        "divider_horizontal_dark": 17301524,
        "divider_horizontal_dim_dark": 17301525,
        "edit_text": 17301526,
        "btn_dialog": 17301527,
        "editbox_background": 17301528,
        "editbox_background_normal": 17301529,
        "editbox_dropdown_dark_frame": 17301530,
        "editbox_dropdown_light_frame": 17301531,
        "gallery_thumb": 17301532,
        "ic_delete": 17301533,
        "ic_lock_idle_charging": 17301534,
        "ic_lock_idle_lock": 17301535,
        "ic_lock_idle_low_battery": 17301536,
        "ic_media_ff": 17301537,
        "ic_media_next": 17301538,
        "ic_media_pause": 17301539,
        "ic_media_play": 17301540,
        "ic_media_previous": 17301541,
        "ic_media_rew": 17301542,
        "ic_dialog_alert": 17301543,
        "ic_dialog_dialer": 17301544,
        "ic_dialog_email": 17301545,
        "ic_dialog_map": 17301546,
        "ic_input_add": 17301547,
        "ic_input_delete": 17301548,
        "ic_input_get": 17301549,
        "ic_lock_idle_alarm": 17301550,
        "ic_lock_lock": 17301551,
        "ic_lock_power_off": 17301552,
        "ic_lock_silent_mode": 17301553,
        "ic_lock_silent_mode_off": 17301554,
        "ic_menu_add": 17301555,
        "ic_menu_agenda": 17301556,
        "ic_menu_always_landscape_portrait": 17301557,
        "ic_menu_call": 17301558,
        "ic_menu_camera": 17301559,
        "ic_menu_close_clear_cancel": 17301560,
        "ic_menu_compass": 17301561,
        "ic_menu_crop": 17301562,
        "ic_menu_day": 17301563,
        "ic_menu_delete": 17301564,
        "ic_menu_directions": 17301565,
        "ic_menu_edit": 17301566,
        "ic_menu_gallery": 17301567,
        "ic_menu_help": 17301568,
        "ic_menu_info_details": 17301569,
        "ic_menu_manage": 17301570,
        "ic_menu_mapmode": 17301571,
        "ic_menu_month": 17301572,
        "ic_menu_more": 17301573,
        "ic_menu_my_calendar": 17301574,
        "ic_menu_mylocation": 17301575,
        "ic_menu_myplaces": 17301576,
        "ic_menu_preferences": 17301577,
        "ic_menu_recent_history": 17301578,
        "ic_menu_report_image": 17301579,
        "ic_menu_revert": 17301580,
        "ic_menu_rotate": 17301581,
        "ic_menu_save": 17301582,
        "ic_menu_search": 17301583,
        "ic_menu_send": 17301584,
        "ic_menu_set_as": 17301585,
        "ic_menu_share": 17301586,
        "ic_menu_slideshow": 17301587,
        "ic_menu_today": 17301588,
        "ic_menu_upload": 17301589,
        "ic_menu_upload_you_tube": 17301590,
        "ic_menu_view": 17301591,
        "ic_menu_week": 17301592,
        "ic_menu_zoom": 17301593,
        "ic_notification_clear_all": 17301594,
        "ic_notification_overlay": 17301595,
        "ic_partial_secure": 17301596,
        "ic_popup_disk_full": 17301597,
        "ic_popup_reminder": 17301598,
        "ic_popup_sync": 17301599,
        "ic_search_category_default": 17301600,
        "ic_secure": 17301601,
        "list_selector_background": 17301602,
        "menu_frame": 17301603,
        "menu_full_frame": 17301604,
        "menuitem_background": 17301605,
        "picture_frame": 17301606,
        "presence_away": 17301607,
        "presence_busy": 17301608,
        "presence_invisible": 17301609,
        "presence_offline": 17301610,
        "presence_online": 17301611,
        "progress_horizontal": 17301612,
        "progress_indeterminate_horizontal": 17301613,
        "radiobutton_off_background": 17301614,
        "radiobutton_on_background": 17301615,
        "spinner_background": 17301616,
        "spinner_dropdown_background": 17301617,
        "star_big_on": 17301618,
        "star_big_off": 17301619,
        "star_on": 17301620,
        "star_off": 17301621,
        "stat_notify_call_mute": 17301622,
        "stat_notify_chat": 17301623,
        "stat_notify_error": 17301624,
        "stat_notify_more": 17301625,
        "stat_notify_sdcard": 17301626,
        "stat_notify_sdcard_usb": 17301627,
        "stat_notify_sync": 17301628,
        "stat_notify_sync_noanim": 17301629,
        "stat_notify_voicemail": 17301630,
        "stat_notify_missed_call": 17301631,
        "stat_sys_data_bluetooth": 17301632,
        "stat_sys_download": 17301633,
        "stat_sys_download_done": 17301634,
        "stat_sys_headset": 17301635,
        "stat_sys_phone_call": 17301636,
        "stat_sys_phone_call_forward": 17301637,
        "stat_sys_phone_call_on_hold": 17301638,
        "stat_sys_speakerphone": 17301639,
        "stat_sys_upload": 17301640,
        "stat_sys_upload_done": 17301641,
        "stat_sys_warning": 17301642,
        "status_bar_item_app_background": 17301643,
        "status_bar_item_background": 17301644,
        "sym_action_call": 17301645,
        "sym_action_chat": 17301646,
        "sym_action_email": 17301647,
        "sym_call_incoming": 17301648,
        "sym_call_missed": 17301649,
        "sym_call_outgoing": 17301650,
        "sym_def_app_icon": 17301651,
        "sym_contact_card": 17301652,
        "title_bar": 17301653,
        "toast_frame": 17301654,
        "zoom_plate": 17301655,
        "screen_background_dark": 17301656,
        "screen_background_light": 17301657,
        "bottom_bar": 17301658,
        "ic_dialog_info": 17301659,
        "ic_menu_sort_alphabetically": 17301660,
        "ic_menu_sort_by_size": 17301661,
        "ic_btn_speak_now": 17301668,
        "dark_header": 17301669,
        "title_bar_tall": 17301670,
        "stat_sys_vp_phone_call": 17301671,
        "stat_sys_vp_phone_call_on_hold": 17301672,
        "screen_background_dark_transparent": 17301673,
        "screen_background_light_transparent": 17301674,
        "stat_notify_sdcard_prepare": 17301675,
        "presence_video_away": 17301676,
        "presence_video_busy": 17301677,
        "presence_video_online": 17301678,
        "presence_audio_away": 17301679,
        "presence_audio_busy": 17301680,
        "presence_audio_online": 17301681,
        "dialog_holo_dark_frame": 17301682,
        "dialog_holo_light_frame": 17301683
    },
    "layout": {
        "activity_list_item": 17367040,
        "expandable_list_content": 17367041,
        "preference_category": 17367042,
        "simple_list_item_1": 17367043,
        "simple_list_item_2": 17367044,
        "simple_list_item_checked": 17367045,
        "simple_expandable_list_item_1": 17367046,
        "simple_expandable_list_item_2": 17367047,
        "simple_spinner_item": 17367048,
        "simple_spinner_dropdown_item": 17367049,
        "simple_dropdown_item_1line": 17367050,
        "simple_gallery_item": 17367051,
        "test_list_item": 17367052,
        "two_line_list_item": 17367053,
        "browser_link_context_header": 17367054,
        "simple_list_item_single_choice": 17367055,
        "simple_list_item_multiple_choice": 17367056,
        "select_dialog_item": 17367057,
        "select_dialog_singlechoice": 17367058,
        "select_dialog_multichoice": 17367059,
        "list_content": 17367060,
        "simple_selectable_list_item": 17367061,
        "simple_list_item_activated_1": 17367062,
        "simple_list_item_activated_2": 17367063
    },
    "anim": {
        "fade_in": 17432576,
        "fade_out": 17432577,
        "slide_in_left": 17432578,
        "slide_out_right": 17432579,
        "accelerate_decelerate_interpolator": 17432580,
        "accelerate_interpolator": 17432581,
        "decelerate_interpolator": 17432582,
        "anticipate_interpolator": 17432583,
        "overshoot_interpolator": 17432584,
        "anticipate_overshoot_interpolator": 17432585,
        "bounce_interpolator": 17432586,
        "linear_interpolator": 17432587,
        "cycle_interpolator": 17432588
    },
    "integer": {
        "config_shortAnimTime": 17694720,
        "config_mediumAnimTime": 17694721,
        "config_longAnimTime": 17694722,
        "status_bar_notification_info_maxnum": 17694723
    },
    "animator": {
        "fade_in": 17498112,
        "fade_out": 17498113
    },
    "interpolator": {
        "accelerate_quad": 17563648,
        "decelerate_quad": 17563649,
        "accelerate_cubic": 17563650,
        "decelerate_cubic": 17563651,
        "accelerate_quint": 17563652,
        "decelerate_quint": 17563653,
        "accelerate_decelerate": 17563654,
        "anticipate": 17563655,
        "overshoot": 17563656,
        "anticipate_overshoot": 17563657,
        "bounce": 17563658,
        "linear": 17563659,
        "cycle": 17563660,
        "fast_out_slow_in": 17563661,
        "linear_out_slow_in": 17563662,
        "fast_out_linear_in": 17563663
    },
    "mipmap": {
        "sym_def_app_icon": 17629184
    },
    "transition": {
        "no_transition": 17760256,
        "move": 17760257,
        "fade": 17760258,
        "explode": 17760259,
        "slide_bottom": 17760260,
        "slide_top": 17760261,
        "slide_right": 17760262,
        "slide_left": 17760263
    },
    "raw": {
        "loaderror": 17825792,
        "nodomain": 17825793
    }
}