merger.xml
619 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
<?xml version="1.0" encoding="utf-8"?>
<merger version="3" xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:sec:4.1.3$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/c3931bb8cf7bd1ffa655edd705d2a8de/jetified-sec-4.1.3/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:sec:4.1.3" from-dependency="true" generated-set="com.hhmedic.android.sdk:sec:4.1.3$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/c3931bb8cf7bd1ffa655edd705d2a8de/jetified-sec-4.1.3/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/c3931bb8cf7bd1ffa655edd705d2a8de/jetified-sec-4.1.3/res/values/values.xml" qualifiers=""><string name="app_name">MobSecLib</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.alexvasilkov:android-commons:2.0.2$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/49d3e7d0ff8072de34c1dc8148c0adae/jetified-android-commons-2.0.2/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.alexvasilkov:android-commons:2.0.2" from-dependency="true" generated-set="com.alexvasilkov:android-commons:2.0.2$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/49d3e7d0ff8072de34c1dc8148c0adae/jetified-android-commons-2.0.2/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.facebook.fresco:drawee:1.13.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/1c3ed1454e9321f7ac734c123045d091/jetified-drawee-1.13.0/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.facebook.fresco:drawee:1.13.0" from-dependency="true" generated-set="com.facebook.fresco:drawee:1.13.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/1c3ed1454e9321f7ac734c123045d091/jetified-drawee-1.13.0/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/1c3ed1454e9321f7ac734c123045d091/jetified-drawee-1.13.0/res/values/values.xml" qualifiers=""><declare-styleable name="GenericDraweeHierarchy">
<eat-comment/>
<attr format="integer" name="fadeDuration"/>
<attr format="float" name="viewAspectRatio"/>
<attr format="reference" name="placeholderImage"/>
<attr name="placeholderImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="reference" name="retryImage"/>
<attr name="retryImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="reference" name="failureImage"/>
<attr name="failureImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="reference" name="progressBarImage"/>
<attr name="progressBarImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="integer" name="progressBarAutoRotateInterval"/>
<attr name="actualImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="reference" name="backgroundImage"/>
<attr format="reference" name="overlayImage"/>
<attr format="reference" name="pressedStateOverlayImage"/>
<attr format="boolean" name="roundAsCircle"/>
<attr format="dimension" name="roundedCornerRadius"/>
<attr format="boolean" name="roundTopLeft"/>
<attr format="boolean" name="roundTopRight"/>
<attr format="boolean" name="roundBottomRight"/>
<attr format="boolean" name="roundBottomLeft"/>
<attr format="boolean" name="roundTopStart"/>
<attr format="boolean" name="roundTopEnd"/>
<attr format="boolean" name="roundBottomStart"/>
<attr format="boolean" name="roundBottomEnd"/>
<attr format="color" name="roundWithOverlayColor"/>
<attr format="dimension" name="roundingBorderWidth"/>
<attr format="color" name="roundingBorderColor"/>
<attr format="dimension" name="roundingBorderPadding"/>
</declare-styleable><declare-styleable name="SimpleDraweeView" parent="GenericDraweeHierarchy">
<attr format="string" name="actualImageUri"/>
<attr format="reference" name="actualImageResource"/>
<eat-comment/>
<attr name="fadeDuration"/>
<attr name="viewAspectRatio"/>
<attr name="placeholderImage"/>
<attr name="placeholderImageScaleType"/>
<attr name="retryImage"/>
<attr name="retryImageScaleType"/>
<attr name="failureImage"/>
<attr name="failureImageScaleType"/>
<attr name="progressBarImage"/>
<attr name="progressBarImageScaleType"/>
<attr name="progressBarAutoRotateInterval"/>
<attr name="actualImageScaleType"/>
<attr name="backgroundImage"/>
<attr name="overlayImage"/>
<attr name="pressedStateOverlayImage"/>
<attr name="roundAsCircle"/>
<attr name="roundedCornerRadius"/>
<attr name="roundTopLeft"/>
<attr name="roundTopRight"/>
<attr name="roundBottomRight"/>
<attr name="roundBottomLeft"/>
<attr name="roundTopStart"/>
<attr name="roundTopEnd"/>
<attr name="roundBottomStart"/>
<attr name="roundBottomEnd"/>
<attr name="roundWithOverlayColor"/>
<attr name="roundingBorderWidth"/>
<attr name="roundingBorderColor"/>
<attr name="roundingBorderPadding"/>
</declare-styleable></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.core:core:1.1.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.core:core:1.1.0" from-dependency="true" generated-set="androidx.core:core:1.1.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-v21/values-v21.xml" qualifiers="v21"><color name="notification_action_color_filter">@color/secondary_text_default_material_light</color><dimen name="notification_content_margin_start">0dp</dimen><dimen name="notification_main_column_padding_top">0dp</dimen><dimen name="notification_media_narrow_margin">12dp</dimen><style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.Material.Notification"/><style name="TextAppearance.Compat.Notification.Info" parent="@android:style/TextAppearance.Material.Notification.Info"/><style name="TextAppearance.Compat.Notification.Time" parent="@android:style/TextAppearance.Material.Notification.Time"/><style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.Material.Notification.Title"/><style name="Widget.Compat.NotificationActionContainer" parent="">
<item name="android:background">@drawable/notification_action_background</item>
</style><style name="Widget.Compat.NotificationActionText" parent="">
<item name="android:textAppearance">?android:attr/textAppearanceButton</item>
<item name="android:textColor">@color/secondary_text_default_material_light</item>
<item name="android:textSize">@dimen/notification_action_text_size</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ro/values-ro.xml" qualifiers="ro"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-te/values-te.xml" qualifiers="te"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ru/values-ru.xml" qualifiers="ru"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">">999"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-tl/values-tl.xml" qualifiers="tl"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-v16/values-v16.xml" qualifiers="v16"><dimen name="notification_right_side_padding_top">4dp</dimen></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-zh-rTW/values-zh-rTW.xml" qualifiers="zh-rTW"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-it/values-it.xml" qualifiers="it"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ca/values-ca.xml" qualifiers="ca"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-is/values-is.xml" qualifiers="is"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-cs/values-cs.xml" qualifiers="cs"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-zh-rCN/values-zh-rCN.xml" qualifiers="zh-rCN"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-in/values-in.xml" qualifiers="in"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ja/values-ja.xml" qualifiers="ja"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-el/values-el.xml" qualifiers="el"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-lv/values-lv.xml" qualifiers="lv"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-da/values-da.xml" qualifiers="da"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-mr/values-mr.xml" qualifiers="mr"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"९९९+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-kk/values-kk.xml" qualifiers="kk"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ky/values-ky.xml" qualifiers="ky"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-gu/values-gu.xml" qualifiers="gu"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-en-rCA/values-en-rCA.xml" qualifiers="en-rCA"><string msgid="7988687684186075107" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-mn/values-mn.xml" qualifiers="mn"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-en-rIN/values-en-rIN.xml" qualifiers="en-rIN"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ms/values-ms.xml" qualifiers="ms"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-zh-rHK/values-zh-rHK.xml" qualifiers="zh-rHK"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-km/values-km.xml" qualifiers="km"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-pt-rBR/values-pt-rBR.xml" qualifiers="pt-rBR"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-hy/values-hy.xml" qualifiers="hy"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-am/values-am.xml" qualifiers="am"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-be/values-be.xml" qualifiers="be"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values/values.xml" qualifiers=""><color name="notification_action_color_filter">#ffffffff</color><color name="notification_icon_bg_color">#ff9e9e9e</color><color name="ripple_material_light">#1f000000</color><color name="secondary_text_default_material_light">#8a000000</color><dimen name="compat_button_inset_horizontal_material">4dp</dimen><dimen name="compat_button_inset_vertical_material">6dp</dimen><dimen name="compat_button_padding_horizontal_material">8dp</dimen><dimen name="compat_button_padding_vertical_material">4dp</dimen><dimen name="compat_control_corner_material">2dp</dimen><dimen name="compat_notification_large_icon_max_height">320dp</dimen><dimen name="compat_notification_large_icon_max_width">320dp</dimen><dimen name="notification_action_icon_size">32dp</dimen><dimen name="notification_action_text_size">13sp</dimen><dimen name="notification_big_circle_margin">12dp</dimen><dimen name="notification_content_margin_start">8dp</dimen><dimen name="notification_large_icon_height">64dp</dimen><dimen name="notification_large_icon_width">64dp</dimen><dimen name="notification_main_column_padding_top">10dp</dimen><dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen><dimen name="notification_right_icon_size">16dp</dimen><dimen name="notification_right_side_padding_top">2dp</dimen><dimen name="notification_small_icon_background_padding">3dp</dimen><dimen name="notification_small_icon_size_as_large">24dp</dimen><dimen name="notification_subtext_size">13sp</dimen><dimen name="notification_top_pad">10dp</dimen><dimen name="notification_top_pad_large_text">5dp</dimen><drawable name="notification_template_icon_bg">#3333B5E5</drawable><drawable name="notification_template_icon_low_bg">#0cffffff</drawable><item name="accessibility_action_clickable_span" type="id"/><item name="accessibility_custom_action_0" type="id"/><item name="accessibility_custom_action_1" type="id"/><item name="accessibility_custom_action_10" type="id"/><item name="accessibility_custom_action_11" type="id"/><item name="accessibility_custom_action_12" type="id"/><item name="accessibility_custom_action_13" type="id"/><item name="accessibility_custom_action_14" type="id"/><item name="accessibility_custom_action_15" type="id"/><item name="accessibility_custom_action_16" type="id"/><item name="accessibility_custom_action_17" type="id"/><item name="accessibility_custom_action_18" type="id"/><item name="accessibility_custom_action_19" type="id"/><item name="accessibility_custom_action_2" type="id"/><item name="accessibility_custom_action_20" type="id"/><item name="accessibility_custom_action_21" type="id"/><item name="accessibility_custom_action_22" type="id"/><item name="accessibility_custom_action_23" type="id"/><item name="accessibility_custom_action_24" type="id"/><item name="accessibility_custom_action_25" type="id"/><item name="accessibility_custom_action_26" type="id"/><item name="accessibility_custom_action_27" type="id"/><item name="accessibility_custom_action_28" type="id"/><item name="accessibility_custom_action_29" type="id"/><item name="accessibility_custom_action_3" type="id"/><item name="accessibility_custom_action_30" type="id"/><item name="accessibility_custom_action_31" type="id"/><item name="accessibility_custom_action_4" type="id"/><item name="accessibility_custom_action_5" type="id"/><item name="accessibility_custom_action_6" type="id"/><item name="accessibility_custom_action_7" type="id"/><item name="accessibility_custom_action_8" type="id"/><item name="accessibility_custom_action_9" type="id"/><item name="line1" type="id"/><item name="line3" type="id"/><item name="tag_accessibility_actions" type="id"/><item name="tag_accessibility_clickable_spans" type="id"/><item name="tag_accessibility_heading" type="id"/><item name="tag_accessibility_pane_title" type="id"/><item name="tag_screen_reader_focusable" type="id"/><item name="tag_transition_group" type="id"/><item name="tag_unhandled_key_event_manager" type="id"/><item name="tag_unhandled_key_listeners" type="id"/><item name="text" type="id"/><item name="text2" type="id"/><item name="title" type="id"/><integer name="status_bar_notification_info_maxnum">999</integer><string name="status_bar_notification_info_overflow">999+</string><style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/><style name="TextAppearance.Compat.Notification.Info">
<item name="android:textSize">12sp</item>
<item name="android:textColor">?android:attr/textColorSecondary</item>
</style><style name="TextAppearance.Compat.Notification.Line2" parent="TextAppearance.Compat.Notification.Info"/><style name="TextAppearance.Compat.Notification.Time">
<item name="android:textSize">12sp</item>
<item name="android:textColor">?android:attr/textColorSecondary</item>
</style><style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/><style name="Widget.Compat.NotificationActionContainer" parent=""/><style name="Widget.Compat.NotificationActionText" parent=""/><declare-styleable name="ColorStateListItem">
<attr name="android:color"/>
<attr format="float" name="alpha"/>
<attr name="android:alpha"/>
</declare-styleable><declare-styleable name="FontFamily">
<attr format="string" name="fontProviderAuthority"/>
<attr format="string" name="fontProviderPackage"/>
<attr format="string" name="fontProviderQuery"/>
<attr format="reference" name="fontProviderCerts"/>
<attr name="fontProviderFetchStrategy">
<enum name="blocking" value="0"/>
<enum name="async" value="1"/>
</attr>
<attr format="integer" name="fontProviderFetchTimeout">
<enum name="forever" value="-1"/>
</attr>
</declare-styleable><declare-styleable name="FontFamilyFont">
<attr name="fontStyle">
<enum name="normal" value="0"/>
<enum name="italic" value="1"/>
</attr>
<attr format="reference" name="font"/>
<attr format="integer" name="fontWeight"/>
<attr format="string" name="fontVariationSettings"/>
<attr format="integer" name="ttcIndex"/>
<attr name="android:fontStyle"/>
<attr name="android:font"/>
<attr name="android:fontWeight"/>
<attr name="android:fontVariationSettings"/>
<attr name="android:ttcIndex"/>
</declare-styleable><declare-styleable name="GradientColor">
<attr name="android:startColor"/>
<attr name="android:centerColor"/>
<attr name="android:endColor"/>
<attr name="android:type"/>
<attr name="android:gradientRadius"/>
<attr name="android:centerX"/>
<attr name="android:centerY"/>
<attr name="android:startX"/>
<attr name="android:startY"/>
<attr name="android:endX"/>
<attr name="android:endY"/>
<attr name="android:tileMode"/>
</declare-styleable><declare-styleable name="GradientColorItem">
<attr name="android:offset"/>
<attr name="android:color"/>
</declare-styleable></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-uz/values-uz.xml" qualifiers="uz"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-fr-rCA/values-fr-rCA.xml" qualifiers="fr-rCA"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-pl/values-pl.xml" qualifiers="pl"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-vi/values-vi.xml" qualifiers="vi"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-sq/values-sq.xml" qualifiers="sq"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-sv/values-sv.xml" qualifiers="sv"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-sl/values-sl.xml" qualifiers="sl"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-sk/values-sk.xml" qualifiers="sk"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ur/values-ur.xml" qualifiers="ur"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"+999"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-sw/values-sw.xml" qualifiers="sw"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-pt-rPT/values-pt-rPT.xml" qualifiers="pt-rPT"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-tr/values-tr.xml" qualifiers="tr"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ta/values-ta.xml" qualifiers="ta"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-th/values-th.xml" qualifiers="th"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-fa/values-fa.xml" qualifiers="fa"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-lt/values-lt.xml" qualifiers="lt"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-or/values-or.xml" qualifiers="or"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-eu/values-eu.xml" qualifiers="eu"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-lo/values-lo.xml" qualifiers="lo"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-iw/values-iw.xml" qualifiers="iw"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-en-rGB/values-en-rGB.xml" qualifiers="en-rGB"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-fi/values-fi.xml" qualifiers="fi"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-en-rAU/values-en-rAU.xml" qualifiers="en-rAU"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-fr/values-fr.xml" qualifiers="fr"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-es/values-es.xml" qualifiers="es"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-et/values-et.xml" qualifiers="et"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-hr/values-hr.xml" qualifiers="hr"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-hu/values-hu.xml" qualifiers="hu"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-nl/values-nl.xml" qualifiers="nl"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-bg/values-bg.xml" qualifiers="bg"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-bn/values-bn.xml" qualifiers="bn"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"৯৯৯+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ne/values-ne.xml" qualifiers="ne"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"९९९+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-af/values-af.xml" qualifiers="af"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-nb/values-nb.xml" qualifiers="nb"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-hi/values-hi.xml" qualifiers="hi"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ka/values-ka.xml" qualifiers="ka"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-de/values-de.xml" qualifiers="de"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-as/values-as.xml" qualifiers="as"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"৯৯৯+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-az/values-az.xml" qualifiers="az"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ko/values-ko.xml" qualifiers="ko"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ml/values-ml.xml" qualifiers="ml"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-mk/values-mk.xml" qualifiers="mk"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-kn/values-kn.xml" qualifiers="kn"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-bs/values-bs.xml" qualifiers="bs"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-my/values-my.xml" qualifiers="my"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"၉၉၉+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-ar/values-ar.xml" qualifiers="ar"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-es-rUS/values-es-rUS.xml" qualifiers="es-rUS"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-gl/values-gl.xml" qualifiers="gl"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">">999"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-pt/values-pt.xml" qualifiers="pt"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-uk/values-uk.xml" qualifiers="uk"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-sr/values-sr.xml" qualifiers="sr"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-pa/values-pa.xml" qualifiers="pa"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-si/values-si.xml" qualifiers="si"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-b+sr+Latn/values-b+sr+Latn.xml" qualifiers="b+sr+Latn"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-en-rXC/values-en-rXC.xml" qualifiers="en-rXC"><string msgid="7988687684186075107" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/e601daed4ba62929db8b322b2974c8f8/core-1.1.0/res/values-zu/values-zu.xml" qualifiers="zu"><string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.coordinatorlayout:coordinatorlayout:1.0.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/0de5a5a7f36e155ee93907dfd1c4b4a9/coordinatorlayout-1.0.0/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.coordinatorlayout:coordinatorlayout:1.0.0" from-dependency="true" generated-set="androidx.coordinatorlayout:coordinatorlayout:1.0.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/0de5a5a7f36e155ee93907dfd1c4b4a9/coordinatorlayout-1.0.0/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/0de5a5a7f36e155ee93907dfd1c4b4a9/coordinatorlayout-1.0.0/res/values/values.xml" qualifiers=""><attr format="reference" name="coordinatorLayoutStyle"/><declare-styleable name="CoordinatorLayout">
<attr format="reference" name="keylines"/>
<attr format="color|reference" name="statusBarBackground"/>
</declare-styleable><declare-styleable name="CoordinatorLayout_Layout">
<attr name="android:layout_gravity"/>
<attr format="string" name="layout_behavior"/>
<attr format="reference" name="layout_anchor"/>
<attr format="integer" name="layout_keyline"/>
<attr name="layout_anchorGravity">
<flag name="top" value="0x30"/>
<flag name="bottom" value="0x50"/>
<flag name="left" value="0x03"/>
<flag name="right" value="0x05"/>
<flag name="center_vertical" value="0x10"/>
<flag name="fill_vertical" value="0x70"/>
<flag name="center_horizontal" value="0x01"/>
<flag name="fill_horizontal" value="0x07"/>
<flag name="center" value="0x11"/>
<flag name="fill" value="0x77"/>
<flag name="clip_vertical" value="0x80"/>
<flag name="clip_horizontal" value="0x08"/>
<flag name="start" value="0x00800003"/>
<flag name="end" value="0x00800005"/>
</attr>
<attr format="enum" name="layout_insetEdge">
<enum name="none" value="0x0"/>
<enum name="top" value="0x30"/>
<enum name="bottom" value="0x50"/>
<enum name="left" value="0x03"/>
<enum name="right" value="0x05"/>
<enum name="start" value="0x00800003"/>
<enum name="end" value="0x00800005"/>
</attr>
<attr name="layout_dodgeInsetEdges">
<flag name="none" value="0x0"/>
<flag name="top" value="0x30"/>
<flag name="bottom" value="0x50"/>
<flag name="left" value="0x03"/>
<flag name="right" value="0x05"/>
<flag name="start" value="0x00800003"/>
<flag name="end" value="0x00800005"/>
<flag name="all" value="0x77"/>
</attr>
</declare-styleable><style name="Widget.Support.CoordinatorLayout" parent="android:Widget">
<item name="statusBarBackground">#000000</item>
</style></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.media:media:1.0.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/ad61398286308039656eb09d36755285/media-1.0.0/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.media:media:1.0.0" from-dependency="true" generated-set="androidx.media:media:1.0.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/ad61398286308039656eb09d36755285/media-1.0.0/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/ad61398286308039656eb09d36755285/media-1.0.0/res/values-v21/values-v21.xml" qualifiers="v21"><style name="TextAppearance.Compat.Notification.Info.Media">
<item name="android:textColor">@color/secondary_text_default_material_dark</item>
</style><style name="TextAppearance.Compat.Notification.Media">
<item name="android:textColor">@color/secondary_text_default_material_dark</item>
</style><style name="TextAppearance.Compat.Notification.Time.Media">
<item name="android:textColor">@color/secondary_text_default_material_dark</item>
</style><style name="TextAppearance.Compat.Notification.Title.Media">
<item name="android:textColor">@color/primary_text_default_material_dark</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/ad61398286308039656eb09d36755285/media-1.0.0/res/values/values.xml" qualifiers=""><color name="notification_material_background_media_default_color">#ff424242</color><color name="primary_text_default_material_dark">#ffffffff</color><color name="secondary_text_default_material_dark">#b3ffffff</color><dimen name="subtitle_corner_radius">2dp</dimen><dimen name="subtitle_outline_width">2dp</dimen><dimen name="subtitle_shadow_offset">2dp</dimen><dimen name="subtitle_shadow_radius">2dp</dimen><integer name="cancel_button_image_alpha">127</integer><style name="TextAppearance.Compat.Notification.Info.Media"/><style name="TextAppearance.Compat.Notification.Line2.Media" parent="TextAppearance.Compat.Notification.Info.Media"/><style name="TextAppearance.Compat.Notification.Media"/><style name="TextAppearance.Compat.Notification.Time.Media"/><style name="TextAppearance.Compat.Notification.Title.Media"/></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/ad61398286308039656eb09d36755285/media-1.0.0/res/values-v24/values-v24.xml" qualifiers="v24"><style name="TextAppearance.Compat.Notification.Info.Media"/><style name="TextAppearance.Compat.Notification.Media"/><style name="TextAppearance.Compat.Notification.Time.Media"/><style name="TextAppearance.Compat.Notification.Title.Media"/></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.tencent.liteav:LiteAVSDK_TRTC:8.4.9947$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/14600623d25f5bc43d833c1fcce09f45/jetified-LiteAVSDK_TRTC-8.4.9947/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.tencent.liteav:LiteAVSDK_TRTC:8.4.9947" from-dependency="true" generated-set="com.tencent.liteav:LiteAVSDK_TRTC:8.4.9947$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/14600623d25f5bc43d833c1fcce09f45/jetified-LiteAVSDK_TRTC-8.4.9947/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/14600623d25f5bc43d833c1fcce09f45/jetified-LiteAVSDK_TRTC-8.4.9947/res/values/values.xml" qualifiers=""><string name="app_name">basic</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.tencent.imsdk:imsdk:5.1.56$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/a811994f22d3ed529d643bf02d84d9c5/jetified-imsdk-5.1.56/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.tencent.imsdk:imsdk:5.1.56" from-dependency="true" generated-set="com.tencent.imsdk:imsdk:5.1.56$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/a811994f22d3ed529d643bf02d84d9c5/jetified-imsdk-5.1.56/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/a811994f22d3ed529d643bf02d84d9c5/jetified-imsdk-5.1.56/res/values/values.xml" qualifiers=""><string name="app_name">sdk</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.github.bumptech.glide:glide:4.9.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/c754a8ac80ae83eee2faba360188e773/jetified-glide-4.9.0/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.github.bumptech.glide:glide:4.9.0" from-dependency="true" generated-set="com.github.bumptech.glide:glide:4.9.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/c754a8ac80ae83eee2faba360188e773/jetified-glide-4.9.0/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/c754a8ac80ae83eee2faba360188e773/jetified-glide-4.9.0/res/values/values.xml" qualifiers=""><item name="glide_custom_view_target_tag" type="id"/></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.recyclerview:recyclerview:1.1.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/8eb429c297537d6ea02c3f7824ce56bd/recyclerview-1.1.0/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.recyclerview:recyclerview:1.1.0" from-dependency="true" generated-set="androidx.recyclerview:recyclerview:1.1.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/8eb429c297537d6ea02c3f7824ce56bd/recyclerview-1.1.0/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/8eb429c297537d6ea02c3f7824ce56bd/recyclerview-1.1.0/res/values/values.xml" qualifiers=""><attr format="reference" name="recyclerViewStyle"/><dimen name="fastscroll_default_thickness">8dp</dimen><dimen name="fastscroll_margin">0dp</dimen><dimen name="fastscroll_minimum_range">50dp</dimen><dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen><dimen name="item_touch_helper_swipe_escape_max_velocity">800dp</dimen><dimen name="item_touch_helper_swipe_escape_velocity">120dp</dimen><item name="item_touch_helper_previous_elevation" type="id"/><declare-styleable name="RecyclerView">
<attr format="string" name="layoutManager"/>
<eat-comment/>
<attr name="android:orientation"/>
<attr name="android:descendantFocusability"/>
<attr name="android:clipToPadding"/>
<attr format="integer" name="spanCount"/>
<attr format="boolean" name="reverseLayout"/>
<attr format="boolean" name="stackFromEnd"/>
<attr format="boolean" name="fastScrollEnabled"/>
<attr format="reference" name="fastScrollVerticalThumbDrawable"/>
<attr format="reference" name="fastScrollVerticalTrackDrawable"/>
<attr format="reference" name="fastScrollHorizontalThumbDrawable"/>
<attr format="reference" name="fastScrollHorizontalTrackDrawable"/>
</declare-styleable></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.appcompat:appcompat:1.0.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.appcompat:appcompat:1.0.0" from-dependency="true" generated-set="androidx.appcompat:appcompat:1.0.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v17/values-v17.xml" qualifiers="v17"><style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
<item name="android:textAlignment">viewStart</item>
</style><style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
<item name="android:layout_gravity">center_vertical|start</item>
<item name="android:paddingEnd">8dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
<item name="android:layout_marginEnd">8dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
<item name="android:paddingEnd">16dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
<item name="android:layout_marginStart">16dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget">
<item name="android:layout_marginStart">16dp</item>
<item name="android:textAlignment">viewEnd</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget">
<item name="android:layout_marginStart">8dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
<item name="android:layout_alignParentStart">true</item>
<item name="android:textAlignment">viewStart</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget">
<item name="android:layout_marginStart">16dp</item>
<item name="android:textAlignment">viewStart</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
<item name="android:paddingStart">@dimen/abc_dropdownitem_text_padding_left</item>
<item name="android:paddingEnd">4dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
<item name="android:layout_alignParentStart">true</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
<item name="android:layout_toStartOf">@id/edit_query</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
<item name="android:layout_alignParentEnd">true</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
<item name="android:layout_toStartOf">@android:id/icon2</item>
<item name="android:layout_toEndOf">@android:id/icon1</item>
</style><style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
<item name="android:layout_marginStart">@dimen/abc_dropdownitem_text_padding_left</item>
</style><style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
<item name="android:paddingStart">12dp</item>
<item name="android:paddingEnd">12dp</item>
</style><style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
<item name="android:paddingStart">@dimen/abc_action_bar_overflow_padding_start_material</item>
<item name="android:paddingEnd">@dimen/abc_action_bar_overflow_padding_end_material</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v28/values-v28.xml" qualifiers="v28"><style name="Base.Theme.AppCompat" parent="Base.V28.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V28.Theme.AppCompat.Light"/><style name="Base.V28.Theme.AppCompat" parent="Base.V26.Theme.AppCompat">
<item name="dialogCornerRadius">?android:attr/dialogCornerRadius</item>
</style><style name="Base.V28.Theme.AppCompat.Light" parent="Base.V26.Theme.AppCompat.Light">
<item name="dialogCornerRadius">?android:attr/dialogCornerRadius</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v26/values-v26.xml" qualifiers="v26"><style name="Base.Theme.AppCompat" parent="Base.V26.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V26.Theme.AppCompat.Light"/><style name="Base.V26.Theme.AppCompat" parent="Base.V23.Theme.AppCompat">
<item name="colorError">?android:attr/colorError</item>
</style><style name="Base.V26.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light">
<item name="colorError">?android:attr/colorError</item>
</style><style name="Base.V26.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar">
<item name="android:touchscreenBlocksFocus">true</item>
<item name="android:keyboardNavigationCluster">true</item>
</style><style name="Base.Widget.AppCompat.Toolbar" parent="Base.V26.Widget.AppCompat.Toolbar"/></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v21/values-v21.xml" qualifiers="v21"><style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance.Material"/><style name="Base.TextAppearance.AppCompat.Body1" parent="android:TextAppearance.Material.Body1"/><style name="Base.TextAppearance.AppCompat.Body2" parent="android:TextAppearance.Material.Body2"/><style name="Base.TextAppearance.AppCompat.Button" parent="android:TextAppearance.Material.Button"/><style name="Base.TextAppearance.AppCompat.Caption" parent="android:TextAppearance.Material.Caption"/><style name="Base.TextAppearance.AppCompat.Display1" parent="android:TextAppearance.Material.Display1"/><style name="Base.TextAppearance.AppCompat.Display2" parent="android:TextAppearance.Material.Display2"/><style name="Base.TextAppearance.AppCompat.Display3" parent="android:TextAppearance.Material.Display3"/><style name="Base.TextAppearance.AppCompat.Display4" parent="android:TextAppearance.Material.Display4"/><style name="Base.TextAppearance.AppCompat.Headline" parent="android:TextAppearance.Material.Headline"/><style name="Base.TextAppearance.AppCompat.Inverse" parent="android:TextAppearance.Material.Inverse"/><style name="Base.TextAppearance.AppCompat.Large" parent="android:TextAppearance.Material.Large"/><style name="Base.TextAppearance.AppCompat.Large.Inverse" parent="android:TextAppearance.Material.Large.Inverse"/><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
</style><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
</style><style name="Base.TextAppearance.AppCompat.Medium" parent="android:TextAppearance.Material.Medium"/><style name="Base.TextAppearance.AppCompat.Medium.Inverse" parent="android:TextAppearance.Material.Medium.Inverse"/><style name="Base.TextAppearance.AppCompat.Menu" parent="android:TextAppearance.Material.Menu"/><style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle" parent="android:TextAppearance.Material.SearchResult.Subtitle">
</style><style name="Base.TextAppearance.AppCompat.SearchResult.Title" parent="android:TextAppearance.Material.SearchResult.Title">
</style><style name="Base.TextAppearance.AppCompat.Small" parent="android:TextAppearance.Material.Small"/><style name="Base.TextAppearance.AppCompat.Small.Inverse" parent="android:TextAppearance.Material.Small.Inverse"/><style name="Base.TextAppearance.AppCompat.Subhead" parent="android:TextAppearance.Material.Subhead"/><style name="Base.TextAppearance.AppCompat.Title" parent="android:TextAppearance.Material.Title"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse">
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Title.Inverse">
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="android:TextAppearance.Material.Widget.ActionMode.Subtitle">
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="android:TextAppearance.Material.Widget.ActionMode.Title">
</style><style name="Base.TextAppearance.AppCompat.Widget.Button" parent="android:TextAppearance.Material.Widget.Button"/><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
<item name="android:fontFamily">@string/abc_font_family_title_material</item>
<item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
<item name="android:textColor">?android:attr/textColorSecondary</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
</style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
</style><style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="android:TextAppearance.Material.Button"/><style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="android:TextAppearance.Material.Widget.TextView.SpinnerItem"/><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
</style><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
</style><style name="Base.Theme.AppCompat" parent="Base.V21.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog"/><style name="Base.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light"/><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog"/><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V21.ThemeOverlay.AppCompat.Dialog"/><style name="Base.V21.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
<item name="actionBarSize">?android:attr/actionBarSize</item>
<item name="actionBarDivider">?android:attr/actionBarDivider</item>
<item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
<item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
<item name="actionModeBackground">?android:attr/actionModeBackground</item>
<item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
<item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
<item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
<item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
<item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
<item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
<item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
<item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
<item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
<item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
<item name="dividerVertical">?android:attr/dividerVertical</item>
<item name="editTextBackground">@drawable/abc_edit_text_material</item>
<item name="editTextColor">?android:attr/editTextColor</item>
<item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
<item name="buttonStyle">?android:attr/buttonStyle</item>
<item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
<item name="checkboxStyle">?android:attr/checkboxStyle</item>
<item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
<item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
<item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
<item name="spinnerStyle">?android:attr/spinnerStyle</item>
<item name="android:colorPrimary">?attr/colorPrimary</item>
<item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
<item name="android:colorAccent">?attr/colorAccent</item>
<item name="android:colorControlNormal">?attr/colorControlNormal</item>
<item name="android:colorControlActivated">?attr/colorControlActivated</item>
<item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
<item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
</style><style name="Base.V21.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog">
<item name="android:windowElevation">@dimen/abc_floating_window_z</item>
</style><style name="Base.V21.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
<item name="actionBarSize">?android:attr/actionBarSize</item>
<item name="actionBarDivider">?android:attr/actionBarDivider</item>
<item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
<item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
<item name="actionModeBackground">?android:attr/actionModeBackground</item>
<item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
<item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
<item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
<item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
<item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
<item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
<item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
<item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
<item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
<item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
<item name="dividerVertical">?android:attr/dividerVertical</item>
<item name="editTextBackground">@drawable/abc_edit_text_material</item>
<item name="editTextColor">?android:attr/editTextColor</item>
<item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
<item name="buttonStyle">?android:attr/buttonStyle</item>
<item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
<item name="checkboxStyle">?android:attr/checkboxStyle</item>
<item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
<item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
<item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
<item name="spinnerStyle">?android:attr/spinnerStyle</item>
<item name="android:colorPrimary">?attr/colorPrimary</item>
<item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
<item name="android:colorAccent">?attr/colorAccent</item>
<item name="android:colorControlNormal">?attr/colorControlNormal</item>
<item name="android:colorControlActivated">?attr/colorControlActivated</item>
<item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
<item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
</style><style name="Base.V21.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog">
<item name="android:windowElevation">@dimen/abc_floating_window_z</item>
</style><style name="Base.V21.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog">
<item name="android:windowElevation">@dimen/abc_floating_window_z</item>
</style><style name="Base.Widget.AppCompat.ActionBar.TabText" parent="android:Widget.Material.ActionBar.TabText">
</style><style name="Base.Widget.AppCompat.ActionBar.TabView" parent="android:Widget.Material.ActionBar.TabView">
</style><style name="Base.Widget.AppCompat.ActionButton" parent="android:Widget.Material.ActionButton">
</style><style name="Base.Widget.AppCompat.ActionButton.CloseMode" parent="android:Widget.Material.ActionButton.CloseMode">
<item name="android:minWidth">56dp</item>
</style><style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="android:Widget.Material.ActionButton.Overflow">
</style><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.Material.AutoCompleteTextView">
<item name="android:background">?attr/editTextBackground</item>
</style><style name="Base.Widget.AppCompat.Button" parent="android:Widget.Material.Button"/><style name="Base.Widget.AppCompat.Button.Borderless" parent="android:Widget.Material.Button.Borderless"/><style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored">
<item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
</style><style name="Base.Widget.AppCompat.Button.Small" parent="android:Widget.Material.Button.Small"/><style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget.Material.ButtonBar"/><style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.Material.CompoundButton.CheckBox"/><style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.Material.CompoundButton.RadioButton"/><style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="android:Widget.Material.DropDownItem.Spinner"/><style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText">
<item name="android:background">?attr/editTextBackground</item>
</style><style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.Material.ImageButton"/><style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="android:Widget.Material.Light.ActionBar.TabText">
</style><style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="android:Widget.Material.Light.ActionBar.TabText">
</style><style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="android:Widget.Material.Light.ActionBar.TabView">
</style><style name="Base.Widget.AppCompat.Light.PopupMenu" parent="android:Widget.Material.Light.PopupMenu">
</style><style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
<item name="android:dropDownHorizontalOffset">-4dip</item>
<item name="android:overlapAnchor">true</item>
</style><style name="Base.Widget.AppCompat.ListPopupWindow" parent="android:Widget.Material.ListPopupWindow">
</style><style name="Base.Widget.AppCompat.ListView" parent="android:Widget.Material.ListView"/><style name="Base.Widget.AppCompat.ListView.DropDown" parent="android:Widget.Material.ListView.DropDown"/><style name="Base.Widget.AppCompat.ListView.Menu"/><style name="Base.Widget.AppCompat.PopupMenu" parent="android:Widget.Material.PopupMenu">
</style><style name="Base.Widget.AppCompat.PopupMenu.Overflow">
<item name="android:dropDownHorizontalOffset">-4dip</item>
<item name="android:overlapAnchor">true</item>
</style><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Material.ProgressBar">
</style><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Material.ProgressBar.Horizontal">
</style><style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.Material.RatingBar"/><style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget.Material.SeekBar"/><style name="Base.Widget.AppCompat.Spinner" parent="android:Widget.Material.Spinner"/><style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.Material.TextView.SpinnerItem"/><style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget.Material.Toolbar.Button.Navigation">
</style><style name="Platform.AppCompat" parent="Platform.V21.AppCompat"/><style name="Platform.AppCompat.Light" parent="Platform.V21.AppCompat.Light"/><style name="Platform.ThemeOverlay.AppCompat" parent="">
<item name="android:colorPrimary">?attr/colorPrimary</item>
<item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
<item name="android:colorAccent">?attr/colorAccent</item>
<item name="android:colorControlNormal">?attr/colorControlNormal</item>
<item name="android:colorControlActivated">?attr/colorControlActivated</item>
<item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
<item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
</style><style name="Platform.ThemeOverlay.AppCompat.Dark"/><style name="Platform.ThemeOverlay.AppCompat.Light"/><style name="Platform.V21.AppCompat" parent="android:Theme.Material.NoActionBar">
<item name="android:textColorLink">?android:attr/colorAccent</item>
<item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
<item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
<item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
<item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
<item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
</style><style name="Platform.V21.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
<item name="android:textColorLink">?android:attr/colorAccent</item>
<item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
<item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
<item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
<item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
<item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-sw600dp-v13/values-sw600dp-v13.xml" qualifiers="sw600dp-v13"><dimen name="abc_action_bar_content_inset_material">24dp</dimen><dimen name="abc_action_bar_content_inset_with_nav">80dp</dimen><dimen name="abc_action_bar_default_height_material">64dp</dimen><dimen name="abc_action_bar_default_padding_end_material">8dp</dimen><dimen name="abc_action_bar_default_padding_start_material">8dp</dimen><dimen name="abc_config_prefDialogWidth">580dp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen><dimen name="abc_text_size_title_material_toolbar">20dp</dimen></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ro/values-ro.xml" qualifiers="ro"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigați la ecranul de pornire"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigați în sus"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mai multe opțiuni"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Terminat"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Afișați-le pe toate"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Alegeți o aplicație"</string><string msgid="121134116657445385" name="abc_capital_off">"DEZACTIVAȚI"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAT"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funcție+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"spațiu"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Meniu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Căutați…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ștergeți interogarea"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Interogare de căutare"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Căutați"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Trimiteți interogarea"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Căutare vocală"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Trimiteți la"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Trimiteți folosind <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Restrângeți"</string><string msgid="146198913615257606" name="search_menu_title">"Căutați"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-te/values-te.xml" qualifiers="te"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"హోమ్కు నావిగేట్ చేయండి"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"పైకి నావిగేట్ చేయండి"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"మరిన్ని ఎంపికలు"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"పూర్తయింది"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"అన్నీ చూడండి"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"అనువర్తనాన్ని ఎంచుకోండి"</string><string msgid="121134116657445385" name="abc_capital_off">"ఆఫ్ చేయి"</string><string msgid="3405795526292276155" name="abc_capital_on">"ఆన్ చేయి"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"స్పేస్"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"వెతుకు..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ప్రశ్నను క్లియర్ చేయి"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ప్రశ్న శోధించండి"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"వెతుకు"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ప్రశ్నని సమర్పించు"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"వాయిస్ శోధన"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"వీరితో భాగస్వామ్యం చేయి"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>తో భాగస్వామ్యం చేయండి"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"కుదించండి"</string><string msgid="146198913615257606" name="search_menu_title">"వెతుకు"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v18/values-v18.xml" qualifiers="v18"><dimen name="abc_switch_padding">0px</dimen></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ru/values-ru.xml" qualifiers="ru"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на главный экран"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вверх"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Другие параметры"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Показать все"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Выбрать приложение"</string><string msgid="121134116657445385" name="abc_capital_off">"ОТКЛ."</string><string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Ввод"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Пробел"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Меню +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Поиск"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Удалить запрос"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Поисковый запрос"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Поиск"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Отправить запрос"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовой поиск"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Открыть доступ"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Открыть доступ приложению \"<ns1:g id="APPLICATION_NAME">%s</ns1:g>\""</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свернуть"</string><string msgid="146198913615257606" name="search_menu_title">"Поиск"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-tl/values-tl.xml" qualifiers="tl"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Mag-navigate patungo sa home"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Mag-navigate pataas"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Higit pang mga opsyon"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Tapos na"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tingnan lahat"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pumili ng isang app"</string><string msgid="121134116657445385" name="abc_capital_off">"I-OFF"</string><string msgid="3405795526292276155" name="abc_capital_on">"I-ON"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Maghanap…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"I-clear ang query"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Query sa paghahanap"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Maghanap"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Isumite ang query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Paghahanap gamit ang boses"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ibahagi sa/kay"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Ibahagi gamit ang <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"I-collapse"</string><string msgid="146198913615257606" name="search_menu_title">"Maghanap"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v16/values-v16.xml" qualifiers="v16"><style name="TextAppearance.AppCompat.Tooltip">
<item name="android:fontFamily">sans-serif</item>
<item name="android:textSize">14sp</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-zh-rTW/values-zh-rTW.xml" qualifiers="zh-rTW"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽首頁"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string><string msgid="121134116657445385" name="abc_capital_off">"關閉"</string><string msgid="3405795526292276155" name="abc_capital_on">"開啟"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete 鍵"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter 鍵"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"空格鍵"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu +"</string><string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"選擇分享對象"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"與「<ns1:g id="APPLICATION_NAME">%s</ns1:g>」分享"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string><string msgid="146198913615257606" name="search_menu_title">"搜尋"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-watch-v20/values-watch-v20.xml" qualifiers="watch-v20"><style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog">
<item name="android:windowIsFloating">false</item>
</style><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog">
<item name="android:windowIsFloating">false</item>
</style><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog">
<item name="android:windowIsFloating">false</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-it/values-it.xml" qualifiers="it"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vai alla home page"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Vai in alto"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Altre opzioni"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Fine"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visualizza tutte"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Scegli un\'applicazione"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"ALT +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"CTRL +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"CANC"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"INVIO"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"FUNZIONE +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"META +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"MAIUSC +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"barra spaziatrice"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"SYM +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"MENU +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Cerca…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Cancella query"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Query di ricerca"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Invia query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ricerca vocale"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Condividi con"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Condividi tramite <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Comprimi"</string><string msgid="146198913615257606" name="search_menu_title">"Ricerca"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ca/values-ca.xml" qualifiers="ca"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navega a la pàgina d\'inici"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navega cap a dalt"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Més opcions"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Fet"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Mostra\'ls tots"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string><string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAT"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAT"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Supr"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Retorn"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funció+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Maj+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Espai"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menú+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Cerca..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Esborra la consulta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de cerca"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envia la consulta"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Cerca per veu"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Comparteix amb"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Comparteix amb <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Replega"</string><string msgid="146198913615257606" name="search_menu_title">"Cerca"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-is/values-is.xml" qualifiers="is"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Fara heim"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Fara upp"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fleiri valkostir"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Lokið"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sjá allt"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Veldu forrit"</string><string msgid="121134116657445385" name="abc_capital_off">"SLÖKKT"</string><string msgid="3405795526292276155" name="abc_capital_on">"KVEIKT"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Aðgerðarlykill+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"bilslá"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Valmynd+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Leita…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hreinsa fyrirspurn"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Leitarfyrirspurn"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Leita"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Senda fyrirspurn"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Raddleit"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deila með"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Deila með <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minnka"</string><string msgid="146198913615257606" name="search_menu_title">"Leita"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-cs/values-cs.xml" qualifiers="cs"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Přejít na plochu"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Přejít nahoru"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Více možností"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobrazit vše"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string><string msgid="121134116657445385" name="abc_capital_off">"VYPNUTO"</string><string msgid="3405795526292276155" name="abc_capital_on">"ZAPNUTO"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"mezerník"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Vyhledat…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Smazat dotaz"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhledávací dotaz"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Hledat"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odeslat dotaz"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhledávání"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Sdílet pomocí"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Sdílet s aplikací <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sbalit"</string><string msgid="146198913615257606" name="search_menu_title">"Hledat"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-zh-rCN/values-zh-rCN.xml" qualifiers="zh-rCN"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"转到主屏幕"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"转到上一层级"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多选项"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"选择应用"</string><string msgid="121134116657445385" name="abc_capital_off">"关闭"</string><string msgid="3405795526292276155" name="abc_capital_on">"开启"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete 键"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter 键"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"空格键"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"搜索…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查询"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"搜索查询"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"搜索"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查询"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"语音搜索"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享方式"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"使用<ns1:g id="APPLICATION_NAME">%s</ns1:g>分享"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收起"</string><string msgid="146198913615257606" name="search_menu_title">"搜索"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-watch-v21/values-watch-v21.xml" qualifiers="watch-v21"><style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog">
<item name="android:windowIsFloating">false</item>
<item name="android:windowElevation">0dp</item>
</style><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog">
<item name="android:windowIsFloating">false</item>
<item name="android:windowElevation">0dp</item>
</style><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V21.ThemeOverlay.AppCompat.Dialog">
<item name="android:windowIsFloating">false</item>
<item name="android:windowElevation">0dp</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-in/values-in.xml" qualifiers="in"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi ke beranda"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi naik"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsi lain"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih aplikasi"</string><string msgid="121134116657445385" name="abc_capital_off">"NONAKTIF"</string><string msgid="3405795526292276155" name="abc_capital_on">"AKTIF"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"spasi"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Telusuri..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hapus kueri"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Kueri penelusuran"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Telusuri"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Kirim kueri"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Penelusuran suara"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bagikan dengan"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Bagikan ke <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ciutkan"</string><string msgid="146198913615257606" name="search_menu_title">"Telusuri"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ja/values-ja.xml" qualifiers="ja"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ホームへ移動"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"上へ移動"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"その他のオプション"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完了"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"すべて表示"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"アプリの選択"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"検索…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"検索キーワードを削除"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"検索キーワード"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"検索"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"検索キーワードを送信"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"音声検索"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"共有"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>と共有"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"折りたたむ"</string><string msgid="146198913615257606" name="search_menu_title">"検索"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-el/values-el.xml" qualifiers="el"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Πλοήγηση προς τα επάνω"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Περισσότερες επιλογές"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Τέλος"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Προβολή όλων"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Επιλέξτε κάποια εφαρμογή"</string><string msgid="121134116657445385" name="abc_capital_off">"ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ΕΝΕΡΓΟΠΟΙΗΣΗ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"διάστημα"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Αναζήτηση…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Διαγραφή ερωτήματος"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Ερώτημα αναζήτησης"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Αναζήτηση"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Υποβολή ερωτήματος"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Κοινή χρήση με"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Κοινή χρήση με <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Σύμπτυξη"</string><string msgid="146198913615257606" name="search_menu_title">"Αναζήτηση"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ldltr-v21/values-ldltr-v21.xml" qualifiers="ldltr-v21"><style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-lv/values-lv.xml" qualifiers="lv"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Pārvietoties uz sākuma ekrānu"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Pārvietoties augšup"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Vairāk opciju"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gatavs"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Skatīt visu"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izvēlieties lietotni"</string><string msgid="121134116657445385" name="abc_capital_off">"IZSLĒGTS"</string><string msgid="3405795526292276155" name="abc_capital_on">"IESLĒGTS"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alternēšanas taustiņš +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Vadīšanas taustiņš +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"dzēšanas taustiņš"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"ievadīšanas taustiņš"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funkcijas taustiņš +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta taustiņš +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Pārslēgšanas taustiņš +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"atstarpes taustiņš"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Simbolu taustiņš +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Poga Izvēlne +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Meklējiet…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Notīrīt vaicājumu"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Meklēšanas vaicājums"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Meklēt"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Iesniegt vaicājumu"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Meklēšana ar balsi"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kopīgot ar:"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Kopīgot ar lietojumprogrammu <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sakļaut"</string><string msgid="146198913615257606" name="search_menu_title">"Meklēt"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-da/values-da.xml" qualifiers="da"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Naviger hjem"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Naviger op"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere muligheder"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Luk"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vælg en app"</string><string msgid="121134116657445385" name="abc_capital_off">"FRA"</string><string msgid="3405795526292276155" name="abc_capital_on">"TIL"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"mellemrum"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Søg…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ryd forespørgslen"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Søgeforespørgsel"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Søg"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Indsend forespørgslen"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøgning"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Del med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string><string msgid="146198913615257606" name="search_menu_title">"Søg"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-mr/values-mr.xml" qualifiers="mr"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"होमवर नेव्हिगेट करा"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"वर नेव्हिगेट करा"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक पर्याय"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण झाले"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सर्व पहा"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एक अॅप निवडा"</string><string msgid="121134116657445385" name="abc_capital_off">"बंद"</string><string msgid="3405795526292276155" name="abc_capital_on">"चालू"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"हटवा"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"एंटर करा"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"spacebar"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"मेनू+"</string><string msgid="7723749260725869598" name="abc_search_hint">"शोधा…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्वेरी स्पष्ट करा"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"शोध क्वेरी"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"शोध"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करा"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"व्हॉइस शोध"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"यांच्यासह शेअर करा"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> सह शेअर करा"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करा"</string><string msgid="146198913615257606" name="search_menu_title">"शोधा"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-kk/values-kk.xml" qualifiers="kk"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Негізгі бетте қозғалу"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жоғары қозғалу"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Басқа опциялар"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Дайын"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Барлығын көру"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Қолданбаны таңдау"</string><string msgid="121134116657445385" name="abc_capital_off">"ӨШІРУЛІ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ҚОСУЛЫ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"бос орын"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Mәзір+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Іздеу…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Сұрақты жою"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Сұрақты іздеу"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Іздеу"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Сұрақты жіберу"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Дауыс арқылы іздеу"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлісу"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> қолданбасымен бөлісу"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Тасалау"</string><string msgid="146198913615257606" name="search_menu_title">"Іздеу"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ky/values-ky.xml" qualifiers="ky"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Үйгө багыттоо"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жогору"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Көбүрөөк мүмкүнчүлүктөр"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Даяр"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бардыгын көрүү"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Колдонмо тандоо"</string><string msgid="121134116657445385" name="abc_capital_off">"ӨЧҮК"</string><string msgid="3405795526292276155" name="abc_capital_on">"КҮЙҮК"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"боштук"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Издөө…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Талаптарды тазалоо"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Издөө талаптары"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Издөө"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Талап жөнөтүү"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Үн аркылуу издөө"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлүшүү"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> аркылуу бөлүшүү"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Жыйнап коюу"</string><string msgid="146198913615257606" name="search_menu_title">"Издөө"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-gu/values-gu.xml" qualifiers="gu"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"હોમ પર નેવિગેટ કરો"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ઉપર નૅવિગેટ કરો"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"વધુ વિકલ્પો"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"થઈ ગયું"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"બધું જુઓ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"એક ઍપ્લિકેશન પસંદ કરો"</string><string msgid="121134116657445385" name="abc_capital_off">"બંધ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ચાલુ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"ડિલીટ કરો"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Spacebar"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"મેનૂ+"</string><string msgid="7723749260725869598" name="abc_search_hint">"શોધો…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ક્વેરી સાફ કરો"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"શોધ ક્વેરી"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"શોધો"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ક્વેરી સબમિટ કરો"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"વૉઇસ શોધ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"આની સાથે શેર કરો"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>ની સાથે શેર કરો"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"સંકુચિત કરો"</string><string msgid="146198913615257606" name="search_menu_title">"શોધો"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-en-rCA/values-en-rCA.xml" qualifiers="en-rCA"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="146198913615257606" name="search_menu_title">"Search"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-mn/values-mn.xml" qualifiers="mn"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Нүүр хуудас руу шилжих"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Дээш шилжих"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Нэмэлт сонголтууд"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Дууссан"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бүгдийг харах"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Апп сонгох"</string><string msgid="121134116657445385" name="abc_capital_off">"ИДЭВХГҮЙ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ИДЭВХТЭЙ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"устгах"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"оруулах"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Функц+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Мета+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"зай"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Цэс+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Хайх..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Асуулгыг цэвэрлэх"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Хайх асуулга"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Хайх"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Асуулгыг илгээх"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Дуут хайлт"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Хуваалцах"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>-тай хуваалцах"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Хумих"</string><string msgid="146198913615257606" name="search_menu_title">"Хайлт"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-h720dp-v13/values-h720dp-v13.xml" qualifiers="h720dp-v13"><dimen name="abc_alert_dialog_button_bar_height">54dip</dimen></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-en-rIN/values-en-rIN.xml" qualifiers="en-rIN"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="146198913615257606" name="search_menu_title">"Search"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ms/values-ms.xml" qualifiers="ms"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi skrin utama"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi ke atas"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lagi pilihan"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih apl"</string><string msgid="121134116657445385" name="abc_capital_off">"MATI"</string><string msgid="3405795526292276155" name="abc_capital_on">"HIDUP"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"padam"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fungsi+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"ruang"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Cari…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Kosongkan pertanyaan"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Pertanyaan carian"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Cari"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Serah pertanyaan"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Carian suara"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kongsi dengan"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Kongsi dengan <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Runtuhkan"</string><string msgid="146198913615257606" name="search_menu_title">"Cari"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-zh-rHK/values-zh-rHK.xml" qualifiers="zh-rHK"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽主頁"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"顯示全部"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string><string msgid="121134116657445385" name="abc_capital_off">"關閉"</string><string msgid="3405795526292276155" name="abc_capital_on">"開啟"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"刪除"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter 鍵"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"空白鍵"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu +"</string><string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享對象"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"使用「<ns1:g id="APPLICATION_NAME">%s</ns1:g>」分享"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string><string msgid="146198913615257606" name="search_menu_title">"搜尋"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-km/values-km.xml" qualifiers="km"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"រកមើលទៅដើម"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"រកមើលឡើងលើ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ជម្រើសច្រើនទៀត"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"រួចរាល់"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"មើលទាំងអស់"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ជ្រើសកម្មវិធី"</string><string msgid="121134116657445385" name="abc_capital_off">"បិទ"</string><string msgid="3405795526292276155" name="abc_capital_on">"បើក"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"ស្វែងរក…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"សម្អាតសំណួរ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ស្វែងរកសំណួរ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ស្វែងរក"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ដាក់ស្នើសំណួរ"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ការស្វែងរកសំឡេង"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ចែករំលែកជាមួយ"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"ចែករំលែកជាមួយ <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"បង្រួម"</string><string msgid="146198913615257606" name="search_menu_title">"ស្វែងរក"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-pt-rBR/values-pt-rBR.xml" qualifiers="pt-rBR"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecione um app"</string><string msgid="121134116657445385" name="abc_capital_off">"DESATIVAR"</string><string msgid="3405795526292276155" name="abc_capital_on">"ATIVAR"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"espaço"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartilhar com"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Compartilhar com <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Recolher"</string><string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-hy/values-hy.xml" qualifiers="hy"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ուղղվել տուն"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ուղղվել վերև"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Այլ ընտրանքներ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Պատրաստ է"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Տեսնել բոլորը"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Ընտրել ծրագիր"</string><string msgid="121134116657445385" name="abc_capital_off">"ԱՆՋԱՏՎԱԾ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ՄԻԱՑՎԱԾ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"բացատ"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Որոնում..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Մաքրել հարցումը"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Որոնման հարցում"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Որոնել"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Ուղարկել հարցումը"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ձայնային որոնում"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Կիսվել"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Ուղարկել <ns1:g id="APPLICATION_NAME">%s</ns1:g>-ին"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Թաքցնել"</string><string msgid="146198913615257606" name="search_menu_title">"Որոնել"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-am/values-am.xml" qualifiers="am"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ወደ መነሻ ይዳስሱ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ወደ ላይ ይዳስሱ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ተከናውኗል"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"መተግበሪያ ይምረጡ"</string><string msgid="121134116657445385" name="abc_capital_off">"ጠፍቷል"</string><string msgid="3405795526292276155" name="abc_capital_on">"በርቷል"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"ሰርዝ"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"ምናሌ+"</string><string msgid="7723749260725869598" name="abc_search_hint">"ፈልግ…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"የፍለጋ ጥያቄ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ፍለጋ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"መጠይቅ ያስረክቡ"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"የድምፅ ፍለጋ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ከሚከተለው ጋር ያጋሩ"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"ከ<ns1:g id="APPLICATION_NAME">%s</ns1:g> ጋር አጋራ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ሰብስብ"</string><string msgid="146198913615257606" name="search_menu_title">"ፈልግ"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-be/values-be.xml" qualifiers="be"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перайсці на галоўную старонку"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перайсці ўверх"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Дадатковыя параметры"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Гатова"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Прагледзець усё"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Выбраць праграму"</string><string msgid="121134116657445385" name="abc_capital_off">"ВЫКЛ."</string><string msgid="3405795526292276155" name="abc_capital_on">"УКЛ."</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Прабел"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Меню +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Пошук..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Выдалiць запыт"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Запыт на пошук"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Пошук"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Адправіць запыт"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Галасавы пошук"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Абагуліць з"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Абагуліць праз праграму <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згарнуць"</string><string msgid="146198913615257606" name="search_menu_title">"Пошук"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-land/values-land.xml" qualifiers="land"><dimen name="abc_action_bar_default_height_material">48dp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">12dp</dimen><dimen name="abc_text_size_title_material_toolbar">14dp</dimen></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-xlarge-v4/values-xlarge-v4.xml" qualifiers="xlarge-v4"><item name="abc_dialog_fixed_height_major" type="dimen">60%</item><item name="abc_dialog_fixed_height_minor" type="dimen">90%</item><item name="abc_dialog_fixed_width_major" type="dimen">50%</item><item name="abc_dialog_fixed_width_minor" type="dimen">70%</item><item name="abc_dialog_min_width_major" type="dimen">45%</item><item name="abc_dialog_min_width_minor" type="dimen">72%</item></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values/values.xml" qualifiers=""><attr format="reference" name="drawerArrowStyle"/><attr format="dimension" name="height"/><attr format="boolean" name="isLightTheme"/><attr format="string" name="title"/><bool name="abc_action_bar_embed_tabs">true</bool><bool name="abc_allow_stacked_button_bar">false</bool><bool name="abc_config_actionMenuItemAllCaps">true</bool><color name="abc_input_method_navigation_guard">@android:color/black</color><color name="abc_search_url_text_normal">#7fa87f</color><color name="abc_search_url_text_pressed">@android:color/black</color><color name="abc_search_url_text_selected">@android:color/black</color><color name="accent_material_dark">@color/material_deep_teal_200</color><color name="accent_material_light">@color/material_deep_teal_500</color><color name="background_floating_material_dark">@color/material_grey_800</color><color name="background_floating_material_light">@android:color/white</color><color name="background_material_dark">@color/material_grey_850</color><color name="background_material_light">@color/material_grey_50</color><color name="bright_foreground_disabled_material_dark">#80ffffff</color><color name="bright_foreground_disabled_material_light">#80000000</color><color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color><color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color><color name="bright_foreground_material_dark">@android:color/white</color><color name="bright_foreground_material_light">@android:color/black</color><color name="button_material_dark">#ff5a595b</color><color name="button_material_light">#ffd6d7d7</color><color name="dim_foreground_disabled_material_dark">#80bebebe</color><color name="dim_foreground_disabled_material_light">#80323232</color><color name="dim_foreground_material_dark">#ffbebebe</color><color name="dim_foreground_material_light">#ff323232</color><color name="error_color_material_dark">#ff7043</color><color name="error_color_material_light">#ff5722</color><color name="foreground_material_dark">@android:color/white</color><color name="foreground_material_light">@android:color/black</color><color name="highlighted_text_material_dark">#6680cbc4</color><color name="highlighted_text_material_light">#66009688</color><color name="material_blue_grey_800">#ff37474f</color><color name="material_blue_grey_900">#ff263238</color><color name="material_blue_grey_950">#ff21272b</color><color name="material_deep_teal_200">#ff80cbc4</color><color name="material_deep_teal_500">#ff009688</color><color name="material_grey_100">#fff5f5f5</color><color name="material_grey_300">#ffe0e0e0</color><color name="material_grey_50">#fffafafa</color><color name="material_grey_600">#ff757575</color><color name="material_grey_800">#ff424242</color><color name="material_grey_850">#ff303030</color><color name="material_grey_900">#ff212121</color><color name="primary_dark_material_dark">@android:color/black</color><color name="primary_dark_material_light">@color/material_grey_600</color><color name="primary_material_dark">@color/material_grey_900</color><color name="primary_material_light">@color/material_grey_100</color><color name="primary_text_default_material_dark">#ffffffff</color><color name="primary_text_default_material_light">#de000000</color><color name="primary_text_disabled_material_dark">#4Dffffff</color><color name="primary_text_disabled_material_light">#39000000</color><color name="ripple_material_dark">#33ffffff</color><color name="ripple_material_light">#1f000000</color><color name="secondary_text_default_material_dark">#b3ffffff</color><color name="secondary_text_default_material_light">#8a000000</color><color name="secondary_text_disabled_material_dark">#36ffffff</color><color name="secondary_text_disabled_material_light">#24000000</color><color name="switch_thumb_disabled_material_dark">#ff616161</color><color name="switch_thumb_disabled_material_light">#ffbdbdbd</color><color name="switch_thumb_normal_material_dark">#ffbdbdbd</color><color name="switch_thumb_normal_material_light">#fff1f1f1</color><color name="tooltip_background_dark">#e6616161</color><color name="tooltip_background_light">#e6FFFFFF</color><declare-styleable name="ActionBar">
<attr name="navigationMode">
<enum name="normal" value="0"/>
<enum name="listMode" value="1"/>
<enum name="tabMode" value="2"/>
</attr>
<attr name="displayOptions">
<flag name="none" value="0"/>
<flag name="useLogo" value="0x1"/>
<flag name="showHome" value="0x2"/>
<flag name="homeAsUp" value="0x4"/>
<flag name="showTitle" value="0x8"/>
<flag name="showCustom" value="0x10"/>
<flag name="disableHome" value="0x20"/>
</attr>
<attr name="title"/>
<attr format="string" name="subtitle"/>
<attr format="reference" name="titleTextStyle"/>
<attr format="reference" name="subtitleTextStyle"/>
<attr format="reference" name="icon"/>
<attr format="reference" name="logo"/>
<attr format="reference" name="divider"/>
<attr format="reference" name="background"/>
<attr format="reference|color" name="backgroundStacked"/>
<attr format="reference|color" name="backgroundSplit"/>
<attr format="reference" name="customNavigationLayout"/>
<attr name="height"/>
<attr format="reference" name="homeLayout"/>
<attr format="reference" name="progressBarStyle"/>
<attr format="reference" name="indeterminateProgressStyle"/>
<attr format="dimension" name="progressBarPadding"/>
<attr name="homeAsUpIndicator"/>
<attr format="dimension" name="itemPadding"/>
<attr format="boolean" name="hideOnContentScroll"/>
<attr format="dimension" name="contentInsetStart"/>
<attr format="dimension" name="contentInsetEnd"/>
<attr format="dimension" name="contentInsetLeft"/>
<attr format="dimension" name="contentInsetRight"/>
<attr format="dimension" name="contentInsetStartWithNavigation"/>
<attr format="dimension" name="contentInsetEndWithActions"/>
<attr format="dimension" name="elevation"/>
<attr format="reference" name="popupTheme"/>
</declare-styleable><declare-styleable name="ActionBarLayout">
<attr name="android:layout_gravity"/>
</declare-styleable><declare-styleable name="ActionMenuItemView">
<attr name="android:minWidth"/>
</declare-styleable><declare-styleable name="ActionMenuView">
</declare-styleable><declare-styleable name="ActionMode">
<attr name="titleTextStyle"/>
<attr name="subtitleTextStyle"/>
<attr name="background"/>
<attr name="backgroundSplit"/>
<attr name="height"/>
<attr format="reference" name="closeItemLayout"/>
</declare-styleable><declare-styleable name="ActivityChooserView">
<attr format="string" name="initialActivityCount"/>
<attr format="reference" name="expandActivityOverflowButtonDrawable"/>
</declare-styleable><declare-styleable name="AlertDialog">
<attr name="android:layout"/>
<attr format="reference" name="buttonPanelSideLayout"/>
<attr format="reference" name="listLayout"/>
<attr format="reference" name="multiChoiceItemLayout"/>
<attr format="reference" name="singleChoiceItemLayout"/>
<attr format="reference" name="listItemLayout"/>
<attr format="boolean" name="showTitle"/>
<attr format="dimension" name="buttonIconDimen"/>
</declare-styleable><declare-styleable name="AnimatedStateListDrawableCompat">
<attr name="android:visible"/>
<attr name="android:variablePadding"/>
<attr name="android:constantSize"/>
<attr name="android:dither"/>
<attr name="android:enterFadeDuration"/>
<attr name="android:exitFadeDuration"/>
</declare-styleable><declare-styleable name="AnimatedStateListDrawableItem">
<attr name="android:drawable"/>
<attr name="android:id"/>
</declare-styleable><declare-styleable name="AnimatedStateListDrawableTransition">
<attr name="android:fromId"/>
<attr name="android:toId"/>
<attr name="android:drawable"/>
<attr name="android:reversible"/>
</declare-styleable><declare-styleable name="AppCompatImageView">
<attr name="android:src"/>
<attr format="reference" name="srcCompat"/>
<attr format="color" name="tint"/>
<attr name="tintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="AppCompatSeekBar">
<attr name="android:thumb"/>
<attr format="reference" name="tickMark"/>
<attr format="color" name="tickMarkTint"/>
<attr name="tickMarkTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="AppCompatTextHelper">
<attr name="android:drawableLeft"/>
<attr name="android:drawableTop"/>
<attr name="android:drawableRight"/>
<attr name="android:drawableBottom"/>
<attr name="android:drawableStart"/>
<attr name="android:drawableEnd"/>
<attr name="android:textAppearance"/>
</declare-styleable><declare-styleable name="AppCompatTextView">
<attr format="reference|boolean" name="textAllCaps"/>
<attr name="android:textAppearance"/>
<attr format="enum" name="autoSizeTextType">
<enum name="none" value="0"/>
<enum name="uniform" value="1"/>
</attr>
<attr format="dimension" name="autoSizeStepGranularity"/>
<attr format="reference" name="autoSizePresetSizes"/>
<attr format="dimension" name="autoSizeMinTextSize"/>
<attr format="dimension" name="autoSizeMaxTextSize"/>
<attr format="string" name="fontFamily"/>
<attr format="dimension" name="lineHeight"/>
<attr format="dimension" name="firstBaselineToTopHeight"/>
<attr format="dimension" name="lastBaselineToBottomHeight"/>
</declare-styleable><declare-styleable name="AppCompatTheme">
<eat-comment/>
<attr format="boolean" name="windowActionBar"/>
<attr format="boolean" name="windowNoTitle"/>
<attr format="boolean" name="windowActionBarOverlay"/>
<attr format="boolean" name="windowActionModeOverlay"/>
<attr format="dimension|fraction" name="windowFixedWidthMajor"/>
<attr format="dimension|fraction" name="windowFixedHeightMinor"/>
<attr format="dimension|fraction" name="windowFixedWidthMinor"/>
<attr format="dimension|fraction" name="windowFixedHeightMajor"/>
<attr format="dimension|fraction" name="windowMinWidthMajor"/>
<attr format="dimension|fraction" name="windowMinWidthMinor"/>
<attr name="android:windowIsFloating"/>
<attr name="android:windowAnimationStyle"/>
<eat-comment/>
<attr format="reference" name="actionBarTabStyle"/>
<attr format="reference" name="actionBarTabBarStyle"/>
<attr format="reference" name="actionBarTabTextStyle"/>
<attr format="reference" name="actionOverflowButtonStyle"/>
<attr format="reference" name="actionOverflowMenuStyle"/>
<attr format="reference" name="actionBarPopupTheme"/>
<attr format="reference" name="actionBarStyle"/>
<attr format="reference" name="actionBarSplitStyle"/>
<attr format="reference" name="actionBarTheme"/>
<attr format="reference" name="actionBarWidgetTheme"/>
<attr format="dimension" name="actionBarSize">
<enum name="wrap_content" value="0"/>
</attr>
<attr format="reference" name="actionBarDivider"/>
<attr format="reference" name="actionBarItemBackground"/>
<attr format="reference" name="actionMenuTextAppearance"/>
<attr format="color|reference" name="actionMenuTextColor"/>
<eat-comment/>
<attr format="reference" name="actionModeStyle"/>
<attr format="reference" name="actionModeCloseButtonStyle"/>
<attr format="reference" name="actionModeBackground"/>
<attr format="reference" name="actionModeSplitBackground"/>
<attr format="reference" name="actionModeCloseDrawable"/>
<attr format="reference" name="actionModeCutDrawable"/>
<attr format="reference" name="actionModeCopyDrawable"/>
<attr format="reference" name="actionModePasteDrawable"/>
<attr format="reference" name="actionModeSelectAllDrawable"/>
<attr format="reference" name="actionModeShareDrawable"/>
<attr format="reference" name="actionModeFindDrawable"/>
<attr format="reference" name="actionModeWebSearchDrawable"/>
<attr format="reference" name="actionModePopupWindowStyle"/>
<eat-comment/>
<attr format="reference" name="textAppearanceLargePopupMenu"/>
<attr format="reference" name="textAppearanceSmallPopupMenu"/>
<attr format="reference" name="textAppearancePopupMenuHeader"/>
<eat-comment/>
<attr format="reference" name="dialogTheme"/>
<attr format="dimension" name="dialogPreferredPadding"/>
<attr format="reference" name="listDividerAlertDialog"/>
<attr format="dimension" name="dialogCornerRadius"/>
<eat-comment/>
<attr format="reference" name="actionDropDownStyle"/>
<attr format="dimension" name="dropdownListPreferredItemHeight"/>
<attr format="reference" name="spinnerDropDownItemStyle"/>
<attr format="reference" name="homeAsUpIndicator"/>
<attr format="reference" name="actionButtonStyle"/>
<attr format="reference" name="buttonBarStyle"/>
<attr format="reference" name="buttonBarButtonStyle"/>
<attr format="reference" name="selectableItemBackground"/>
<attr format="reference" name="selectableItemBackgroundBorderless"/>
<attr format="reference" name="borderlessButtonStyle"/>
<attr format="reference" name="dividerVertical"/>
<attr format="reference" name="dividerHorizontal"/>
<attr format="reference" name="activityChooserViewStyle"/>
<attr format="reference" name="toolbarStyle"/>
<attr format="reference" name="toolbarNavigationButtonStyle"/>
<attr format="reference" name="popupMenuStyle"/>
<attr format="reference" name="popupWindowStyle"/>
<attr format="reference|color" name="editTextColor"/>
<attr format="reference" name="editTextBackground"/>
<attr format="reference" name="imageButtonStyle"/>
<eat-comment/>
<attr format="reference" name="textAppearanceSearchResultTitle"/>
<attr format="reference" name="textAppearanceSearchResultSubtitle"/>
<attr format="reference|color" name="textColorSearchUrl"/>
<attr format="reference" name="searchViewStyle"/>
<eat-comment/>
<attr format="dimension" name="listPreferredItemHeight"/>
<attr format="dimension" name="listPreferredItemHeightSmall"/>
<attr format="dimension" name="listPreferredItemHeightLarge"/>
<attr format="dimension" name="listPreferredItemPaddingLeft"/>
<attr format="dimension" name="listPreferredItemPaddingRight"/>
<attr format="reference" name="dropDownListViewStyle"/>
<attr format="reference" name="listPopupWindowStyle"/>
<attr format="reference" name="textAppearanceListItem"/>
<attr format="reference" name="textAppearanceListItemSecondary"/>
<attr format="reference" name="textAppearanceListItemSmall"/>
<eat-comment/>
<attr format="reference" name="panelBackground"/>
<attr format="dimension" name="panelMenuListWidth"/>
<attr format="reference" name="panelMenuListTheme"/>
<attr format="reference" name="listChoiceBackgroundIndicator"/>
<eat-comment/>
<attr format="color" name="colorPrimary"/>
<attr format="color" name="colorPrimaryDark"/>
<attr format="color" name="colorAccent"/>
<attr format="color" name="colorControlNormal"/>
<attr format="color" name="colorControlActivated"/>
<attr format="color" name="colorControlHighlight"/>
<attr format="color" name="colorButtonNormal"/>
<attr format="color" name="colorSwitchThumbNormal"/>
<attr format="reference" name="controlBackground"/>
<attr format="color" name="colorBackgroundFloating"/>
<eat-comment/>
<attr format="reference" name="alertDialogStyle"/>
<attr format="reference" name="alertDialogButtonGroupStyle"/>
<attr format="boolean" name="alertDialogCenterButtons"/>
<attr format="reference" name="alertDialogTheme"/>
<attr format="reference|color" name="textColorAlertDialogListItem"/>
<attr format="reference" name="buttonBarPositiveButtonStyle"/>
<attr format="reference" name="buttonBarNegativeButtonStyle"/>
<attr format="reference" name="buttonBarNeutralButtonStyle"/>
<eat-comment/>
<attr format="reference" name="autoCompleteTextViewStyle"/>
<attr format="reference" name="buttonStyle"/>
<attr format="reference" name="buttonStyleSmall"/>
<attr format="reference" name="checkboxStyle"/>
<attr format="reference" name="checkedTextViewStyle"/>
<attr format="reference" name="editTextStyle"/>
<attr format="reference" name="radioButtonStyle"/>
<attr format="reference" name="ratingBarStyle"/>
<attr format="reference" name="ratingBarStyleIndicator"/>
<attr format="reference" name="ratingBarStyleSmall"/>
<attr format="reference" name="seekBarStyle"/>
<attr format="reference" name="spinnerStyle"/>
<attr format="reference" name="switchStyle"/>
<attr format="reference" name="listMenuViewStyle"/>
<eat-comment/>
<attr format="reference" name="tooltipFrameBackground"/>
<attr format="reference|color" name="tooltipForegroundColor"/>
<attr format="reference|color" name="colorError"/>
<attr format="string" name="viewInflaterClass"/>
</declare-styleable><declare-styleable name="ButtonBarLayout">
<attr format="boolean" name="allowStacking"/>
</declare-styleable><declare-styleable name="CompoundButton">
<attr name="android:button"/>
<attr format="color" name="buttonTint"/>
<attr name="buttonTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="DrawerArrowToggle">
<attr format="color" name="color"/>
<attr format="boolean" name="spinBars"/>
<attr format="dimension" name="drawableSize"/>
<attr format="dimension" name="gapBetweenBars"/>
<attr format="dimension" name="arrowHeadLength"/>
<attr format="dimension" name="arrowShaftLength"/>
<attr format="dimension" name="barLength"/>
<attr format="dimension" name="thickness"/>
</declare-styleable><declare-styleable name="LinearLayoutCompat">
<attr name="android:orientation"/>
<attr name="android:gravity"/>
<attr name="android:baselineAligned"/>
<attr name="android:baselineAlignedChildIndex"/>
<attr name="android:weightSum"/>
<attr format="boolean" name="measureWithLargestChild"/>
<attr name="divider"/>
<attr name="showDividers">
<flag name="none" value="0"/>
<flag name="beginning" value="1"/>
<flag name="middle" value="2"/>
<flag name="end" value="4"/>
</attr>
<attr format="dimension" name="dividerPadding"/>
</declare-styleable><declare-styleable name="LinearLayoutCompat_Layout">
<attr name="android:layout_width"/>
<attr name="android:layout_height"/>
<attr name="android:layout_weight"/>
<attr name="android:layout_gravity"/>
</declare-styleable><declare-styleable name="ListPopupWindow">
<attr name="android:dropDownVerticalOffset"/>
<attr name="android:dropDownHorizontalOffset"/>
</declare-styleable><declare-styleable name="MenuGroup">
<attr name="android:id"/>
<attr name="android:menuCategory"/>
<attr name="android:orderInCategory"/>
<attr name="android:checkableBehavior"/>
<attr name="android:visible"/>
<attr name="android:enabled"/>
</declare-styleable><declare-styleable name="MenuItem">
<attr name="android:id"/>
<attr name="android:menuCategory"/>
<attr name="android:orderInCategory"/>
<attr name="android:title"/>
<attr name="android:titleCondensed"/>
<attr name="android:icon"/>
<attr name="android:alphabeticShortcut"/>
<attr name="alphabeticModifiers">
<flag name="META" value="0x10000"/>
<flag name="CTRL" value="0x1000"/>
<flag name="ALT" value="0x02"/>
<flag name="SHIFT" value="0x1"/>
<flag name="SYM" value="0x4"/>
<flag name="FUNCTION" value="0x8"/>
</attr>
<attr name="android:numericShortcut"/>
<attr name="numericModifiers">
<flag name="META" value="0x10000"/>
<flag name="CTRL" value="0x1000"/>
<flag name="ALT" value="0x02"/>
<flag name="SHIFT" value="0x1"/>
<flag name="SYM" value="0x4"/>
<flag name="FUNCTION" value="0x8"/>
</attr>
<attr name="android:checkable"/>
<attr name="android:checked"/>
<attr name="android:visible"/>
<attr name="android:enabled"/>
<attr name="android:onClick"/>
<attr name="showAsAction">
<flag name="never" value="0"/>
<flag name="ifRoom" value="1"/>
<flag name="always" value="2"/>
<flag name="withText" value="4"/>
<flag name="collapseActionView" value="8"/>
</attr>
<attr format="reference" name="actionLayout"/>
<attr format="string" name="actionViewClass"/>
<attr format="string" name="actionProviderClass"/>
<attr format="string" name="contentDescription"/>
<attr format="string" name="tooltipText"/>
<attr format="color" name="iconTint"/>
<attr name="iconTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="MenuView">
<attr name="android:itemTextAppearance"/>
<attr name="android:horizontalDivider"/>
<attr name="android:verticalDivider"/>
<attr name="android:headerBackground"/>
<attr name="android:itemBackground"/>
<attr name="android:windowAnimationStyle"/>
<attr name="android:itemIconDisabledAlpha"/>
<attr format="boolean" name="preserveIconSpacing"/>
<attr format="reference" name="subMenuArrow"/>
</declare-styleable><declare-styleable name="PopupWindow">
<attr format="boolean" name="overlapAnchor"/>
<attr name="android:popupBackground"/>
<attr name="android:popupAnimationStyle"/>
</declare-styleable><declare-styleable name="PopupWindowBackgroundState">
<attr format="boolean" name="state_above_anchor"/>
</declare-styleable><declare-styleable name="RecycleListView">
<attr format="dimension" name="paddingBottomNoButtons"/>
<attr format="dimension" name="paddingTopNoTitle"/>
</declare-styleable><declare-styleable name="SearchView">
<attr format="reference" name="layout"/>
<attr format="boolean" name="iconifiedByDefault"/>
<attr name="android:maxWidth"/>
<attr format="string" name="queryHint"/>
<attr format="string" name="defaultQueryHint"/>
<attr name="android:imeOptions"/>
<attr name="android:inputType"/>
<attr format="reference" name="closeIcon"/>
<attr format="reference" name="goIcon"/>
<attr format="reference" name="searchIcon"/>
<attr format="reference" name="searchHintIcon"/>
<attr format="reference" name="voiceIcon"/>
<attr format="reference" name="commitIcon"/>
<attr format="reference" name="suggestionRowLayout"/>
<attr format="reference" name="queryBackground"/>
<attr format="reference" name="submitBackground"/>
<attr name="android:focusable"/>
</declare-styleable><declare-styleable name="Spinner">
<attr name="android:prompt"/>
<attr name="popupTheme"/>
<attr name="android:popupBackground"/>
<attr name="android:dropDownWidth"/>
<attr name="android:entries"/>
</declare-styleable><declare-styleable name="StateListDrawable">
<attr name="android:visible"/>
<attr name="android:variablePadding"/>
<attr name="android:constantSize"/>
<attr name="android:dither"/>
<attr name="android:enterFadeDuration"/>
<attr name="android:exitFadeDuration"/>
</declare-styleable><declare-styleable name="StateListDrawableItem">
<attr name="android:drawable"/>
</declare-styleable><declare-styleable name="SwitchCompat">
<attr name="android:thumb"/>
<attr format="color" name="thumbTint"/>
<attr name="thumbTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
<attr format="reference" name="track"/>
<attr format="color" name="trackTint"/>
<attr name="trackTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
<attr name="android:textOn"/>
<attr name="android:textOff"/>
<attr format="dimension" name="thumbTextPadding"/>
<attr format="reference" name="switchTextAppearance"/>
<attr format="dimension" name="switchMinWidth"/>
<attr format="dimension" name="switchPadding"/>
<attr format="boolean" name="splitTrack"/>
<attr format="boolean" name="showText"/>
</declare-styleable><declare-styleable name="TextAppearance">
<attr name="android:textSize"/>
<attr name="android:textColor"/>
<attr name="android:textColorHint"/>
<attr name="android:textColorLink"/>
<attr name="android:textStyle"/>
<attr name="android:typeface"/>
<attr name="android:fontFamily"/>
<attr name="fontFamily"/>
<attr name="textAllCaps"/>
<attr name="android:shadowColor"/>
<attr name="android:shadowDy"/>
<attr name="android:shadowDx"/>
<attr name="android:shadowRadius"/>
</declare-styleable><declare-styleable name="Toolbar">
<attr format="reference" name="titleTextAppearance"/>
<attr format="reference" name="subtitleTextAppearance"/>
<attr name="title"/>
<attr name="subtitle"/>
<attr name="android:gravity"/>
<attr format="dimension" name="titleMargin"/>
<attr format="dimension" name="titleMarginStart"/>
<attr format="dimension" name="titleMarginEnd"/>
<attr format="dimension" name="titleMarginTop"/>
<attr format="dimension" name="titleMarginBottom"/>
<attr format="dimension" name="titleMargins"/>
<attr name="contentInsetStart"/>
<attr name="contentInsetEnd"/>
<attr name="contentInsetLeft"/>
<attr name="contentInsetRight"/>
<attr name="contentInsetStartWithNavigation"/>
<attr name="contentInsetEndWithActions"/>
<attr format="dimension" name="maxButtonHeight"/>
<attr name="buttonGravity">
<flag name="top" value="0x30"/>
<flag name="bottom" value="0x50"/>
</attr>
<attr format="reference" name="collapseIcon"/>
<attr format="string" name="collapseContentDescription"/>
<attr name="popupTheme"/>
<attr format="reference" name="navigationIcon"/>
<attr format="string" name="navigationContentDescription"/>
<attr name="logo"/>
<attr format="string" name="logoDescription"/>
<attr format="color" name="titleTextColor"/>
<attr format="color" name="subtitleTextColor"/>
<attr name="android:minHeight"/>
</declare-styleable><declare-styleable name="View">
<attr format="dimension" name="paddingStart"/>
<attr format="dimension" name="paddingEnd"/>
<attr name="android:focusable"/>
<attr format="reference" name="theme"/>
<attr name="android:theme"/>
</declare-styleable><declare-styleable name="ViewBackgroundHelper">
<attr name="android:background"/>
<attr format="color" name="backgroundTint"/>
<attr name="backgroundTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="ViewStubCompat">
<attr name="android:layout"/>
<attr name="android:inflatedId"/>
<attr name="android:id"/>
</declare-styleable><dimen name="abc_action_bar_content_inset_material">16dp</dimen><dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen><dimen name="abc_action_bar_default_height_material">56dp</dimen><dimen name="abc_action_bar_default_padding_end_material">0dp</dimen><dimen name="abc_action_bar_default_padding_start_material">0dp</dimen><dimen name="abc_action_bar_elevation_material">4dp</dimen><dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen><dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen><dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen><dimen name="abc_action_bar_stacked_max_height">48dp</dimen><dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen><dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen><dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen><dimen name="abc_action_button_min_height_material">48dp</dimen><dimen name="abc_action_button_min_width_material">48dp</dimen><dimen name="abc_action_button_min_width_overflow_material">36dp</dimen><dimen name="abc_alert_dialog_button_bar_height">48dp</dimen><dimen name="abc_alert_dialog_button_dimen">48dp</dimen><dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen><dimen name="abc_button_inset_vertical_material">6dp</dimen><dimen name="abc_button_padding_horizontal_material">8dp</dimen><dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen><dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen><dimen name="abc_config_prefDialogWidth">320dp</dimen><dimen name="abc_control_corner_material">2dp</dimen><dimen name="abc_control_inset_material">4dp</dimen><dimen name="abc_control_padding_material">4dp</dimen><dimen name="abc_dialog_corner_radius_material">2dp</dimen><item name="abc_dialog_fixed_height_major" type="dimen">80%</item><item name="abc_dialog_fixed_height_minor" type="dimen">100%</item><item name="abc_dialog_fixed_width_major" type="dimen">320dp</item><item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item><dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen><dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen><item name="abc_dialog_min_width_major" type="dimen">65%</item><item name="abc_dialog_min_width_minor" type="dimen">95%</item><dimen name="abc_dialog_padding_material">24dp</dimen><dimen name="abc_dialog_padding_top_material">18dp</dimen><dimen name="abc_dialog_title_divider_material">8dp</dimen><item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item><item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item><dimen name="abc_dropdownitem_icon_width">32dip</dimen><dimen name="abc_dropdownitem_text_padding_left">8dip</dimen><dimen name="abc_dropdownitem_text_padding_right">8dip</dimen><dimen name="abc_edit_text_inset_bottom_material">7dp</dimen><dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen><dimen name="abc_edit_text_inset_top_material">10dp</dimen><dimen name="abc_floating_window_z">16dp</dimen><dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen><dimen name="abc_panel_menu_list_width">296dp</dimen><dimen name="abc_progress_bar_height_material">4dp</dimen><dimen name="abc_search_view_preferred_height">48dip</dimen><dimen name="abc_search_view_preferred_width">320dip</dimen><dimen name="abc_seekbar_track_background_height_material">2dp</dimen><dimen name="abc_seekbar_track_progress_height_material">2dp</dimen><dimen name="abc_select_dialog_padding_start_material">20dp</dimen><dimen name="abc_switch_padding">3dp</dimen><dimen name="abc_text_size_body_1_material">14sp</dimen><dimen name="abc_text_size_body_2_material">14sp</dimen><dimen name="abc_text_size_button_material">14sp</dimen><dimen name="abc_text_size_caption_material">12sp</dimen><dimen name="abc_text_size_display_1_material">34sp</dimen><dimen name="abc_text_size_display_2_material">45sp</dimen><dimen name="abc_text_size_display_3_material">56sp</dimen><dimen name="abc_text_size_display_4_material">112sp</dimen><dimen name="abc_text_size_headline_material">24sp</dimen><dimen name="abc_text_size_large_material">22sp</dimen><dimen name="abc_text_size_medium_material">18sp</dimen><dimen name="abc_text_size_menu_header_material">14sp</dimen><dimen name="abc_text_size_menu_material">16sp</dimen><dimen name="abc_text_size_small_material">14sp</dimen><dimen name="abc_text_size_subhead_material">16sp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen><dimen name="abc_text_size_title_material">20sp</dimen><dimen name="abc_text_size_title_material_toolbar">20dp</dimen><item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item><item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item><item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item><item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item><item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item><item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item><item format="float" name="hint_alpha_material_light" type="dimen">0.38</item><item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item><item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item><dimen name="tooltip_corner_radius">2dp</dimen><dimen name="tooltip_horizontal_padding">16dp</dimen><dimen name="tooltip_margin">8dp</dimen><dimen name="tooltip_precise_anchor_extra_offset">8dp</dimen><dimen name="tooltip_precise_anchor_threshold">96dp</dimen><dimen name="tooltip_vertical_padding">6.5dp</dimen><dimen name="tooltip_y_offset_non_touch">0dp</dimen><dimen name="tooltip_y_offset_touch">16dp</dimen><item name="action_bar_activity_content" type="id"/><item name="action_bar_spinner" type="id"/><item name="action_menu_divider" type="id"/><item name="action_menu_presenter" type="id"/><item name="home" type="id"/><item name="progress_circular" type="id"/><item name="progress_horizontal" type="id"/><item name="split_action_bar" type="id"/><item name="up" type="id"/><integer name="abc_config_activityDefaultDur">220</integer><integer name="abc_config_activityShortDur">150</integer><integer name="cancel_button_image_alpha">127</integer><integer name="config_tooltipAnimTime">150</integer><string name="abc_action_bar_home_description">Navigate home</string><string name="abc_action_bar_up_description">Navigate up</string><string name="abc_action_menu_overflow_description">More options</string><string name="abc_action_mode_done">Done</string><string name="abc_activity_chooser_view_see_all">See all</string><string name="abc_activitychooserview_choose_application">Choose an app</string><string name="abc_capital_off">OFF</string><string name="abc_capital_on">ON</string><string name="abc_font_family_body_1_material">sans-serif</string><string name="abc_font_family_body_2_material">sans-serif-medium</string><string name="abc_font_family_button_material">sans-serif-medium</string><string name="abc_font_family_caption_material">sans-serif</string><string name="abc_font_family_display_1_material">sans-serif</string><string name="abc_font_family_display_2_material">sans-serif</string><string name="abc_font_family_display_3_material">sans-serif</string><string name="abc_font_family_display_4_material">sans-serif-light</string><string name="abc_font_family_headline_material">sans-serif</string><string name="abc_font_family_menu_material">sans-serif</string><string name="abc_font_family_subhead_material">sans-serif</string><string name="abc_font_family_title_material">sans-serif-medium</string><string name="abc_menu_alt_shortcut_label">Alt+</string><string name="abc_menu_ctrl_shortcut_label">Ctrl+</string><string name="abc_menu_delete_shortcut_label">delete</string><string name="abc_menu_enter_shortcut_label">enter</string><string name="abc_menu_function_shortcut_label">Function+</string><string name="abc_menu_meta_shortcut_label">Meta+</string><string name="abc_menu_shift_shortcut_label">Shift+</string><string name="abc_menu_space_shortcut_label">space</string><string name="abc_menu_sym_shortcut_label">Sym+</string><string name="abc_prepend_shortcut_label">Menu+</string><string name="abc_search_hint">Search…</string><string name="abc_searchview_description_clear">Clear query</string><string name="abc_searchview_description_query">Search query</string><string name="abc_searchview_description_search">Search</string><string name="abc_searchview_description_submit">Submit query</string><string name="abc_searchview_description_voice">Voice search</string><string name="abc_shareactionprovider_share_with">Share with</string><string name="abc_shareactionprovider_share_with_application">Share with <ns1:g example="Mail" id="application_name">%s</ns1:g></string><string name="abc_toolbar_collapse_description">Collapse</string><string name="search_menu_title">Search</string><style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/><style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/><style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/><style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/><style name="Animation.AppCompat.Tooltip" parent="Base.Animation.AppCompat.Tooltip"/><style name="Base.AlertDialog.AppCompat" parent="android:Widget">
<item name="android:layout">@layout/abc_alert_dialog_material</item>
<item name="listLayout">@layout/abc_select_dialog_material</item>
<item name="listItemLayout">@layout/select_dialog_item_material</item>
<item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
<item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
<item name="buttonIconDimen">@dimen/abc_alert_dialog_button_dimen</item>
</style><style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/><style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
<item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
<item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
</style><style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
<item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
<item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
</style><style name="Base.Animation.AppCompat.Tooltip" parent="android:Animation">
<item name="android:windowEnterAnimation">@anim/abc_tooltip_enter</item>
<item name="android:windowExitAnimation">@anim/abc_tooltip_exit</item>
</style><style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
<item name="android:maxLines">1</item>
<item name="android:scrollHorizontally">true</item>
<item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
</style><style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
<item name="android:background">@null</item>
<item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
<item name="android:paddingRight">?attr/dialogPreferredPadding</item>
<item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
</style><style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
<item name="android:textColor">?android:textColorPrimary</item>
<item name="android:textColorHint">?android:textColorHint</item>
<item name="android:textColorHighlight">?android:textColorHighlight</item>
<item name="android:textColorLink">?android:textColorLink</item>
<item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
</style><style name="Base.TextAppearance.AppCompat.Body1">
<item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
<item name="android:textColor">?android:textColorPrimary</item>
</style><style name="Base.TextAppearance.AppCompat.Body2">
<item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
<item name="android:textColor">?android:textColorPrimary</item>
</style><style name="Base.TextAppearance.AppCompat.Button">
<item name="android:textSize">@dimen/abc_text_size_button_material</item>
<item name="android:textAllCaps">true</item>
<item name="android:textColor">?android:textColorPrimary</item>
</style><style name="Base.TextAppearance.AppCompat.Caption">
<item name="android:textSize">@dimen/abc_text_size_caption_material</item>
<item name="android:textColor">?android:textColorSecondary</item>
</style><style name="Base.TextAppearance.AppCompat.Display1">
<item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
<item name="android:textColor">?android:textColorSecondary</item>
</style><style name="Base.TextAppearance.AppCompat.Display2">
<item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
<item name="android:textColor">?android:textColorSecondary</item>
</style><style name="Base.TextAppearance.AppCompat.Display3">
<item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
<item name="android:textColor">?android:textColorSecondary</item>
</style><style name="Base.TextAppearance.AppCompat.Display4">
<item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
<item name="android:textColor">?android:textColorSecondary</item>
</style><style name="Base.TextAppearance.AppCompat.Headline">
<item name="android:textSize">@dimen/abc_text_size_headline_material</item>
<item name="android:textColor">?android:textColorPrimary</item>
</style><style name="Base.TextAppearance.AppCompat.Inverse">
<item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
<item name="android:textColorHint">?android:attr/textColorHintInverse</item>
<item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
<item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
</style><style name="Base.TextAppearance.AppCompat.Large">
<item name="android:textSize">@dimen/abc_text_size_large_material</item>
<item name="android:textColor">?android:attr/textColorPrimary</item>
</style><style name="Base.TextAppearance.AppCompat.Large.Inverse">
<item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
<item name="android:textColorHint">?android:attr/textColorHintInverse</item>
<item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
<item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
</style><style name="Base.TextAppearance.AppCompat.Medium">
<item name="android:textSize">@dimen/abc_text_size_medium_material</item>
<item name="android:textColor">?android:attr/textColorSecondary</item>
</style><style name="Base.TextAppearance.AppCompat.Medium.Inverse">
<item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
<item name="android:textColorHint">?android:attr/textColorHintInverse</item>
<item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
<item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
</style><style name="Base.TextAppearance.AppCompat.Menu">
<item name="android:textSize">@dimen/abc_text_size_menu_material</item>
<item name="android:textColor">?android:textColorPrimary</item>
</style><style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
<item name="android:textStyle">normal</item>
<item name="android:textColor">?android:textColorPrimary</item>
<item name="android:textColorHint">?android:textColorHint</item>
</style><style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
<item name="android:textSize">14sp</item>
<item name="android:textColor">?android:textColorSecondary</item>
</style><style name="Base.TextAppearance.AppCompat.SearchResult.Title">
<item name="android:textSize">18sp</item>
</style><style name="Base.TextAppearance.AppCompat.Small">
<item name="android:textSize">@dimen/abc_text_size_small_material</item>
<item name="android:textColor">?android:attr/textColorTertiary</item>
</style><style name="Base.TextAppearance.AppCompat.Small.Inverse">
<item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
<item name="android:textColorHint">?android:attr/textColorHintInverse</item>
<item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
<item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
</style><style name="Base.TextAppearance.AppCompat.Subhead">
<item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
<item name="android:textColor">?android:textColorPrimary</item>
</style><style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
<item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
<item name="android:textColorHint">?android:attr/textColorHintInverse</item>
<item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
<item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
</style><style name="Base.TextAppearance.AppCompat.Title">
<item name="android:textSize">@dimen/abc_text_size_title_material</item>
<item name="android:textColor">?android:textColorPrimary</item>
</style><style name="Base.TextAppearance.AppCompat.Title.Inverse">
<item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
<item name="android:textColorHint">?android:attr/textColorHintInverse</item>
<item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
<item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
</style><style name="Base.TextAppearance.AppCompat.Tooltip">
<item name="android:textSize">14sp</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
<item name="android:textColor">?attr/actionMenuTextColor</item>
<item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
<item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
<item name="android:textColor">?android:attr/textColorSecondary</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
<item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
<item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
<item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
<item name="android:textColor">?android:attr/textColorPrimary</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
<item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
<item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/><style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
<item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
<item name="android:textColor">@color/abc_btn_colored_text_material</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
<item name="android:textColor">?android:textColorPrimaryInverse</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
<item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
<item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
<item name="android:textColor">?attr/colorAccent</item>
</style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/><style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/><style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/><style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
<item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
</style><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
</style><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
</style><style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
</style><style name="Base.Theme.AppCompat.CompactMenu" parent="">
<item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
<item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
<item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
</style><style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/><style name="Base.Theme.AppCompat.Dialog.Alert">
<item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
<item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
</style><style name="Base.Theme.AppCompat.Dialog.FixedSize">
<item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
<item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
<item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
<item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
</style><style name="Base.Theme.AppCompat.Dialog.MinWidth">
<item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
<item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
</style><style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
</style><style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
<item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
<item name="actionBarWidgetTheme">@null</item>
<item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
<item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
<item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
<item name="colorPrimary">@color/primary_material_dark</item>
</style><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/><style name="Base.Theme.AppCompat.Light.Dialog.Alert">
<item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
<item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
</style><style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
<item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
<item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
<item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
<item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
</style><style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
<item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
<item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
</style><style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/><style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/><style name="Base.ThemeOverlay.AppCompat.ActionBar">
<item name="colorControlNormal">?android:attr/textColorPrimary</item>
<item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
</style><style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
<item name="android:windowBackground">@color/background_material_dark</item>
<item name="android:colorForeground">@color/foreground_material_dark</item>
<item name="android:colorForegroundInverse">@color/foreground_material_light</item>
<item name="android:colorBackground">@color/background_material_dark</item>
<item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
<item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
<item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
<item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
<item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
<item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
<item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
<item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
<item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
<item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
<item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
<item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
<item name="colorControlNormal">?android:attr/textColorSecondary</item>
<item name="colorControlHighlight">@color/ripple_material_dark</item>
<item name="colorButtonNormal">@color/button_material_dark</item>
<item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
<item name="isLightTheme">false</item>
</style><style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="colorControlNormal">?android:attr/textColorPrimary</item>
<item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
</style><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/><style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
<item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
<item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
</style><style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
<item name="android:windowBackground">@color/background_material_light</item>
<item name="android:colorForeground">@color/foreground_material_light</item>
<item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
<item name="android:colorBackground">@color/background_material_light</item>
<item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
<item name="colorBackgroundFloating">@color/background_floating_material_light</item>
<item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
<item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
<item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
<item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
<item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
<item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
<item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
<item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
<item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
<item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
<item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
<item name="colorControlNormal">?android:attr/textColorSecondary</item>
<item name="colorControlHighlight">@color/ripple_material_light</item>
<item name="colorButtonNormal">@color/button_material_light</item>
<item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
<item name="isLightTheme">true</item>
</style><style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
<item name="viewInflaterClass">androidx.appcompat.app.AppCompatViewInflater</item>
<item name="windowNoTitle">false</item>
<item name="windowActionBar">true</item>
<item name="windowActionBarOverlay">false</item>
<item name="windowActionModeOverlay">false</item>
<item name="actionBarPopupTheme">@null</item>
<item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
<item name="isLightTheme">false</item>
<item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
<item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
<item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
<item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
<item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
<item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
<item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
<item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
<item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
<item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
<item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
<item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
<item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
<item name="actionBarSplitStyle">?attr/actionBarStyle</item>
<item name="actionBarWidgetTheme">@null</item>
<item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
<item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
<item name="actionBarDivider">?attr/dividerVertical</item>
<item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
<item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
<item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
<item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
<item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
<item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
<item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
<item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
<item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
<item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
<item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
<item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
<item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
<item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
<item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
<item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
<item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
<item name="android:panelBackground">@android:color/transparent</item>
<item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
<item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
<item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
<item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
<item name="listPreferredItemHeight">64dp</item>
<item name="listPreferredItemHeightSmall">48dp</item>
<item name="listPreferredItemHeightLarge">80dp</item>
<item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
<item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
<item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
<item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
<item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
<item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
<item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
<item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
<item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
<item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
<item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
<item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
<item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
<item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
<item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
<item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
<item name="textColorSearchUrl">@color/abc_search_url_text</item>
<item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
<item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
<item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
<item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
<item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
<item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
<item name="editTextBackground">@drawable/abc_edit_text_material</item>
<item name="editTextColor">?android:attr/textColorPrimary</item>
<item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
<item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
<item name="colorPrimary">@color/primary_material_dark</item>
<item name="colorAccent">@color/accent_material_dark</item>
<item name="colorControlNormal">?android:attr/textColorSecondary</item>
<item name="colorControlActivated">?attr/colorAccent</item>
<item name="colorControlHighlight">@color/ripple_material_dark</item>
<item name="colorButtonNormal">@color/button_material_dark</item>
<item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
<item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
<item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
<item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
<item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
<item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
<item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
<item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
<item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
<item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
<item name="buttonStyle">@style/Widget.AppCompat.Button</item>
<item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
<item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
<item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
<item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
<item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
<item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
<item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
<item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
<item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
<item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
<item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
<item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
<item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
<item name="alertDialogCenterButtons">false</item>
<item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
<item name="listDividerAlertDialog">@null</item>
<item name="windowFixedWidthMajor">@null</item>
<item name="windowFixedWidthMinor">@null</item>
<item name="windowFixedHeightMajor">@null</item>
<item name="windowFixedHeightMinor">@null</item>
<item name="tooltipFrameBackground">@drawable/tooltip_frame_light</item>
<item name="tooltipForegroundColor">@color/foreground_material_light</item>
<item name="colorError">@color/error_color_material_dark</item>
</style><style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
<item name="android:colorBackground">?attr/colorBackgroundFloating</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowFrame">@null</item>
<item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
<item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
<item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
<item name="windowActionBar">false</item>
<item name="windowActionModeOverlay">true</item>
<item name="listPreferredItemPaddingLeft">24dip</item>
<item name="listPreferredItemPaddingRight">24dip</item>
<item name="android:listDivider">@null</item>
<item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
<item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
<item name="android:windowCloseOnTouchOutside">true</item>
</style><style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
<item name="viewInflaterClass">androidx.appcompat.app.AppCompatViewInflater</item>
<item name="windowNoTitle">false</item>
<item name="windowActionBar">true</item>
<item name="windowActionBarOverlay">false</item>
<item name="windowActionModeOverlay">false</item>
<item name="actionBarPopupTheme">@null</item>
<item name="colorBackgroundFloating">@color/background_floating_material_light</item>
<item name="isLightTheme">true</item>
<item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
<item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
<item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
<item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
<item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
<item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
<item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
<item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
<item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
<item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
<item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
<item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
<item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
<item name="actionBarSplitStyle">?attr/actionBarStyle</item>
<item name="actionBarWidgetTheme">@null</item>
<item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
<item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
<item name="actionBarDivider">?attr/dividerVertical</item>
<item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
<item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
<item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
<item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
<item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
<item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
<item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
<item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
<item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
<item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
<item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
<item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
<item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
<item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
<item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
<item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
<item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
<item name="android:panelBackground">@android:color/transparent</item>
<item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
<item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
<item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
<item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
<item name="listPreferredItemHeight">64dp</item>
<item name="listPreferredItemHeightSmall">48dp</item>
<item name="listPreferredItemHeightLarge">80dp</item>
<item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
<item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
<item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
<item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
<item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
<item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
<item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
<item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
<item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
<item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
<item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
<item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
<item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
<item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
<item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
<item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
<item name="textColorSearchUrl">@color/abc_search_url_text</item>
<item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
<item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
<item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
<item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
<item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
<item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
<item name="editTextBackground">@drawable/abc_edit_text_material</item>
<item name="editTextColor">?android:attr/textColorPrimary</item>
<item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
<item name="colorPrimaryDark">@color/primary_dark_material_light</item>
<item name="colorPrimary">@color/primary_material_light</item>
<item name="colorAccent">@color/accent_material_light</item>
<item name="colorControlNormal">?android:attr/textColorSecondary</item>
<item name="colorControlActivated">?attr/colorAccent</item>
<item name="colorControlHighlight">@color/ripple_material_light</item>
<item name="colorButtonNormal">@color/button_material_light</item>
<item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
<item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
<item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
<item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
<item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
<item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
<item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
<item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
<item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
<item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
<item name="buttonStyle">@style/Widget.AppCompat.Button</item>
<item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
<item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
<item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
<item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
<item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
<item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
<item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
<item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
<item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
<item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
<item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
<item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
<item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
<item name="alertDialogCenterButtons">false</item>
<item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
<item name="listDividerAlertDialog">@null</item>
<item name="windowFixedWidthMajor">@null</item>
<item name="windowFixedWidthMinor">@null</item>
<item name="windowFixedHeightMajor">@null</item>
<item name="windowFixedHeightMinor">@null</item>
<item name="tooltipFrameBackground">@drawable/tooltip_frame_dark</item>
<item name="tooltipForegroundColor">@color/foreground_material_dark</item>
<item name="colorError">@color/error_color_material_light</item>
</style><style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
<item name="android:colorBackground">?attr/colorBackgroundFloating</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowFrame">@null</item>
<item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
<item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
<item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
<item name="windowActionBar">false</item>
<item name="windowActionModeOverlay">true</item>
<item name="listPreferredItemPaddingLeft">24dip</item>
<item name="listPreferredItemPaddingRight">24dip</item>
<item name="android:listDivider">@null</item>
<item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
<item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
<item name="android:windowCloseOnTouchOutside">true</item>
</style><style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:colorBackground">?attr/colorBackgroundFloating</item>
<item name="android:windowFrame">@null</item>
<item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
<item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
<item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
<item name="windowActionBar">false</item>
<item name="windowActionModeOverlay">true</item>
<item name="listPreferredItemPaddingLeft">24dip</item>
<item name="listPreferredItemPaddingRight">24dip</item>
<item name="android:listDivider">@null</item>
<item name="windowFixedWidthMajor">@null</item>
<item name="windowFixedWidthMinor">@null</item>
<item name="windowFixedHeightMajor">@null</item>
<item name="windowFixedHeightMinor">@null</item>
<item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
<item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
<item name="android:windowCloseOnTouchOutside">true</item>
</style><style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
<item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
<item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
<item name="android:background">?attr/editTextBackground</item>
<item name="android:textColor">?attr/editTextColor</item>
<item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
<item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
</style><style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
<item name="android:background">?attr/editTextBackground</item>
<item name="android:textColor">?attr/editTextColor</item>
<item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
<item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
</style><style name="Base.V7.Widget.AppCompat.Toolbar" parent="android:Widget">
<item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
<item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
<item name="android:minHeight">?attr/actionBarSize</item>
<item name="titleMargin">4dp</item>
<item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
<item name="buttonGravity">top</item>
<item name="collapseIcon">?attr/homeAsUpIndicator</item>
<item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
<item name="contentInsetStart">16dp</item>
<item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
<item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
<item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
</style><style name="Base.Widget.AppCompat.ActionBar" parent="">
<item name="displayOptions">showTitle</item>
<item name="divider">?attr/dividerVertical</item>
<item name="height">?attr/actionBarSize</item>
<item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
<item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
<item name="background">@null</item>
<item name="backgroundStacked">@null</item>
<item name="backgroundSplit">@null</item>
<item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
<item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
<item name="android:gravity">center_vertical</item>
<item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
<item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
<item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
<item name="elevation">@dimen/abc_action_bar_elevation_material</item>
<item name="popupTheme">?attr/actionBarPopupTheme</item>
</style><style name="Base.Widget.AppCompat.ActionBar.Solid">
<item name="background">?attr/colorPrimary</item>
<item name="backgroundStacked">?attr/colorPrimary</item>
<item name="backgroundSplit">?attr/colorPrimary</item>
</style><style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
<item name="divider">?attr/actionBarDivider</item>
<item name="showDividers">middle</item>
<item name="dividerPadding">8dip</item>
</style><style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
<item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
<item name="android:textColor">?android:attr/textColorPrimary</item>
<item name="android:textSize">12sp</item>
<item name="android:textStyle">bold</item>
<item name="android:ellipsize">marquee</item>
<item name="android:maxLines">2</item>
<item name="android:maxWidth">180dp</item>
<item name="textAllCaps">true</item>
</style><style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
<item name="android:background">@drawable/abc_tab_indicator_material</item>
<item name="android:gravity">center_horizontal</item>
<item name="android:paddingLeft">16dip</item>
<item name="android:paddingRight">16dip</item>
<item name="android:layout_width">0dip</item>
<item name="android:layout_weight">1</item>
<item name="android:minWidth">80dip</item>
</style><style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
<item name="android:background">?attr/actionBarItemBackground</item>
<item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
<item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
<item name="android:scaleType">center</item>
<item name="android:gravity">center</item>
<item name="android:maxLines">2</item>
<item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
</style><style name="Base.Widget.AppCompat.ActionButton.CloseMode">
<item name="android:background">?attr/controlBackground</item>
<item name="android:minWidth">56dp</item>
</style><style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
<item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
<item name="android:background">?attr/actionBarItemBackground</item>
<item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
<item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
<item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
</style><style name="Base.Widget.AppCompat.ActionMode" parent="">
<item name="background">?attr/actionModeBackground</item>
<item name="backgroundSplit">?attr/actionModeSplitBackground</item>
<item name="height">?attr/actionBarSize</item>
<item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
<item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
<item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
</style><style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
<item name="android:gravity">center</item>
<item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
<item name="divider">?attr/dividerVertical</item>
<item name="showDividers">middle</item>
<item name="dividerPadding">6dip</item>
</style><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/><style name="Base.Widget.AppCompat.Button" parent="android:Widget">
<item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
<item name="android:textAppearance">?android:attr/textAppearanceButton</item>
<item name="android:minHeight">48dip</item>
<item name="android:minWidth">88dip</item>
<item name="android:focusable">true</item>
<item name="android:clickable">true</item>
<item name="android:gravity">center_vertical|center_horizontal</item>
</style><style name="Base.Widget.AppCompat.Button.Borderless">
<item name="android:background">@drawable/abc_btn_borderless_material</item>
</style><style name="Base.Widget.AppCompat.Button.Borderless.Colored">
<item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
</style><style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
<item name="android:minWidth">64dp</item>
<item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
</style><style name="Base.Widget.AppCompat.Button.Colored">
<item name="android:background">@drawable/abc_btn_colored_material</item>
<item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
</style><style name="Base.Widget.AppCompat.Button.Small">
<item name="android:minHeight">48dip</item>
<item name="android:minWidth">48dip</item>
</style><style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
<item name="android:background">@null</item>
</style><style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/><style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
<item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
<item name="android:background">?attr/controlBackground</item>
</style><style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
<item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
<item name="android:background">?attr/controlBackground</item>
</style><style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
<item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
<item name="android:thumb">@drawable/abc_switch_thumb_material</item>
<item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
<item name="android:background">?attr/controlBackground</item>
<item name="showText">false</item>
<item name="switchPadding">@dimen/abc_switch_padding</item>
<item name="android:textOn">@string/abc_capital_on</item>
<item name="android:textOff">@string/abc_capital_off</item>
</style><style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
<item name="barLength">18dp</item>
<item name="gapBetweenBars">3dp</item>
<item name="drawableSize">24dp</item>
</style><style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
<item name="color">?android:attr/textColorSecondary</item>
<item name="spinBars">true</item>
<item name="thickness">2dp</item>
<item name="arrowShaftLength">16dp</item>
<item name="arrowHeadLength">8dp</item>
</style><style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
<item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
<item name="android:paddingLeft">8dp</item>
<item name="android:paddingRight">8dp</item>
<item name="android:gravity">center_vertical</item>
</style><style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/><style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
<item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
</style><style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
<item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
<item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
</style><style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
<item name="background">?attr/colorPrimary</item>
<item name="backgroundStacked">?attr/colorPrimary</item>
<item name="backgroundSplit">?attr/colorPrimary</item>
</style><style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
</style><style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
</style><style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
<item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
</style><style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
<item name="android:background">@drawable/abc_tab_indicator_material</item>
</style><style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
</style><style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
<item name="overlapAnchor">true</item>
<item name="android:dropDownHorizontalOffset">-4dip</item>
</style><style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
<item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
</style><style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
<item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
<item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
<item name="android:dropDownVerticalOffset">0dip</item>
<item name="android:dropDownHorizontalOffset">0dip</item>
<item name="android:dropDownWidth">wrap_content</item>
</style><style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
<item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
</style><style name="Base.Widget.AppCompat.ListView.DropDown">
<item name="android:divider">@null</item>
</style><style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
<item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
<item name="android:divider">?attr/dividerHorizontal</item>
</style><style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
</style><style name="Base.Widget.AppCompat.PopupMenu.Overflow">
<item name="overlapAnchor">true</item>
<item name="android:dropDownHorizontalOffset">-4dip</item>
</style><style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
</style><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
</style><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
</style><style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
<item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
<item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
</style><style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
<item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
<item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
<item name="android:minHeight">36dp</item>
<item name="android:maxHeight">36dp</item>
<item name="android:isIndicator">true</item>
<item name="android:thumb">@null</item>
</style><style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
<item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
<item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
<item name="android:minHeight">16dp</item>
<item name="android:maxHeight">16dp</item>
<item name="android:isIndicator">true</item>
<item name="android:thumb">@null</item>
</style><style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
<item name="layout">@layout/abc_search_view</item>
<item name="queryBackground">@drawable/abc_textfield_search_material</item>
<item name="submitBackground">@drawable/abc_textfield_search_material</item>
<item name="closeIcon">@drawable/abc_ic_clear_material</item>
<item name="searchIcon">@drawable/abc_ic_search_api_material</item>
<item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
<item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
<item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
<item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
<item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
</style><style name="Base.Widget.AppCompat.SearchView.ActionBar">
<item name="queryBackground">@null</item>
<item name="submitBackground">@null</item>
<item name="searchHintIcon">@null</item>
<item name="defaultQueryHint">@string/abc_search_hint</item>
</style><style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
<item name="android:indeterminateOnly">false</item>
<item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
<item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
<item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
<item name="android:focusable">true</item>
<item name="android:paddingLeft">16dip</item>
<item name="android:paddingRight">16dip</item>
</style><style name="Base.Widget.AppCompat.SeekBar.Discrete">
<item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
</style><style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
<item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
<item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
<item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
<item name="android:dropDownVerticalOffset">0dip</item>
<item name="android:dropDownHorizontalOffset">0dip</item>
<item name="android:dropDownWidth">wrap_content</item>
<item name="android:clickable">true</item>
<item name="android:gravity">left|start|center_vertical</item>
<item name="overlapAnchor">true</item>
</style><style name="Base.Widget.AppCompat.Spinner.Underlined">
<item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
</style><style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
<item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
<item name="android:paddingLeft">8dp</item>
<item name="android:paddingRight">8dp</item>
</style><style name="Base.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar"/><style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
<item name="android:background">?attr/controlBackground</item>
<item name="android:minWidth">56dp</item>
<item name="android:scaleType">center</item>
</style><style name="Platform.AppCompat" parent="android:Theme.Holo">
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
<item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
<item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
<item name="android:colorForeground">@color/foreground_material_dark</item>
<item name="android:colorForegroundInverse">@color/foreground_material_light</item>
<item name="android:colorBackground">@color/background_material_dark</item>
<item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
<item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
<item name="android:backgroundDimAmount">0.6</item>
<item name="android:windowBackground">@color/background_material_dark</item>
<item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
<item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
<item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
<item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
<item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
<item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
<item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
<item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
<item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
<item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
<item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
<item name="android:textColorLink">?attr/colorAccent</item>
<item name="android:textColorLinkInverse">?attr/colorAccent</item>
<item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
<item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
<item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
<item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
<item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
<item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
<item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
<item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
<item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
<item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
<item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
<item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
<item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
<item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
<item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
<item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
<item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
<item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
<item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
<item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
</style><style name="Platform.AppCompat.Light" parent="android:Theme.Holo.Light">
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
<item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
<item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
<item name="android:colorForeground">@color/foreground_material_light</item>
<item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
<item name="android:colorBackground">@color/background_material_light</item>
<item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
<item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
<item name="android:backgroundDimAmount">0.6</item>
<item name="android:windowBackground">@color/background_material_light</item>
<item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
<item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
<item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
<item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
<item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
<item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
<item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
<item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
<item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
<item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
<item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
<item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
<item name="android:textColorLink">?attr/colorAccent</item>
<item name="android:textColorLinkInverse">?attr/colorAccent</item>
<item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
<item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
<item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
<item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
<item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
<item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
<item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
<item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
<item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
<item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
<item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
<item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
<item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
<item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
<item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
<item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
<item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
<item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
<item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
<item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
</style><style name="Platform.ThemeOverlay.AppCompat" parent=""/><style name="Platform.ThemeOverlay.AppCompat.Dark">
<item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
<item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
<item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
<item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
<item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
</style><style name="Platform.ThemeOverlay.AppCompat.Light">
<item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
<item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
<item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
<item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
<item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
</style><style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/><style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
</style><style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
<item name="android:layout_gravity">center_vertical|left</item>
<item name="android:paddingRight">8dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
<item name="android:layout_marginRight">8dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
<item name="android:paddingRight">16dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
<item name="android:layout_marginLeft">16dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget">
<item name="android:layout_marginLeft">16dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget">
<item name="android:layout_marginLeft">8dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
<item name="android:layout_alignParentLeft">true</item>
</style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget">
<item name="android:layout_marginLeft">16dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
<item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
<item name="android:paddingRight">4dp</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
<item name="android:layout_alignParentLeft">true</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
<item name="android:layout_toLeftOf">@id/edit_query</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
<item name="android:layout_alignParentRight">true</item>
</style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
<item name="android:layout_toLeftOf">@android:id/icon2</item>
<item name="android:layout_toRightOf">@android:id/icon1</item>
</style><style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
<item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
</style><style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
<item name="android:paddingLeft">12dp</item>
<item name="android:paddingRight">12dp</item>
</style><style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
<item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
<item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
</style><style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/><style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/><style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/><style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/><style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/><style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/><style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/><style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/><style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/><style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/><style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/><style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/><style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/><style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/><style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/><style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/><style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/><style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/><style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/><style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/><style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
</style><style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
</style><style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/><style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/><style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/><style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/><style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/><style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/><style name="TextAppearance.AppCompat.Tooltip" parent="Base.TextAppearance.AppCompat.Tooltip"/><style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
</style><style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/><style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
</style><style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/><style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
</style><style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
</style><style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/><style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
</style><style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/><style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/><style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/><style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/><style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/><style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
</style><style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/><style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/><style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/><style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/><style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/><style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
</style><style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
</style><style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
</style><style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/><style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/><style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/><style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/><style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/><style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/><style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/><style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/><style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/><style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/><style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/><style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/><style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
</style><style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/><style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/><style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/><style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/><style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/><style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
</style><style name="Theme.AppCompat.Light.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style><style name="Theme.AppCompat.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style><style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/><style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/><style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/><style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/><style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/><style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/><style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/><style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
</style><style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
</style><style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
</style><style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
</style><style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
</style><style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/><style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/><style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/><style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
</style><style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
</style><style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
</style><style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/><style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/><style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/><style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/><style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/><style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/><style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/><style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/><style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/><style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/><style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/><style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
<item name="color">?attr/colorControlNormal</item>
</style><style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/><style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/><style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/><style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
</style><style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
</style><style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/><style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
</style><style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/><style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
</style><style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
</style><style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
</style><style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/><style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/><style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/><style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/><style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/><style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/><style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/><style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/><style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/><style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/><style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/><style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
</style><style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/><style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/><style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/><style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
</style><style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/><style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/><style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/><style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/><style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
</style><style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
</style><style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
</style><style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
</style><style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/><style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/><style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/><style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/><style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/><style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/><style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/><style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/><style name="Widget.AppCompat.Spinner.DropDown"/><style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/><style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/><style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/><style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/><style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-uz/values-uz.xml" qualifiers="uz"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Boshiga o‘tish"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuqoriga o‘tish"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Boshqa parametrlar"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Tayyor"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Hammasi"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Dastur tanlang"</string><string msgid="121134116657445385" name="abc_capital_off">"O‘CHIQ"</string><string msgid="3405795526292276155" name="abc_capital_on">"YONIQ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Probel"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menyu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Qidirish…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"So‘rovni tozalash"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"So‘rovni izlash"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Qidirish"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"So‘rov yaratish"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ovozli qidiruv"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ruxsat berish"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> orqali ulashish"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Yig‘ish"</string><string msgid="146198913615257606" name="search_menu_title">"Qidirish"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-fr-rCA/values-fr-rCA.xml" qualifiers="fr-rCA"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Terminé"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Voir toutes les chaînes"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionnez une application"</string><string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"supprimer"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"entrée"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fonction+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Méta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Maj+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"espace"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Recherche en cours..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Partager avec <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string><string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-pl/values-pl.xml" qualifiers="pl"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Przejdź do strony głównej"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Przejdź wyżej"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Więcej opcji"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gotowe"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobacz wszystkie"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Wybierz aplikację"</string><string msgid="121134116657445385" name="abc_capital_off">"WYŁ."</string><string msgid="3405795526292276155" name="abc_capital_on">"WŁ."</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funkcyjny+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"spacja"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Szukaj…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Wyczyść zapytanie"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Wyszukiwane hasło"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Szukaj"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wyślij zapytanie"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Wyszukiwanie głosowe"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Udostępnij dla"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Udostępnij przez: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zwiń"</string><string msgid="146198913615257606" name="search_menu_title">"Szukaj"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-vi/values-vi.xml" qualifiers="vi"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Điều hướng về trang chủ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Điều hướng lên trên"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Tùy chọn khác"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Xong"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Xem tất cả"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chọn một ứng dụng"</string><string msgid="121134116657445385" name="abc_capital_off">"TẮT"</string><string msgid="3405795526292276155" name="abc_capital_on">"BẬT"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"phím cách"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Tìm kiếm…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Xóa truy vấn"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Tìm kiếm truy vấn"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Tìm kiếm"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Gửi truy vấn"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Tìm kiếm bằng giọng nói"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Chia sẻ với"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Chia sẻ với <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Thu gọn"</string><string msgid="146198913615257606" name="search_menu_title">"Tìm kiếm"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-sq/values-sq.xml" qualifiers="sq"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Orientohu për në shtëpi"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ngjitu lart"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsione të tjera"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"U krye!"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Shikoji të gjitha"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zgjidh një aplikacion"</string><string msgid="121134116657445385" name="abc_capital_off">"JOAKTIV"</string><string msgid="3405795526292276155" name="abc_capital_on">"AKTIV"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funksioni+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"hapësirë"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menyja+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Kërko..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Pastro pyetjen"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Kërko pyetjen"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Kërko"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dërgo pyetjen"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Kërkim me zë"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shpërnda publikisht me"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Ndaje me <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Shpalos"</string><string msgid="146198913615257606" name="search_menu_title">"Kërko"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-sv/values-sv.xml" qualifiers="sv"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Visa startsidan"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigera uppåt"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fler alternativ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Klart"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visa alla"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Välj en app"</string><string msgid="121134116657445385" name="abc_capital_off">"AV"</string><string msgid="3405795526292276155" name="abc_capital_on">"PÅ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt + "</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl + "</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"retur"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funktion + "</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta + "</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Skift + "</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"blanksteg"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Symbol + "</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Meny + "</string><string msgid="7723749260725869598" name="abc_search_hint">"Sök …"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ta bort frågan"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Sökfråga"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Sök"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Skicka fråga"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Röstsökning"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dela med"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Dela med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Komprimera"</string><string msgid="146198913615257606" name="search_menu_title">"Sök"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-sl/values-sl.xml" qualifiers="sl"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Krmarjenje domov"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Krmarjenje navzgor"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Več možnosti"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Končano"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Pokaži vse"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izbira aplikacije"</string><string msgid="121134116657445385" name="abc_capital_off">"IZKLOPLJENO"</string><string msgid="3405795526292276155" name="abc_capital_on">"VKLOPLJENO"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"preslednica"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Meni +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Iskanje …"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbris poizvedbe"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Iskalna poizvedba"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Iskanje"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošiljanje poizvedbe"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno iskanje"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deljenje z"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Deljenje z drugimi prek aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Strni"</string><string msgid="146198913615257606" name="search_menu_title">"Iskanje"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-sk/values-sk.xml" qualifiers="sk"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Prejsť na plochu"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Prejsť hore"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Ďalšie možnosti"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobraziť všetko"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zvoľte aplikáciu"</string><string msgid="121134116657445385" name="abc_capital_off">"VYPNUTÉ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ZAPNUTÉ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"odstrániť"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"medzerník"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Vyhľadať…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vymazať dopyt"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhľadávací dopyt"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Hľadať"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odoslať dopyt"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhľadávanie"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Zdieľať pomocou"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Zdieľať s aplikáciou <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zbaliť"</string><string msgid="146198913615257606" name="search_menu_title">"Vyhľadávanie"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ur/values-ur.xml" qualifiers="ur"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ہوم پر نیویگیٹ کریں"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"اوپر نیویگیٹ کریں"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"مزید اختیارات"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ہو گیا"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"سبھی دیکھیں"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ایک ایپ منتخب کریں"</string><string msgid="121134116657445385" name="abc_capital_off">"آف"</string><string msgid="3405795526292276155" name="abc_capital_on">"آن"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"تلاش کریں…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"استفسار صاف کریں"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"استفسار تلاش کریں"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"تلاش کریں"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"استفسار جمع کرائیں"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"صوتی تلاش"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک کریں مع"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> کے ساتھ اشتراک کریں"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"سکیڑیں"</string><string msgid="146198913615257606" name="search_menu_title">"تلاش"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-sw/values-sw.xml" qualifiers="sw"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Nenda mwanzo"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nenda juu"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Chaguo zaidi"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Nimemaliza"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Angalia zote"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chagua programu"</string><string msgid="121134116657445385" name="abc_capital_off">"IMEZIMWA"</string><string msgid="3405795526292276155" name="abc_capital_on">"IMEWASHWA"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"futa"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"nafasi"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menyu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Tafuta…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Futa hoja"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Hoja ya utafutaji"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Tafuta"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wasilisha hoja"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Tafuta kwa kutamka"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shiriki na:"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Shiriki ukitumia <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kunja"</string><string msgid="146198913615257606" name="search_menu_title">"Tafuta"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-pt-rPT/values-pt-rPT.xml" qualifiers="pt-rPT"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escolher uma aplicação"</string><string msgid="121134116657445385" name="abc_capital_off">"DESATIVADO"</string><string msgid="3405795526292276155" name="abc_capital_on">"ATIVADO"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"eliminar"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Função +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"espaço"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partilhar com"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Partilhar com a aplicação <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Reduzir"</string><string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-tr/values-tr.xml" qualifiers="tr"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ana ekrana git"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yukarı git"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Diğer seçenekler"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Bitti"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tümünü göster"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Bir uygulama seçin"</string><string msgid="121134116657445385" name="abc_capital_off">"KAPAT"</string><string msgid="3405795526292276155" name="abc_capital_on">"AÇ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"sil"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"İşlev+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Üst Karakter+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"boşluk"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menü+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Ara…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorguyu temizle"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Arama sorgusu"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Ara"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorguyu gönder"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Sesli arama"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Şununla paylaş"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ile paylaş"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Daralt"</string><string msgid="146198913615257606" name="search_menu_title">"Ara"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v22/values-v22.xml" qualifiers="v22"><style name="Base.Theme.AppCompat" parent="Base.V22.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light"/><style name="Base.V22.Theme.AppCompat" parent="Base.V21.Theme.AppCompat">
<item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
<item name="editTextBackground">?android:attr/editTextBackground</item>
</style><style name="Base.V22.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light">
<item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
<item name="editTextBackground">?android:attr/editTextBackground</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v25/values-v25.xml" qualifiers="v25"><style name="Platform.AppCompat" parent="Platform.V25.AppCompat"/><style name="Platform.AppCompat.Light" parent="Platform.V25.AppCompat.Light"/><style name="Platform.V25.AppCompat" parent="android:Theme.Material.NoActionBar">
</style><style name="Platform.V25.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-hdpi-v4/values-hdpi-v4.xml" qualifiers="hdpi-v4"><style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
<item name="barLength">18.66dp</item>
<item name="gapBetweenBars">3.33dp</item>
<item name="drawableSize">24dp</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v24/values-v24.xml" qualifiers="v24"><style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="android:TextAppearance.Material.Widget.Button.Borderless.Colored"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Colored" parent="android:TextAppearance.Material.Widget.Button.Colored"/></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-large-v4/values-large-v4.xml" qualifiers="large-v4"><dimen name="abc_config_prefDialogWidth">440dp</dimen><item name="abc_dialog_fixed_height_major" type="dimen">60%</item><item name="abc_dialog_fixed_height_minor" type="dimen">90%</item><item name="abc_dialog_fixed_width_major" type="dimen">60%</item><item name="abc_dialog_fixed_width_minor" type="dimen">90%</item><item name="abc_dialog_min_width_major" type="dimen">55%</item><item name="abc_dialog_min_width_minor" type="dimen">80%</item><style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.Dialog.FixedSize"/><style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.Dialog.FixedSize"/></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ta/values-ta.xml" qualifiers="ta"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"முகப்பிற்கு வழிசெலுத்து"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"மேலே செல்"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"மேலும் விருப்பங்கள்"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"முடிந்தது"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"எல்லாம் காட்டு"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"பயன்பாட்டைத் தேர்வுசெய்க"</string><string msgid="121134116657445385" name="abc_capital_off">"ஆஃப்"</string><string msgid="3405795526292276155" name="abc_capital_on">"ஆன்"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"ஆல்ட் மற்றும்"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"கண்ட்ரோல் மற்றும்"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"டெலிட்"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"எண்டர்"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"ஃபங்ஷன் மற்றும்"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"மெட்டா மற்றும்"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"ஷிஃப்ட் மற்றும்"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"ஸ்பேஸ்"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"சிம்பல் மற்றும்"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"மெனு மற்றும்"</string><string msgid="7723749260725869598" name="abc_search_hint">"தேடு..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"வினவலை அழி"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"தேடல் வினவல்"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"தேடு"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"வினவலைச் சமர்ப்பி"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"குரல் தேடல்"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"இதனுடன் பகிர்"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> மூலம் பகிர்"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"சுருக்கு"</string><string msgid="146198913615257606" name="search_menu_title">"தேடு"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-v23/values-v23.xml" qualifiers="v23"><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="android:TextAppearance.Material.Widget.Button.Inverse"/><style name="Base.Theme.AppCompat" parent="Base.V23.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light"/><style name="Base.V23.Theme.AppCompat" parent="Base.V22.Theme.AppCompat">
<item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
<item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
<item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
<item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
<item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
<item name="controlBackground">@drawable/abc_control_background_material</item>
</style><style name="Base.V23.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light">
<item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
<item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
<item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
<item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
<item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
<item name="controlBackground">@drawable/abc_control_background_material</item>
</style><style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored"/><style name="Base.Widget.AppCompat.Button.Colored" parent="android:Widget.Material.Button.Colored"/><style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.Material.RatingBar.Indicator"/><style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.Material.RatingBar.Small"/><style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-th/values-th.xml" qualifiers="th"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"นำทางไปหน้าแรก"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"นำทางขึ้น"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ตัวเลือกอื่น"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"เสร็จสิ้น"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ดูทั้งหมด"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"เลือกแอป"</string><string msgid="121134116657445385" name="abc_capital_off">"ปิด"</string><string msgid="3405795526292276155" name="abc_capital_on">"เปิด"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"เมนู+"</string><string msgid="7723749260725869598" name="abc_search_hint">"ค้นหา…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ล้างข้อความค้นหา"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ข้อความค้นหา"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ค้นหา"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ส่งข้อความค้นหา"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ค้นหาด้วยเสียง"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"แชร์กับ"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"แชร์ทาง <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ยุบ"</string><string msgid="146198913615257606" name="search_menu_title">"ค้นหา"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-fa/values-fa.xml" qualifiers="fa"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"پیمایش به صفحه اصلی"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"پیمایش به بالا"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"گزینههای بیشتر"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"تمام"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"مشاهده همه"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"انتخاب برنامه"</string><string msgid="121134116657445385" name="abc_capital_off">"خاموش"</string><string msgid="3405795526292276155" name="abc_capital_on">"روشن"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"کلید فاصله"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"منو+"</string><string msgid="7723749260725869598" name="abc_search_hint">"جستجو…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"پاک کردن عبارت جستجو"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"عبارت جستجو"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"جستجو"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ارسال عبارت جستجو"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"جستجوی گفتاری"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراکگذاری با"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"اشتراکگذاری با <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"کوچک کردن"</string><string msgid="146198913615257606" name="search_menu_title">"جستجو"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-lt/values-lt.xml" qualifiers="lt"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Eiti į pagrindinį puslapį"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Eiti į viršų"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Daugiau parinkčių"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Atlikta"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Peržiūrėti viską"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pasirinkti programą"</string><string msgid="121134116657445385" name="abc_capital_off">"IŠJUNGTA"</string><string msgid="3405795526292276155" name="abc_capital_on">"ĮJUNGTI"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"„Alt“ +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"„Ctrl“ +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"„Delete“"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"„Enter“"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"„Function“ +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"„Meta“ +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"„Shift“ +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"tarpo klavišas"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"„Sym“ +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"„Menu“ +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Ieškoti..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Išvalyti užklausą"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Paieškos užklausa"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Paieška"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pateikti užklausą"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Paieška balsu"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bendrinti naudojant"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Bendrinti naudojant programą „<ns1:g id="APPLICATION_NAME">%s</ns1:g>“"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sutraukti"</string><string msgid="146198913615257606" name="search_menu_title">"Paieška"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-or/values-or.xml" qualifiers="or"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ହୋମ୍ ପେଜ୍କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ଅଧିକ ବିକଳ୍ପ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ହୋଇଗଲା"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ସବୁ ଦେଖନ୍ତୁ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ଗୋଟିଏ ଆପ୍ ବାଛନ୍ତୁ"</string><string msgid="121134116657445385" name="abc_capital_off">"ଅଫ୍"</string><string msgid="3405795526292276155" name="abc_capital_on">"ଅନ୍"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"ଡିଲିଟ୍"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"ଏଣ୍ଟର୍"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"ସ୍ପେସ୍"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"ମେନୁ"</string><string msgid="7723749260725869598" name="abc_search_hint">"ସର୍ଚ୍ଚ…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ସର୍ଚ୍ଚ କ୍ୱେରୀ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ସର୍ଚ୍ଚ କରନ୍ତୁ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ଭଏସ୍ ସର୍ଚ୍ଚ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ଏହାଙ୍କ ସହ ଶେୟାର୍ କରନ୍ତୁ"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ସହ ଶେୟାର୍ କରନ୍ତୁ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ଛୋଟ କରନ୍ତୁ"</string><string msgid="146198913615257606" name="search_menu_title">"ସର୍ଚ୍ଚ କରନ୍ତୁ"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-eu/values-eu.xml" qualifiers="eu"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Joan orri nagusira"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Joan gora"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Aukera gehiago"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Eginda"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string><string msgid="121134116657445385" name="abc_capital_off">"DESAKTIBATUTA"</string><string msgid="3405795526292276155" name="abc_capital_on">"AKTIBATUTA"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ktrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Ezabatu"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Sartu"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funtzioa +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Maius +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Zuriunea"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menua +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Bilatu…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Garbitu kontsulta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Bilatu"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Bidali kontsulta"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ahozko bilaketa"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partekatu hauekin"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Partekatu <ns1:g id="APPLICATION_NAME">%s</ns1:g> aplikazioarekin"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Tolestu"</string><string msgid="146198913615257606" name="search_menu_title">"Bilatu"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-lo/values-lo.xml" qualifiers="lo"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ກັບໄປໜ້າຫຼັກ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ຂຶ້ນເທິງ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ໂຕເລືອກອື່ນ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ແລ້ວໆ"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ເບິ່ງທັງຫມົດ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ເລືອກແອັບຯ"</string><string msgid="121134116657445385" name="abc_capital_off">"ປິດ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ເປີດ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"ຊອກຫາ"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ລຶບຂໍ້ຄວາມຊອກຫາ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ຊອກຫາ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ຊອກຫາ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ສົ່ງການຊອກຫາ"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ຊອກຫາດ້ວຍສຽງ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ແບ່ງປັນກັບ"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"ແບ່ງປັນດ້ວຍ <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ຫຍໍ້"</string><string msgid="146198913615257606" name="search_menu_title">"ຊອກຫາ"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-iw/values-iw.xml" qualifiers="iw"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"נווט לדף הבית"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"נווט למעלה"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"עוד אפשרויות"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"בוצע"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ראה הכל"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"בחר אפליקציה"</string><string msgid="121134116657445385" name="abc_capital_off">"כבוי"</string><string msgid="3405795526292276155" name="abc_capital_on">"פועל"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"מקש רווח"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"תפריט+"</string><string msgid="7723749260725869598" name="abc_search_hint">"חיפוש…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"מחק שאילתה"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"שאילתת חיפוש"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"חיפוש"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"שלח שאילתה"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"חיפוש קולי"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"שתף עם"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"שתף עם <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"כווץ"</string><string msgid="146198913615257606" name="search_menu_title">"חיפוש"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-en-rGB/values-en-rGB.xml" qualifiers="en-rGB"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="146198913615257606" name="search_menu_title">"Search"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-fi/values-fi.xml" qualifiers="fi"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Siirry etusivulle"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Siirry ylös"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lisää"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Näytä kaikki"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valitse sovellus"</string><string msgid="121134116657445385" name="abc_capital_off">"POIS KÄYTÖSTÄ"</string><string msgid="3405795526292276155" name="abc_capital_on">"KÄYTÖSSÄ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Vaihto+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"välilyönti"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Valikko+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Haku…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Tyhjennä kysely"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Hakulauseke"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Haku"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lähetä kysely"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Puhehaku"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jakaminen:"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Jaa sovelluksessa <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kutista"</string><string msgid="146198913615257606" name="search_menu_title">"Haku"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-night-v8/values-night-v8.xml" qualifiers="night-v8"><style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat"/><style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat"/><style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Dialog"/><style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Dialog.Alert"/><style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Dialog.MinWidth"/><style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.DialogWhenLarge"/><style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.NoActionBar"/></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-en-rAU/values-en-rAU.xml" qualifiers="en-rAU"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="146198913615257606" name="search_menu_title">"Search"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-port/values-port.xml" qualifiers="port"><bool name="abc_action_bar_embed_tabs">false</bool></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-fr/values-fr.xml" qualifiers="fr"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"OK"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tout afficher"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string><string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"supprimer"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"entrée"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Fonction+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Méta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Maj+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"espace"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Rechercher…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager avec"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Partager avec <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string><string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-es/values-es.xml" qualifiers="es"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir a la pantalla de inicio"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string><string msgid="121134116657445385" name="abc_capital_off">"DESACTIVADO"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVADO"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Eliminar"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Intro"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Función +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Mayús +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Espacio"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menú +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Compartir con <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="146198913615257606" name="search_menu_title">"Buscar"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-et/values-et.xml" qualifiers="et"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeerimine avaekraanile"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeerimine üles"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valige rakendus"</string><string msgid="121134116657445385" name="abc_capital_off">"VÄLJAS"</string><string msgid="3405795526292276155" name="abc_capital_on">"SEES"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"kustutamisklahv"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"sisestusklahv"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funktsiooniklahv +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Tõstuklahv +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"tühik"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menüü +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Otsige …"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Päringu tühistamine"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Otsingupäring"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Otsing"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Päringu esitamine"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Häälotsing"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jagamine:"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Jagamine rakendusega <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ahendamine"</string><string msgid="146198913615257606" name="search_menu_title">"Otsing"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-hr/values-hr.xml" qualifiers="hr"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Idi na početnu"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Idi gore"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Dodatne opcije"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odabir aplikacije"</string><string msgid="121134116657445385" name="abc_capital_off">"ISKLJUČENO"</string><string msgid="3405795526292276155" name="abc_capital_on">"UKLJUČENO"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"razmaknica"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pretražite…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbriši upit"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretraživanje"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraživanje"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dijeljenje sa"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Dijeli putem aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sažmi"</string><string msgid="146198913615257606" name="search_menu_title">"Pretraživanje"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-hu/values-hu.xml" qualifiers="hu"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ugrás a főoldalra"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Felfelé mozgatás"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"További lehetőségek"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Kész"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Összes megtekintése"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Válasszon ki egy alkalmazást"</string><string msgid="121134116657445385" name="abc_capital_off">"KI"</string><string msgid="3405795526292276155" name="abc_capital_on">"BE"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Szóköz"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Keresés…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Lekérdezés törlése"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Keresési lekérdezés"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Keresés"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lekérdezés küldése"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Hangalapú keresés"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Megosztás a következővel:"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Megosztás a következő alkalmazással: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Összecsukás"</string><string msgid="146198913615257606" name="search_menu_title">"Keresés"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-nl/values-nl.xml" qualifiers="nl"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeren naar startpositie"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Omhoog navigeren"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Meer opties"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gereed"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alles weergeven"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Een app selecteren"</string><string msgid="121134116657445385" name="abc_capital_off">"UIT"</string><string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"verwijderen"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Functie +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"spatie"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Zoeken…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Zoekopdracht wissen"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Zoekopdracht"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Zoeken"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Zoekopdracht verzenden"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Gesproken zoekopdracht"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Delen met"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Delen met <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Samenvouwen"</string><string msgid="146198913615257606" name="search_menu_title">"Zoeken"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-bg/values-bg.xml" qualifiers="bg"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Придвижване към „Начало“"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Придвижване нагоре"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Още опции"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Вижте всички"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Изберете приложение"</string><string msgid="121134116657445385" name="abc_capital_off">"ИЗКЛ."</string><string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"клавиша за интервал"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Търсете…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Изчистване на заявката"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Заявка за търсене"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Търсене"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Изпращане на заявката"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласово търсене"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Споделяне със:"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Споделяне със: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свиване"</string><string msgid="146198913615257606" name="search_menu_title">"Търсене"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-bn/values-bn.xml" qualifiers="bn"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"হোম এ নেভিগেট করুন"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"উপরের দিকে নেভিগেট করুন"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"আরও বিকল্প"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"সম্পন্ন হয়েছে"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"সবগুলো দেখুন"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"একটি অ্যাপ্লিকেশান বেছে নিন"</string><string msgid="121134116657445385" name="abc_capital_off">"বন্ধ"</string><string msgid="3405795526292276155" name="abc_capital_on">"চালু"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"মুছুন"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"স্পেস"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"মেনু+"</string><string msgid="7723749260725869598" name="abc_search_hint">"অনুসন্ধান..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ক্যোয়ারী সাফ করুন"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ক্যোয়ারী খুঁজুন"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"খুঁজুন"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ক্যোয়ারী জমা দিন"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ভয়েস অনুসন্ধান"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"এর সাথে শেয়ার করুন"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> এর সাথে শেয়ার করুন"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"সঙ্কুচিত করুন"</string><string msgid="146198913615257606" name="search_menu_title">"খুঁজুন"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ne/values-ne.xml" qualifiers="ne"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"गृह खोज्नुहोस्"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"माथि खोज्नुहोस्"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"थप विकल्पहरू"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"सम्पन्न भयो"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सबै हेर्नुहोस्"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एउटा अनुप्रयोग छान्नुहोस्"</string><string msgid="121134116657445385" name="abc_capital_off">"निष्क्रिय पार्नुहोस्"</string><string msgid="3405795526292276155" name="abc_capital_on">"सक्रिय गर्नुहोस्"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"खोज्नुहोस्..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"प्रश्न हटाउनुहोस्"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"जिज्ञासाको खोज गर्नुहोस्"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"खोज्नुहोस्"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"जिज्ञासा पेस गर्नुहोस्"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"भ्वाइस खोजी"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"साझेदारी गर्नुहोस्..."</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> सँग आदान प्रदान गर्नुहोस्"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त पार्नुहोस्"</string><string msgid="146198913615257606" name="search_menu_title">"खोज्नुहोस्"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-af/values-af.xml" qualifiers="af"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeer tuis"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeer op"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Nog opsies"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Klaar"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sien alles"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Kies \'n program"</string><string msgid="121134116657445385" name="abc_capital_off">"AF"</string><string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funksie+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"spasiebalk"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Simbool+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Kieslys+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Soek …"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vee navraag uit"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Soeknavraag"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Soek"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dien navraag in"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Stemsoektog"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deel met"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Deel met <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Vou in"</string><string msgid="146198913615257606" name="search_menu_title">"Soek"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-nb/values-nb.xml" qualifiers="nb"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Gå til startsiden"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Gå opp"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere alternativer"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Ferdig"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Velg en app"</string><string msgid="121134116657445385" name="abc_capital_off">"AV"</string><string msgid="3405795526292276155" name="abc_capital_on">"PÅ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funksjon+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"mellomrom"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Meny+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Søk …"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Slett søket"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Søkeord"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Søk"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Utfør søket"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøk"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Del med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string><string msgid="146198913615257606" name="search_menu_title">"Søk"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-hi/values-hi.xml" qualifiers="hi"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"होम पेज पर जाएं"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ऊपर जाएं"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ज़्यादा विकल्प"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"हो गया"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सभी देखें"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"कोई एप्लिकेशन चुनें"</string><string msgid="121134116657445385" name="abc_capital_off">"बंद"</string><string msgid="3405795526292276155" name="abc_capital_on">"चालू"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"खोजा जा रहा है…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्वेरी साफ़ करें"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"सर्च क्वेरी"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"सर्च करें"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करें"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"आवाज़ सर्च"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"इसके साथ शेयर करें"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> के साथ शेयर करें"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"छोटा करें"</string><string msgid="146198913615257606" name="search_menu_title">"सर्च"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ka/values-ka.xml" qualifiers="ka"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"მთავარზე ნავიგაცია"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ზემოთ ნავიგაცია"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"მეტი ვარიანტები"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"დასრულდა"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ყველას ნახვა"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"აპის არჩევა"</string><string msgid="121134116657445385" name="abc_capital_off">"გამორთულია"</string><string msgid="3405795526292276155" name="abc_capital_on">"ჩართულია"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"წაშლა"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"შეყვანა"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"ძიება..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"მოთხოვნის გასუფთავება"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ძიების მოთხოვნა"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ძიება"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"მოთხოვნის გადაგზავნა"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ხმოვანი ძიება"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"გაზიარება:"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"გაუზიარეთ <ns1:g id="APPLICATION_NAME">%s</ns1:g>-ს"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"აკეცვა"</string><string msgid="146198913615257606" name="search_menu_title">"ძიება"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-de/values-de.xml" qualifiers="de"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zur Startseite"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nach oben"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Weitere Optionen"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Fertig"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alle ansehen"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"App auswählen"</string><string msgid="121134116657445385" name="abc_capital_off">"Aus"</string><string msgid="3405795526292276155" name="abc_capital_on">"An"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Strg +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"Löschen"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Eingabetaste"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funktionstaste +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta-Taste +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Umschalttaste +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"Leertaste +"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym-Taste +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menütaste +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Suchen…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Suchanfrage löschen"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Suchanfrage"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Suchen"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Suchanfrage senden"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Sprachsuche"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Freigeben für"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Mit <ns1:g id="APPLICATION_NAME">%s</ns1:g> teilen"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minimieren"</string><string msgid="146198913615257606" name="search_menu_title">"Suchen"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-as/values-as.xml" qualifiers="as"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"গৃহ পৃষ্ঠালৈ যাওক"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ওপৰলৈ যাওক"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"অধিক বিকল্প"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"সম্পন্ন কৰা হ\'ল"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"সকলো চাওক"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"এটা এপ্ বাছনি কৰক"</string><string msgid="121134116657445385" name="abc_capital_off">"অফ কৰক"</string><string msgid="3405795526292276155" name="abc_capital_on">"অন কৰক"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"CTRL+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"মচক"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"এণ্টাৰ"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"ফাংশ্বন+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"মেটা+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"শ্বিফ্ট+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"স্পেচ"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"মেনু+"</string><string msgid="7723749260725869598" name="abc_search_hint">"অনুসন্ধান কৰক…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"প্ৰশ্ন মচক"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"সন্ধান কৰিব খোজা প্ৰশ্ন"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"সন্ধান কৰক"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"প্ৰশ্ন দাখিল কৰক"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>ৰ জৰিয়তে শ্বেয়াৰ কৰক"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"সংকুচিত কৰক"</string><string msgid="146198913615257606" name="search_menu_title">"অনুসন্ধান কৰক"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-az/values-az.xml" qualifiers="az"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Evə naviqasiya et"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuxarı get"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Digər variantlar"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Hazırdır"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string><string msgid="121134116657445385" name="abc_capital_off">"DEAKTİV"</string><string msgid="3405795526292276155" name="abc_capital_on">"AKTİV"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"silin"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"daxil olun"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Funksiya+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"kosmos"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menyu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Axtarış..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorğunu təmizlə"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Axtarış sorğusu"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Axtarış"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorğunu göndərin"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Səsli axtarış"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bununla paylaşın"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ilə paylaşın"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Yığışdırın"</string><string msgid="146198913615257606" name="search_menu_title">"Axtarış"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ko/values-ko.xml" qualifiers="ko"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"홈 탐색"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"위로 탐색"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"옵션 더보기"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"완료"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"전체 보기"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"앱 선택"</string><string msgid="121134116657445385" name="abc_capital_off">"사용 안함"</string><string msgid="3405795526292276155" name="abc_capital_on">"사용"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"삭제"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"입력"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"스페이스바"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"검색..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"검색어 삭제"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"검색어"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"검색"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"검색어 보내기"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"음성 검색"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"공유 대상"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>와(과) 공유"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"접기"</string><string msgid="146198913615257606" name="search_menu_title">"검색"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ml/values-ml.xml" qualifiers="ml"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"കൂടുതൽ ഓപ്ഷനുകള്"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"പൂർത്തിയാക്കി"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"എല്ലാം കാണുക"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"</string><string msgid="121134116657445385" name="abc_capital_off">"ഓഫ്"</string><string msgid="3405795526292276155" name="abc_capital_on">"ഓൺ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"ഇല്ലാതാക്കുക"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"ഫംഗ്ഷന്+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"മെറ്റ+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"സ്പെയ്സ്"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"മെനു+"</string><string msgid="7723749260725869598" name="abc_search_hint">"തിരയുക…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"അന്വേഷണം മായ്ക്കുക"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"തിരയൽ അന്വേഷണം"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"തിരയൽ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"അന്വേഷണം സമർപ്പിക്കുക"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ശബ്ദതിരയൽ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ഇവരുമായി പങ്കിടുക"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>-മായി പങ്കിടുക"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ചുരുക്കുക"</string><string msgid="146198913615257606" name="search_menu_title">"തിരയുക"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-mk/values-mk.xml" qualifiers="mk"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Движи се кон дома"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Движи се нагоре"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Повеќе опции"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Види ги сите"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избери апликација"</string><string msgid="121134116657445385" name="abc_capital_off">"ИСКЛУЧЕНО"</string><string msgid="3405795526292276155" name="abc_capital_on">"ВКЛУЧЕНО"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"копче Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"копче Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"избриши"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"копче enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"копче Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"копче Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"копче Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"вселена"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"копче Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Мени+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Пребарување…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Исчисти барање"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Пребарај барање"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Пребарај"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Поднеси барање"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовно пребарување"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Сподели со"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Сподели со <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Собери"</string><string msgid="146198913615257606" name="search_menu_title">"Пребарај"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-kn/values-kn.xml" qualifiers="kn"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ಮುಗಿದಿದೆ"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"</string><string msgid="121134116657445385" name="abc_capital_off">"ಆಫ್"</string><string msgid="3405795526292276155" name="abc_capital_on">"ಆನ್"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"ಹುಡುಕಿ…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ಹುಡುಕಿ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ಧ್ವನಿ ಹುಡುಕಾಟ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ಸಂಕುಚಿಸು"</string><string msgid="146198913615257606" name="search_menu_title">"ಹುಡುಕಿ"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-bs/values-bs.xml" qualifiers="bs"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vrati se na početnu stranicu"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigiraj prema gore"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Više opcija"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odaberite aplikaciju"</string><string msgid="121134116657445385" name="abc_capital_off">"ISKLJUČI"</string><string msgid="3405795526292276155" name="abc_capital_on">"UKLJUČI"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"razmaknica"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pretraži..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Obriši upit"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Pretraži upit"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Traži"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dijeli sa"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Dijeli koristeći aplikaciju <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string><string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-my/values-my.xml" qualifiers="my"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"မူလနေရာကို သွားရန်"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"အပေါ်သို့သွားရန်"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ပိုမိုရွေးချယ်စရာများ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ပြီးဆုံးပါပြီ"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"အားလုံးကို ကြည့်ရန်"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"အက်ပ်တစ်ခုခုကို ရွေးချယ်ပါ"</string><string msgid="121134116657445385" name="abc_capital_off">"ပိတ်"</string><string msgid="3405795526292276155" name="abc_capital_on">"ဖွင့်"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"ရှာဖွေပါ..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ရှာစရာ အချက်အလက်များ ဖယ်ရှားရန်"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ရှာစရာ အချက်အလက်နေရာ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ရှာဖွေရန်"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"အသံဖြင့် ရှာဖွေခြင်း"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"မျှဝေဖို့ ရွေးပါ"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ဖြင့် မျှဝေရန်"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ခေါက်ရန်"</string><string msgid="146198913615257606" name="search_menu_title">"ရှာဖွေပါ"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-ar/values-ar.xml" qualifiers="ar"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"التنقل إلى الشاشة الرئيسية"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"خيارات إضافية"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"تم"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"عرض الكل"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string><string msgid="121134116657445385" name="abc_capital_off">"إيقاف"</string><string msgid="3405795526292276155" name="abc_capital_on">"تشغيل"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"القائمة+"</string><string msgid="7723749260725869598" name="abc_search_hint">"بحث…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"محو طلب البحث"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"طلب البحث"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"بحث"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"إرسال طلب البحث"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"البحث الصوتي"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"مشاركة مع"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"مشاركة مع <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"تصغير"</string><string msgid="146198913615257606" name="search_menu_title">"البحث"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-es-rUS/values-es-rUS.xml" qualifiers="es-rUS"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar a la página principal"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar hacia arriba"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Elige una aplicación."</string><string msgid="121134116657445385" name="abc_capital_off">"DESACTIVADO"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVADO"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"borrar"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"intro"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Función+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Mayúscula+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"espacio"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menú+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Eliminar la consulta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Búsqueda"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Búsqueda"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Compartir con <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="146198913615257606" name="search_menu_title">"Buscar"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-gl/values-gl.xml" qualifiers="gl"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir á páxina de inicio"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desprazarse cara arriba"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Máis opcións"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Feito"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todas"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escoller unha aplicación"</string><string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAR"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAR"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"eliminar"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"Intro"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Función +"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Maiús +"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"espazo"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sim +"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menú +"</string><string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de busca"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Busca por voz"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Compartir con <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="146198913615257606" name="search_menu_title">"Buscar"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-pt/values-pt.xml" qualifiers="pt"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecione um app"</string><string msgid="121134116657445385" name="abc_capital_off">"DESATIVAR"</string><string msgid="3405795526292276155" name="abc_capital_on">"ATIVAR"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"espaço"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartilhar com"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Compartilhar com <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Recolher"</string><string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-uk/values-uk.xml" qualifiers="uk"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на головний"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вгору"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Інші опції"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Переглянути всі"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Вибрати програму"</string><string msgid="121134116657445385" name="abc_capital_off">"ВИМК."</string><string msgid="3405795526292276155" name="abc_capital_on">"УВІМК."</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"пробіл"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Пошук…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Очистити запит"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Пошуковий запит"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Пошук"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Надіслати запит"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовий пошук"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Надіслати через"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Поділитися через додаток <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згорнути"</string><string msgid="146198913615257606" name="search_menu_title">"Пошук"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-sr/values-sr.xml" qualifiers="sr"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Одлазак на Почетну"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Кретање нагоре"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Још опција"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Прикажи све"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избор апликације"</string><string msgid="121134116657445385" name="abc_capital_off">"ИСКЉУЧИ"</string><string msgid="3405795526292276155" name="abc_capital_on">"УКЉУЧИ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"тастер за размак"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Претражите..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Брисање упита"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Упит за претрагу"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Претрага"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Слање упита"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовна претрага"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Дели са"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Дељење са апликацијом <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Скупи"</string><string msgid="146198913615257606" name="search_menu_title">"Претражи"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-pa/values-pa.xml" qualifiers="pa"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ਹੋਮ \'ਤੇ ਜਾਓ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ਉੱਪਰ ਜਾਓ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ਹੋਰ ਚੋਣਾਂ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ਹੋ ਗਿਆ"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ਸਭ ਦੇਖੋ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ਇੱਕ ਐਪ ਚੁਣੋ"</string><string msgid="121134116657445385" name="abc_capital_off">"ਬੰਦ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ਤੇ"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"ਖੋਜ…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ਸਵਾਲ ਹਟਾਓ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ਖੋਜ ਪੁੱਛਗਿੱਛ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ਖੋਜੋ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ਵੌਇਸ ਖੋਜ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ਇਸ ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ਨਸ਼ਟ ਕਰੋ"</string><string msgid="146198913615257606" name="search_menu_title">"ਖੋਜੋ"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-si/values-si.xml" qualifiers="si"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ගෙදරට සංචාලනය කරන්න"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ඉහලට සංචාලනය කරන්න"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"තවත් විකල්ප"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"අවසාන වූ"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"සියල්ල බලන්න"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"යෙදුමක් තෝරන්න"</string><string msgid="121134116657445385" name="abc_capital_off">"ක්රියාවිරහිතයි"</string><string msgid="3405795526292276155" name="abc_capital_on">"ක්රියාත්මකයි"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"මකන්න"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"සොයන්න..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"විමසුම හිස් කරන්න"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"සෙවුම් විමසුම"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"සෙවීම"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"විමසුම යොමු කරන්න"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"හඬ සෙවීම"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"සමඟ බෙදාගන්න"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> සමඟ බෙදා ගන්න"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"හකුළන්න"</string><string msgid="146198913615257606" name="search_menu_title">"සොයන්න"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-b+sr+Latn/values-b+sr+Latn.xml" qualifiers="b+sr+Latn"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Odlazak na Početnu"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Kretanje nagore"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Još opcija"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izbor aplikacije"</string><string msgid="121134116657445385" name="abc_capital_off">"ISKLJUČI"</string><string msgid="3405795526292276155" name="abc_capital_on">"UKLJUČI"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"taster za razmak"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pretražite..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Brisanje upita"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretragu"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraga"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Slanje upita"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovna pretraga"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deli sa"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Deljenje sa aplikacijom <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string><string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-en-rXC/values-en-rXC.xml" qualifiers="en-rXC"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="146198913615257606" name="search_menu_title">"Search"</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/998d8a19a10f0fb87e697198f195fe86/appcompat-1.0.0/res/values-zu/values-zu.xml" qualifiers="zu"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zulazulela ekhaya"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Zulazulela phezulu"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Izinketho eziningi"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Kwenziwe"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Buka konke"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Khetha uhlelo lokusebenza"</string><string msgid="121134116657445385" name="abc_capital_off">"VALIWE"</string><string msgid="3405795526292276155" name="abc_capital_on">"VULIWE"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"susa"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Imenyu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Iyasesha..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sula inkinga"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Umbuzo wosesho"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Sesha"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Hambisa umbuzo"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ukusesha ngezwi"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Yabelana no-"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Yabelana ne-<ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Goqa"</string><string msgid="146198913615257606" name="search_menu_title">"Sesha"</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:matisse:2.0.0.03121658$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:matisse:2.0.0.03121658" from-dependency="true" generated-set="com.hhmedic.android.sdk:matisse:2.0.0.03121658$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-ru/values-ru.xml" qualifiers="ru"><plurals name="error_over_count">
<item quantity="one">Можно выбрать не более %1$d файла</item>
<item quantity="few">Можно выбрать не более %1$d файлов</item>
<item quantity="many">Можно выбрать не более %1$d файлов</item>
<item quantity="other">Можно выбрать не более %1$d файлов</item>
</plurals><string name="album_name_all">Все</string><string name="button_apply">Применить(%1$d)</string><string name="button_apply_default">Применить</string><string name="button_back">Назад</string><string name="button_ok">OK</string><string name="button_original">Оригинал</string><string name="button_preview">Предпросмотр</string><string name="button_sure">Применить(%1$d)</string><string name="button_sure_default">Применить</string><string name="empty_text">Пусто</string><string name="error_file_type">Неподдерживаемый тип файла</string><string name="error_no_video_activity">Приложение для предпросмотра видео не найдено</string><string name="error_over_count_default">Вы выбрали максимальное количество файлов</string><string name="error_over_quality">Слишком высокое качество</string><string name="error_type_conflict">Невозможно выбрать изображения и видео одновременно</string><string name="error_under_quality">Слишком низкое качество</string><string name="photo_grid_capture">Камера</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-zh-rTW/values-zh-rTW.xml" qualifiers="zh-rTW"><string name="album_name_all">全部</string><string name="button_apply">使用(%1$d)</string><string name="button_apply_default">使用</string><string name="button_back">返回</string><string name="button_ok">我知道了</string><string name="button_original">原圖</string><string name="button_preview">預覽</string><string name="button_sure">确定(%1$d)</string><string name="button_sure_default">确定</string><string name="empty_text">還沒有圖片或影片</string><string name="error_file_type">不支援的文件類型</string><string name="error_no_video_activity">沒有支持影片預覽的應用程式</string><string name="error_over_count">最多只能選擇 %1$d 個文件</string><string name="error_over_count_default">您已經達到最大選擇數量</string><string name="error_over_quality">圖片質量太高</string><string name="error_type_conflict">不能同時選擇圖片和影片</string><string name="error_under_quality">圖片質量太低</string><string name="photo_grid_capture">拍一張</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-it/values-it.xml" qualifiers="it"><string name="album_name_all">Tutti i media</string><string name="button_apply">Conferma(%1$d)</string><string name="button_apply_default">Conferma</string><string name="button_back">Indietro</string><string name="button_ok">OK</string><string name="button_preview">Anteprima</string><string name="empty_text">Nessun media disponibile</string><string name="error_file_type">Tipo di file non supportato</string><string name="error_no_video_activity">Non è stata trovata alcuna app che supporti l\'anteprima video</string><string name="error_over_count">Puoi selezionare fino a %1$d elementi</string><string name="error_over_count_default">Hai selezionato il numero massimo di elementi</string><string name="error_over_quality">Sopra qualità</string><string name="error_type_conflict">Non è possibile selezionare contemporaneamente immagini e video</string><string name="error_under_quality">Sotto qualità</string><string name="photo_grid_capture">Camera</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-ca/values-ca.xml" qualifiers="ca"><string name="album_name_all">Tots</string><string name="button_apply">Selecciona(%1$d)</string><string name="button_apply_default">Selecciona</string><string name="button_back">Enrere</string><string name="button_ok">OK</string><string name="button_preview">Previsualitza</string><string name="empty_text">Cap arxiu seleccionat</string><string name="error_file_type">Tipus d\'arxiu no permés</string><string name="error_no_video_activity">No s\'ha trobat cap app que suporti la previsualització de vídeo</string><string name="error_over_count">Només pots seleccionar fins a %1$d arxius multimedia</string><string name="error_over_count_default">Has sobrepassat el màxim d\'arxius seleccionables</string><string name="error_over_quality">Excés qualitat</string><string name="error_type_conflict">No es poden seleccionar imatges i vídeos al mateix temps</string><string name="error_under_quality">Baixa qualitat</string><string name="photo_grid_capture">Càmera</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-pt-rBR/values-pt-rBR.xml" qualifiers="pt-rBR"><string name="album_name_all">Todas as mídias</string><string name="button_apply">Aplicar(%1$d)</string><string name="button_apply_default">Aplicar</string><string name="button_back">Voltar</string><string name="button_ok">OK</string><string name="button_preview">Pré-visualizaçao</string><string name="empty_text">Nenhuma mídia disponível</string><string name="error_file_type">Tipo de arquivo não suportado</string><string name="error_no_video_activity">Nenhum player de vídeo disponível para reprodução</string><string name="error_over_count">Você só pode selecionar até %1$d arquivos de mídia</string><string name="error_over_count_default">Você atingiu o máximo de itens possíveis para seleção</string><string name="error_over_quality">Acima da qualidade</string><string name="error_type_conflict">Não é possível selecionar arquivos de imagem e vídeo simultaneamente</string><string name="error_under_quality">Abaixo da qualidade</string><string name="photo_grid_capture">Câmera</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values/values.xml" qualifiers=""><attr format="reference|color" name="album.dropdown.count.color"/><attr format="reference|color" name="album.dropdown.title.color"/><attr format="reference|color" name="album.element.color"/><attr format="reference" name="album.emptyView"/><attr format="reference|color" name="album.emptyView.textColor"/><attr format="reference|color" name="album.thumbnail.placeholder"/><attr format="reference|color" name="bottomToolbar.apply.textColor"/><attr format="reference|color" name="bottomToolbar.bg"/><attr format="reference|color" name="bottomToolbar.preview.textColor"/><attr format="reference|color" name="capture.textColor"/><attr format="reference|color" name="item.checkCircle.backgroundColor"/><attr format="reference|color" name="item.checkCircle.borderColor"/><attr format="reference|color" name="item.placeholder"/><attr format="reference" name="listPopupWindowStyle"/><attr format="reference|color" name="page.bg"/><attr format="reference|color" name="preview.bottomToolbar.apply.textColor"/><attr format="reference|color" name="preview.bottomToolbar.back.textColor"/><attr format="reference" name="toolbar"/><color name="dracula_album_dropdown_count_text">#89FFFFFF</color><color name="dracula_album_dropdown_thumbnail_placeholder">#455A64</color><color name="dracula_album_dropdown_title_text">#DEFFFFFF</color><color name="dracula_album_empty_view">#4DFFFFFF</color><color name="dracula_album_popup_bg">#34474E</color><color name="dracula_bottom_toolbar_apply_text">#03A9F4</color><color name="dracula_bottom_toolbar_apply_text_disable">#4D03A9F4</color><color name="dracula_bottom_toolbar_bg">#34474E</color><color name="dracula_bottom_toolbar_preview_text">#DEFFFFFF</color><color name="dracula_bottom_toolbar_preview_text_disable">#4DFFFFFF</color><color name="dracula_capture">#FFFFFF</color><color name="dracula_item_checkCircle_backgroundColor">#263237</color><color name="dracula_item_checkCircle_borderColor">#FFFFFF</color><color name="dracula_item_placeholder">#37474F</color><color name="dracula_page_bg">#232E32</color><color name="dracula_preview_bottom_toolbar_apply_text">#03A9F4</color><color name="dracula_preview_bottom_toolbar_apply_text_disable">#4D03A9F4</color><color name="dracula_preview_bottom_toolbar_back_text">#FFFFFF</color><color name="dracula_primary">#263237</color><color name="dracula_primary_dark">#1D282C</color><color name="preview_bottom_size">#61FFFFFF</color><color name="preview_bottom_toolbar_bg">#CC000000</color><color name="zhihu_album_dropdown_count_text">#999999</color><color name="zhihu_album_dropdown_thumbnail_placeholder">#EAEEF4</color><color name="zhihu_album_dropdown_title_text">#DE000000</color><color name="zhihu_album_empty_view">#4D000000</color><color name="zhihu_album_popup_bg">#FFFFFF</color><color name="zhihu_bottom_toolbar_apply_text">#0077D9</color><color name="zhihu_bottom_toolbar_apply_text_disable">#4D0077D9</color><color name="zhihu_bottom_toolbar_bg">#FFFFFF</color><color name="zhihu_bottom_toolbar_preview_text">#DE000000</color><color name="zhihu_bottom_toolbar_preview_text_disable">#4D000000</color><color name="zhihu_capture">#424242</color><color name="zhihu_check_original_radio_disable">#808080</color><color name="zhihu_item_checkCircle_backgroundColor">#1E8AE8</color><color name="zhihu_item_checkCircle_borderColor">#FFFFFF</color><color name="zhihu_item_placeholder">#EAEEF4</color><color name="zhihu_page_bg">#FFFFFF</color><color name="zhihu_preview_bottom_toolbar_apply_text">#0077D9</color><color name="zhihu_preview_bottom_toolbar_apply_text_disable">#4D0077D9</color><color name="zhihu_preview_bottom_toolbar_back_text">#FFFFFF</color><color name="zhihu_primary">#1E8AE8</color><color name="zhihu_primary_dark">#176EB9</color><dimen name="album_item_height">72dp</dimen><dimen name="media_grid_size">48dp</dimen><dimen name="media_grid_spacing">4dp</dimen><string name="album_name_all">All Media</string><string name="button_apply">Apply(%1$d)</string><string name="button_apply_default">Apply</string><string name="button_back">Back</string><string name="button_ok">OK</string><string name="button_original">Original</string><string name="button_preview">Preview</string><string name="button_sure">Sure(%1$d)</string><string name="button_sure_default">Sure</string><string name="empty_text">No media yet</string><string name="error_file_type">Unsupported file type</string><string name="error_no_video_activity">No App found supporting video preview</string><string name="error_over_count">You can only select up to %1$d media files</string><string name="error_over_count_default">You have reached max selectable</string><string name="error_over_original_count">%1$d images over %2$d MB. Original will be unchecked</string><string name="error_over_original_size">Can\'t select the images larger than %1$d MB</string><string name="error_over_quality">Over quality</string><string name="error_type_conflict">Can\'t select images and videos at the same time</string><string name="error_under_quality">Under quality</string><string name="photo_grid_capture">Camera</string><style name="Matisse.Dracula" parent="Theme.AppCompat.NoActionBar">
<item name="colorPrimary">@color/dracula_primary</item>
<item name="colorPrimaryDark">@color/dracula_primary_dark</item>
<item name="toolbar">@style/Toolbar.Dracula</item>
<item name="album.dropdown.title.color">@color/dracula_album_dropdown_title_text</item>
<item name="album.dropdown.count.color">@color/dracula_album_dropdown_count_text</item>
<item name="album.element.color">@android:color/white</item>
<item name="album.thumbnail.placeholder">@color/dracula_album_dropdown_thumbnail_placeholder</item>
<item name="album.emptyView">@drawable/ic_empty_dracula</item>
<item name="album.emptyView.textColor">@color/dracula_album_empty_view</item>
<item name="item.placeholder">@color/dracula_item_placeholder</item>
<item name="item.checkCircle.backgroundColor">@color/dracula_item_checkCircle_backgroundColor</item>
<item name="item.checkCircle.borderColor">@color/dracula_item_checkCircle_borderColor</item>
<item name="page.bg">@color/dracula_page_bg</item>
<item name="bottomToolbar.bg">@color/dracula_bottom_toolbar_bg</item>
<item name="bottomToolbar.preview.textColor">@color/dracula_bottom_toolbar_preview</item>
<item name="bottomToolbar.apply.textColor">@color/dracula_bottom_toolbar_apply</item>
<item name="preview.bottomToolbar.back.textColor">@color/dracula_preview_bottom_toolbar_back_text</item>
<item name="preview.bottomToolbar.apply.textColor">@color/dracula_preview_bottom_toolbar_apply</item>
<item name="android:listPopupWindowStyle">@style/Popup.Dracula</item>
<item name="listPopupWindowStyle">@style/Popup.Dracula</item>
<item name="capture.textColor">@color/dracula_capture</item>
</style><style name="Matisse.Zhihu" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/zhihu_primary</item>
<item name="colorPrimaryDark">@color/zhihu_primary_dark</item>
<item name="toolbar">@style/Toolbar.Zhihu</item>
<item name="album.dropdown.title.color">@color/zhihu_album_dropdown_title_text</item>
<item name="album.dropdown.count.color">@color/zhihu_album_dropdown_count_text</item>
<item name="album.element.color">@android:color/white</item>
<item name="album.thumbnail.placeholder">@color/zhihu_album_dropdown_thumbnail_placeholder</item>
<item name="album.emptyView">@drawable/ic_empty_zhihu</item>
<item name="album.emptyView.textColor">@color/zhihu_album_empty_view</item>
<item name="item.placeholder">@color/zhihu_item_placeholder</item>
<item name="item.checkCircle.backgroundColor">@color/zhihu_item_checkCircle_backgroundColor</item>
<item name="item.checkCircle.borderColor">@color/zhihu_item_checkCircle_borderColor</item>
<item name="page.bg">@color/zhihu_page_bg</item>
<item name="bottomToolbar.bg">@color/zhihu_bottom_toolbar_bg</item>
<item name="bottomToolbar.preview.textColor">@color/zhihu_bottom_toolbar_preview</item>
<item name="bottomToolbar.apply.textColor">@color/zhihu_bottom_toolbar_apply</item>
<item name="preview.bottomToolbar.back.textColor">@color/zhihu_preview_bottom_toolbar_back_text</item>
<item name="preview.bottomToolbar.apply.textColor">@color/zhihu_preview_bottom_toolbar_apply</item>
<item name="listPopupWindowStyle">@style/Popup.Zhihu</item>
<item name="capture.textColor">@color/zhihu_capture</item>
</style><style name="Popup.Dracula" parent="Widget.AppCompat.ListPopupWindow">
<item name="android:popupBackground">@color/dracula_album_popup_bg</item>
</style><style name="Popup.Zhihu" parent="Widget.AppCompat.Light.ListPopupWindow">
<item name="android:popupBackground">@color/zhihu_album_popup_bg</item>
</style><style name="Toolbar.Dracula" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
</style><style name="Toolbar.Zhihu" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-pl/values-pl.xml" qualifiers="pl"><string name="album_name_all">Wszystkie Media</string><string name="button_apply">Zatwierdź(%1$d)</string><string name="button_apply_default">Zatwierdź</string><string name="button_back">Wstecz</string><string name="button_ok">OK</string><string name="button_original">Oryginał</string><string name="button_preview">Preview</string><string name="button_sure">Zatwierdź(%1$d)</string><string name="button_sure_default">Zatwierdź</string><string name="empty_text">Brak mediów</string><string name="error_file_type">Niewspierany typ pliku</string><string name="error_no_video_activity">Nie znaleziono aplikacji wspierającej podgląd wideo</string><string name="error_over_count">Możesz wybrać do %1$d plików</string><string name="error_over_count_default">Osiągnąłeś limit wybieralnych elementów</string><string name="error_over_quality">Powyżej jakości</string><string name="error_type_conflict">Nie można wybierać obrazów i filmów w tym samym czasie</string><string name="error_under_quality">Poniżej jakości</string><string name="photo_grid_capture">Aparat</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-vi/values-vi.xml" qualifiers="vi"><string name="album_name_all">Tất cả</string><string name="button_apply">Áp dụng(%1$d)</string><string name="button_apply_default">Áp dụng</string><string name="button_back">Về</string><string name="button_ok">Đồng ý</string><string name="button_original">Bản gốc</string><string name="button_preview">Xem trước</string><string name="button_sure">Đồng ý(%1$d)</string><string name="button_sure_default">Đồng ý</string><string name="empty_text">Chưa có dữ liệu</string><string name="error_file_type">Không hỗ trợ loại tệp này</string><string name="error_no_video_activity">Không tìm thấy ứng dụng nào hỗ trợ xem trước video</string><string name="error_over_count">Bạn chỉ có thể chọn tối đa %1$d tệp</string><string name="error_over_count_default">Bạn đã đạt đến mức tối đa có thể lựa chọn</string><string name="error_over_original_count">%1$d hình ảnh trên %2$d MB. Bản gốc sẽ được bỏ chọn</string><string name="error_over_original_size">Không thể chọn hình ảnh lớn hơn %1$d MB</string><string name="error_over_quality">Chất lượng quá cao</string><string name="error_type_conflict">Không thể chọn hình ảnh và video cùng một lúc</string><string name="error_under_quality">Chất lượng thấp</string><string name="photo_grid_capture">Camera</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-tr-rTR/values-tr-rTR.xml" qualifiers="tr-rTR"><string name="album_name_all">Tüm Medya</string><string name="button_apply">Uygula(%1$d)</string><string name="button_apply_default">Uygula</string><string name="button_back">Geri</string><string name="button_ok">TAMAM</string><string name="button_preview">Ön İzleme</string><string name="empty_text">Henüz medya yok</string><string name="error_file_type">Desteklenmeyen dosya tipi</string><string name="error_no_video_activity">Video önizlemesini destekleyen hiçbir uygulama bulunamadı</string><string name="error_over_count">Sadece %1$d medya dosyasını seçebilirsiniz</string><string name="error_over_count_default">Maksimum seçilebilir değere ulaştınız</string><string name="error_over_quality">Yüksek kalite</string><string name="error_type_conflict">Görüntüleri ve videoları aynı anda seçemezsiniz</string><string name="error_under_quality">Düşük kalite</string><string name="photo_grid_capture">Kamera</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-es/values-es.xml" qualifiers="es"><string name="album_name_all">Todos</string><string name="button_apply">Seleccionar(%1$d)</string><string name="button_apply_default">Seleccionar</string><string name="button_back">Atrás</string><string name="button_ok">OK</string><string name="button_preview">Previsualizar</string><string name="empty_text">Ningún archivo seleccionado</string><string name="error_file_type">Tipo de fichero no soportado</string><string name="error_no_video_activity">No se ha encontrado ninguna app que soporte la previsualización de vídeo</string><string name="error_over_count">Sólo puede seleccionar hasta %1$d archivos multimedia</string><string name="error_over_count_default">Has alcanzado el máximo de archivos seleccionables</string><string name="error_over_quality">Exceso calidad</string><string name="error_type_conflict">No se puede seleccionar imágenes y vídeos al mismo tiempo</string><string name="error_under_quality">Baja calidad</string><string name="photo_grid_capture">Cámara</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-de/values-de.xml" qualifiers="de"><string name="album_name_all">Alle Medien</string><string name="button_apply">Auswählen(%1$d)</string><string name="button_apply_default">Auswählen</string><string name="button_back">Zurück</string><string name="button_ok">OK</string><string name="button_preview">Vorschau</string><string name="empty_text">Keine Medien gewählt</string><string name="error_file_type">Dateityp nicht unterstützt</string><string name="error_no_video_activity">Keine App zur Videovorschau gefunden</string><string name="error_over_count">Sie können nur %1$d Medien auswählen</string><string name="error_over_count_default">Sie haben die maximale Anzahl an Medien ausgewählt.</string><string name="error_over_quality">Über Qualität</string><string name="error_type_conflict">Sie können Bilder und Videos nicht gleichzeitig auswählen</string><string name="error_under_quality">Unter Qualität</string><string name="photo_grid_capture">Kamera</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-ko/values-ko.xml" qualifiers="ko"><string name="album_name_all">전체보기</string><string name="button_apply">적용(%1$d)</string><string name="button_apply_default">적용</string><string name="button_back">뒤로</string><string name="button_ok">확인</string><string name="button_preview">미리보기</string><string name="empty_text">미디어 파일이 없습니다.</string><string name="error_file_type">지원되지 않는 파일 유형입니다.</string><string name="error_no_video_activity">비디오 미리보기를 지원하는 앱을 찾을 수 없습니다.</string><string name="error_over_count">최대 %1$d까지 선택 가능합니다.</string><string name="error_over_count_default">더이상 선택할 수 없습니다.</string><string name="error_over_quality">화질이 너무 높습니다.</string><string name="error_type_conflict">이미지와 비디오는 동시에 선택 할 수 없습니다.</string><string name="error_under_quality">화질이 너무 낮습니다.</string><string name="photo_grid_capture">카메라</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-ar/values-ar.xml" qualifiers="ar"><string name="album_name_all">جميع وسائل الإعلام</string><string name="button_apply">تطبيق (%1$d)</string><string name="button_apply_default">تطبيق</string><string name="button_back">رجوع</string><string name="button_ok">تم</string><string name="button_preview">معاينة</string><string name="empty_text">لا وسائل الإعلام حتى الآن</string><string name="error_file_type">نوع ملف غير مدعوم</string><string name="error_no_video_activity">لم يتم العثور على التطبيق دعم معاينة الفيديو</string><string name="error_over_count">يمكنك تحديد ما يصل إلى %1$d من ملفات الوسائط فقط</string><string name="error_over_count_default">لقد وصلت إلى الحد الأقصى للاختيار</string><string name="error_over_quality">فوق الجودة</string><string name="error_type_conflict">لا يمكن تحديد الصور ومقاطع الفيديو في نفس الوقت</string><string name="error_under_quality">تحت الجودة</string><string name="photo_grid_capture">كاميرا</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-zh/values-zh.xml" qualifiers="zh"><string name="album_name_all">全部</string><string name="button_apply">使用(%1$d)</string><string name="button_apply_default">使用</string><string name="button_back">返回</string><string name="button_ok">我知道了</string><string name="button_original">原图</string><string name="button_preview">预览</string><string name="button_sure">确定(%1$d)</string><string name="button_sure_default">确定</string><string name="empty_text">还没有图片或视频</string><string name="error_file_type">不支持的文件类型</string><string name="error_no_video_activity">没有支持视频预览的应用</string><string name="error_over_count">最多只能选择 %1$d 个文件</string><string name="error_over_count_default">您已经达到最大选择数量</string><string name="error_over_original_count">"有 %1$d 张照片大于 %2$d M\n无法上传,将取消勾选原图"</string><string name="error_over_original_size">"该照片大于 %1$d M,无法上传将取消勾选原图"</string><string name="error_over_quality">图片质量太高</string><string name="error_type_conflict">不能同时选择图片和视频</string><string name="error_under_quality">图片质量太低</string><string name="photo_grid_capture">拍一张</string></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/40f27e861b29954e589f012804855636/jetified-matisse-2.0.0.03121658/res/values-uk/values-uk.xml" qualifiers="uk"><plurals name="error_over_count">
<item quantity="one">Можливо обрати не більше %1$d файла</item>
<item quantity="few">Можливо обрати не більше %1$d файлів</item>
<item quantity="many">Можливо обрати не більше %1$d файлів</item>
<item quantity="other">Можливо обрати не більше %1$d файлів</item>
</plurals><string name="album_name_all">Всі</string><string name="button_apply">Застосувати(%1$d)</string><string name="button_apply_default">Застосувати</string><string name="button_back">Назад</string><string name="button_ok">OK</string><string name="button_preview">Перегляд</string><string name="empty_text">Пусто</string><string name="error_file_type">Непідтримуваний тип файла</string><string name="error_no_video_activity">Застосунок для перегляду відео не знайдений</string><string name="error_over_count_default">Вы обрали максимальну кількість файлів</string><string name="error_over_quality">Занадто висока якість</string><string name="error_type_conflict">Неможливо обрати зображення і відео одночасно</string><string name="error_under_quality">Занадто низька якість</string><string name="photo_grid_capture">Камера</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:uikit:1.0.04221106$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/798675f22826aa21fd39c99abd9df90e/jetified-uikit-1.0.04221106/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:uikit:1.0.04221106" from-dependency="true" generated-set="com.hhmedic.android.sdk:uikit:1.0.04221106$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/798675f22826aa21fd39c99abd9df90e/jetified-uikit-1.0.04221106/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/798675f22826aa21fd39c99abd9df90e/jetified-uikit-1.0.04221106/res/values/values.xml" qualifiers=""><color name="pickerview_bgColor_default">#FFFFFFFF</color><color name="pickerview_bgColor_overlay">#60000000</color><color name="pickerview_bg_topbar">#f5f5f5</color><color name="pickerview_timebtn_nor">#057dff</color><color name="pickerview_timebtn_pre">#c2daf5</color><color name="pickerview_topbar_title">#000000</color><color name="pickerview_wheelview_textcolor_center">#2a2a2a</color><color name="pickerview_wheelview_textcolor_divider">#d5d5d5</color><color name="pickerview_wheelview_textcolor_out">#a8a8a8</color><dimen name="pickerview_textsize">20sp</dimen><dimen name="pickerview_topbar_btn_textsize">17sp</dimen><dimen name="pickerview_topbar_height">44dp</dimen><dimen name="pickerview_topbar_padding">20dp</dimen><dimen name="pickerview_topbar_title_textsize">18sp</dimen><integer name="animation_default_duration">300</integer><string name="pickerview_cancel">取消</string><string name="pickerview_day">日</string><string name="pickerview_hours">时</string><string name="pickerview_minutes">分</string><string name="pickerview_month">月</string><string name="pickerview_seconds">秒</string><string name="pickerview_submit">确定</string><string name="pickerview_year">年</string><style name="custom_dialog2" parent="@android:style/Theme.Dialog">
<item name="android:windowFrame">@null</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:background">@null</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:backgroundDimAmount">0.3</item>
</style><style mce_bogus="1" name="picker_view_scale_anim" parent="android:Animation">
<item name="android:windowEnterAnimation">@anim/pickerview_dialog_scale_in</item>
<item name="android:windowExitAnimation">@anim/pickerview_dialog_scale_out</item>
</style><style mce_bogus="1" name="picker_view_slide_anim" parent="android:Animation">
<item name="android:windowEnterAnimation">@anim/pickerview_slide_in_bottom</item>
<item name="android:windowExitAnimation">@anim/pickerview_slide_out_bottom</item>
</style><declare-styleable name="Banner">
<attr format="integer" name="delay_time"/>
<attr format="integer" name="scroll_time"/>
<attr format="boolean" name="is_auto_play"/>
<attr format="color|reference" name="title_background"/>
<attr format="color" name="title_textcolor"/>
<attr format="dimension" name="title_textsize"/>
<attr format="dimension" name="title_height"/>
<attr format="dimension" name="indicator_width"/>
<attr format="dimension" name="indicator_height"/>
<attr format="dimension" name="indicator_selected_width"/>
<attr format="dimension" name="indicator_selected_height"/>
<attr format="dimension" name="indicator_margin"/>
<attr format="reference" name="indicator_drawable_selected"/>
<attr format="reference" name="indicator_drawable_unselected"/>
<attr format="reference" name="banner_layout"/>
<attr format="reference" name="banner_default_image"/>
<attr format="enum" name="image_scale_type">
<enum name="center" value="0"/>
<enum name="center_crop" value="1"/>
<enum name="center_inside" value="2"/>
<enum name="fit_center" value="3"/>
<enum name="fit_end" value="4"/>
<enum name="fit_start" value="5"/>
<enum name="fit_xy" value="6"/>
<enum name="matrix" value="7"/>
</attr>
</declare-styleable><declare-styleable name="pickerview">
<attr name="wheelview_gravity">
<enum name="center" value="17"/>
<enum name="left" value="3"/>
<enum name="right" value="5"/>
</attr>
<attr format="dimension" name="wheelview_textSize"/>
<attr format="color" name="wheelview_textColorOut"/>
<attr format="color" name="wheelview_textColorCenter"/>
<attr format="color" name="wheelview_dividerColor"/>
<attr format="dimension" name="wheelview_dividerWidth"/>
<attr format="float" name="wheelview_lineSpacingMultiplier"/>
</declare-styleable></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/798675f22826aa21fd39c99abd9df90e/jetified-uikit-1.0.04221106/res/values-en/values-en.xml" qualifiers="en"><string name="pickerview_cancel">Cancel</string><string name="pickerview_day"> </string><string name="pickerview_hours"> </string><string name="pickerview_minutes"> </string><string name="pickerview_month"> </string><string name="pickerview_seconds"> </string><string name="pickerview_submit">Confirm</string><string name="pickerview_year"> </string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:video:2.1.0.04011448$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/5b92e723b44e8414aedc53fa5192b99b/jetified-video-2.1.0.04011448/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:video:2.1.0.04011448" from-dependency="true" generated-set="com.hhmedic.android.sdk:video:2.1.0.04011448$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/5b92e723b44e8414aedc53fa5192b99b/jetified-video-2.1.0.04011448/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/5b92e723b44e8414aedc53fa5192b99b/jetified-video-2.1.0.04011448/res/values/values.xml" qualifiers=""><string-array name="hp_sdk_select_photo">
<item>拍照</item>
<item>从图库选择</item>
<item>取消</item>
</string-array><string-array name="rating_tip_array">
<item>非常不满意,各方面都很差</item>
<item>不满意,比较差</item>
<item>一般,还需改善</item>
<item>比较满意,仍可改善</item>
<item>非常满意,无可挑剔</item>
</string-array><attr format="reference" name="HHUILoadingStyle"/><attr format="dimension" name="hhui_content_padding_horizontal"/><attr format="dimension" name="hhui_content_spacing_horizontal"/><attr format="reference" name="hhui_dialog_action_container_style"/><attr format="reference" name="hhui_dialog_action_style"/><attr format="float" name="hhui_dialog_background_dim_amount"/><attr format="reference" name="hhui_dialog_bg"/><attr format="reference" name="hhui_dialog_edit_content_style"/><attr format="dimension" name="hhui_dialog_margin_vertical"/><attr format="dimension" name="hhui_dialog_max_width"/><attr format="reference" name="hhui_dialog_menu_container_style"/><attr format="reference" name="hhui_dialog_menu_item_style"/><attr format="reference" name="hhui_dialog_message_content_style"/><attr format="dimension" name="hhui_dialog_min_width"/><attr format="dimension" name="hhui_dialog_padding_horizontal"/><attr format="reference" name="hhui_dialog_title_style"/><attr format="reference" name="hhui_dialog_wrapper_style"/><attr format="reference" name="hhui_tip_dialog_bg"/><attr format="dimension" name="hhui_tip_dialog_margin_horizontal"/><attr format="dimension" name="hhui_tip_dialog_min_height"/><attr format="dimension" name="hhui_tip_dialog_min_width"/><attr format="dimension" name="hhui_tip_dialog_padding_horizontal"/><attr format="dimension" name="hhui_tip_dialog_padding_vertical"/><color name="colorAccent">#ff0592f5</color><color name="colorPrimary">#3F51B5</color><color name="colorPrimaryDark">#303F9F</color><color name="hh_certificate_bg">#66000000</color><color name="hh_circle_bg">#0592f5</color><color name="hh_doctor_simple_bg_color">#80ffffff</color><color name="hh_drawable_color_list_pressed">#DEE0E2</color><color name="hh_drawable_color_list_separator">#DEE0E2</color><color name="hh_hint_color">#797D86</color><color name="hh_input_bg">#fff4f4f4</color><color name="hh_red_tips">#ffEC1313</color><color name="hh_sdk_activate_hint_color">#B4B4B4</color><color name="hh_sdk_comment_button_border">#BEBEBE</color><color name="hh_sdk_comment_des_color">#323232</color><color name="hh_sdk_comment_item_color">#646464</color><color name="hh_sdk_comment_main_title">#ff323232</color><color name="hh_sdk_comment_not_select_color">#282828</color><color name="hh_sdk_comment_select_color">#FF8A00</color><color name="hh_sdk_comment_separate_line_bg">#E6E6E6</color><color name="hh_sdk_comment_tip">#5A5A64</color><color name="hh_sdk_edit_hint">#ff8d8e96</color><color name="hh_sdk_line_color">#ffd2d2d2</color><color name="hh_ui_bg">#fff3f3f3</color><color name="hh_update_edit_bg">#ffd2d2d2</color><color name="hh_window_bg">#66000000</color><color name="hhui_config_color_75_pure_black">#C0000000</color><color name="hhui_config_color_white">#ffffff</color><color name="hhui_config_slogan_color">#FFFFFF</color><color name="hhui_drawable_color_list_pressed">#DEE0E2</color><color name="hhui_drawable_color_list_separator">#DEE0E2</color><color name="hp_alpha_black">#80000000</color><color name="hp_black_33">#ff333333</color><color name="hp_black_64">#ff646464</color><color name="hp_black_66">#ff666666</color><color name="hp_black_96">#ff969696</color><color name="hp_black_99">#ff999999</color><color name="hp_hint">#ffaaaaaa</color><color name="hp_notify_red">#fff54300</color><color name="hp_sdk_alpha_black">#80000000</color><color name="hp_sdk_blue">#ff0592f5</color><color name="hp_vip_black_bg">#ff424559</color><color name="hp_vip_black_press">#ff303245</color><color name="video_call_peer_close_camera_text_color">#f1f1f1</color><color name="video_call_peer_close_camera_text_shadow">#484848</color><dimen name="dp_10">10.0dp</dimen><dimen name="dp_6">6.0dp</dimen><dimen name="hh_action_bar_height">46dp</dimen><dimen name="hh_av_profile_height">64dp</dimen><dimen name="hh_bottom_sheet_grid_item_icon_size">56.0dp</dimen><dimen name="hh_bottom_sheet_grid_item_mini_width">84.0dp</dimen><dimen name="hh_bottom_sheet_grid_line_padding_horizontal">12.0dp</dimen><dimen name="hh_bottom_sheet_grid_line_vertical_space">0dp</dimen><dimen name="hh_bottom_sheet_grid_padding_vertical">12.0dp</dimen><dimen name="hh_bottom_sheet_list_item_height">56.0dp</dimen><dimen name="hh_bottom_sheet_title_height">56.0dp</dimen><dimen name="hh_callback_padding">26dp</dimen><dimen name="hh_chat_small_layout_top">36.0dp</dimen><dimen name="hh_chat_water_layout_top">34.0dp</dimen><dimen name="hh_comment_horizontal_spacing">20.0dp</dimen><dimen name="hh_comment_vertical_spacing">15.0dp</dimen><dimen name="hh_feedback_content_height_l">70dp</dimen><dimen name="hh_horizontal_margin">14.0dp</dimen><dimen name="hh_line_height">0.5dp</dimen><dimen name="hh_list_divider_height">1px</dimen><dimen name="hh_notify_carton_font">14.0sp</dimen><dimen name="hh_notify_phone_button_font">16.0sp</dimen><dimen name="hh_notify_phone_button_padding">0dp</dimen><dimen name="hh_radius">4dp</dimen><dimen name="hh_sdk_dialog_margin_h">40dp</dimen><dimen name="hh_sdk_dialog_margin_v">70dp</dimen><dimen name="hh_setting_item_height">50dp</dimen><dimen name="hh_tablet_slogan_size">40sp</dimen><dimen name="hh_vertical_large">40dp</dimen><dimen name="hh_vertical_margin">14.0dp</dimen><dimen name="hh_vertical_medium">30dp</dimen><dimen name="hhui_content_padding_horizontal">@dimen/hhui_content_spacing_horizontal</dimen><dimen name="hhui_content_spacing_horizontal">16dp</dimen><dimen name="hp_chat_icon_margin_left">3dp</dimen><dimen name="hp_chat_layout_padding">10dp</dimen><dimen name="hp_chat_margin_right">46.0dp</dimen><dimen name="hp_chat_name_margin">8dp</dimen><dimen name="hp_chat_name_top_margin">0dp</dimen><dimen name="hp_content_font_padding">4dp</dimen><dimen name="hp_content_padding">10dp</dimen><dimen name="hp_drug_count_bottom_margin">34dp</dimen><dimen name="hp_drug_count_top_margin">30dp</dimen><dimen name="hp_video_menu_text_font">12.0sp</dimen><dimen name="hp_video_small_height">159.0dp</dimen><dimen name="hp_video_small_width">120.0dp</dimen><dimen name="normal_margin">8.0dp</dimen><dimen name="uikit_horizontal_margin">14.0dp</dimen><plurals name="error_over_count">
<item quantity="one">最多只能选择一个文件</item>
<item quantity="many">最多能选择 %1$d 个文件</item>
</plurals><string name="hh_activate_length_tip">请输入6位激活码</string><string name="hh_activate_success">恭喜,您已成功激活会员。</string><string name="hh_activate_title">激活会员</string><string name="hh_alert_change_doctor_fail_tips">您已更换过医生,24小时内只可更换1次</string><string name="hh_alert_change_doctor_tips">立即更换其他医生咨询,确定更换吗?【只可更换1次】</string><string name="hh_alert_edit_confirm">立即补充</string><string name="hh_alert_edit_member">请补充该成员的年龄等信息,才可呼叫医生</string><string name="hh_alert_i_known">我知道了</string><string name="hh_audio_record_error">目前无法视频,请在“系统设置”查看本应用的麦克风权限是否打开,打开后可正常通话。</string><string name="hh_auth_apply_btn">同意并继续</string><string name="hh_auth_dialog_content"><![CDATA[
尊敬的用户,在您确认授权后,将跳转至北京和缓医疗科技有限公司合作平台内药品服务平台使用药品配送服务。<br>
您对以上服务事项确认授权的内容包括: <br><br><br>
1.同意药品服务平台获取您的处方和地址信息以完成药品购买配送服务; <br>
2.同意药品服务平台将您购买药品的部分数据传输给北京和缓医疗科技有限公司,包括订单编号、支付状态、订单创建时间、订单支付时间、药品明细信息等,以便北京和缓医疗科技有限公司记录实际购买情况,进行后续与您相关权益的更新及结算之目的使用,提供更好的服务体验。<br><br><br>
您同意授权后,即视为您全面知悉并同意上述授权内容,本授权声明即具有法律效力。]]></string><string name="hh_auth_dialog_title">个人信息授权</string><string name="hh_auth_refuse_btn">拒绝</string><string name="hh_av_accept_btn">接听</string><string name="hh_av_accept_show_hint">邀请你视频</string><string name="hh_av_broke">通话已结束</string><string name="hh_av_calling_busy">对方正忙</string><string name="hh_av_change_camera">切换摄像头</string><string name="hh_av_change_doctor">更换医生</string><string name="hh_av_chat_error_tips">视频出错:code=%s</string><string name="hh_av_hangup_btn">挂断</string><string name="hh_av_no_permission">暂无权限,请开通音视频服务</string><string name="hh_av_other_error">未知错误</string><string name="hh_av_other_platform">已在其他设备接听</string><string name="hh_av_refuse_btn">拒绝</string><string name="hh_av_remote_cancel">对方取消</string><string name="hh_av_switch_audio_model">已切换到语音聊天</string><string name="hh_av_waiting_accept">呼叫中</string><string name="hh_av_waiting_connect">拨号中</string><string name="hh_call_dialog_title">请选择给谁咨询健康问题 </string><string name="hh_call_protocol_alert">同意《服务说明》后可发起咨询</string><string name="hh_call_protocol_str"> 同意《服务说明》咨询建议仅参考,如症状未缓解请到医院就诊</string><string name="hh_cancel">取消</string><string name="hh_card_expert_date_name">专家姓名 %s</string><string name="hh_card_expert_date_time">预约时间 %s</string><string name="hh_card_expert_success">预约视频咨询成功</string><string name="hh_card_expert_title">专家介绍</string><string name="hh_carton_tips">视频卡顿,请点此查看解决办法</string><string name="hh_change_doctor_ok">确定更换</string><string name="hh_comment_anonymous_submit">匿名提交</string><string name="hh_comment_button_commit">提交</string><string name="hh_comment_change_doctor">换个医生问问</string><string name="hh_comment_complaint">我要投诉</string><string name="hh_comment_feedback_content_hint">请填投诉内容</string><string name="hh_comment_feedback_phone_hint">请填写您的联系电话,来处理投诉事件</string><string name="hh_comment_main_need">需要</string><string name="hh_comment_main_not_need">不需要</string><string name="hh_comment_main_tip">您的评价会让医生做的更好</string><string name="hh_comment_main_title">评价</string><string name="hh_comment_other_say">其他想说的</string><string name="hh_comment_other_want_say">其他想说的</string><string name="hh_comment_result_bad">感谢反馈\n很抱歉给您不好的体验,建议您换个医生咨询,视频医生将持续优化用户体验</string><string name="hh_comment_satisfaction_evaluation">满意度评价 ></string><string name="hh_comment_satisfaction_title">满意度</string><string name="hh_comment_thanks_for_comment">感谢回答,这将帮助我们做得更好</string><string name="hh_comment_thanks_you">感谢反馈,我们将努力提升服务体验</string><string name="hh_comment_title">匿名评价</string><string name="hh_dev_tips">当前处在测试环境下</string><string name="hh_doctor_job_age">从业%d年</string><string name="hh_drug_add_count_bottom_tips">起送价由配送药店自己确定,与本平台无关</string><string name="hh_drug_add_count_btn_title">购买%d份该药品,%s</string><string name="hh_drug_add_count_sub_tips">去药店购买</string><string name="hh_drug_add_count_sub_tips_choose">或</string><string name="hh_drug_add_count_tips">当前药品未到起送价格,您可以</string><string name="hh_drug_add_count_title">购药提示</string><string name="hh_error_tip_chat_connect_over_time">当前网络状态不佳,建议切换网络或稍后呼叫医生</string><string name="hh_expert_video_card_tips">请在视频前10分钟打开本应用等待专家呼入</string><string name="hh_feedback_result_bad">感谢反馈\n我们将尽快处理您的投诉,并给您反馈处理结果。抱歉给您带来不好的体验,您可以换个医生问问。</string><string name="hh_home_title">视频医生</string><string name="hh_member_info_title">完善资料</string><string name="hh_multi_cancel_tips">%s取消呼叫</string><string name="hh_multi_hearer_state_title_busy">%s已拒绝</string><string name="hh_multi_hearer_state_title_busy_tips">%s拒绝接听</string><string name="hh_multi_hearer_state_title_leave">%s已断开连接</string><string name="hh_multi_hearer_state_title_leave_tips">%s已断开连接</string><string name="hh_multi_incoming_title">%s 邀请你视频咨询</string><string name="hh_multi_wait_doctor_join">医生接通中</string><string name="hh_permission_alert_setting">设置</string><string name="hh_permission_tips">视频通话需要相机和录音权限才能进行,请立即设置</string><string name="hh_photo_upload_success">照片已发送给医生</string><string name="hh_real_name_act_title">患者信息</string><string name="hh_rts_error">加入白板失败:code=%d</string><string name="hh_rts_loading_failed">加载失败,点击重试</string><string name="hh_rts_loading_text">图片加载中</string><string name="hh_rx_create_title">处方</string><string name="hh_sdk_back">返回</string><string name="hh_sdk_doctor_busy_tips">医生繁忙,请稍后重新呼叫</string><string name="hh_sdk_menu_close">关闭</string><string name="hh_sdk_multi_call_self_tips">不可以邀请自己视频</string><string name="hh_sdk_ok">确定</string><string name="hh_sdk_pay_success_tips">支付成功</string><string name="hh_sdk_ssl_alert_button_cancel">取消</string><string name="hh_sdk_ssl_alert_button_ok">继续</string><string name="hh_sdk_ssl_verify_failed">ssl证书验证失败</string><string name="hh_sdk_upload_success_tips">已上传</string><string name="hh_sdk_upload_tips">点击重新上传</string><string name="hh_setting_title">我的</string><string name="hh_upload_image_path_error">图片异常,无法上传</string><string name="hh_upload_img_tip">微信扫描二维码\n上传照片</string><string name="hh_video_change_doctor_title"><![CDATA[对服务不满意?<font color="#FFDD41"><u>换个医生</u></font> 试一试]]></string><string name="hh_video_chat_camera_closed">摄像头已关闭</string><string name="hh_video_chat_close_camera">关闭画面</string><string name="hh_video_chat_open_camera">打开画面</string><string name="hh_video_comment_complaint_empty">请填写投诉的内容</string><string name="hh_video_connect_str">连接中</string><string name="hh_video_transfer_call_text">%d秒后将为你转呼</string><string name="hh_video_upload_error">点击重传</string><string name="hp_add_member_and_call">保存并呼叫医生</string><string name="hp_add_member_birthday_hint">请选择出生年月</string><string name="hp_add_member_birthday_title">生日 </string><string name="hp_add_member_name_hint">请输入成员姓名</string><string name="hp_add_member_name_title">姓名 </string><string name="hp_add_member_relation_hint">请选择与成员的关系</string><string name="hp_add_member_sex_hint">请选择性别</string><string name="hp_add_member_sex_title">性别 </string><string name="hp_address_title">地址</string><string name="hp_call_alert_multi_tips">邀请成员一起视频咨询</string><string name="hp_call_permission_tips">您拒绝了视频需要的相机和录音权限,无法视频</string><string name="hp_call_select_member_title">选择给谁咨询健康问题</string><string name="hp_call_wait_str">目前咨询人数较多,感谢耐心等待</string><string name="hp_card_detail_text">详情</string><string name="hp_card_drug_btn">需要购买以上药品?</string><string name="hp_card_drug_but_btn_order">查看订单</string><string name="hp_card_drug_buy_btn">送药上门</string><string name="hp_card_drug_name_title">用药人 </string><string name="hp_card_drug_title">%s用药说明</string><string name="hp_card_summary_name_title">咨询人 </string><string name="hp_card_summary_time_title">咨询时间</string><string name="hp_doctor_job_title">医师资格证</string><string name="hp_drug_buy_success_tips">如有用药疑问,请呼叫医生</string><string name="hp_flash_title">闪光灯</string><string name="hp_home_call_text">呼叫医生</string><string name="hp_invitation_auto_set_hint">系统检测到激活码,已自动为你输入</string><string name="hp_line_up_timeout">目前医生比较繁忙,请稍候重试。</string><string name="hp_local_phone_call">本地电话,已自动为你挂断视频</string><string name="hp_member_ral">关系 </string><string name="hp_multi_error_tips">该成员需要开通独立登录的功能才能一起视频</string><string name="hp_prescription_tip">正在生成处方并授权</string><string name="hp_real_id_hint">请输入患者身份证号码</string><string name="hp_real_id_title">患者身份证</string><string name="hp_real_name_account_name">成员昵称 </string><string name="hp_real_name_bottom_tip">完成实名认证后,系统将自动同步您的信息至档案库。</string><string name="hp_real_name_hint">请输入患者真实姓名</string><string name="hp_real_name_tips">据规定:购买处方药品需实名认证,请如实填写</string><string name="hp_real_name_title">患者姓名 </string><string name="hp_real_phone_hint">请输入联系人电话</string><string name="hp_real_phone_title">联系人电话</string><string name="hp_save">保存</string><string name="hp_video_camera_title">拍照</string><string name="hp_vip_card_des">7x24小时视频看医生</string><string name="net_poor_tip">当前网络质量较差</string><style name="HH.Toolbar.Light" parent="HHUI.Toolbar">
<item name="colorControlNormal">@android:color/white</item>
<item name="actionMenuTextColor">@android:color/white</item>
</style><style name="HHUI.AuthDialog" parent="android:Theme.Dialog">
<item name="android:backgroundDimAmount">0.6</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:layout_width">match_parent</item>
</style><style name="HHUI.BottomSheet" parent="android:Theme.Dialog">
<item name="android:backgroundDimAmount">0.6</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowAnimationStyle">@null
</item>
<item name="android:layout_width">match_parent</item>
</style><style name="HHUI.Compat" parent="Theme.AppCompat.Light">
<item name="hhui_content_spacing_horizontal">20dp</item>
<item name="hhui_content_padding_horizontal">@dimen/hhui_content_spacing_horizontal</item>
<item name="hhui_dialog_min_width">260dp</item>
<item name="hhui_dialog_max_width">360dp</item>
<item name="hhui_dialog_bg">@drawable/hhui_dialog_bg</item>
<item name="hhui_dialog_margin_vertical">20dp</item>
<item name="hhui_dialog_padding_horizontal">24dp</item>
<item name="hhui_dialog_background_dim_amount">0.6</item>
<item name="hhui_tip_dialog_bg">@drawable/hhui_tip_dialog_bg</item>
<item name="hhui_tip_dialog_min_width">120dp</item>
<item name="hhui_tip_dialog_min_height">56dp</item>
<item name="hhui_tip_dialog_margin_horizontal">?attr/hhui_content_spacing_horizontal</item>
<item name="hhui_tip_dialog_padding_vertical">12dp</item>
<item name="hhui_tip_dialog_padding_horizontal">?attr/hhui_content_padding_horizontal</item>
</style><style name="HHUI.TipDialog" parent="android:Theme.Dialog">
<item name="android:windowFrame">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowContentOverlay">@null</item>
</style><style name="HHUI.Toolbar" parent="Theme.AppCompat.Light">
<item name="actionMenuTextColor">@android:color/black</item>
<item name="colorPrimary">@color/hhui_config_color_white</item>
<item name="colorPrimaryDark">@color/hhui_config_color_white</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="colorControlNormal">@android:color/black</item>
</style><style name="HHUI.Toolbar.TitleText" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
<item name="android:textSize">17sp</item>
<item name="android:textColor">@android:color/black</item>
</style><style name="HH_ChatTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/hhui_config_color_white</item>
<item name="colorPrimaryDark">@color/hhui_config_color_white</item>
<item name="colorAccent">@color/hhui_config_color_white</item>
<item name="colorControlNormal">@android:color/black</item>
<item name="buttonBarPositiveButtonStyle">@style/hh_positiveBtnStyle</item>
<item name="buttonBarNegativeButtonStyle">@style/hh_negativeBtnStyle</item>
</style><style name="HH_Normal_Theme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/hhui_config_color_white</item>
<item name="colorPrimaryDark">@color/hhui_config_color_white</item>
<item name="colorAccent">@color/hp_sdk_blue</item>
<item name="colorControlNormal">@color/hp_sdk_blue</item>
<item name="buttonBarPositiveButtonStyle">@style/hh_positiveBtnStyle</item>
<item name="buttonBarNegativeButtonStyle">@style/hh_negativeBtnStyle</item>
</style><style mce_bogus="1" name="HH_PopupAnimation" parent="android:Animation">
<item name="android:windowEnterAnimation">@anim/hh_pop_enter</item>
<item name="android:windowExitAnimation">@anim/hh_pop_exit</item>
</style><style name="Toolbar.TitleText" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
<item name="android:textSize">17sp</item>
<item name="android:textColor">@android:color/black</item>
</style><style name="hh_av_btn" parent="hh_btn_style">
<item name="android:drawablePadding">@dimen/normal_margin</item>
<item name="android:textColor">@android:color/white</item>
<item name="android:textSize">@dimen/hp_video_menu_text_font</item>
</style><style name="hh_btn_style" parent="@style/Widget.AppCompat.Button.Borderless">
</style><style name="hh_call_rescue_text_layout">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_marginTop">15dp</item>
<item name="android:layout_marginBottom">15dp</item>
</style><style name="hh_chat_username_style">
<item name="android:layout_toEndOf">@id/h_icon</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_marginStart">@dimen/hp_chat_name_margin</item>
<item name="android:textSize">12.0sp</item>
<item name="android:textColor">#ff999999</item>
<item name="android:background">@android:color/transparent</item>
</style><style name="hh_comment_button">
<item name="android:layout_width">120dp</item>
<item name="android:layout_height">35dp</item>
<item name="android:textAlignment">center</item>
<item name="android:textSize">14sp</item>
<item name="android:gravity">center</item>
<item name="android:paddingStart">25dp</item>
<item name="android:paddingTop">8dp</item>
<item name="android:paddingBottom">8dp</item>
<item name="android:paddingEnd">20dp</item>
</style><style name="hh_comment_complain_btn">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:minHeight">0dp</item>
<item name="android:textColor">@color/hh_circle_bg</item>
<item name="android:textSize">14sp</item>
<item name="android:background">@android:color/transparent</item>
<item name="android:drawableEnd">@drawable/hh_comment_button_right_arrow</item>
</style><style name="hh_comment_submit_btn">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">40dp</item>
<item name="android:background">@drawable/hh_sdk_btn_blue_bg</item>
<item name="android:textColor">@android:color/white</item>
<item name="android:textSize">15sp</item>
</style><style name="hh_doctor_simple_info_text">
<item name="android:textColor">@color/hp_black_33</item>
<item name="android:textSize">11.0sp</item>
</style><style name="hh_edit_title">
<item name="android:textColor">@color/hp_black_33</item>
<item name="android:textSize">15.0sp</item>
<item name="android:lineSpacingExtra">2dp</item>
</style><style name="hh_family_edit_layout">
<item name="android:gravity">center_vertical</item>
<item name="android:layout_height">54dp</item>
<item name="android:layout_width">match_parent</item>
<item name="android:background">@drawable/hh_list_item_bg</item>
</style><style name="hh_job_btn" parent="hh_btn_style">
<item name="android:drawablePadding">-8dp</item>
<item name="android:textColor">@android:color/white</item>
<item name="android:textSize">@dimen/hp_video_menu_text_font</item>
</style><style name="hh_negativeBtnStyle" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog">
<item name="android:textColor">@color/hp_black_96</item>
</style><style name="hh_normal_font">
<item name="android:textSize">15.0sp</item>
<item name="android:textColor">@color/hp_black_33</item>
<item name="android:lineSpacingExtra">2dp</item>
</style><style mce_bogus="1" name="hh_popupAnimation" parent="android:Animation">
<item name="android:windowEnterAnimation">@anim/hh_pop_enter</item>
<item name="android:windowExitAnimation">@anim/hh_pop_exit</item>
</style><style name="hh_positiveBtnStyle" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog">
<item name="android:textColor">@color/hp_sdk_blue</item>
</style><style name="hh_ratingbar" parent="@android:style/Widget.RatingBar">
<item name="android:progressDrawable">@drawable/hh_comment_star_unselect</item>
<item name="android:indeterminateDrawable">@drawable/hh_comment_star_select</item>
<item name="android:background">@android:color/transparent</item>
</style><style name="hh_sdk_blue_btn" parent="hh_btn_style">
<item name="android:background">@drawable/hh_sdk_btn_blue_bg</item>
<item name="android:textColor">@android:color/white</item>
<item name="android:textSize">16.0sp</item>
</style><style name="hh_sdk_dialog" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">@color/hp_black_33</item>
</style><style name="hh_sdk_line">
<item name="android:layout_height">1px</item>
<item name="android:layout_width">match_parent</item>
<item name="android:background">@color/hh_sdk_line_color</item>
</style><style name="hh_sdk_user_input_content">
<item name="android:textSize">16.0sp</item>
<item name="android:textColor">@color/hp_black_33</item>
<item name="android:textColorHint">@color/hh_update_edit_bg</item>
</style><style name="hhui_tip_dialog_wrap">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:minWidth">120.dp</item>
<item name="android:minHeight">56.dp</item>
<item name="android:layout_gravity">center</item>
<item name="android:layout_marginLeft">20dp</item>
<item name="android:layout_marginRight">20dp</item>
<item name="android:gravity">center</item>
<item name="android:paddingLeft">16dp</item>
<item name="android:paddingRight">16dp</item>
<item name="android:paddingTop">24dp</item>
<item name="android:paddingBottom">24dp</item>
<item name="android:background">@drawable/hhui_tip_dialog_bg</item>
</style><style name="hp_card_content">
<item name="android:lineSpacingExtra">4dp</item>
<item name="android:textColor">@color/hp_black_33</item>
<item name="android:textSize">14.0sp</item>
</style><style name="hp_card_layout">
<item name="android:background">@drawable/hp_chat_card_bg</item>
</style><style name="hp_chat_card_layout">
<item name="android:layout_marginTop">@dimen/hp_chat_name_top_margin</item>
<item name="android:layout_toEndOf">@+id/h_icon</item>
<item name="android:layout_below">@+id/h_chat_name</item>
<item name="android:layout_marginStart">@dimen/hp_chat_icon_margin_left</item>
<item name="android:layout_marginEnd">@dimen/hp_chat_margin_right</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">match_parent</item>
<item name="android:background">@android:color/transparent</item>
</style><style name="hp_chat_icon_style">
<item name="android:scaleType">centerCrop</item>
<item name="android:layout_width">34.0dp</item>
<item name="android:layout_height">34.0dp</item>
<item name="android:background">@android:color/transparent</item>
</style><style name="hp_chat_layout">
<item name="android:paddingBottom">@dimen/hh_vertical_margin</item>
<item name="android:paddingTop">@dimen/hh_vertical_margin</item>
<item name="android:background">@android:color/transparent</item>
</style><style name="hp_chat_time_text">
<item name="android:paddingStart">10dp</item>
<item name="android:paddingEnd">10dp</item>
<item name="android:paddingTop">3dp</item>
<item name="android:paddingBottom">3dp</item>
<item name="android:layout_marginBottom">@dimen/hh_vertical_margin</item>
<item name="android:background">@drawable/hh_chat_time_bg</item>
<item name="android:layout_centerHorizontal">true</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:textSize">11sp</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">@android:color/white</item>
</style><style name="hp_dash_view">
<item name="android:layerType">software</item>
<item name="android:layout_height">1.5dp</item>
<item name="android:layout_width">match_parent</item>
<item name="android:background">@drawable/hp_dash_line</item>
</style><style name="hp_family_edit" parent="hh_call_rescue_text_layout">
<item name="android:layout_width">match_parent</item>
<item name="android:background">@android:color/white</item>
<item name="android:textSize">15.0sp</item>
<item name="android:singleLine">true</item>
<item name="android:textColor">@color/hp_black_33</item>
<item name="android:textColorHint">@color/hp_hint</item>
</style><style name="hp_real_name_item">
<item name="android:gravity">center_vertical</item>
<item name="android:layout_height">50dp</item>
<item name="android:layout_width">match_parent</item>
<item name="android:paddingEnd">@dimen/uikit_horizontal_margin</item>
<item name="android:paddingStart">@dimen/uikit_horizontal_margin</item>
<item name="android:background">@android:color/white</item>
</style><style name="hp_video_menu_layout">
<item name="android:paddingTop">23.0dp</item>
<item name="android:gravity">center_horizontal</item>
<item name="android:orientation">vertical</item>
</style><style name="hp_video_menu_text">
<item name="android:textColor">@android:color/white</item>
<item name="android:layout_marginTop">6dp</item>
<item name="android:textSize">9.0sp</item>
</style><declare-styleable name="HHBaseRatingBar">
<attr format="integer" name="hh_numStars"/>
<attr format="float" name="hh_minimumStars"/>
<attr format="float" name="hh_rating"/>
<attr format="dimension" name="hh_starPadding"/>
<attr format="reference" name="hh_drawableEmpty"/>
<attr format="reference" name="hh_drawableFilled"/>
<attr format="boolean" name="hh_isIndicator"/>
<attr format="boolean" name="hh_scrollable"/>
<attr format="boolean" name="hh_clickable"/>
<attr format="boolean" name="hh_clearRatingEnabled"/>
<attr format="dimension" name="hh_starWidth"/>
<attr format="dimension" name="hh_starHeight"/>
<attr format="float" name="hh_stepSize"/>
</declare-styleable><declare-styleable name="HHCropAreaView">
<attr format="reference|color" name="hh_gest_backgroundColor"/>
<attr format="reference|color" name="hh_gest_borderColor"/>
<attr format="reference|dimension" name="hh_gest_borderWidth"/>
<attr format="reference|integer" name="hh_gest_rulesHorizontal"/>
<attr format="reference|integer" name="hh_gest_rulesVertical"/>
<attr format="reference|dimension" name="hh_gest_rulesWidth"/>
<attr format="reference|boolean" name="hh_gest_rounded"/>
<attr format="reference|float" name="hh_gest_aspect"/>
</declare-styleable><declare-styleable name="HHGestureFrameLayout">
<attr name="hh_gest_movementAreaWidth"/>
<attr name="hh_gest_movementAreaHeight"/>
<attr name="hh_gest_minZoom"/>
<attr name="hh_gest_maxZoom"/>
<attr name="hh_gest_doubleTapZoom"/>
<attr name="hh_gest_overzoomFactor"/>
<attr name="hh_gest_overscrollX"/>
<attr name="hh_gest_overscrollY"/>
<attr name="hh_gest_fillViewport"/>
<attr name="hh_gest_gravity"/>
<attr name="hh_gest_fitMethod"/>
<attr name="hh_gest_boundsType"/>
<attr name="hh_gest_panEnabled"/>
<attr name="hh_gest_flingEnabled"/>
<attr name="hh_gest_zoomEnabled"/>
<attr name="hh_gest_rotationEnabled"/>
<attr name="hh_gest_restrictRotation"/>
<attr name="hh_gest_doubleTapEnabled"/>
<attr name="hh_gest_exitEnabled"/>
<attr name="hh_gest_animationDuration"/>
<attr name="hh_gest_disableGestures"/>
<attr name="hh_gest_disableBounds"/>
</declare-styleable><declare-styleable name="HHGestureImageView">
<attr name="hh_gest_movementAreaWidth"/>
<attr name="hh_gest_movementAreaHeight"/>
<attr name="hh_gest_minZoom"/>
<attr name="hh_gest_maxZoom"/>
<attr name="hh_gest_doubleTapZoom"/>
<attr name="hh_gest_overzoomFactor"/>
<attr name="hh_gest_overscrollX"/>
<attr name="hh_gest_overscrollY"/>
<attr name="hh_gest_fillViewport"/>
<attr name="hh_gest_gravity"/>
<attr name="hh_gest_fitMethod"/>
<attr name="hh_gest_boundsType"/>
<attr name="hh_gest_panEnabled"/>
<attr name="hh_gest_flingEnabled"/>
<attr name="hh_gest_zoomEnabled"/>
<attr name="hh_gest_rotationEnabled"/>
<attr name="hh_gest_restrictRotation"/>
<attr name="hh_gest_doubleTapEnabled"/>
<attr name="hh_gest_exitEnabled"/>
<attr name="hh_gest_animationDuration"/>
<attr name="hh_gest_disableGestures"/>
<attr name="hh_gest_disableBounds"/>
</declare-styleable><declare-styleable name="HHGestureView">
<attr format="reference|dimension" name="hh_gest_movementAreaWidth"/>
<attr format="reference|dimension" name="hh_gest_movementAreaHeight"/>
<attr format="reference|float" name="hh_gest_minZoom"/>
<attr format="reference|float" name="hh_gest_maxZoom"/>
<attr format="reference|float" name="hh_gest_doubleTapZoom"/>
<attr format="reference|float" name="hh_gest_overzoomFactor"/>
<attr format="reference|dimension" name="hh_gest_overscrollX"/>
<attr format="reference|dimension" name="hh_gest_overscrollY"/>
<attr format="reference|boolean" name="hh_gest_fillViewport"/>
<attr name="hh_gest_gravity">
<flag name="top" value="0x30"/>
<flag name="bottom" value="0x50"/>
<flag name="left" value="0x03"/>
<flag name="right" value="0x05"/>
<flag name="center_vertical" value="0x10"/>
<flag name="center_horizontal" value="0x01"/>
<flag name="center" value="0x11"/>
<flag name="start" value="0x00800003"/>
<flag name="end" value="0x00800005"/>
</attr>
<attr name="hh_gest_fitMethod">
<enum name="horizontal" value="0"/>
<enum name="vertical" value="1"/>
<enum name="inside" value="2"/>
<enum name="outside" value="3"/>
<enum name="none" value="4"/>
</attr>
<attr name="hh_gest_boundsType">
<enum name="normal" value="0"/>
<enum name="inside" value="1"/>
<enum name="outside" value="2"/>
<enum name="pivot" value="3"/>
<enum name="none" value="4"/>
</attr>
<attr format="reference|boolean" name="hh_gest_panEnabled"/>
<attr format="reference|boolean" name="hh_gest_flingEnabled"/>
<attr format="reference|boolean" name="hh_gest_zoomEnabled"/>
<attr format="reference|boolean" name="hh_gest_rotationEnabled"/>
<attr format="reference|boolean" name="hh_gest_restrictRotation"/>
<attr format="reference|boolean" name="hh_gest_doubleTapEnabled"/>
<attr format="reference|boolean" name="hh_gest_exitEnabled"/>
<attr format="reference|integer" name="hh_gest_animationDuration"/>
<attr format="reference|boolean" name="hh_gest_disableGestures"/>
<attr format="reference|boolean" name="hh_gest_disableBounds"/>
</declare-styleable><declare-styleable name="HHSDKEditTextView">
<attr format="integer" name="input_color"/>
</declare-styleable><declare-styleable name="HHUILoadingView">
<attr format="dimension" name="hhui_loading_view_size"/>
<attr name="android:color"/>
</declare-styleable><declare-styleable name="NumberCodeView">
<attr format="integer" name="numberLength"/>
</declare-styleable></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:hh_trtc:3.1.2.04011456$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/181ae3191cb35ac423dfc0bbcab3d39b/jetified-hh_trtc-3.1.2.04011456/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.hhmedic.android.sdk:hh_trtc:3.1.2.04011456" from-dependency="true" generated-set="com.hhmedic.android.sdk:hh_trtc:3.1.2.04011456$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/181ae3191cb35ac423dfc0bbcab3d39b/jetified-hh_trtc-3.1.2.04011456/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/181ae3191cb35ac423dfc0bbcab3d39b/jetified-hh_trtc-3.1.2.04011456/res/values/values.xml" qualifiers=""><color name="colorAccent">#03DAC5</color><color name="colorPrimary">#6200EE</color><color name="colorPrimaryDark">#3700B3</color><string name="app_name">lego</string><style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style><style name="hh_video_chat_style" parent="Theme.AppCompat.Light.NoActionBar">
</style></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="android-gif-drawable-release@1.2.17.aar$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/c91fd8d9449c4001722c69b67241b868/jetified-android-gif-drawable-release@1.2.17/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="android-gif-drawable-release@1.2.17.aar" from-dependency="true" generated-set="android-gif-drawable-release@1.2.17.aar$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/c91fd8d9449c4001722c69b67241b868/jetified-android-gif-drawable-release@1.2.17/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/c91fd8d9449c4001722c69b67241b868/jetified-android-gif-drawable-release@1.2.17/res/values/values.xml" qualifiers=""><declare-styleable name="GifTextureView">
<attr format="reference|string" name="gifSource"/>
<attr format="boolean" name="isOpaque"/>
</declare-styleable><declare-styleable name="GifView">
<attr format="boolean" name="freezesAnimation"/>
<attr format="integer" name="loopCount"/>
</declare-styleable></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="uniapp-v8-release.aar$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/079d2052395855ccba84d5fdabbb7fda/jetified-uniapp-v8-release/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="uniapp-v8-release.aar" from-dependency="true" generated-set="uniapp-v8-release.aar$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/079d2052395855ccba84d5fdabbb7fda/jetified-uniapp-v8-release/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/079d2052395855ccba84d5fdabbb7fda/jetified-uniapp-v8-release/res/values-ldltr-v17/values-ldltr-v17.xml" qualifiers="ldltr-v17"><bool name="weex_is_right_to_left">false</bool></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/079d2052395855ccba84d5fdabbb7fda/jetified-uniapp-v8-release/res/values/values.xml" qualifiers=""><declare-styleable name="SwitchButton">
<attr format="reference|dimension" name="sb_shadow_radius"/>
<attr format="reference|dimension" name="sb_shadow_offset"/>
<attr format="reference|color" name="sb_shadow_color"/>
<attr format="reference|color" name="sb_uncheck_color"/>
<attr format="reference|color" name="sb_checked_color"/>
<attr format="reference|dimension" name="sb_border_width"/>
<attr format="reference|color" name="sb_checkline_color"/>
<attr format="reference|dimension" name="sb_checkline_width"/>
<attr format="reference|color" name="sb_uncheckcircle_color"/>
<attr format="reference|dimension" name="sb_uncheckcircle_width"/>
<attr format="reference|dimension" name="sb_uncheckcircle_radius"/>
<attr format="reference|boolean" name="sb_checked"/>
<attr format="reference|boolean" name="sb_shadow_effect"/>
<attr format="reference|integer" name="sb_effect_duration"/>
<attr format="reference|color" name="sb_button_color"/>
<attr format="reference|boolean" name="sb_show_indicator"/>
<attr format="reference|color" name="sb_background"/>
<attr format="reference|boolean" name="sb_enable_effect"/>
</declare-styleable></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/079d2052395855ccba84d5fdabbb7fda/jetified-uniapp-v8-release/res/values-ldrtl-v17/values-ldrtl-v17.xml" qualifiers="ldrtl-v17"><bool name="weex_is_right_to_left">true</bool></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="lib.5plus.base-release.aar$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/3b99009f2d3368910c709e00b05a8fe7/jetified-lib.5plus.base-release/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="lib.5plus.base-release.aar" from-dependency="true" generated-set="lib.5plus.base-release.aar$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/3b99009f2d3368910c709e00b05a8fe7/jetified-lib.5plus.base-release/res"><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/3b99009f2d3368910c709e00b05a8fe7/jetified-lib.5plus.base-release/res/values/values.xml" qualifiers=""><color name="dadada">#DADADA</color><color name="e4e4e4">#E4E4E4</color><color name="ffffff">#FFFFFF</color><color name="image_pick_title_btn_normal">#00000000</color><color name="image_pick_title_btn_pressed">#f4f4f4</color><color name="ime_background">#cccccc</color><declare-styleable name="ActionSheet">
<attr format="color|reference" name="actionSheetBackground"/>
<attr format="color|reference" name="cancelButtonBackground"/>
<attr format="color|reference" name="otherButtonTopBackground"/>
<attr format="color|reference" name="otherButtonTitleBackground"/>
<attr format="color|reference" name="otherButtonMiddleBackground"/>
<attr format="color|reference" name="otherButtonBottomBackground"/>
<attr format="color|reference" name="otherButtonSingleBackground"/>
<attr format="color|reference" name="cancelButtonTextColor"/>
<attr format="color|reference" name="otherButtonTextColor"/>
<attr format="color|reference" name="destructiveButtonTextColor"/>
<attr format="color|reference" name="titleButtonTextColor"/>
<attr format="dimension|reference" name="actionSheetPadding"/>
<attr format="dimension|reference" name="otherButtonSpacing"/>
<attr format="dimension|reference" name="cancelButtonMarginTop"/>
<attr format="dimension|reference" name="actionSheetTextSize"/>
</declare-styleable><declare-styleable name="ActionSheets">
<attr format="reference" name="actionSheetStyle"/>
</declare-styleable><declare-styleable name="GIFVIEW">
<attr format="reference" name="gifSrc"/>
<attr format="boolean" name="authPlay"/>
<attr format="integer" name="playCount"/>
</declare-styleable><dimen name="dcloud_wel_base_content_space">30dp</dimen><dimen name="dcloud_wel_base_content_space_2">60dp</dimen><dimen name="dcloud_wel_base_content_text_min_size">15sp</dimen><string name="app_name">lib.5plus.base</string><string name="dcloud_choose_an_action">选择操作</string><string name="dcloud_gallery_app_name">@string/app_name</string><string name="dcloud_package_name_base_application">io.dcloud.HBuilder</string><string name="dcloud_permission_read_phone_state_message">为保证您正常、安全地使用,需要获取设备识别码(部分手机提示为获取手机号码)使用权限,请允许。</string><string name="dcloud_permission_write_external_storage_message">应用保存运行状态等信息,需要获取读写手机存储(系统提示为访问设备上的照片、媒体内容和文件)权限,请允许。</string><string name="dcloud_privacy_prompt_accept_button_text">我知道了</string><string name="dcloud_privacy_prompt_message"><Data><![CDATA[请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br />
你可阅读<a href="">《服务协议》</a>和<a href="">《隐私政策》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。]]></Data></string><string name="dcloud_privacy_prompt_title">服务协议和隐私政策</string><string name="dcloud_sync_debug_message">当前应用运行在自定义调试基座中,发布正式版请打包时不要勾选自定义调试基座。</string><string name="in_package">apk</string><string name="stream_my">最近流应用</string><style name="ActionSheetStyleIOS6">
<item name="actionSheetBackground">@drawable/dcloud_as_bg_ios6</item>
<item name="cancelButtonBackground">@drawable/dcloud_as_cancel_bt_bg</item>
<item name="otherButtonTopBackground">@drawable/dcloud_as_other_bt_bg</item>
<item name="otherButtonMiddleBackground">@drawable/dcloud_as_other_bt_bg</item>
<item name="otherButtonBottomBackground">@drawable/dcloud_as_other_bt_bg</item>
<item name="otherButtonSingleBackground">@drawable/dcloud_as_other_bt_bg</item>
<item name="cancelButtonTextColor">@android:color/white</item>
<item name="otherButtonTextColor">@android:color/black</item>
<item name="actionSheetPadding">20dp</item>
<item name="otherButtonSpacing">5dp</item>
<item name="cancelButtonMarginTop">20dp</item>
<item name="actionSheetTextSize">16sp</item>
</style><style name="ActionSheetStyleIOS7">
<item name="actionSheetBackground">@android:color/transparent</item>
<item name="cancelButtonBackground">@drawable/dcloud_slt_as_ios7_cancel_bt</item>
<item name="otherButtonTopBackground">@drawable/dcloud_slt_as_ios7_other_bt_top</item>
<item name="otherButtonTitleBackground">@drawable/dcloud_slt_as_ios7_other_bt_title</item>
<item name="otherButtonMiddleBackground">@drawable/dcloud_slt_as_ios7_other_bt_middle</item>
<item name="otherButtonBottomBackground">@drawable/dcloud_slt_as_ios7_other_bt_bottom</item>
<item name="otherButtonSingleBackground">@drawable/dcloud_slt_as_ios7_other_bt_single</item>
<item name="cancelButtonTextColor">#000000</item>
<item name="otherButtonTextColor">#000000</item>
<item name="destructiveButtonTextColor">#E8484A</item>
<item name="titleButtonTextColor">#8C8C8C</item>
<item name="actionSheetPadding">10dp</item>
<item name="otherButtonSpacing">0dp</item>
<item name="cancelButtonMarginTop">10dp</item>
<item name="actionSheetTextSize">16sp</item>
</style><style name="DCloudTheme" parent="@style/DeviceDefault.Light">
<item name="android:windowNoTitle">true</item>
<item name="android:colorEdgeEffect">#333333</item>
</style><style name="DeviceDefault" parent="@android:style/Theme.DeviceDefault">
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:colorEdgeEffect">#333333</item>
<item name="android:windowBackground">@color/ime_background</item>
</style><style name="DeviceDefault.Light" parent="@android:style/Theme.DeviceDefault.Light">
<item name="android:windowNoTitle">true</item>
<item name="android:colorEdgeEffect">#333333</item>
<item name="android:windowBackground">@color/ime_background</item>
</style><style name="NotificationText" parent="android:TextAppearance.StatusBar.EventContent">
<item name="android:textColor">#bb000000</item>
<item name="android:textSize">13dp</item>
</style><style name="NotificationText_Dark" parent="android:TextAppearance.StatusBar.EventContent">
<item name="android:textColor">#C0C0C0</item>
<item name="android:textSize">13dp</item>
</style><style name="NotificationTitle" parent="android:TextAppearance.StatusBar.EventContent.Title">
<item name="android:textColor">#bb000000</item>
</style><style name="NotificationTitle_Dark" parent="android:TextAppearance.StatusBar.EventContent.Title">
<item name="android:textColor">#ffffff</item>
</style><style name="OpenStreamAppTransferActivityTheme">
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@null</item>
<item name="android:windowAnimationStyle">@null</item>
</style><style name="ThemeNoTitleBar" parent="@android:style/Theme.DeviceDefault.Light">
<item name="android:windowFullscreen">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowIsTranslucent">false</item>
</style><style name="TranslucentTheme" parent="@android:style/Theme.DeviceDefault.Light">
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:colorEdgeEffect">#333333</item>
<item name="android:windowBackground">@null</item>
</style><style mce_bogus="1" name="dcloud_anim_dialog_window_in_out" parent="android:Animation">
<item name="android:windowEnterAnimation">@anim/dcloud_slide_in_from_top</item>
<item name="android:windowExitAnimation">@anim/dcloud_slide_out_to_top</item>
</style><style name="dcloud_defalut_dialog">
<item name="android:windowBackground">@color/image_pick_title_btn_normal</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:layout_gravity">top</item>
<item name="android:windowIsFloating">true</item>
<item name="android:layout_width">match_parent</item>
</style><style name="featureLossDialog" parent="@android:style/Theme.Holo.Dialog">
<item name="android:windowBackground">@color/image_pick_title_btn_normal</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:windowIsFloating">true</item>
<item name="android:layout_width">match_parent</item>
</style><style name="streamDelete19Dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowIsFloating">true</item>
</style><style name="textAppearance" parent="android:style/TextAppearance">
<item name="android:textColorLink">#0000ff</item>
<item name="android:textColor">#0000ff</item>
<item name="android:textColorHint">#0000ff</item>
<item name="android:textColorHighlight">#0000ff</item>
</style></file><file path="/Users/iOS/.gradle/caches/transforms-2/files-2.1/3b99009f2d3368910c709e00b05a8fe7/jetified-lib.5plus.base-release/res/values-en/values-en.xml" qualifiers="en"><string name="dcloud_choose_an_action">Choose an action</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/src/main/res"/><source path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/build/generated/res/rs/debug"/><source path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/src/main/res"><file name="icon" path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/src/main/res/drawable/icon.png" qualifiers="" type="drawable"/><file name="splash" path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/src/main/res/drawable/splash.png" qualifiers="" type="drawable"/><file name="push" path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/src/main/res/drawable/push.png" qualifiers="" type="drawable"/><file path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/src/main/res/values/strings.xml" qualifiers=""><string name="app_name">HBuilder-SimpleDemo-AS</string></file></source><source path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/build/generated/res/rs/debug"/><source path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/iOS/Documents/HH/hh.uni-sdk.demo/HH-Uni_AndroidDemo/simpleDemo/src/debug/res"/></dataSet><mergedItems><configuration qualifiers=""><declare-styleable name="SimpleDraweeView" parent="GenericDraweeHierarchy">
<attr format="string" name="actualImageUri"/>
<attr format="reference" name="actualImageResource"/>
<eat-comment/>
<attr name="fadeDuration"/>
<attr name="viewAspectRatio"/>
<attr name="placeholderImage"/>
<attr name="placeholderImageScaleType"/>
<attr name="retryImage"/>
<attr name="retryImageScaleType"/>
<attr name="failureImage"/>
<attr name="failureImageScaleType"/>
<attr name="progressBarImage"/>
<attr name="progressBarImageScaleType"/>
<attr name="progressBarAutoRotateInterval"/>
<attr name="actualImageScaleType"/>
<attr name="backgroundImage"/>
<attr name="overlayImage"/>
<attr name="pressedStateOverlayImage"/>
<attr name="roundAsCircle"/>
<attr name="roundedCornerRadius"/>
<attr name="roundTopLeft"/>
<attr name="roundTopRight"/>
<attr name="roundBottomRight"/>
<attr name="roundBottomLeft"/>
<attr name="roundTopStart"/>
<attr name="roundTopEnd"/>
<attr name="roundBottomStart"/>
<attr name="roundBottomEnd"/>
<attr name="roundWithOverlayColor"/>
<attr name="roundingBorderWidth"/>
<attr name="roundingBorderColor"/>
<attr name="roundingBorderPadding"/>
</declare-styleable><declare-styleable name="AlertDialog">
<attr name="android:layout"/>
<attr format="reference" name="buttonPanelSideLayout"/>
<attr format="reference" name="listLayout"/>
<attr format="reference" name="multiChoiceItemLayout"/>
<attr format="reference" name="singleChoiceItemLayout"/>
<attr format="reference" name="listItemLayout"/>
<attr format="boolean" name="showTitle"/>
<attr format="dimension" name="buttonIconDimen"/>
</declare-styleable><declare-styleable name="AppCompatSeekBar">
<attr name="android:thumb"/>
<attr format="reference" name="tickMark"/>
<attr format="color" name="tickMarkTint"/>
<attr name="tickMarkTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="CoordinatorLayout_Layout">
<attr name="android:layout_gravity"/>
<attr format="string" name="layout_behavior"/>
<attr format="reference" name="layout_anchor"/>
<attr format="integer" name="layout_keyline"/>
<attr name="layout_anchorGravity">
<flag name="top" value="0x30"/>
<flag name="bottom" value="0x50"/>
<flag name="left" value="0x03"/>
<flag name="right" value="0x05"/>
<flag name="center_vertical" value="0x10"/>
<flag name="fill_vertical" value="0x70"/>
<flag name="center_horizontal" value="0x01"/>
<flag name="fill_horizontal" value="0x07"/>
<flag name="center" value="0x11"/>
<flag name="fill" value="0x77"/>
<flag name="clip_vertical" value="0x80"/>
<flag name="clip_horizontal" value="0x08"/>
<flag name="start" value="0x00800003"/>
<flag name="end" value="0x00800005"/>
</attr>
<attr format="enum" name="layout_insetEdge">
<enum name="none" value="0x0"/>
<enum name="top" value="0x30"/>
<enum name="bottom" value="0x50"/>
<enum name="left" value="0x03"/>
<enum name="right" value="0x05"/>
<enum name="start" value="0x00800003"/>
<enum name="end" value="0x00800005"/>
</attr>
<attr name="layout_dodgeInsetEdges">
<flag name="none" value="0x0"/>
<flag name="top" value="0x30"/>
<flag name="bottom" value="0x50"/>
<flag name="left" value="0x03"/>
<flag name="right" value="0x05"/>
<flag name="start" value="0x00800003"/>
<flag name="end" value="0x00800005"/>
<flag name="all" value="0x77"/>
</attr>
</declare-styleable><declare-styleable name="GradientColor">
<attr name="android:startColor"/>
<attr name="android:centerColor"/>
<attr name="android:endColor"/>
<attr name="android:type"/>
<attr name="android:gradientRadius"/>
<attr name="android:centerX"/>
<attr name="android:centerY"/>
<attr name="android:startX"/>
<attr name="android:startY"/>
<attr name="android:endX"/>
<attr name="android:endY"/>
<attr name="android:tileMode"/>
</declare-styleable><declare-styleable name="HHGestureImageView">
<attr name="hh_gest_movementAreaWidth"/>
<attr name="hh_gest_movementAreaHeight"/>
<attr name="hh_gest_minZoom"/>
<attr name="hh_gest_maxZoom"/>
<attr name="hh_gest_doubleTapZoom"/>
<attr name="hh_gest_overzoomFactor"/>
<attr name="hh_gest_overscrollX"/>
<attr name="hh_gest_overscrollY"/>
<attr name="hh_gest_fillViewport"/>
<attr name="hh_gest_gravity"/>
<attr name="hh_gest_fitMethod"/>
<attr name="hh_gest_boundsType"/>
<attr name="hh_gest_panEnabled"/>
<attr name="hh_gest_flingEnabled"/>
<attr name="hh_gest_zoomEnabled"/>
<attr name="hh_gest_rotationEnabled"/>
<attr name="hh_gest_restrictRotation"/>
<attr name="hh_gest_doubleTapEnabled"/>
<attr name="hh_gest_exitEnabled"/>
<attr name="hh_gest_animationDuration"/>
<attr name="hh_gest_disableGestures"/>
<attr name="hh_gest_disableBounds"/>
</declare-styleable><declare-styleable name="ActionSheet">
<attr format="color|reference" name="actionSheetBackground"/>
<attr format="color|reference" name="cancelButtonBackground"/>
<attr format="color|reference" name="otherButtonTopBackground"/>
<attr format="color|reference" name="otherButtonTitleBackground"/>
<attr format="color|reference" name="otherButtonMiddleBackground"/>
<attr format="color|reference" name="otherButtonBottomBackground"/>
<attr format="color|reference" name="otherButtonSingleBackground"/>
<attr format="color|reference" name="cancelButtonTextColor"/>
<attr format="color|reference" name="otherButtonTextColor"/>
<attr format="color|reference" name="destructiveButtonTextColor"/>
<attr format="color|reference" name="titleButtonTextColor"/>
<attr format="dimension|reference" name="actionSheetPadding"/>
<attr format="dimension|reference" name="otherButtonSpacing"/>
<attr format="dimension|reference" name="cancelButtonMarginTop"/>
<attr format="dimension|reference" name="actionSheetTextSize"/>
</declare-styleable><declare-styleable name="AnimatedStateListDrawableItem">
<attr name="android:drawable"/>
<attr name="android:id"/>
</declare-styleable><declare-styleable name="NumberCodeView">
<attr format="integer" name="numberLength"/>
</declare-styleable><declare-styleable name="GradientColorItem">
<attr name="android:offset"/>
<attr name="android:color"/>
</declare-styleable><declare-styleable name="AppCompatTheme">
<eat-comment/>
<attr format="boolean" name="windowActionBar"/>
<attr format="boolean" name="windowNoTitle"/>
<attr format="boolean" name="windowActionBarOverlay"/>
<attr format="boolean" name="windowActionModeOverlay"/>
<attr format="dimension|fraction" name="windowFixedWidthMajor"/>
<attr format="dimension|fraction" name="windowFixedHeightMinor"/>
<attr format="dimension|fraction" name="windowFixedWidthMinor"/>
<attr format="dimension|fraction" name="windowFixedHeightMajor"/>
<attr format="dimension|fraction" name="windowMinWidthMajor"/>
<attr format="dimension|fraction" name="windowMinWidthMinor"/>
<attr name="android:windowIsFloating"/>
<attr name="android:windowAnimationStyle"/>
<eat-comment/>
<attr format="reference" name="actionBarTabStyle"/>
<attr format="reference" name="actionBarTabBarStyle"/>
<attr format="reference" name="actionBarTabTextStyle"/>
<attr format="reference" name="actionOverflowButtonStyle"/>
<attr format="reference" name="actionOverflowMenuStyle"/>
<attr format="reference" name="actionBarPopupTheme"/>
<attr format="reference" name="actionBarStyle"/>
<attr format="reference" name="actionBarSplitStyle"/>
<attr format="reference" name="actionBarTheme"/>
<attr format="reference" name="actionBarWidgetTheme"/>
<attr format="dimension" name="actionBarSize">
<enum name="wrap_content" value="0"/>
</attr>
<attr format="reference" name="actionBarDivider"/>
<attr format="reference" name="actionBarItemBackground"/>
<attr format="reference" name="actionMenuTextAppearance"/>
<attr format="color|reference" name="actionMenuTextColor"/>
<eat-comment/>
<attr format="reference" name="actionModeStyle"/>
<attr format="reference" name="actionModeCloseButtonStyle"/>
<attr format="reference" name="actionModeBackground"/>
<attr format="reference" name="actionModeSplitBackground"/>
<attr format="reference" name="actionModeCloseDrawable"/>
<attr format="reference" name="actionModeCutDrawable"/>
<attr format="reference" name="actionModeCopyDrawable"/>
<attr format="reference" name="actionModePasteDrawable"/>
<attr format="reference" name="actionModeSelectAllDrawable"/>
<attr format="reference" name="actionModeShareDrawable"/>
<attr format="reference" name="actionModeFindDrawable"/>
<attr format="reference" name="actionModeWebSearchDrawable"/>
<attr format="reference" name="actionModePopupWindowStyle"/>
<eat-comment/>
<attr format="reference" name="textAppearanceLargePopupMenu"/>
<attr format="reference" name="textAppearanceSmallPopupMenu"/>
<attr format="reference" name="textAppearancePopupMenuHeader"/>
<eat-comment/>
<attr format="reference" name="dialogTheme"/>
<attr format="dimension" name="dialogPreferredPadding"/>
<attr format="reference" name="listDividerAlertDialog"/>
<attr format="dimension" name="dialogCornerRadius"/>
<eat-comment/>
<attr format="reference" name="actionDropDownStyle"/>
<attr format="dimension" name="dropdownListPreferredItemHeight"/>
<attr format="reference" name="spinnerDropDownItemStyle"/>
<attr format="reference" name="homeAsUpIndicator"/>
<attr format="reference" name="actionButtonStyle"/>
<attr format="reference" name="buttonBarStyle"/>
<attr format="reference" name="buttonBarButtonStyle"/>
<attr format="reference" name="selectableItemBackground"/>
<attr format="reference" name="selectableItemBackgroundBorderless"/>
<attr format="reference" name="borderlessButtonStyle"/>
<attr format="reference" name="dividerVertical"/>
<attr format="reference" name="dividerHorizontal"/>
<attr format="reference" name="activityChooserViewStyle"/>
<attr format="reference" name="toolbarStyle"/>
<attr format="reference" name="toolbarNavigationButtonStyle"/>
<attr format="reference" name="popupMenuStyle"/>
<attr format="reference" name="popupWindowStyle"/>
<attr format="reference|color" name="editTextColor"/>
<attr format="reference" name="editTextBackground"/>
<attr format="reference" name="imageButtonStyle"/>
<eat-comment/>
<attr format="reference" name="textAppearanceSearchResultTitle"/>
<attr format="reference" name="textAppearanceSearchResultSubtitle"/>
<attr format="reference|color" name="textColorSearchUrl"/>
<attr format="reference" name="searchViewStyle"/>
<eat-comment/>
<attr format="dimension" name="listPreferredItemHeight"/>
<attr format="dimension" name="listPreferredItemHeightSmall"/>
<attr format="dimension" name="listPreferredItemHeightLarge"/>
<attr format="dimension" name="listPreferredItemPaddingLeft"/>
<attr format="dimension" name="listPreferredItemPaddingRight"/>
<attr format="reference" name="dropDownListViewStyle"/>
<attr format="reference" name="listPopupWindowStyle"/>
<attr format="reference" name="textAppearanceListItem"/>
<attr format="reference" name="textAppearanceListItemSecondary"/>
<attr format="reference" name="textAppearanceListItemSmall"/>
<eat-comment/>
<attr format="reference" name="panelBackground"/>
<attr format="dimension" name="panelMenuListWidth"/>
<attr format="reference" name="panelMenuListTheme"/>
<attr format="reference" name="listChoiceBackgroundIndicator"/>
<eat-comment/>
<attr format="color" name="colorPrimary"/>
<attr format="color" name="colorPrimaryDark"/>
<attr format="color" name="colorAccent"/>
<attr format="color" name="colorControlNormal"/>
<attr format="color" name="colorControlActivated"/>
<attr format="color" name="colorControlHighlight"/>
<attr format="color" name="colorButtonNormal"/>
<attr format="color" name="colorSwitchThumbNormal"/>
<attr format="reference" name="controlBackground"/>
<attr format="color" name="colorBackgroundFloating"/>
<eat-comment/>
<attr format="reference" name="alertDialogStyle"/>
<attr format="reference" name="alertDialogButtonGroupStyle"/>
<attr format="boolean" name="alertDialogCenterButtons"/>
<attr format="reference" name="alertDialogTheme"/>
<attr format="reference|color" name="textColorAlertDialogListItem"/>
<attr format="reference" name="buttonBarPositiveButtonStyle"/>
<attr format="reference" name="buttonBarNegativeButtonStyle"/>
<attr format="reference" name="buttonBarNeutralButtonStyle"/>
<eat-comment/>
<attr format="reference" name="autoCompleteTextViewStyle"/>
<attr format="reference" name="buttonStyle"/>
<attr format="reference" name="buttonStyleSmall"/>
<attr format="reference" name="checkboxStyle"/>
<attr format="reference" name="checkedTextViewStyle"/>
<attr format="reference" name="editTextStyle"/>
<attr format="reference" name="radioButtonStyle"/>
<attr format="reference" name="ratingBarStyle"/>
<attr format="reference" name="ratingBarStyleIndicator"/>
<attr format="reference" name="ratingBarStyleSmall"/>
<attr format="reference" name="seekBarStyle"/>
<attr format="reference" name="spinnerStyle"/>
<attr format="reference" name="switchStyle"/>
<attr format="reference" name="listMenuViewStyle"/>
<eat-comment/>
<attr format="reference" name="tooltipFrameBackground"/>
<attr format="reference|color" name="tooltipForegroundColor"/>
<attr format="reference|color" name="colorError"/>
<attr format="string" name="viewInflaterClass"/>
</declare-styleable><declare-styleable name="HHUILoadingView">
<attr format="dimension" name="hhui_loading_view_size"/>
<attr name="android:color"/>
</declare-styleable><declare-styleable name="HHGestureView">
<attr format="reference|dimension" name="hh_gest_movementAreaWidth"/>
<attr format="reference|dimension" name="hh_gest_movementAreaHeight"/>
<attr format="reference|float" name="hh_gest_minZoom"/>
<attr format="reference|float" name="hh_gest_maxZoom"/>
<attr format="reference|float" name="hh_gest_doubleTapZoom"/>
<attr format="reference|float" name="hh_gest_overzoomFactor"/>
<attr format="reference|dimension" name="hh_gest_overscrollX"/>
<attr format="reference|dimension" name="hh_gest_overscrollY"/>
<attr format="reference|boolean" name="hh_gest_fillViewport"/>
<attr name="hh_gest_gravity">
<flag name="top" value="0x30"/>
<flag name="bottom" value="0x50"/>
<flag name="left" value="0x03"/>
<flag name="right" value="0x05"/>
<flag name="center_vertical" value="0x10"/>
<flag name="center_horizontal" value="0x01"/>
<flag name="center" value="0x11"/>
<flag name="start" value="0x00800003"/>
<flag name="end" value="0x00800005"/>
</attr>
<attr name="hh_gest_fitMethod">
<enum name="horizontal" value="0"/>
<enum name="vertical" value="1"/>
<enum name="inside" value="2"/>
<enum name="outside" value="3"/>
<enum name="none" value="4"/>
</attr>
<attr name="hh_gest_boundsType">
<enum name="normal" value="0"/>
<enum name="inside" value="1"/>
<enum name="outside" value="2"/>
<enum name="pivot" value="3"/>
<enum name="none" value="4"/>
</attr>
<attr format="reference|boolean" name="hh_gest_panEnabled"/>
<attr format="reference|boolean" name="hh_gest_flingEnabled"/>
<attr format="reference|boolean" name="hh_gest_zoomEnabled"/>
<attr format="reference|boolean" name="hh_gest_rotationEnabled"/>
<attr format="reference|boolean" name="hh_gest_restrictRotation"/>
<attr format="reference|boolean" name="hh_gest_doubleTapEnabled"/>
<attr format="reference|boolean" name="hh_gest_exitEnabled"/>
<attr format="reference|integer" name="hh_gest_animationDuration"/>
<attr format="reference|boolean" name="hh_gest_disableGestures"/>
<attr format="reference|boolean" name="hh_gest_disableBounds"/>
</declare-styleable><declare-styleable name="MenuView">
<attr name="android:itemTextAppearance"/>
<attr name="android:horizontalDivider"/>
<attr name="android:verticalDivider"/>
<attr name="android:headerBackground"/>
<attr name="android:itemBackground"/>
<attr name="android:windowAnimationStyle"/>
<attr name="android:itemIconDisabledAlpha"/>
<attr format="boolean" name="preserveIconSpacing"/>
<attr format="reference" name="subMenuArrow"/>
</declare-styleable><declare-styleable name="HHBaseRatingBar">
<attr format="integer" name="hh_numStars"/>
<attr format="float" name="hh_minimumStars"/>
<attr format="float" name="hh_rating"/>
<attr format="dimension" name="hh_starPadding"/>
<attr format="reference" name="hh_drawableEmpty"/>
<attr format="reference" name="hh_drawableFilled"/>
<attr format="boolean" name="hh_isIndicator"/>
<attr format="boolean" name="hh_scrollable"/>
<attr format="boolean" name="hh_clickable"/>
<attr format="boolean" name="hh_clearRatingEnabled"/>
<attr format="dimension" name="hh_starWidth"/>
<attr format="dimension" name="hh_starHeight"/>
<attr format="float" name="hh_stepSize"/>
</declare-styleable><declare-styleable name="RecycleListView">
<attr format="dimension" name="paddingBottomNoButtons"/>
<attr format="dimension" name="paddingTopNoTitle"/>
</declare-styleable><declare-styleable name="ActionBar">
<attr name="navigationMode">
<enum name="normal" value="0"/>
<enum name="listMode" value="1"/>
<enum name="tabMode" value="2"/>
</attr>
<attr name="displayOptions">
<flag name="none" value="0"/>
<flag name="useLogo" value="0x1"/>
<flag name="showHome" value="0x2"/>
<flag name="homeAsUp" value="0x4"/>
<flag name="showTitle" value="0x8"/>
<flag name="showCustom" value="0x10"/>
<flag name="disableHome" value="0x20"/>
</attr>
<attr name="title"/>
<attr format="string" name="subtitle"/>
<attr format="reference" name="titleTextStyle"/>
<attr format="reference" name="subtitleTextStyle"/>
<attr format="reference" name="icon"/>
<attr format="reference" name="logo"/>
<attr format="reference" name="divider"/>
<attr format="reference" name="background"/>
<attr format="reference|color" name="backgroundStacked"/>
<attr format="reference|color" name="backgroundSplit"/>
<attr format="reference" name="customNavigationLayout"/>
<attr name="height"/>
<attr format="reference" name="homeLayout"/>
<attr format="reference" name="progressBarStyle"/>
<attr format="reference" name="indeterminateProgressStyle"/>
<attr format="dimension" name="progressBarPadding"/>
<attr name="homeAsUpIndicator"/>
<attr format="dimension" name="itemPadding"/>
<attr format="boolean" name="hideOnContentScroll"/>
<attr format="dimension" name="contentInsetStart"/>
<attr format="dimension" name="contentInsetEnd"/>
<attr format="dimension" name="contentInsetLeft"/>
<attr format="dimension" name="contentInsetRight"/>
<attr format="dimension" name="contentInsetStartWithNavigation"/>
<attr format="dimension" name="contentInsetEndWithActions"/>
<attr format="dimension" name="elevation"/>
<attr format="reference" name="popupTheme"/>
</declare-styleable><declare-styleable name="ActionMenuItemView">
<attr name="android:minWidth"/>
</declare-styleable><declare-styleable name="Toolbar">
<attr format="reference" name="titleTextAppearance"/>
<attr format="reference" name="subtitleTextAppearance"/>
<attr name="title"/>
<attr name="subtitle"/>
<attr name="android:gravity"/>
<attr format="dimension" name="titleMargin"/>
<attr format="dimension" name="titleMarginStart"/>
<attr format="dimension" name="titleMarginEnd"/>
<attr format="dimension" name="titleMarginTop"/>
<attr format="dimension" name="titleMarginBottom"/>
<attr format="dimension" name="titleMargins"/>
<attr name="contentInsetStart"/>
<attr name="contentInsetEnd"/>
<attr name="contentInsetLeft"/>
<attr name="contentInsetRight"/>
<attr name="contentInsetStartWithNavigation"/>
<attr name="contentInsetEndWithActions"/>
<attr format="dimension" name="maxButtonHeight"/>
<attr name="buttonGravity">
<flag name="top" value="0x30"/>
<flag name="bottom" value="0x50"/>
</attr>
<attr format="reference" name="collapseIcon"/>
<attr format="string" name="collapseContentDescription"/>
<attr name="popupTheme"/>
<attr format="reference" name="navigationIcon"/>
<attr format="string" name="navigationContentDescription"/>
<attr name="logo"/>
<attr format="string" name="logoDescription"/>
<attr format="color" name="titleTextColor"/>
<attr format="color" name="subtitleTextColor"/>
<attr name="android:minHeight"/>
</declare-styleable><declare-styleable name="LinearLayoutCompat_Layout">
<attr name="android:layout_width"/>
<attr name="android:layout_height"/>
<attr name="android:layout_weight"/>
<attr name="android:layout_gravity"/>
</declare-styleable><declare-styleable name="GifView">
<attr format="boolean" name="freezesAnimation"/>
<attr format="integer" name="loopCount"/>
</declare-styleable><declare-styleable name="StateListDrawableItem">
<attr name="android:drawable"/>
</declare-styleable><declare-styleable name="GIFVIEW">
<attr format="reference" name="gifSrc"/>
<attr format="boolean" name="authPlay"/>
<attr format="integer" name="playCount"/>
</declare-styleable><declare-styleable name="AppCompatTextView">
<attr format="reference|boolean" name="textAllCaps"/>
<attr name="android:textAppearance"/>
<attr format="enum" name="autoSizeTextType">
<enum name="none" value="0"/>
<enum name="uniform" value="1"/>
</attr>
<attr format="dimension" name="autoSizeStepGranularity"/>
<attr format="reference" name="autoSizePresetSizes"/>
<attr format="dimension" name="autoSizeMinTextSize"/>
<attr format="dimension" name="autoSizeMaxTextSize"/>
<attr format="string" name="fontFamily"/>
<attr format="dimension" name="lineHeight"/>
<attr format="dimension" name="firstBaselineToTopHeight"/>
<attr format="dimension" name="lastBaselineToBottomHeight"/>
</declare-styleable><declare-styleable name="ButtonBarLayout">
<attr format="boolean" name="allowStacking"/>
</declare-styleable><declare-styleable name="ViewBackgroundHelper">
<attr name="android:background"/>
<attr format="color" name="backgroundTint"/>
<attr name="backgroundTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="AppCompatImageView">
<attr name="android:src"/>
<attr format="reference" name="srcCompat"/>
<attr format="color" name="tint"/>
<attr name="tintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="PopupWindowBackgroundState">
<attr format="boolean" name="state_above_anchor"/>
</declare-styleable><declare-styleable name="ActionMode">
<attr name="titleTextStyle"/>
<attr name="subtitleTextStyle"/>
<attr name="background"/>
<attr name="backgroundSplit"/>
<attr name="height"/>
<attr format="reference" name="closeItemLayout"/>
</declare-styleable><declare-styleable name="GifTextureView">
<attr format="reference|string" name="gifSource"/>
<attr format="boolean" name="isOpaque"/>
</declare-styleable><declare-styleable name="SwitchCompat">
<attr name="android:thumb"/>
<attr format="color" name="thumbTint"/>
<attr name="thumbTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
<attr format="reference" name="track"/>
<attr format="color" name="trackTint"/>
<attr name="trackTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
<attr name="android:textOn"/>
<attr name="android:textOff"/>
<attr format="dimension" name="thumbTextPadding"/>
<attr format="reference" name="switchTextAppearance"/>
<attr format="dimension" name="switchMinWidth"/>
<attr format="dimension" name="switchPadding"/>
<attr format="boolean" name="splitTrack"/>
<attr format="boolean" name="showText"/>
</declare-styleable><declare-styleable name="GenericDraweeHierarchy">
<eat-comment/>
<attr format="integer" name="fadeDuration"/>
<attr format="float" name="viewAspectRatio"/>
<attr format="reference" name="placeholderImage"/>
<attr name="placeholderImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="reference" name="retryImage"/>
<attr name="retryImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="reference" name="failureImage"/>
<attr name="failureImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="reference" name="progressBarImage"/>
<attr name="progressBarImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="integer" name="progressBarAutoRotateInterval"/>
<attr name="actualImageScaleType">
<enum name="none" value="-1"/>
<enum name="fitXY" value="0"/>
<enum name="fitStart" value="1"/>
<enum name="fitCenter" value="2"/>
<enum name="fitEnd" value="3"/>
<enum name="center" value="4"/>
<enum name="centerInside" value="5"/>
<enum name="centerCrop" value="6"/>
<enum name="focusCrop" value="7"/>
<enum name="fitBottomStart" value="8"/>
</attr>
<attr format="reference" name="backgroundImage"/>
<attr format="reference" name="overlayImage"/>
<attr format="reference" name="pressedStateOverlayImage"/>
<attr format="boolean" name="roundAsCircle"/>
<attr format="dimension" name="roundedCornerRadius"/>
<attr format="boolean" name="roundTopLeft"/>
<attr format="boolean" name="roundTopRight"/>
<attr format="boolean" name="roundBottomRight"/>
<attr format="boolean" name="roundBottomLeft"/>
<attr format="boolean" name="roundTopStart"/>
<attr format="boolean" name="roundTopEnd"/>
<attr format="boolean" name="roundBottomStart"/>
<attr format="boolean" name="roundBottomEnd"/>
<attr format="color" name="roundWithOverlayColor"/>
<attr format="dimension" name="roundingBorderWidth"/>
<attr format="color" name="roundingBorderColor"/>
<attr format="dimension" name="roundingBorderPadding"/>
</declare-styleable><declare-styleable name="HHCropAreaView">
<attr format="reference|color" name="hh_gest_backgroundColor"/>
<attr format="reference|color" name="hh_gest_borderColor"/>
<attr format="reference|dimension" name="hh_gest_borderWidth"/>
<attr format="reference|integer" name="hh_gest_rulesHorizontal"/>
<attr format="reference|integer" name="hh_gest_rulesVertical"/>
<attr format="reference|dimension" name="hh_gest_rulesWidth"/>
<attr format="reference|boolean" name="hh_gest_rounded"/>
<attr format="reference|float" name="hh_gest_aspect"/>
</declare-styleable><declare-styleable name="AnimatedStateListDrawableCompat">
<attr name="android:visible"/>
<attr name="android:variablePadding"/>
<attr name="android:constantSize"/>
<attr name="android:dither"/>
<attr name="android:enterFadeDuration"/>
<attr name="android:exitFadeDuration"/>
</declare-styleable><declare-styleable name="ColorStateListItem">
<attr name="android:color"/>
<attr format="float" name="alpha"/>
<attr name="android:alpha"/>
</declare-styleable><declare-styleable name="Spinner">
<attr name="android:prompt"/>
<attr name="popupTheme"/>
<attr name="android:popupBackground"/>
<attr name="android:dropDownWidth"/>
<attr name="android:entries"/>
</declare-styleable><declare-styleable name="HHGestureFrameLayout">
<attr name="hh_gest_movementAreaWidth"/>
<attr name="hh_gest_movementAreaHeight"/>
<attr name="hh_gest_minZoom"/>
<attr name="hh_gest_maxZoom"/>
<attr name="hh_gest_doubleTapZoom"/>
<attr name="hh_gest_overzoomFactor"/>
<attr name="hh_gest_overscrollX"/>
<attr name="hh_gest_overscrollY"/>
<attr name="hh_gest_fillViewport"/>
<attr name="hh_gest_gravity"/>
<attr name="hh_gest_fitMethod"/>
<attr name="hh_gest_boundsType"/>
<attr name="hh_gest_panEnabled"/>
<attr name="hh_gest_flingEnabled"/>
<attr name="hh_gest_zoomEnabled"/>
<attr name="hh_gest_rotationEnabled"/>
<attr name="hh_gest_restrictRotation"/>
<attr name="hh_gest_doubleTapEnabled"/>
<attr name="hh_gest_exitEnabled"/>
<attr name="hh_gest_animationDuration"/>
<attr name="hh_gest_disableGestures"/>
<attr name="hh_gest_disableBounds"/>
</declare-styleable><declare-styleable name="PopupWindow">
<attr format="boolean" name="overlapAnchor"/>
<attr name="android:popupBackground"/>
<attr name="android:popupAnimationStyle"/>
</declare-styleable><declare-styleable name="HHSDKEditTextView">
<attr format="integer" name="input_color"/>
</declare-styleable><declare-styleable name="SwitchButton">
<attr format="reference|dimension" name="sb_shadow_radius"/>
<attr format="reference|dimension" name="sb_shadow_offset"/>
<attr format="reference|color" name="sb_shadow_color"/>
<attr format="reference|color" name="sb_uncheck_color"/>
<attr format="reference|color" name="sb_checked_color"/>
<attr format="reference|dimension" name="sb_border_width"/>
<attr format="reference|color" name="sb_checkline_color"/>
<attr format="reference|dimension" name="sb_checkline_width"/>
<attr format="reference|color" name="sb_uncheckcircle_color"/>
<attr format="reference|dimension" name="sb_uncheckcircle_width"/>
<attr format="reference|dimension" name="sb_uncheckcircle_radius"/>
<attr format="reference|boolean" name="sb_checked"/>
<attr format="reference|boolean" name="sb_shadow_effect"/>
<attr format="reference|integer" name="sb_effect_duration"/>
<attr format="reference|color" name="sb_button_color"/>
<attr format="reference|boolean" name="sb_show_indicator"/>
<attr format="reference|color" name="sb_background"/>
<attr format="reference|boolean" name="sb_enable_effect"/>
</declare-styleable><declare-styleable name="DrawerArrowToggle">
<attr format="color" name="color"/>
<attr format="boolean" name="spinBars"/>
<attr format="dimension" name="drawableSize"/>
<attr format="dimension" name="gapBetweenBars"/>
<attr format="dimension" name="arrowHeadLength"/>
<attr format="dimension" name="arrowShaftLength"/>
<attr format="dimension" name="barLength"/>
<attr format="dimension" name="thickness"/>
</declare-styleable><declare-styleable name="ActionBarLayout">
<attr name="android:layout_gravity"/>
</declare-styleable><declare-styleable name="StateListDrawable">
<attr name="android:visible"/>
<attr name="android:variablePadding"/>
<attr name="android:constantSize"/>
<attr name="android:dither"/>
<attr name="android:enterFadeDuration"/>
<attr name="android:exitFadeDuration"/>
</declare-styleable><declare-styleable name="ActivityChooserView">
<attr format="string" name="initialActivityCount"/>
<attr format="reference" name="expandActivityOverflowButtonDrawable"/>
</declare-styleable><declare-styleable name="ViewStubCompat">
<attr name="android:layout"/>
<attr name="android:inflatedId"/>
<attr name="android:id"/>
</declare-styleable><declare-styleable name="ListPopupWindow">
<attr name="android:dropDownVerticalOffset"/>
<attr name="android:dropDownHorizontalOffset"/>
</declare-styleable><declare-styleable name="TextAppearance">
<attr name="android:textSize"/>
<attr name="android:textColor"/>
<attr name="android:textColorHint"/>
<attr name="android:textColorLink"/>
<attr name="android:textStyle"/>
<attr name="android:typeface"/>
<attr name="android:fontFamily"/>
<attr name="fontFamily"/>
<attr name="textAllCaps"/>
<attr name="android:shadowColor"/>
<attr name="android:shadowDy"/>
<attr name="android:shadowDx"/>
<attr name="android:shadowRadius"/>
</declare-styleable><declare-styleable name="MenuGroup">
<attr name="android:id"/>
<attr name="android:menuCategory"/>
<attr name="android:orderInCategory"/>
<attr name="android:checkableBehavior"/>
<attr name="android:visible"/>
<attr name="android:enabled"/>
</declare-styleable><declare-styleable name="FontFamily">
<attr format="string" name="fontProviderAuthority"/>
<attr format="string" name="fontProviderPackage"/>
<attr format="string" name="fontProviderQuery"/>
<attr format="reference" name="fontProviderCerts"/>
<attr name="fontProviderFetchStrategy">
<enum name="blocking" value="0"/>
<enum name="async" value="1"/>
</attr>
<attr format="integer" name="fontProviderFetchTimeout">
<enum name="forever" value="-1"/>
</attr>
</declare-styleable><declare-styleable name="Banner">
<attr format="integer" name="delay_time"/>
<attr format="integer" name="scroll_time"/>
<attr format="boolean" name="is_auto_play"/>
<attr format="color|reference" name="title_background"/>
<attr format="color" name="title_textcolor"/>
<attr format="dimension" name="title_textsize"/>
<attr format="dimension" name="title_height"/>
<attr format="dimension" name="indicator_width"/>
<attr format="dimension" name="indicator_height"/>
<attr format="dimension" name="indicator_selected_width"/>
<attr format="dimension" name="indicator_selected_height"/>
<attr format="dimension" name="indicator_margin"/>
<attr format="reference" name="indicator_drawable_selected"/>
<attr format="reference" name="indicator_drawable_unselected"/>
<attr format="reference" name="banner_layout"/>
<attr format="reference" name="banner_default_image"/>
<attr format="enum" name="image_scale_type">
<enum name="center" value="0"/>
<enum name="center_crop" value="1"/>
<enum name="center_inside" value="2"/>
<enum name="fit_center" value="3"/>
<enum name="fit_end" value="4"/>
<enum name="fit_start" value="5"/>
<enum name="fit_xy" value="6"/>
<enum name="matrix" value="7"/>
</attr>
</declare-styleable><declare-styleable name="MenuItem">
<attr name="android:id"/>
<attr name="android:menuCategory"/>
<attr name="android:orderInCategory"/>
<attr name="android:title"/>
<attr name="android:titleCondensed"/>
<attr name="android:icon"/>
<attr name="android:alphabeticShortcut"/>
<attr name="alphabeticModifiers">
<flag name="META" value="0x10000"/>
<flag name="CTRL" value="0x1000"/>
<flag name="ALT" value="0x02"/>
<flag name="SHIFT" value="0x1"/>
<flag name="SYM" value="0x4"/>
<flag name="FUNCTION" value="0x8"/>
</attr>
<attr name="android:numericShortcut"/>
<attr name="numericModifiers">
<flag name="META" value="0x10000"/>
<flag name="CTRL" value="0x1000"/>
<flag name="ALT" value="0x02"/>
<flag name="SHIFT" value="0x1"/>
<flag name="SYM" value="0x4"/>
<flag name="FUNCTION" value="0x8"/>
</attr>
<attr name="android:checkable"/>
<attr name="android:checked"/>
<attr name="android:visible"/>
<attr name="android:enabled"/>
<attr name="android:onClick"/>
<attr name="showAsAction">
<flag name="never" value="0"/>
<flag name="ifRoom" value="1"/>
<flag name="always" value="2"/>
<flag name="withText" value="4"/>
<flag name="collapseActionView" value="8"/>
</attr>
<attr format="reference" name="actionLayout"/>
<attr format="string" name="actionViewClass"/>
<attr format="string" name="actionProviderClass"/>
<attr format="string" name="contentDescription"/>
<attr format="string" name="tooltipText"/>
<attr format="color" name="iconTint"/>
<attr name="iconTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="ActionSheets">
<attr format="reference" name="actionSheetStyle"/>
</declare-styleable><declare-styleable name="pickerview">
<attr name="wheelview_gravity">
<enum name="center" value="17"/>
<enum name="left" value="3"/>
<enum name="right" value="5"/>
</attr>
<attr format="dimension" name="wheelview_textSize"/>
<attr format="color" name="wheelview_textColorOut"/>
<attr format="color" name="wheelview_textColorCenter"/>
<attr format="color" name="wheelview_dividerColor"/>
<attr format="dimension" name="wheelview_dividerWidth"/>
<attr format="float" name="wheelview_lineSpacingMultiplier"/>
</declare-styleable><declare-styleable name="AnimatedStateListDrawableTransition">
<attr name="android:fromId"/>
<attr name="android:toId"/>
<attr name="android:drawable"/>
<attr name="android:reversible"/>
</declare-styleable><declare-styleable name="View">
<attr format="dimension" name="paddingStart"/>
<attr format="dimension" name="paddingEnd"/>
<attr name="android:focusable"/>
<attr format="reference" name="theme"/>
<attr name="android:theme"/>
</declare-styleable><declare-styleable name="CoordinatorLayout">
<attr format="reference" name="keylines"/>
<attr format="color|reference" name="statusBarBackground"/>
</declare-styleable><declare-styleable name="FontFamilyFont">
<attr name="fontStyle">
<enum name="normal" value="0"/>
<enum name="italic" value="1"/>
</attr>
<attr format="reference" name="font"/>
<attr format="integer" name="fontWeight"/>
<attr format="string" name="fontVariationSettings"/>
<attr format="integer" name="ttcIndex"/>
<attr name="android:fontStyle"/>
<attr name="android:font"/>
<attr name="android:fontWeight"/>
<attr name="android:fontVariationSettings"/>
<attr name="android:ttcIndex"/>
</declare-styleable><declare-styleable name="LinearLayoutCompat">
<attr name="android:orientation"/>
<attr name="android:gravity"/>
<attr name="android:baselineAligned"/>
<attr name="android:baselineAlignedChildIndex"/>
<attr name="android:weightSum"/>
<attr format="boolean" name="measureWithLargestChild"/>
<attr name="divider"/>
<attr name="showDividers">
<flag name="none" value="0"/>
<flag name="beginning" value="1"/>
<flag name="middle" value="2"/>
<flag name="end" value="4"/>
</attr>
<attr format="dimension" name="dividerPadding"/>
</declare-styleable><declare-styleable name="SearchView">
<attr format="reference" name="layout"/>
<attr format="boolean" name="iconifiedByDefault"/>
<attr name="android:maxWidth"/>
<attr format="string" name="queryHint"/>
<attr format="string" name="defaultQueryHint"/>
<attr name="android:imeOptions"/>
<attr name="android:inputType"/>
<attr format="reference" name="closeIcon"/>
<attr format="reference" name="goIcon"/>
<attr format="reference" name="searchIcon"/>
<attr format="reference" name="searchHintIcon"/>
<attr format="reference" name="voiceIcon"/>
<attr format="reference" name="commitIcon"/>
<attr format="reference" name="suggestionRowLayout"/>
<attr format="reference" name="queryBackground"/>
<attr format="reference" name="submitBackground"/>
<attr name="android:focusable"/>
</declare-styleable><declare-styleable name="RecyclerView">
<attr format="string" name="layoutManager"/>
<eat-comment/>
<attr name="android:orientation"/>
<attr name="android:descendantFocusability"/>
<attr name="android:clipToPadding"/>
<attr format="integer" name="spanCount"/>
<attr format="boolean" name="reverseLayout"/>
<attr format="boolean" name="stackFromEnd"/>
<attr format="boolean" name="fastScrollEnabled"/>
<attr format="reference" name="fastScrollVerticalThumbDrawable"/>
<attr format="reference" name="fastScrollVerticalTrackDrawable"/>
<attr format="reference" name="fastScrollHorizontalThumbDrawable"/>
<attr format="reference" name="fastScrollHorizontalTrackDrawable"/>
</declare-styleable><declare-styleable name="ActionMenuView">
</declare-styleable><declare-styleable name="CompoundButton">
<attr name="android:button"/>
<attr format="color" name="buttonTint"/>
<attr name="buttonTintMode">
<enum name="src_over" value="3"/>
<enum name="src_in" value="5"/>
<enum name="src_atop" value="9"/>
<enum name="multiply" value="14"/>
<enum name="screen" value="15"/>
<enum name="add" value="16"/>
</attr>
</declare-styleable><declare-styleable name="AppCompatTextHelper">
<attr name="android:drawableLeft"/>
<attr name="android:drawableTop"/>
<attr name="android:drawableRight"/>
<attr name="android:drawableBottom"/>
<attr name="android:drawableStart"/>
<attr name="android:drawableEnd"/>
<attr name="android:textAppearance"/>
</declare-styleable></configuration></mergedItems></merger>