Newer
Older
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
com.infertux.nfcexplorer:styleable/ViewBackgroundHelper = 0x7f0f0064
com.infertux.nfcexplorer:styleable/Transition = 0x7f0f0061
com.infertux.nfcexplorer:styleable/Transform = 0x7f0f0060
com.infertux.nfcexplorer:styleable/TextAppearance = 0x7f0f005c
com.infertux.nfcexplorer:styleable/TabLayout = 0x7f0f005b
com.infertux.nfcexplorer:styleable/TabItem = 0x7f0f005a
com.infertux.nfcexplorer:styleable/SwitchCompat = 0x7f0f0059
com.infertux.nfcexplorer:styleable/StateListDrawable = 0x7f0f0056
com.infertux.nfcexplorer:styleable/Spinner = 0x7f0f0054
com.infertux.nfcexplorer:styleable/SearchView = 0x7f0f0051
com.infertux.nfcexplorer:styleable/ScrimInsetsFrameLayout = 0x7f0f004f
com.infertux.nfcexplorer:styleable/RecyclerView = 0x7f0f004e
com.infertux.nfcexplorer:styleable/PropertySet = 0x7f0f004c
com.infertux.nfcexplorer:styleable/PopupWindowBackgroundState = 0x7f0f004b
com.infertux.nfcexplorer:styleable/PopupWindow = 0x7f0f004a
com.infertux.nfcexplorer:styleable/OnClick = 0x7f0f0048
com.infertux.nfcexplorer:styleable/MotionScene = 0x7f0f0045
com.infertux.nfcexplorer:styleable/MotionLayout = 0x7f0f0044
com.infertux.nfcexplorer:styleable/MotionHelper = 0x7f0f0043
com.infertux.nfcexplorer:styleable/MockView = 0x7f0f0041
com.infertux.nfcexplorer:styleable/MaterialComponentsTheme = 0x7f0f003d
com.infertux.nfcexplorer:styleable/MaterialCardView = 0x7f0f003c
com.infertux.nfcexplorer:styleable/LinearLayoutCompat_Layout = 0x7f0f0039
com.infertux.nfcexplorer:styleable/LinearLayoutCompat = 0x7f0f0038
com.infertux.nfcexplorer:styleable/Layout = 0x7f0f0037
com.infertux.nfcexplorer:styleable/KeyFramesVelocity = 0x7f0f0033
com.infertux.nfcexplorer:styleable/KeyFrame = 0x7f0f0031
com.infertux.nfcexplorer:styleable/KeyCycle = 0x7f0f0030
com.infertux.nfcexplorer:styleable/GradientColorItem = 0x7f0f002d
com.infertux.nfcexplorer:styleable/GradientColor = 0x7f0f002c
com.infertux.nfcexplorer:styleable/FontFamily = 0x7f0f0029
com.infertux.nfcexplorer:styleable/FloatingActionButton_Behavior_Layout = 0x7f0f0027
com.infertux.nfcexplorer:styleable/CustomAttribute = 0x7f0f0023
com.infertux.nfcexplorer:styleable/CoordinatorLayout_Layout = 0x7f0f0022
com.infertux.nfcexplorer:styleable/ConstraintSet = 0x7f0f0020
com.infertux.nfcexplorer:styleable/ColorStateListItem = 0x7f0f001b
com.infertux.nfcexplorer:styleable/CollapsingToolbarLayout = 0x7f0f0019
com.infertux.nfcexplorer:styleable/BottomNavigationView = 0x7f0f0013
com.infertux.nfcexplorer:styleable/AppCompatTheme = 0x7f0f0011
com.infertux.nfcexplorer:styleable/AppBarLayout_Layout = 0x7f0f000c
com.infertux.nfcexplorer:styleable/AppBarLayout = 0x7f0f000a
com.infertux.nfcexplorer:styleable/AnimatedStateListDrawableTransition = 0x7f0f0009
com.infertux.nfcexplorer:styleable/AnimatedStateListDrawableItem = 0x7f0f0008
com.infertux.nfcexplorer:styleable/AnimatedStateListDrawableCompat = 0x7f0f0007
com.infertux.nfcexplorer:styleable/ActionMenuItemView = 0x7f0f0002
com.infertux.nfcexplorer:style/Widget.MaterialComponents.TextInputLayout.FilledBox = 0x7f0e01ea
com.infertux.nfcexplorer:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f0e01e8
com.infertux.nfcexplorer:style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f0e01e7
com.infertux.nfcexplorer:style/Widget.MaterialComponents.TextInputEditText.FilledBox = 0x7f0e01e6
com.infertux.nfcexplorer:style/Widget.MaterialComponents.TabLayout = 0x7f0e01e4
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Snackbar.FullWidth = 0x7f0e01e3
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Snackbar = 0x7f0e01e2
com.infertux.nfcexplorer:style/Widget.MaterialComponents.NavigationView = 0x7f0e01e1
com.infertux.nfcexplorer:style/Widget.MaterialComponents.ChipGroup = 0x7f0e01df
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Chip.Filter = 0x7f0e01de
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Chip.Choice = 0x7f0e01dc
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Chip.Action = 0x7f0e01db
com.infertux.nfcexplorer:style/Widget.MaterialComponents.CardView = 0x7f0e01da
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Button.TextButton.Dialog.Icon = 0x7f0e01d6
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Button.TextButton = 0x7f0e01d4
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Button.Icon = 0x7f0e01d1
com.infertux.nfcexplorer:style/Widget.MaterialComponents.BottomNavigationView = 0x7f0e01cd
com.infertux.nfcexplorer:style/Widget.MaterialComponents.BottomAppBar = 0x7f0e01cb
com.infertux.nfcexplorer:style/Widget.Design.TextInputLayout = 0x7f0e01ca
com.infertux.nfcexplorer:style/Widget.Design.NavigationView = 0x7f0e01c6
com.infertux.nfcexplorer:style/Widget.Design.FloatingActionButton = 0x7f0e01c5
com.infertux.nfcexplorer:style/Widget.Design.BottomSheet.Modal = 0x7f0e01c3
com.infertux.nfcexplorer:style/Widget.Design.AppBarLayout = 0x7f0e01c1
com.infertux.nfcexplorer:style/Widget.Compat.NotificationActionContainer = 0x7f0e01bf
com.infertux.nfcexplorer:style/Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0e01be
com.infertux.nfcexplorer:style/Widget.AppCompat.Toolbar = 0x7f0e01bd
com.infertux.nfcexplorer:style/Widget.AppCompat.Spinner.Underlined = 0x7f0e01bb
com.infertux.nfcexplorer:style/Widget.AppCompat.Spinner = 0x7f0e01b8
com.infertux.nfcexplorer:style/Widget.AppCompat.SeekBar.Discrete = 0x7f0e01b7
com.infertux.nfcexplorer:style/Widget.AppCompat.SearchView.ActionBar = 0x7f0e01b5
com.infertux.nfcexplorer:style/Widget.AppCompat.ProgressBar = 0x7f0e01af
com.infertux.nfcexplorer:style/Widget.AppCompat.ListView.Menu = 0x7f0e01ab
com.infertux.nfcexplorer:style/Widget.AppCompat.ListView = 0x7f0e01a9
com.infertux.nfcexplorer:style/Widget.AppCompat.ListPopupWindow = 0x7f0e01a8
com.infertux.nfcexplorer:style/Widget.AppCompat.ListMenuView = 0x7f0e01a7
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f0e01a6
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f0e01a4
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.PopupMenu = 0x7f0e01a3
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ListView.DropDown = 0x7f0e01a2
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ListPopupWindow = 0x7f0e01a1
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.DropDownItem.Spinner = 0x7f0e01a0
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.AutoCompleteTextView = 0x7f0e019f
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ActionBar.TabView.Inverse = 0x7f0e0199
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ActionBar.TabText = 0x7f0e0196
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse = 0x7f0e0195
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ActionBar.Solid.Inverse = 0x7f0e0193
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ActionBar.Solid = 0x7f0e0192
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ActionBar = 0x7f0e0191
com.infertux.nfcexplorer:style/Widget.Design.TabLayout = 0x7f0e01c9
com.infertux.nfcexplorer:style/Widget.AppCompat.ImageButton = 0x7f0e0190
com.infertux.nfcexplorer:style/Widget.AppCompat.EditText = 0x7f0e018f
com.infertux.nfcexplorer:style/Widget.AppCompat.DropDownItem.Spinner = 0x7f0e018e
com.infertux.nfcexplorer:style/Widget.AppCompat.DrawerArrowToggle = 0x7f0e018d
com.infertux.nfcexplorer:style/Widget.AppCompat.CompoundButton.Switch = 0x7f0e018c
com.infertux.nfcexplorer:style/Widget.AppCompat.CompoundButton.RadioButton = 0x7f0e018b
com.infertux.nfcexplorer:style/Widget.AppCompat.ButtonBar.AlertDialog = 0x7f0e0189
com.infertux.nfcexplorer:style/Widget.AppCompat.ButtonBar = 0x7f0e0188
com.infertux.nfcexplorer:style/Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f0e0185
com.infertux.nfcexplorer:style/Widget.AppCompat.Button.Borderless = 0x7f0e0183
com.infertux.nfcexplorer:style/Widget.AppCompat.AutoCompleteTextView = 0x7f0e0181
com.infertux.nfcexplorer:style/Widget.AppCompat.ActivityChooserView = 0x7f0e0180
com.infertux.nfcexplorer:style/Widget.AppCompat.ActionMode = 0x7f0e017f
com.infertux.nfcexplorer:style/Widget.AppCompat.ActionButton.CloseMode = 0x7f0e017d
com.infertux.nfcexplorer:style/Widget.AppCompat.ActionButton = 0x7f0e017c
com.infertux.nfcexplorer:style/Widget.AppCompat.ActionBar.TabBar = 0x7f0e0179
com.infertux.nfcexplorer:style/Widget.AppCompat.ActionBar = 0x7f0e0177
com.infertux.nfcexplorer:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f0e0174
com.infertux.nfcexplorer:style/ThemeOverlay.MaterialComponents.TextInputEditText = 0x7f0e0172
com.infertux.nfcexplorer:style/ThemeOverlay.MaterialComponents.Dialog = 0x7f0e016f
com.infertux.nfcexplorer:style/ThemeOverlay.MaterialComponents.Dark.ActionBar = 0x7f0e016e
com.infertux.nfcexplorer:style/ThemeOverlay.MaterialComponents.ActionBar = 0x7f0e016c
com.infertux.nfcexplorer:style/ThemeOverlay.AppCompat.Light = 0x7f0e016a
com.infertux.nfcexplorer:style/ThemeOverlay.AppCompat.Dialog.Alert = 0x7f0e0169
com.infertux.nfcexplorer:style/ThemeOverlay.AppCompat.Dialog = 0x7f0e0168
com.infertux.nfcexplorer:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0e0167
com.infertux.nfcexplorer:style/Theme.MaterialComponents.NoActionBar.Bridge = 0x7f0e0163
com.infertux.nfcexplorer:style/Theme.MaterialComponents.NoActionBar = 0x7f0e0162
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Light.NoActionBar.Bridge = 0x7f0e0161
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Light.Dialog.Alert = 0x7f0e015d
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Light.Dialog = 0x7f0e015c
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Light.DarkActionBar = 0x7f0e015a
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Light.Bridge = 0x7f0e0159
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Light.BottomSheetDialog = 0x7f0e0158
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Light = 0x7f0e0157
com.infertux.nfcexplorer:style/Theme.MaterialComponents.DialogWhenLarge = 0x7f0e0156
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Dialog.MinWidth = 0x7f0e0155
com.infertux.nfcexplorer:styleable/ScrollingViewBehavior_Layout = 0x7f0f0050
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Dialog.Alert = 0x7f0e0154
com.infertux.nfcexplorer:style/Theme.MaterialComponents.Dialog = 0x7f0e0153
com.infertux.nfcexplorer:style/Theme.MaterialComponents.BottomSheetDialog = 0x7f0e0150
com.infertux.nfcexplorer:style/Theme.MaterialComponents = 0x7f0e014f
com.infertux.nfcexplorer:style/Theme.Design.Light.NoActionBar = 0x7f0e014d
com.infertux.nfcexplorer:style/Theme.Design.Light.BottomSheetDialog = 0x7f0e014c
com.infertux.nfcexplorer:style/Theme.Design = 0x7f0e0149
com.infertux.nfcexplorer:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f0e0144
com.infertux.nfcexplorer:style/Theme.AppCompat.Light.Dialog = 0x7f0e0143
com.infertux.nfcexplorer:style/Theme.AppCompat.Light = 0x7f0e0141
com.infertux.nfcexplorer:style/Theme.AppCompat.Dialog.MinWidth = 0x7f0e013f
com.infertux.nfcexplorer:style/Theme.AppCompat.Dialog.Alert = 0x7f0e013e
com.infertux.nfcexplorer:style/Theme.AppCompat.Dialog = 0x7f0e013d
com.infertux.nfcexplorer:style/Theme.AppCompat.DayNight.NoActionBar = 0x7f0e013c
com.infertux.nfcexplorer:style/Theme.AppCompat.DayNight.DialogWhenLarge = 0x7f0e013b
com.infertux.nfcexplorer:styleable/AppCompatImageView = 0x7f0f000d
com.infertux.nfcexplorer:style/Theme.AppCompat.DayNight = 0x7f0e0136
com.infertux.nfcexplorer:style/Theme.AppCompat = 0x7f0e0134
com.infertux.nfcexplorer:style/TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f0e0133
com.infertux.nfcexplorer:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0e0131
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Subtitle2 = 0x7f0e012f
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Subtitle1 = 0x7f0e012e
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Overline = 0x7f0e012d
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Headline6 = 0x7f0e012c
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Headline3 = 0x7f0e0129
com.infertux.nfcexplorer:styleable/ViewStubCompat = 0x7f0f0065
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Headline2 = 0x7f0e0128
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Headline1 = 0x7f0e0127
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Button = 0x7f0e0124
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Body2 = 0x7f0e0123
com.infertux.nfcexplorer:style/TextAppearance.Design.Snackbar.Message = 0x7f0e0120
com.infertux.nfcexplorer:style/TextAppearance.Design.Hint = 0x7f0e011f
com.infertux.nfcexplorer:style/TextAppearance.Design.HelperText = 0x7f0e011e
com.infertux.nfcexplorer:style/TextAppearance.Design.Error = 0x7f0e011d
com.infertux.nfcexplorer:style/TextAppearance.Design.Counter.Overflow = 0x7f0e011c
com.infertux.nfcexplorer:style/TextAppearance.Design.Counter = 0x7f0e011b
com.infertux.nfcexplorer:style/TextAppearance.Design.CollapsingToolbar.Expanded = 0x7f0e011a
com.infertux.nfcexplorer:style/TextAppearance.Compat.Notification.Title = 0x7f0e0119
com.infertux.nfcexplorer:style/TextAppearance.Compat.Notification.Time = 0x7f0e0118
com.infertux.nfcexplorer:style/Widget.AppCompat.SearchView = 0x7f0e01b4
com.infertux.nfcexplorer:style/TextAppearance.Compat.Notification.Line2 = 0x7f0e0117
com.infertux.nfcexplorer:style/TextAppearance.Compat.Notification.Info = 0x7f0e0116
com.infertux.nfcexplorer:style/TextAppearance.Compat.Notification = 0x7f0e0115
com.infertux.nfcexplorer:style/Widget.AppCompat.RatingBar = 0x7f0e01b1
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f0e0114
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f0e0110
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f0e010e
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.Button.Colored = 0x7f0e010d
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse = 0x7f0e010a
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse = 0x7f0e0108
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0e0105
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f0e0104
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f0e0102
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Title.Inverse = 0x7f0e0100
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Title = 0x7f0e00ff
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Small.Inverse = 0x7f0e00fc
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Small = 0x7f0e00fb
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f0e00f9
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Menu = 0x7f0e00f8
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Medium.Inverse = 0x7f0e00f7
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0e00f4
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ActionMode.Inverse = 0x7f0e019d
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Light.SearchResult.Title = 0x7f0e00f3
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Large.Inverse = 0x7f0e00f1
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Large = 0x7f0e00f0
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Inverse = 0x7f0e00ef
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Display4 = 0x7f0e00ed
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Display2 = 0x7f0e00eb
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Caption = 0x7f0e00e9
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Button = 0x7f0e00e8
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.Button = 0x7f0e010b
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Body1 = 0x7f0e00e6
com.infertux.nfcexplorer:style/RtlUnderlay.Widget.AppCompat.ActionButton = 0x7f0e00e3
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon = 0x7f0e00e2
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Text = 0x7f0e00e1
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.Search.DropDown = 0x7f0e00dd
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Title = 0x7f0e00dc
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut = 0x7f0e00d9
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup = 0x7f0e00d8
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.PopupMenuItem = 0x7f0e00d7
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem = 0x7f0e00d5
com.infertux.nfcexplorer:style/Platform.Widget.AppCompat.Spinner = 0x7f0e00d3
com.infertux.nfcexplorer:style/Platform.V25.AppCompat = 0x7f0e00d1
com.infertux.nfcexplorer:style/Platform.V21.AppCompat.Light = 0x7f0e00d0
com.infertux.nfcexplorer:style/Platform.V21.AppCompat = 0x7f0e00cf
com.infertux.nfcexplorer:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f0e00ce
com.infertux.nfcexplorer:style/Platform.ThemeOverlay.AppCompat.Dark = 0x7f0e00cd
com.infertux.nfcexplorer:style/Platform.MaterialComponents.Light = 0x7f0e00ca
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Button.OutlinedButton = 0x7f0e01d2
com.infertux.nfcexplorer:style/Platform.MaterialComponents.Dialog = 0x7f0e00c9
com.infertux.nfcexplorer:style/Platform.MaterialComponents = 0x7f0e00c8
com.infertux.nfcexplorer:style/Platform.AppCompat.Light = 0x7f0e00c7
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f0e0109
com.infertux.nfcexplorer:style/Platform.AppCompat = 0x7f0e00c6
com.infertux.nfcexplorer:style/CardView.Light = 0x7f0e00c5
com.infertux.nfcexplorer:style/CardView.Dark = 0x7f0e00c4
com.infertux.nfcexplorer:style/CardView = 0x7f0e00c3
com.infertux.nfcexplorer:style/Base.Widget.MaterialComponents.TextInputEditText = 0x7f0e00c1
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0e00be
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Toolbar = 0x7f0e00bd
com.infertux.nfcexplorer:style/Widget.Design.ScrimInsetsFrameLayout = 0x7f0e01c7
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.TextView.SpinnerItem = 0x7f0e00bc
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f0e00bb
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Spinner = 0x7f0e00ba
com.infertux.nfcexplorer:style/Theme.Design.BottomSheetDialog = 0x7f0e014a
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.SeekBar = 0x7f0e00b8
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.SearchView.ActionBar = 0x7f0e00b7
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.SearchView = 0x7f0e00b6
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.RatingBar.Small = 0x7f0e00b5
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.RatingBar.Indicator = 0x7f0e00b4
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ProgressBar.Horizontal = 0x7f0e00b2
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ProgressBar = 0x7f0e00b1
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.PopupMenu.Overflow = 0x7f0e00af
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.PopupMenu = 0x7f0e00ae
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ListView.Menu = 0x7f0e00ad
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 = 0x7f0e00df
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ListView = 0x7f0e00ab
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ListPopupWindow = 0x7f0e00aa
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ListMenuView = 0x7f0e00a9
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Light.PopupMenu = 0x7f0e00a7
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Light.ActionBar.TabView = 0x7f0e00a6
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f0e00a5
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Light.ActionBar.Solid = 0x7f0e00a2
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Light.ActionBar = 0x7f0e00a1
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ImageButton = 0x7f0e00a0
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Chip = 0x7f0e0126
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.EditText = 0x7f0e009f
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.CompoundButton.RadioButton = 0x7f0e009a
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ButtonBar.AlertDialog = 0x7f0e0098
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ButtonBar = 0x7f0e0097
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Button.Borderless.Colored = 0x7f0e0093
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Button.Borderless = 0x7f0e0092
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.AutoCompleteTextView = 0x7f0e0090
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ActivityChooserView = 0x7f0e008f
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ActionButton.CloseMode = 0x7f0e008c
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ActionButton = 0x7f0e008b
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ActionBar.TabBar = 0x7f0e0088
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ActionBar = 0x7f0e0086
com.infertux.nfcexplorer:style/Base.V7.Widget.AppCompat.EditText = 0x7f0e0084
com.infertux.nfcexplorer:style/Base.V7.Widget.AppCompat.AutoCompleteTextView = 0x7f0e0083
com.infertux.nfcexplorer:style/Base.V7.ThemeOverlay.AppCompat.Dialog = 0x7f0e0082
com.infertux.nfcexplorer:style/Base.V7.Theme.AppCompat.Light.Dialog = 0x7f0e0081
com.infertux.nfcexplorer:style/Base.V7.Theme.AppCompat.Light = 0x7f0e0080
com.infertux.nfcexplorer:styleable/Toolbar = 0x7f0f005f
com.infertux.nfcexplorer:style/Base.V7.Theme.AppCompat.Dialog = 0x7f0e007f
com.infertux.nfcexplorer:styleable/MenuItem = 0x7f0f003f
com.infertux.nfcexplorer:style/Base.V7.Theme.AppCompat = 0x7f0e007e
com.infertux.nfcexplorer:style/Base.V28.Theme.AppCompat.Light = 0x7f0e007d
com.infertux.nfcexplorer:style/Base.V28.Theme.AppCompat = 0x7f0e007c
com.infertux.nfcexplorer:style/Base.V26.Theme.AppCompat.Light = 0x7f0e007a
com.infertux.nfcexplorer:style/Base.V23.Theme.AppCompat.Light = 0x7f0e0078
com.infertux.nfcexplorer:style/Base.V22.Theme.AppCompat.Light = 0x7f0e0076
com.infertux.nfcexplorer:style/Base.V22.Theme.AppCompat = 0x7f0e0075
com.infertux.nfcexplorer:style/Base.V21.Theme.AppCompat.Light = 0x7f0e0072
com.infertux.nfcexplorer:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 = 0x7f0e00de
com.infertux.nfcexplorer:style/Base.V21.Theme.AppCompat.Dialog = 0x7f0e0071
com.infertux.nfcexplorer:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f0e006f
com.infertux.nfcexplorer:style/Base.V14.Theme.MaterialComponents.Light.Bridge = 0x7f0e006b
com.infertux.nfcexplorer:style/Base.V14.Theme.MaterialComponents.Dialog = 0x7f0e0069
com.infertux.nfcexplorer:style/Base.V14.Theme.MaterialComponents.Bridge = 0x7f0e0068
com.infertux.nfcexplorer:style/Base.ThemeOverlay.AppCompat.Light = 0x7f0e0064
com.infertux.nfcexplorer:style/Base.ThemeOverlay.AppCompat.Dark = 0x7f0e0060
com.infertux.nfcexplorer:style/Base.ThemeOverlay.AppCompat = 0x7f0e005e
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f0e005b
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.Light.Dialog = 0x7f0e0059
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.Button.Small = 0x7f0e0096
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f0e0058
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.Light.Bridge = 0x7f0e0056
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.DialogWhenLarge = 0x7f0e0054
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.Dialog.MinWidth = 0x7f0e0053
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.Dialog = 0x7f0e0050
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.CompactMenu = 0x7f0e004f
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.Bridge = 0x7f0e004e
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents = 0x7f0e004d
com.infertux.nfcexplorer:style/ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f0e0170
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Light.Dialog.MinWidth = 0x7f0e004b
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Light.Dialog.Alert = 0x7f0e0049
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Light.Dialog = 0x7f0e0048
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Light.DarkActionBar = 0x7f0e0047
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Light = 0x7f0e0046
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f0e0044
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f0e0043
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Dialog.Alert = 0x7f0e0042
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Dialog = 0x7f0e0041
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.CompactMenu = 0x7f0e0040
com.infertux.nfcexplorer:style/Base.Theme.AppCompat = 0x7f0e003f
com.infertux.nfcexplorer:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f0e003e
com.infertux.nfcexplorer:style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0e003c
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.Switch = 0x7f0e003a
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0e0039
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f0e0037
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f0e0035
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.Button.Colored = 0x7f0e0034
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f0e0033
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.Button = 0x7f0e0032
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f0e0030
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f0e002f
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0e002e
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f0e002c
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Tooltip = 0x7f0e002a
com.infertux.nfcexplorer:attr/buttonBarPositiveButtonStyle = 0x7f030059
com.infertux.nfcexplorer:dimen/design_fab_translation_z_hovered_focused = 0x7f06006a
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.SearchResult.Title = 0x7f0e0023
com.infertux.nfcexplorer:style/ThemeOverlay.AppCompat = 0x7f0e0164
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f0e0022
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f0e0111
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.SearchResult = 0x7f0e0021
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Medium = 0x7f0e001e
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f0e001d
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0e001c
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Large.Inverse = 0x7f0e001b
com.infertux.nfcexplorer:style/Base.V14.Theme.MaterialComponents = 0x7f0e0067
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Display2 = 0x7f0e0015
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Headline = 0x7f0e0018
com.infertux.nfcexplorer:styleable/SnackbarLayout = 0x7f0f0053
com.infertux.nfcexplorer:attr/iconStartPadding = 0x7f03012f
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Display1 = 0x7f0e0014
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Caption = 0x7f0e0013
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Button = 0x7f0e0012
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Body2 = 0x7f0e0011
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Body1 = 0x7f0e0010
com.infertux.nfcexplorer:attr/actionViewClass = 0x7f030020
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat = 0x7f0e000f
com.infertux.nfcexplorer:styleable/BottomSheetBehavior_Layout = 0x7f0f0014
com.infertux.nfcexplorer:style/Base.DialogWindowTitleBackground.AppCompat = 0x7f0e000e
com.infertux.nfcexplorer:style/Base.AlertDialog.AppCompat.Light = 0x7f0e0008
com.infertux.nfcexplorer:style/Animation.AppCompat.Dialog = 0x7f0e0002
com.infertux.nfcexplorer:style/AlertDialog.AppCompat = 0x7f0e0000
com.infertux.nfcexplorer:style/Theme.AppCompat.DayNight.Dialog.Alert = 0x7f0e0139
com.infertux.nfcexplorer:string/status_bar_notification_info_overflow = 0x7f0d0036
com.infertux.nfcexplorer:style/Widget.Support.CoordinatorLayout = 0x7f0e01ef
com.infertux.nfcexplorer:string/path_password_eye = 0x7f0d0031
com.infertux.nfcexplorer:dimen/cardview_compat_inset_shadow = 0x7f06004d
com.infertux.nfcexplorer:string/mtrl_chip_close_icon_content_description = 0x7f0d002f
com.infertux.nfcexplorer:attr/crossfade = 0x7f0300b9
com.infertux.nfcexplorer:string/app_name = 0x7f0d0027
com.infertux.nfcexplorer:attr/helperTextTextAppearance = 0x7f030120
com.infertux.nfcexplorer:id/META = 0x7f080003
com.infertux.nfcexplorer:string/abc_searchview_description_search = 0x7f0d0021
com.infertux.nfcexplorer:string/abc_searchview_description_query = 0x7f0d0020
com.infertux.nfcexplorer:dimen/compat_button_inset_horizontal_material = 0x7f060050
com.infertux.nfcexplorer:string/abc_searchview_description_clear = 0x7f0d001f
com.infertux.nfcexplorer:styleable/AppCompatTextHelper = 0x7f0f000f
com.infertux.nfcexplorer:string/abc_menu_space_shortcut_label = 0x7f0d001b
com.infertux.nfcexplorer:id/CTRL = 0x7f080001
com.infertux.nfcexplorer:string/abc_menu_shift_shortcut_label = 0x7f0d001a
com.infertux.nfcexplorer:attr/title = 0x7f030264
com.infertux.nfcexplorer:string/abc_menu_meta_shortcut_label = 0x7f0d0019
com.infertux.nfcexplorer:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox = 0x7f0e01ec
com.infertux.nfcexplorer:string/abc_menu_function_shortcut_label = 0x7f0d0018
com.infertux.nfcexplorer:string/abc_menu_enter_shortcut_label = 0x7f0d0017
com.infertux.nfcexplorer:id/snackbar_text = 0x7f0800d2
com.infertux.nfcexplorer:string/abc_menu_alt_shortcut_label = 0x7f0d0014
com.infertux.nfcexplorer:attr/actionBarPopupTheme = 0x7f030002
com.infertux.nfcexplorer:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f07003a
com.infertux.nfcexplorer:id/standard = 0x7f0800de
com.infertux.nfcexplorer:string/abc_font_family_title_material = 0x7f0d0013
com.infertux.nfcexplorer:string/abc_font_family_display_2_material = 0x7f0d000d
com.infertux.nfcexplorer:string/abc_font_family_caption_material = 0x7f0d000b
com.infertux.nfcexplorer:drawable/notification_bg_low_pressed = 0x7f07006c
com.infertux.nfcexplorer:string/abc_font_family_button_material = 0x7f0d000a
com.infertux.nfcexplorer:string/abc_font_family_body_1_material = 0x7f0d0008
com.infertux.nfcexplorer:string/abc_capital_on = 0x7f0d0007
com.infertux.nfcexplorer:style/Base.CardView = 0x7f0e000c
com.infertux.nfcexplorer:string/abc_capital_off = 0x7f0d0006
com.infertux.nfcexplorer:id/icon_group = 0x7f08007a
com.infertux.nfcexplorer:string/abc_activitychooserview_choose_application = 0x7f0d0005
com.infertux.nfcexplorer:string/abc_activity_chooser_view_see_all = 0x7f0d0004
com.infertux.nfcexplorer:string/abc_action_bar_home_description = 0x7f0d0000
com.infertux.nfcexplorer:layout/support_simple_spinner_dropdown_item = 0x7f0b0039
com.infertux.nfcexplorer:layout/select_dialog_item_material = 0x7f0b0036
com.infertux.nfcexplorer:layout/notification_action_tombstone = 0x7f0b0031
com.infertux.nfcexplorer:layout/mtrl_layout_snackbar_include = 0x7f0b002f
com.infertux.nfcexplorer:layout/mtrl_layout_snackbar = 0x7f0b002e
com.infertux.nfcexplorer:style/Base.V14.Theme.MaterialComponents.Light.Dialog = 0x7f0e006d
com.infertux.nfcexplorer:dimen/abc_action_button_min_width_material = 0x7f06000e
com.infertux.nfcexplorer:layout/list_group = 0x7f0b002c
com.infertux.nfcexplorer:style/Base.AlertDialog.AppCompat = 0x7f0e0007
com.infertux.nfcexplorer:layout/design_navigation_menu_item = 0x7f0b002a
com.infertux.nfcexplorer:layout/design_navigation_item_separator = 0x7f0b0027
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.Dialog.FixedSize = 0x7f0e0052
com.infertux.nfcexplorer:layout/design_navigation_item = 0x7f0b0025
com.infertux.nfcexplorer:layout/design_layout_snackbar_include = 0x7f0b0021
com.infertux.nfcexplorer:layout/design_layout_snackbar = 0x7f0b0020
com.infertux.nfcexplorer:layout/design_bottom_sheet_dialog = 0x7f0b001f
com.infertux.nfcexplorer:attr/attributeName = 0x7f03002f
com.infertux.nfcexplorer:color/abc_search_url_text_selected = 0x7f05000f
com.infertux.nfcexplorer:style/Base.Animation.AppCompat.Dialog = 0x7f0e0009
com.infertux.nfcexplorer:layout/activity_main = 0x7f0b001d
com.infertux.nfcexplorer:layout/abc_select_dialog_material = 0x7f0b001a
com.infertux.nfcexplorer:layout/abc_expanded_menu_layout = 0x7f0b000d
com.infertux.nfcexplorer:layout/abc_screen_toolbar = 0x7f0b0017
com.infertux.nfcexplorer:attr/tabIconTintMode = 0x7f030225
com.infertux.nfcexplorer:layout/abc_screen_content_include = 0x7f0b0014
com.infertux.nfcexplorer:attr/behavior_overlapTop = 0x7f030043
com.infertux.nfcexplorer:layout/abc_popup_menu_header_item_layout = 0x7f0b0012
com.infertux.nfcexplorer:dimen/abc_dialog_title_divider_material = 0x7f060026
com.infertux.nfcexplorer:layout/abc_list_menu_item_layout = 0x7f0b0010
com.infertux.nfcexplorer:layout/abc_list_menu_item_checkbox = 0x7f0b000e
com.infertux.nfcexplorer:layout/abc_dialog_title_material = 0x7f0b000c
com.infertux.nfcexplorer:style/Base.V26.Widget.AppCompat.Toolbar = 0x7f0e007b
com.infertux.nfcexplorer:layout/abc_cascading_menu_item_layout = 0x7f0b000b
com.infertux.nfcexplorer:dimen/design_fab_translation_z_pressed = 0x7f06006b
com.infertux.nfcexplorer:layout/abc_alert_dialog_material = 0x7f0b0009
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ActivityChooserView = 0x7f0e019e
com.infertux.nfcexplorer:layout/abc_alert_dialog_button_bar_material = 0x7f0b0008
com.infertux.nfcexplorer:layout/abc_action_bar_title_item = 0x7f0b0000
com.infertux.nfcexplorer:integer/status_bar_notification_info_maxnum = 0x7f09000e
com.infertux.nfcexplorer:styleable/KeyAttribute = 0x7f0f002f
com.infertux.nfcexplorer:attr/fontProviderFetchStrategy = 0x7f030111
com.infertux.nfcexplorer:drawable/$avd_show_password__2 = 0x7f070005
com.infertux.nfcexplorer:integer/show_password_duration = 0x7f09000d
com.infertux.nfcexplorer:integer/mtrl_chip_anim_duration = 0x7f09000b
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Menu = 0x7f0e0020
com.infertux.nfcexplorer:integer/mtrl_btn_anim_duration_ms = 0x7f09000a
com.infertux.nfcexplorer:integer/mtrl_btn_anim_delay_ms = 0x7f090009
com.infertux.nfcexplorer:attr/windowFixedHeightMinor = 0x7f030291
com.infertux.nfcexplorer:integer/config_tooltipAnimTime = 0x7f090005
com.infertux.nfcexplorer:id/wrap_content = 0x7f08010e
com.infertux.nfcexplorer:drawable/abc_ic_arrow_drop_right_black_24dp = 0x7f07001a
com.infertux.nfcexplorer:id/wrap = 0x7f08010d
com.infertux.nfcexplorer:id/visible = 0x7f08010b
com.infertux.nfcexplorer:id/uniform = 0x7f080106
com.infertux.nfcexplorer:dimen/mtrl_btn_inset = 0x7f0600a1
com.infertux.nfcexplorer:id/triangle = 0x7f080105
com.infertux.nfcexplorer:id/transitionToStart = 0x7f0800ff
com.infertux.nfcexplorer:id/transitionToEnd = 0x7f0800fe
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Medium = 0x7f0e00f6
com.infertux.nfcexplorer:id/top = 0x7f0800fb
com.infertux.nfcexplorer:id/toggle = 0x7f0800fa
com.infertux.nfcexplorer:id/text_input_password_toggle = 0x7f0800f2
com.infertux.nfcexplorer:attr/transitionFlags = 0x7f03027d
com.infertux.nfcexplorer:id/textStart = 0x7f0800f1
com.infertux.nfcexplorer:id/textSpacerNoButtons = 0x7f0800ef
com.infertux.nfcexplorer:id/tabMode = 0x7f0800e9
com.infertux.nfcexplorer:styleable/Motion = 0x7f0f0042
com.infertux.nfcexplorer:id/notification_background = 0x7f08009c
com.infertux.nfcexplorer:id/submit_button = 0x7f0800e8
com.infertux.nfcexplorer:attr/customStringValue = 0x7f0300c4
com.infertux.nfcexplorer:id/submit_area = 0x7f0800e7
com.infertux.nfcexplorer:attr/contentPaddingTop = 0x7f0300af
com.infertux.nfcexplorer:string/abc_menu_delete_shortcut_label = 0x7f0d0016
com.infertux.nfcexplorer:attr/thumbTintMode = 0x7f03025e
com.infertux.nfcexplorer:id/stop = 0x7f0800e4
com.infertux.nfcexplorer:id/staticPostLayout = 0x7f0800e3
com.infertux.nfcexplorer:style/Widget.AppCompat.PopupWindow = 0x7f0e01ae
com.infertux.nfcexplorer:id/startHorizontal = 0x7f0800e0
com.infertux.nfcexplorer:dimen/design_snackbar_padding_vertical_2lines = 0x7f06007c
com.infertux.nfcexplorer:layout/select_dialog_singlechoice_material = 0x7f0b0038
com.infertux.nfcexplorer:id/src_over = 0x7f0800dd
com.infertux.nfcexplorer:id/src_atop = 0x7f0800db
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Body1 = 0x7f0e0122
com.infertux.nfcexplorer:id/spread = 0x7f0800d8
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.DropDownItem.Spinner = 0x7f0e009e
com.infertux.nfcexplorer:attr/overlapAnchor = 0x7f0301c3
com.infertux.nfcexplorer:layout/design_layout_tab_text = 0x7f0b0023
com.infertux.nfcexplorer:id/spline = 0x7f0800d6
com.infertux.nfcexplorer:attr/fabCradleVerticalOffset = 0x7f0300f0
com.infertux.nfcexplorer:id/snap = 0x7f0800d3
com.infertux.nfcexplorer:string/abc_searchview_description_submit = 0x7f0d0022
com.infertux.nfcexplorer:id/textSpacerNoTitle = 0x7f0800f0
com.infertux.nfcexplorer:id/smallLabel = 0x7f0800d0
com.infertux.nfcexplorer:id/line3 = 0x7f08008a
com.infertux.nfcexplorer:id/showCustom = 0x7f0800cc
com.infertux.nfcexplorer:id/selected = 0x7f0800ca
com.infertux.nfcexplorer:styleable/KeyTimeCycle = 0x7f0f0035
com.infertux.nfcexplorer:attr/buttonBarStyle = 0x7f03005a
com.infertux.nfcexplorer:id/search_mag_icon = 0x7f0800c5
com.infertux.nfcexplorer:id/search_go_btn = 0x7f0800c4
com.infertux.nfcexplorer:string/abc_menu_ctrl_shortcut_label = 0x7f0d0015
com.infertux.nfcexplorer:id/search_close_btn = 0x7f0800c2
com.infertux.nfcexplorer:string/abc_font_family_display_3_material = 0x7f0d000e
com.infertux.nfcexplorer:id/search_button = 0x7f0800c1
com.infertux.nfcexplorer:layout/design_menu_item_action_area = 0x7f0b0024
com.infertux.nfcexplorer:drawable/abc_btn_borderless_material = 0x7f070008
com.infertux.nfcexplorer:id/search_badge = 0x7f0800bf
com.infertux.nfcexplorer:id/scrollIndicatorUp = 0x7f0800bc
com.infertux.nfcexplorer:id/scrollIndicatorDown = 0x7f0800bb
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.DrawerArrowToggle.Common = 0x7f0e009d
com.infertux.nfcexplorer:id/scroll = 0x7f0800ba
com.infertux.nfcexplorer:id/save_scale_type = 0x7f0800b7
com.infertux.nfcexplorer:layout/abc_screen_simple = 0x7f0b0015
com.infertux.nfcexplorer:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f0e0175
com.infertux.nfcexplorer:id/save_non_transition_alpha = 0x7f0800b6
com.infertux.nfcexplorer:id/save_image_matrix = 0x7f0800b5
com.infertux.nfcexplorer:attr/chipSpacingVertical = 0x7f03007c
com.infertux.nfcexplorer:id/right_side = 0x7f0800b4
com.infertux.nfcexplorer:id/reverseSawtooth = 0x7f0800b1
com.infertux.nfcexplorer:id/rectangles = 0x7f0800b0
com.infertux.nfcexplorer:id/tag_unhandled_key_event_manager = 0x7f0800eb
com.infertux.nfcexplorer:id/ratio = 0x7f0800af
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Title = 0x7f0e0028
com.infertux.nfcexplorer:id/radio = 0x7f0800ae
com.infertux.nfcexplorer:style/Theme.AppCompat.DialogWhenLarge = 0x7f0e0140
com.infertux.nfcexplorer:id/progress_horizontal = 0x7f0800ad
com.infertux.nfcexplorer:animator/design_appbar_state_list_animator = 0x7f020000
com.infertux.nfcexplorer:drawable/abc_list_selector_holo_dark = 0x7f070038
com.infertux.nfcexplorer:id/progress_circular = 0x7f0800ac
com.infertux.nfcexplorer:dimen/abc_search_view_preferred_width = 0x7f060034
com.infertux.nfcexplorer:dimen/abc_seekbar_track_background_height_material = 0x7f060035
com.infertux.nfcexplorer:id/postLayout = 0x7f0800ab
com.infertux.nfcexplorer:attr/fontFamily = 0x7f03010e
com.infertux.nfcexplorer:layout/notification_template_part_time = 0x7f0b0035
com.infertux.nfcexplorer:id/pin = 0x7f0800a9
com.infertux.nfcexplorer:attr/actionButtonStyle = 0x7f03000b
com.infertux.nfcexplorer:layout/notification_template_custom_big = 0x7f0b0032
com.infertux.nfcexplorer:attr/state_above_anchor = 0x7f03020d
com.infertux.nfcexplorer:attr/bottomSheetStyle = 0x7f03004b
com.infertux.nfcexplorer:id/percent = 0x7f0800a8
com.infertux.nfcexplorer:dimen/mtrl_btn_padding_left = 0x7f0600a4
com.infertux.nfcexplorer:id/asConfigured = 0x7f080025
com.infertux.nfcexplorer:id/pathRelative = 0x7f0800a7
com.infertux.nfcexplorer:id/parent_matrix = 0x7f0800a5
com.infertux.nfcexplorer:id/parentRelative = 0x7f0800a4
com.infertux.nfcexplorer:id/parent = 0x7f0800a2
com.infertux.nfcexplorer:attr/path_percent = 0x7f0301d2
com.infertux.nfcexplorer:id/outline = 0x7f08009f
com.infertux.nfcexplorer:id/notification_main_column = 0x7f08009d
com.infertux.nfcexplorer:id/normal = 0x7f08009b
com.infertux.nfcexplorer:id/none = 0x7f08009a
com.infertux.nfcexplorer:id/navigation_header_container = 0x7f080098
com.infertux.nfcexplorer:attr/layout_constraintBottom_creator = 0x7f030155
com.infertux.nfcexplorer:style/Animation.AppCompat.DropDownUp = 0x7f0e0003
com.infertux.nfcexplorer:style/Base.Theme.AppCompat.Light.DialogWhenLarge = 0x7f0e004c
com.infertux.nfcexplorer:attr/expandedTitleGravity = 0x7f0300e6
com.infertux.nfcexplorer:id/mtrl_internal_children_alpha_tag = 0x7f080095
com.infertux.nfcexplorer:style/Base.V21.Theme.AppCompat = 0x7f0e0070
com.infertux.nfcexplorer:id/mtrl_child_content_container = 0x7f080094
com.infertux.nfcexplorer:id/message = 0x7f080090
com.infertux.nfcexplorer:string/password_toggle_content_description = 0x7f0d0030
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.DrawerArrowToggle = 0x7f0e009c
com.infertux.nfcexplorer:id/masked = 0x7f08008f
com.infertux.nfcexplorer:id/list_item = 0x7f08008e
com.infertux.nfcexplorer:attr/commitIcon = 0x7f03009c
com.infertux.nfcexplorer:id/listTitle = 0x7f08008d
com.infertux.nfcexplorer:id/time = 0x7f0800f6
com.infertux.nfcexplorer:id/left = 0x7f080088
com.infertux.nfcexplorer:id/jumpToStart = 0x7f080084
com.infertux.nfcexplorer:attr/maxVelocity = 0x7f0301a1
com.infertux.nfcexplorer:id/italic = 0x7f080081
com.infertux.nfcexplorer:attr/chipIcon = 0x7f030074
com.infertux.nfcexplorer:id/ignoreRequest = 0x7f08007d
com.infertux.nfcexplorer:id/ifRoom = 0x7f08007b
com.infertux.nfcexplorer:id/honorRequest = 0x7f080078
com.infertux.nfcexplorer:id/homeAsUp = 0x7f080077
com.infertux.nfcexplorer:id/groups = 0x7f080075
com.infertux.nfcexplorer:id/grouping = 0x7f080074
com.infertux.nfcexplorer:id/graph_wrap = 0x7f080072
com.infertux.nfcexplorer:id/gone = 0x7f080070
com.infertux.nfcexplorer:id/forever = 0x7f08006e
com.infertux.nfcexplorer:color/accent_material_dark = 0x7f050018
com.infertux.nfcexplorer:id/fill = 0x7f080068
com.infertux.nfcexplorer:attr/actionBarStyle = 0x7f030005
com.infertux.nfcexplorer:id/group_divider = 0x7f080073
com.infertux.nfcexplorer:style/Base.Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f0e005c
com.infertux.nfcexplorer:attr/listMenuViewStyle = 0x7f030191
com.infertux.nfcexplorer:attr/switchMinWidth = 0x7f03021d
com.infertux.nfcexplorer:id/expanded_menu = 0x7f080067
com.infertux.nfcexplorer:id/expandedListItem = 0x7f080066
com.infertux.nfcexplorer:drawable/abc_seekbar_tick_mark_material = 0x7f070045
com.infertux.nfcexplorer:id/enterAlwaysCollapsed = 0x7f080062
com.infertux.nfcexplorer:id/end = 0x7f080060
com.infertux.nfcexplorer:id/submenuarrow = 0x7f0800e6
com.infertux.nfcexplorer:styleable/BottomAppBar = 0x7f0f0012
com.infertux.nfcexplorer:id/easeOut = 0x7f08005e
com.infertux.nfcexplorer:id/dragUp = 0x7f08005b
com.infertux.nfcexplorer:attr/buttonTintMode = 0x7f030061
com.infertux.nfcexplorer:color/cardview_light_background = 0x7f050027
com.infertux.nfcexplorer:id/dragRight = 0x7f080059
com.infertux.nfcexplorer:id/dragDown = 0x7f080056
com.infertux.nfcexplorer:id/disableScroll = 0x7f080055
com.infertux.nfcexplorer:id/chains = 0x7f080038
com.infertux.nfcexplorer:id/disableHome = 0x7f080053
com.infertux.nfcexplorer:id/dimensions = 0x7f080051
com.infertux.nfcexplorer:id/design_menu_item_text = 0x7f08004f
com.infertux.nfcexplorer:dimen/abc_alert_dialog_button_bar_height = 0x7f060010
com.infertux.nfcexplorer:id/design_menu_item_action_area = 0x7f08004d
com.infertux.nfcexplorer:string/abc_action_menu_overflow_description = 0x7f0d0002
com.infertux.nfcexplorer:id/search_edit_frame = 0x7f0800c3
com.infertux.nfcexplorer:id/design_bottom_sheet = 0x7f08004c
com.infertux.nfcexplorer:animator/mtrl_btn_unelevated_state_list_anim = 0x7f020004
com.infertux.nfcexplorer:id/deltaRelative = 0x7f08004a
com.infertux.nfcexplorer:id/default_activity_button = 0x7f080049
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Display3 = 0x7f0e00ec
com.infertux.nfcexplorer:id/shortcut = 0x7f0800cb
com.infertux.nfcexplorer:id/item_touch_helper_previous_elevation = 0x7f080082
com.infertux.nfcexplorer:id/custom = 0x7f080044
com.infertux.nfcexplorer:attr/clickAction = 0x7f030083
com.infertux.nfcexplorer:string/character_counter_pattern = 0x7f0d002b
com.infertux.nfcexplorer:id/flip = 0x7f08006d
com.infertux.nfcexplorer:id/container = 0x7f08003e
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Title.Inverse = 0x7f0e0029
com.infertux.nfcexplorer:id/clip_vertical = 0x7f08003c
com.infertux.nfcexplorer:id/clip_horizontal = 0x7f08003b
com.infertux.nfcexplorer:id/chronometer = 0x7f08003a
com.infertux.nfcexplorer:style/Theme.MaterialComponents.CompactMenu = 0x7f0e0152
com.infertux.nfcexplorer:id/chain = 0x7f080037
com.infertux.nfcexplorer:drawable/abc_switch_thumb_material = 0x7f070049
com.infertux.nfcexplorer:id/center_vertical = 0x7f080036
com.infertux.nfcexplorer:id/cache_measures = 0x7f080033
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f0e00f5
com.infertux.nfcexplorer:id/buttonPanel = 0x7f080032
com.infertux.nfcexplorer:style/Base.ThemeOverlay.AppCompat.ActionBar = 0x7f0e005f
com.infertux.nfcexplorer:id/bottom = 0x7f080030
com.infertux.nfcexplorer:id/async = 0x7f080026
com.infertux.nfcexplorer:id/blocking = 0x7f08002f
com.infertux.nfcexplorer:id/autoCompleteToEnd = 0x7f080029
com.infertux.nfcexplorer:dimen/mtrl_textinput_box_bottom_offset = 0x7f0600ba
com.infertux.nfcexplorer:id/auto = 0x7f080027
com.infertux.nfcexplorer:anim/design_snackbar_in = 0x7f01000e
com.infertux.nfcexplorer:id/transition_layout_save = 0x7f080101
com.infertux.nfcexplorer:interpolator/mtrl_linear_out_slow_in = 0x7f0a0003
com.infertux.nfcexplorer:dimen/abc_control_padding_material = 0x7f06001a
com.infertux.nfcexplorer:id/right_icon = 0x7f0800b3
com.infertux.nfcexplorer:id/animateToStart = 0x7f080024
com.infertux.nfcexplorer:id/animateToEnd = 0x7f080023
com.infertux.nfcexplorer:id/multiply = 0x7f080096
com.infertux.nfcexplorer:id/all = 0x7f080021
com.infertux.nfcexplorer:styleable/ImageFilterView = 0x7f0f002e
com.infertux.nfcexplorer:id/aligned = 0x7f080020
com.infertux.nfcexplorer:id/showTitle = 0x7f0800ce
com.infertux.nfcexplorer:attr/tabPaddingBottom = 0x7f030231
com.infertux.nfcexplorer:id/alertTitle = 0x7f08001f
com.infertux.nfcexplorer:attr/layout_goneMarginRight = 0x7f030181
com.infertux.nfcexplorer:drawable/abc_list_selector_background_transition_holo_dark = 0x7f070034
com.infertux.nfcexplorer:id/action_mode_bar = 0x7f080018
com.infertux.nfcexplorer:id/action_menu_presenter = 0x7f080017
com.infertux.nfcexplorer:id/action_image = 0x7f080015
com.infertux.nfcexplorer:id/withText = 0x7f08010c
com.infertux.nfcexplorer:id/action_divider = 0x7f080014
com.infertux.nfcexplorer:id/action_context_bar = 0x7f080013
com.infertux.nfcexplorer:dimen/activity_horizontal_margin = 0x7f06004b
com.infertux.nfcexplorer:id/action_container = 0x7f080012
com.infertux.nfcexplorer:id/action_bar_subtitle = 0x7f080010
com.infertux.nfcexplorer:id/action_bar_root = 0x7f08000e
com.infertux.nfcexplorer:id/action_bar_container = 0x7f08000d
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.CompoundButton.CheckBox = 0x7f0e0099
com.infertux.nfcexplorer:id/transition_position = 0x7f080102
com.infertux.nfcexplorer:attr/windowMinWidthMinor = 0x7f030295
com.infertux.nfcexplorer:id/SHOW_PROGRESS = 0x7f080008
com.infertux.nfcexplorer:id/jumpToEnd = 0x7f080083
com.infertux.nfcexplorer:id/SHOW_ALL = 0x7f080006
com.infertux.nfcexplorer:attr/textInputStyle = 0x7f030258
com.infertux.nfcexplorer:id/dependency_ordering = 0x7f08004b
com.infertux.nfcexplorer:dimen/design_navigation_item_icon_padding = 0x7f060070
com.infertux.nfcexplorer:id/SHIFT = 0x7f080005
com.infertux.nfcexplorer:id/textinput_error = 0x7f0800f4
com.infertux.nfcexplorer:id/NO_DEBUG = 0x7f080004
com.infertux.nfcexplorer:id/FUNCTION = 0x7f080002
com.infertux.nfcexplorer:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f0e003d
com.infertux.nfcexplorer:attr/chainUseRtl = 0x7f030069
com.infertux.nfcexplorer:id/expand_activities_button = 0x7f080064
com.infertux.nfcexplorer:id/transition_transform = 0x7f080104
com.infertux.nfcexplorer:id/ALT = 0x7f080000
com.infertux.nfcexplorer:attr/colorControlHighlight = 0x7f030095
com.infertux.nfcexplorer:drawable/notify_panel_notification_icon_bg = 0x7f070073
com.infertux.nfcexplorer:layout/design_text_input_password_icon = 0x7f0b002b
com.infertux.nfcexplorer:id/path = 0x7f0800a6
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Caption = 0x7f0e0125
com.infertux.nfcexplorer:drawable/notification_bg_normal_pressed = 0x7f07006e
com.infertux.nfcexplorer:layout/list_item = 0x7f0b002d
com.infertux.nfcexplorer:drawable/notification_action_background = 0x7f070068
com.infertux.nfcexplorer:drawable/navigation_empty_icon = 0x7f070067
com.infertux.nfcexplorer:drawable/mtrl_snackbar_background = 0x7f070065
com.infertux.nfcexplorer:id/packed = 0x7f0800a0
com.infertux.nfcexplorer:attr/keylines = 0x7f030145
com.infertux.nfcexplorer:drawable/ic_mtrl_chip_close_circle = 0x7f070064
com.infertux.nfcexplorer:drawable/ic_mtrl_chip_checked_circle = 0x7f070063
com.infertux.nfcexplorer:id/showHome = 0x7f0800cd
com.infertux.nfcexplorer:drawable/design_snackbar_background = 0x7f070061
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Button.TextButton.Dialog = 0x7f0e01d5
com.infertux.nfcexplorer:string/appbar_scrolling_view_behavior = 0x7f0d0028
com.infertux.nfcexplorer:drawable/design_ic_visibility = 0x7f07005e
com.infertux.nfcexplorer:drawable/design_bottom_navigation_item_background = 0x7f07005c
com.infertux.nfcexplorer:attr/flow_horizontalAlign = 0x7f0300fe
com.infertux.nfcexplorer:drawable/abc_vector_test = 0x7f070059
com.infertux.nfcexplorer:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f070056
com.infertux.nfcexplorer:drawable/abc_list_pressed_holo_dark = 0x7f070032
com.infertux.nfcexplorer:id/motion_base = 0x7f080093
com.infertux.nfcexplorer:drawable/abc_text_select_handle_right_mtrl_light = 0x7f070053
com.infertux.nfcexplorer:id/search_plate = 0x7f0800c6
com.infertux.nfcexplorer:drawable/abc_text_select_handle_right_mtrl_dark = 0x7f070052
com.infertux.nfcexplorer:drawable/abc_text_select_handle_left_mtrl_dark = 0x7f07004e
com.infertux.nfcexplorer:attr/chipSpacing = 0x7f03007a
com.infertux.nfcexplorer:drawable/abc_switch_track_mtrl_alpha = 0x7f07004a
com.infertux.nfcexplorer:bool/abc_action_bar_embed_tabs = 0x7f040000
com.infertux.nfcexplorer:drawable/abc_spinner_textfield_background_material = 0x7f070048
com.infertux.nfcexplorer:drawable/abc_seekbar_track_material = 0x7f070046
com.infertux.nfcexplorer:id/search_bar = 0x7f0800c0
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Tab = 0x7f0e0130
com.infertux.nfcexplorer:drawable/notification_bg_normal = 0x7f07006d
com.infertux.nfcexplorer:drawable/abc_scrubber_control_to_pressed_mtrl_000 = 0x7f070040
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Inverse = 0x7f0e0019
com.infertux.nfcexplorer:drawable/abc_ratingbar_small_material = 0x7f07003e
com.infertux.nfcexplorer:drawable/$avd_hide_password__0 = 0x7f070000
com.infertux.nfcexplorer:id/center_horizontal = 0x7f080035
com.infertux.nfcexplorer:drawable/abc_ratingbar_indicator_material = 0x7f07003c
com.infertux.nfcexplorer:id/snackbar_action = 0x7f0800d1
com.infertux.nfcexplorer:drawable/abc_list_selector_holo_light = 0x7f070039
com.infertux.nfcexplorer:id/tag_transition_group = 0x7f0800ea
com.infertux.nfcexplorer:drawable/abc_list_pressed_holo_light = 0x7f070033
com.infertux.nfcexplorer:attr/singleSelection = 0x7f030201
com.infertux.nfcexplorer:drawable/abc_list_longpressed_holo = 0x7f070031
com.infertux.nfcexplorer:style/Platform.MaterialComponents.Light.Dialog = 0x7f0e00cb
com.infertux.nfcexplorer:drawable/abc_list_focused_holo = 0x7f070030
com.infertux.nfcexplorer:drawable/abc_list_divider_mtrl_alpha = 0x7f07002f
com.infertux.nfcexplorer:drawable/abc_list_divider_material = 0x7f07002e
com.infertux.nfcexplorer:color/mtrl_tabs_icon_color_selector_colored = 0x7f05005f
com.infertux.nfcexplorer:drawable/abc_item_background_holo_dark = 0x7f07002c
com.infertux.nfcexplorer:drawable/abc_ic_voice_search_api_material = 0x7f07002b
com.infertux.nfcexplorer:attr/transitionEasing = 0x7f03027c
com.infertux.nfcexplorer:drawable/abc_ic_star_half_black_36dp = 0x7f070029
com.infertux.nfcexplorer:drawable/abc_ic_star_half_black_16dp = 0x7f070028
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Subhead = 0x7f0e0026
com.infertux.nfcexplorer:drawable/abc_ic_star_black_48dp = 0x7f070027
com.infertux.nfcexplorer:id/listMode = 0x7f08008c
com.infertux.nfcexplorer:attr/customDimension = 0x7f0300bf
com.infertux.nfcexplorer:drawable/abc_ic_star_black_36dp = 0x7f070026
com.infertux.nfcexplorer:attr/flow_maxElementsWrap = 0x7f030106
com.infertux.nfcexplorer:id/spacer = 0x7f0800d5
com.infertux.nfcexplorer:attr/layout_constraintCircleRadius = 0x7f03015a
com.infertux.nfcexplorer:drawable/abc_ic_search_api_material = 0x7f070024
com.infertux.nfcexplorer:attr/percentX = 0x7f0301d5
com.infertux.nfcexplorer:drawable/abc_ic_menu_share_mtrl_alpha = 0x7f070023
com.infertux.nfcexplorer:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f070022
com.infertux.nfcexplorer:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f070021
com.infertux.nfcexplorer:drawable/abc_ic_menu_overflow_material = 0x7f070020
com.infertux.nfcexplorer:drawable/abc_ic_go_search_api_material = 0x7f07001d
com.infertux.nfcexplorer:drawable/abc_ic_clear_material = 0x7f07001b
com.infertux.nfcexplorer:id/src_in = 0x7f0800dc
com.infertux.nfcexplorer:dimen/abc_action_bar_overflow_padding_start_material = 0x7f060008
com.infertux.nfcexplorer:layout/abc_activity_chooser_view = 0x7f0b0006
com.infertux.nfcexplorer:drawable/abc_control_background_material = 0x7f070016
com.infertux.nfcexplorer:drawable/abc_cab_background_top_material = 0x7f070014
com.infertux.nfcexplorer:id/action_menu_divider = 0x7f080016
com.infertux.nfcexplorer:drawable/abc_cab_background_internal_bg = 0x7f070013
com.infertux.nfcexplorer:attr/trackTintMode = 0x7f03027a
com.infertux.nfcexplorer:id/filled = 0x7f08006b
com.infertux.nfcexplorer:animator/design_fab_hide_motion_spec = 0x7f020001
com.infertux.nfcexplorer:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f070012
com.infertux.nfcexplorer:attr/editTextColor = 0x7f0300dd
com.infertux.nfcexplorer:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f070010
com.infertux.nfcexplorer:drawable/abc_btn_radio_to_on_mtrl_000 = 0x7f07000f
com.infertux.nfcexplorer:dimen/design_snackbar_padding_horizontal = 0x7f06007a
com.infertux.nfcexplorer:drawable/abc_action_bar_item_background_material = 0x7f070007
com.infertux.nfcexplorer:drawable/$avd_show_password__1 = 0x7f070004
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Display4 = 0x7f0e0017
com.infertux.nfcexplorer:color/secondary_text_default_material_dark = 0x7f050073
com.infertux.nfcexplorer:layout/notification_template_icon_group = 0x7f0b0033
com.infertux.nfcexplorer:drawable/$avd_show_password__0 = 0x7f070003
com.infertux.nfcexplorer:drawable/$avd_hide_password__2 = 0x7f070002
com.infertux.nfcexplorer:color/material_grey_300 = 0x7f050047
com.infertux.nfcexplorer:attr/tabPadding = 0x7f030230
com.infertux.nfcexplorer:drawable/$avd_hide_password__1 = 0x7f070001
com.infertux.nfcexplorer:id/actions = 0x7f08001c
com.infertux.nfcexplorer:dimen/tooltip_y_offset_touch = 0x7f0600d9
com.infertux.nfcexplorer:dimen/tooltip_precise_anchor_threshold = 0x7f0600d6
com.infertux.nfcexplorer:dimen/abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b
com.infertux.nfcexplorer:dimen/tooltip_margin = 0x7f0600d4
com.infertux.nfcexplorer:dimen/abc_action_bar_subtitle_top_margin_material = 0x7f06000c
com.infertux.nfcexplorer:dimen/tooltip_horizontal_padding = 0x7f0600d3
com.infertux.nfcexplorer:dimen/notification_right_icon_size = 0x7f0600cb
com.infertux.nfcexplorer:drawable/mtrl_tabs_default_indicator = 0x7f070066
com.infertux.nfcexplorer:dimen/notification_media_narrow_margin = 0x7f0600ca
com.infertux.nfcexplorer:animator/mtrl_fab_show_motion_spec = 0x7f020007
com.infertux.nfcexplorer:dimen/notification_main_column_padding_top = 0x7f0600c9
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Medium.Inverse = 0x7f0e001f
com.infertux.nfcexplorer:color/mtrl_tabs_colored_ripple_color = 0x7f05005d
com.infertux.nfcexplorer:id/screen = 0x7f0800b9
com.infertux.nfcexplorer:dimen/notification_content_margin_start = 0x7f0600c6
com.infertux.nfcexplorer:dimen/mtrl_toolbar_default_height = 0x7f0600c2
com.infertux.nfcexplorer:attr/flow_lastHorizontalBias = 0x7f030102
com.infertux.nfcexplorer:attr/waveShape = 0x7f03028b
com.infertux.nfcexplorer:dimen/mtrl_textinput_outline_box_expanded_padding = 0x7f0600c1
com.infertux.nfcexplorer:dimen/mtrl_textinput_box_stroke_width_default = 0x7f0600bf
com.infertux.nfcexplorer:id/decor_content_parent = 0x7f080048
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Button.UnelevatedButton.Icon = 0x7f0e01d9
com.infertux.nfcexplorer:dimen/mtrl_textinput_box_padding_end = 0x7f0600be
com.infertux.nfcexplorer:layout/abc_alert_dialog_title_material = 0x7f0b000a
com.infertux.nfcexplorer:layout/abc_action_menu_item_layout = 0x7f0b0002
com.infertux.nfcexplorer:dimen/mtrl_textinput_box_label_cutout_padding = 0x7f0600bd
com.infertux.nfcexplorer:attr/colorPrimaryDark = 0x7f030099
com.infertux.nfcexplorer:id/direct = 0x7f080052
com.infertux.nfcexplorer:dimen/mtrl_textinput_box_corner_radius_small = 0x7f0600bc
com.infertux.nfcexplorer:dimen/mtrl_snackbar_background_corner_radius = 0x7f0600b8
com.infertux.nfcexplorer:dimen/mtrl_navigation_item_icon_padding = 0x7f0600b7
com.infertux.nfcexplorer:id/fill_vertical = 0x7f08006a
com.infertux.nfcexplorer:dimen/mtrl_navigation_elevation = 0x7f0600b5
com.infertux.nfcexplorer:id/enterAlways = 0x7f080061
com.infertux.nfcexplorer:dimen/mtrl_fab_elevation = 0x7f0600b2
com.infertux.nfcexplorer:drawable/avd_hide_password = 0x7f07005a
com.infertux.nfcexplorer:id/checkbox = 0x7f080039
com.infertux.nfcexplorer:dimen/mtrl_chip_pressed_translation_z = 0x7f0600b0
com.infertux.nfcexplorer:style/Widget.Design.CollapsingToolbar = 0x7f0e01c4
com.infertux.nfcexplorer:dimen/mtrl_card_elevation = 0x7f0600ae
com.infertux.nfcexplorer:id/contentPanel = 0x7f080040
com.infertux.nfcexplorer:dimen/mtrl_btn_text_size = 0x7f0600ac
com.infertux.nfcexplorer:dimen/mtrl_btn_text_btn_padding_right = 0x7f0600ab
com.infertux.nfcexplorer:id/barrier = 0x7f08002b
com.infertux.nfcexplorer:dimen/mtrl_btn_text_btn_padding_left = 0x7f0600aa
com.infertux.nfcexplorer:attr/state_liftable = 0x7f030210
com.infertux.nfcexplorer:drawable/abc_ic_star_black_16dp = 0x7f070025
com.infertux.nfcexplorer:dimen/mtrl_btn_stroke_size = 0x7f0600a8
com.infertux.nfcexplorer:id/decelerateAndComplete = 0x7f080047
com.infertux.nfcexplorer:dimen/mtrl_btn_padding_top = 0x7f0600a6
com.infertux.nfcexplorer:id/parentPanel = 0x7f0800a3
com.infertux.nfcexplorer:dimen/mtrl_card_spacing = 0x7f0600af
com.infertux.nfcexplorer:dimen/mtrl_btn_padding_right = 0x7f0600a5
com.infertux.nfcexplorer:dimen/mtrl_btn_padding_bottom = 0x7f0600a3
com.infertux.nfcexplorer:dimen/mtrl_btn_letter_spacing = 0x7f0600a2
com.infertux.nfcexplorer:layout/abc_action_menu_layout = 0x7f0b0003
com.infertux.nfcexplorer:style/Base.Widget.MaterialComponents.TextInputLayout = 0x7f0e00c2
com.infertux.nfcexplorer:dimen/mtrl_btn_icon_padding = 0x7f0600a0
com.infertux.nfcexplorer:style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f0e0132
com.infertux.nfcexplorer:attr/queryBackground = 0x7f0301e1
com.infertux.nfcexplorer:dimen/mtrl_btn_icon_btn_padding_left = 0x7f06009f
com.infertux.nfcexplorer:dimen/mtrl_btn_hovered_z = 0x7f06009e
com.infertux.nfcexplorer:dimen/mtrl_btn_focused_z = 0x7f06009d
com.infertux.nfcexplorer:dimen/mtrl_btn_disabled_elevation = 0x7f06009a
com.infertux.nfcexplorer:dimen/mtrl_bottomappbar_height = 0x7f060097
com.infertux.nfcexplorer:dimen/mtrl_bottomappbar_fabOffsetEndMode = 0x7f060093
com.infertux.nfcexplorer:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f0e01ad
com.infertux.nfcexplorer:attr/actionBarTabTextStyle = 0x7f030008
com.infertux.nfcexplorer:dimen/item_touch_helper_swipe_escape_velocity = 0x7f060092
com.infertux.nfcexplorer:id/action_text = 0x7f08001b
com.infertux.nfcexplorer:dimen/item_touch_helper_max_drag_scroll_per_frame = 0x7f060090
com.infertux.nfcexplorer:dimen/hint_pressed_alpha_material_light = 0x7f06008f
com.infertux.nfcexplorer:dimen/notification_top_pad_large_text = 0x7f0600d1
com.infertux.nfcexplorer:dimen/hint_pressed_alpha_material_dark = 0x7f06008e
com.infertux.nfcexplorer:dimen/highlight_alpha_material_light = 0x7f06008b
com.infertux.nfcexplorer:dimen/highlight_alpha_material_dark = 0x7f06008a
com.infertux.nfcexplorer:layout/abc_activity_chooser_view_list_item = 0x7f0b0007
com.infertux.nfcexplorer:dimen/mtrl_bottomappbar_fab_cradle_margin = 0x7f060094
com.infertux.nfcexplorer:dimen/fastscroll_margin = 0x7f060087
com.infertux.nfcexplorer:dimen/mtrl_bottomappbar_fab_cradle_vertical_offset = 0x7f060096
com.infertux.nfcexplorer:attr/counterOverflowTextAppearance = 0x7f0300b7
com.infertux.nfcexplorer:dimen/fastscroll_default_thickness = 0x7f060086
com.infertux.nfcexplorer:attr/titleMarginTop = 0x7f03026a
com.infertux.nfcexplorer:attr/ratingBarStyleIndicator = 0x7f0301e5
com.infertux.nfcexplorer:dimen/fab_margin = 0x7f060085
com.infertux.nfcexplorer:layout/activity_input = 0x7f0b001c
com.infertux.nfcexplorer:dimen/design_textinput_caption_translate_y = 0x7f060082
com.infertux.nfcexplorer:dimen/design_tab_text_size = 0x7f060080
com.infertux.nfcexplorer:dimen/design_snackbar_padding_vertical = 0x7f06007b
com.infertux.nfcexplorer:dimen/design_tab_max_width = 0x7f06007e
com.infertux.nfcexplorer:dimen/design_snackbar_min_width = 0x7f060079
com.infertux.nfcexplorer:id/coordinator = 0x7f080041
com.infertux.nfcexplorer:dimen/design_snackbar_max_width = 0x7f060078
com.infertux.nfcexplorer:dimen/design_snackbar_action_inline_max_width = 0x7f060074
com.infertux.nfcexplorer:dimen/design_navigation_max_width = 0x7f060071
com.infertux.nfcexplorer:id/never = 0x7f080099
com.infertux.nfcexplorer:attr/dividerHorizontal = 0x7f0300d0
com.infertux.nfcexplorer:dimen/design_navigation_item_horizontal_padding = 0x7f06006f
com.infertux.nfcexplorer:dimen/design_navigation_icon_size = 0x7f06006e
com.infertux.nfcexplorer:dimen/cardview_default_radius = 0x7f06004f
com.infertux.nfcexplorer:dimen/design_navigation_elevation = 0x7f06006c
com.infertux.nfcexplorer:drawable/abc_edit_text_material = 0x7f070018
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Headline = 0x7f0e00ee
com.infertux.nfcexplorer:attr/cornerRadius = 0x7f0300b4
com.infertux.nfcexplorer:dimen/design_fab_size_normal = 0x7f060069
com.infertux.nfcexplorer:dimen/design_fab_size_mini = 0x7f060068
com.infertux.nfcexplorer:dimen/design_fab_elevation = 0x7f060066
com.infertux.nfcexplorer:attr/goIcon = 0x7f03011b
com.infertux.nfcexplorer:drawable/abc_btn_radio_material = 0x7f07000e
com.infertux.nfcexplorer:dimen/design_fab_border_width = 0x7f060065
com.infertux.nfcexplorer:dimen/design_bottom_sheet_peek_height_min = 0x7f060064
com.infertux.nfcexplorer:dimen/design_bottom_sheet_modal_elevation = 0x7f060063
com.infertux.nfcexplorer:dimen/design_bottom_navigation_text_size = 0x7f060062
com.infertux.nfcexplorer:style/Platform.V25.AppCompat.Light = 0x7f0e00d2
com.infertux.nfcexplorer:dimen/notification_subtext_size = 0x7f0600cf
com.infertux.nfcexplorer:dimen/design_bottom_navigation_margin = 0x7f060060
com.infertux.nfcexplorer:id/snapMargins = 0x7f0800d4
com.infertux.nfcexplorer:id/search_voice_btn = 0x7f0800c8
com.infertux.nfcexplorer:drawable/abc_popup_background_mtrl_mult = 0x7f07003b
com.infertux.nfcexplorer:dimen/design_bottom_navigation_icon_size = 0x7f06005d
com.infertux.nfcexplorer:dimen/design_bottom_navigation_elevation = 0x7f06005b
com.infertux.nfcexplorer:style/Widget.AppCompat.Button.Borderless.Colored = 0x7f0e0184
com.infertux.nfcexplorer:drawable/design_fab_background = 0x7f07005d
com.infertux.nfcexplorer:dimen/design_bottom_navigation_active_text_size = 0x7f06005a
com.infertux.nfcexplorer:dimen/design_bottom_navigation_active_item_max_width = 0x7f060058
com.infertux.nfcexplorer:dimen/design_appbar_elevation = 0x7f060057
com.infertux.nfcexplorer:style/TextAppearance.AppCompat.Light.SearchResult.Subtitle = 0x7f0e00f2
com.infertux.nfcexplorer:id/split_action_bar = 0x7f0800d7
com.infertux.nfcexplorer:dimen/compat_notification_large_icon_max_width = 0x7f060056
com.infertux.nfcexplorer:styleable/MotionTelltales = 0x7f0f0046
com.infertux.nfcexplorer:dimen/compat_button_padding_horizontal_material = 0x7f060052
com.infertux.nfcexplorer:id/decelerate = 0x7f080046
com.infertux.nfcexplorer:layout/abc_action_bar_up_container = 0x7f0b0001
com.infertux.nfcexplorer:id/line1 = 0x7f080089
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ActionBar.TabView = 0x7f0e008a
com.infertux.nfcexplorer:dimen/cardview_default_elevation = 0x7f06004e
com.infertux.nfcexplorer:dimen/abc_text_size_subtitle_material_toolbar = 0x7f060048
com.infertux.nfcexplorer:color/abc_search_url_text_pressed = 0x7f05000e
com.infertux.nfcexplorer:drawable/tooltip_frame_light = 0x7f070075
com.infertux.nfcexplorer:dimen/abc_text_size_small_material = 0x7f060046
com.infertux.nfcexplorer:attr/flow_firstHorizontalBias = 0x7f0300fa
com.infertux.nfcexplorer:drawable/notification_bg = 0x7f070069
com.infertux.nfcexplorer:dimen/abc_text_size_large_material = 0x7f060042
com.infertux.nfcexplorer:attr/tabIndicatorFullWidth = 0x7f030229
com.infertux.nfcexplorer:dimen/abc_text_size_headline_material = 0x7f060041
com.infertux.nfcexplorer:style/TextAppearance.MaterialComponents.Headline4 = 0x7f0e012a
com.infertux.nfcexplorer:dimen/abc_text_size_display_3_material = 0x7f06003f
com.infertux.nfcexplorer:dimen/abc_text_size_display_2_material = 0x7f06003e
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ActionButton.Overflow = 0x7f0e008d
com.infertux.nfcexplorer:dimen/abc_text_size_display_1_material = 0x7f06003d
com.infertux.nfcexplorer:dimen/abc_text_size_subhead_material = 0x7f060047
com.infertux.nfcexplorer:dimen/abc_text_size_button_material = 0x7f06003b
com.infertux.nfcexplorer:styleable/Variant = 0x7f0f0062
com.infertux.nfcexplorer:dimen/abc_text_size_body_2_material = 0x7f06003a
com.infertux.nfcexplorer:styleable/StateSet = 0x7f0f0058
com.infertux.nfcexplorer:dimen/abc_text_size_body_1_material = 0x7f060039
com.infertux.nfcexplorer:color/cardview_shadow_end_color = 0x7f050028
com.infertux.nfcexplorer:drawable/abc_ic_star_half_black_48dp = 0x7f07002a
com.infertux.nfcexplorer:style/Base.Widget.AppCompat.ListView.DropDown = 0x7f0e00ac
com.infertux.nfcexplorer:dimen/abc_search_view_preferred_height = 0x7f060033
com.infertux.nfcexplorer:attr/layout_constraintHeight_default = 0x7f030161
com.infertux.nfcexplorer:dimen/abc_panel_menu_list_width = 0x7f060031
com.infertux.nfcexplorer:attr/iconPadding = 0x7f03012d
com.infertux.nfcexplorer:dimen/abc_list_item_padding_horizontal_material = 0x7f060030
com.infertux.nfcexplorer:attr/switchTextAppearance = 0x7f030220
com.infertux.nfcexplorer:dimen/abc_floating_window_z = 0x7f06002f
com.infertux.nfcexplorer:dimen/abc_edit_text_inset_top_material = 0x7f06002e
com.infertux.nfcexplorer:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f0e0031
com.infertux.nfcexplorer:dimen/abc_edit_text_inset_bottom_material = 0x7f06002c
com.infertux.nfcexplorer:style/Widget.MaterialComponents.BottomSheet.Modal = 0x7f0e01cf
com.infertux.nfcexplorer:style/Widget.MaterialComponents.BottomNavigationView.Colored = 0x7f0e01ce
com.infertux.nfcexplorer:dimen/abc_dropdownitem_text_padding_right = 0x7f06002b
com.infertux.nfcexplorer:styleable/CardView = 0x7f0f0016
com.infertux.nfcexplorer:dimen/abc_config_prefDialogWidth = 0x7f060017
com.infertux.nfcexplorer:dimen/abc_dropdownitem_text_padding_left = 0x7f06002a
com.infertux.nfcexplorer:dimen/abc_disabled_alpha_material_light = 0x7f060028
com.infertux.nfcexplorer:dimen/abc_disabled_alpha_material_dark = 0x7f060027
com.infertux.nfcexplorer:dimen/abc_dialog_padding_material = 0x7f060024
com.infertux.nfcexplorer:dimen/abc_dialog_min_width_major = 0x7f060022
com.infertux.nfcexplorer:dimen/abc_dialog_list_padding_top_no_title = 0x7f060021
com.infertux.nfcexplorer:style/Widget.AppCompat.Light.ActionButton = 0x7f0e019a
com.infertux.nfcexplorer:dimen/abc_dialog_list_padding_bottom_no_buttons = 0x7f060020
com.infertux.nfcexplorer:dimen/abc_dialog_fixed_height_minor = 0x7f06001d
com.infertux.nfcexplorer:dimen/highlight_alpha_material_colored = 0x7f060089
com.infertux.nfcexplorer:dimen/abc_control_corner_material = 0x7f060018
com.infertux.nfcexplorer:id/SHOW_PATH = 0x7f080007
com.infertux.nfcexplorer:drawable/abc_ratingbar_material = 0x7f07003d
com.infertux.nfcexplorer:drawable/abc_ic_ab_back_material = 0x7f070019
com.infertux.nfcexplorer:dimen/abc_cascading_menus_min_smallest_width = 0x7f060016
com.infertux.nfcexplorer:styleable/AppCompatTextView = 0x7f0f0010
com.infertux.nfcexplorer:id/currentTagView = 0x7f080043
com.infertux.nfcexplorer:attr/useCompatPadding = 0x7f030283
com.infertux.nfcexplorer:dimen/abc_button_padding_vertical_material = 0x7f060015
com.infertux.nfcexplorer:dimen/abc_dialog_fixed_height_major = 0x7f06001c
com.infertux.nfcexplorer:dimen/abc_switch_padding = 0x7f060038
com.infertux.nfcexplorer:dimen/hint_alpha_material_dark = 0x7f06008c
com.infertux.nfcexplorer:color/background_floating_material_light = 0x7f05001b
com.infertux.nfcexplorer:attr/checkboxStyle = 0x7f03006a
com.infertux.nfcexplorer:dimen/abc_button_padding_horizontal_material = 0x7f060014
com.infertux.nfcexplorer:dimen/abc_alert_dialog_button_dimen = 0x7f060011
com.infertux.nfcexplorer:color/secondary_text_disabled_material_light = 0x7f050076
com.infertux.nfcexplorer:dimen/abc_action_button_min_width_overflow_material = 0x7f06000f
com.infertux.nfcexplorer:attr/tabTextColor = 0x7f030239
com.infertux.nfcexplorer:dimen/mtrl_textinput_box_stroke_width_focused = 0x7f0600c0
com.infertux.nfcexplorer:dimen/abc_action_bar_stacked_tab_max_width = 0x7f06000a
com.infertux.nfcexplorer:layout/abc_popup_menu_item_layout = 0x7f0b0013
com.infertux.nfcexplorer:dimen/abc_action_bar_overflow_padding_end_material = 0x7f060007
com.infertux.nfcexplorer:dimen/mtrl_btn_elevation = 0x7f06009c
com.infertux.nfcexplorer:style/Widget.MaterialComponents.Button.OutlinedButton.Icon = 0x7f0e01d3
com.infertux.nfcexplorer:color/mtrl_tabs_legacy_text_color_selector = 0x7f050060
com.infertux.nfcexplorer:dimen/abc_action_bar_icon_vertical_padding_material = 0x7f060006
com.infertux.nfcexplorer:styleable/RecycleListView = 0x7f0f004d
com.infertux.nfcexplorer:dimen/abc_action_bar_elevation_material = 0x7f060005