gxc
2019-10-29 081ea8d273048fd03756718ac6fb48a3c09218e9
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
#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:4.0.30319.42000
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
 
[assembly: global::Android.Runtime.ResourceDesignerAttribute("GateWay.Droid.Resource", IsApplication=true)]
 
namespace GateWay.Droid
{
    
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")]
    public partial class Resource
    {
        
        static Resource()
        {
            global::Android.Runtime.ResourceIdManager.UpdateIdValues();
        }
        
        public static void UpdateIdValues()
        {
        }
        
        public partial class Animation
        {
            
            // aapt resource value: 0x7f050000
            public const int fingerprint_draw_off_animation_interpolator_0 = 2131034112;
            
            // aapt resource value: 0x7f050001
            public const int fingerprint_draw_off_animation_interpolator_1 = 2131034113;
            
            // aapt resource value: 0x7f050002
            public const int fingerprint_draw_off_ridge_1_path_animation = 2131034114;
            
            // aapt resource value: 0x7f050003
            public const int fingerprint_draw_off_ridge_2_path_animation = 2131034115;
            
            // aapt resource value: 0x7f050004
            public const int fingerprint_draw_off_ridge_5_path_animation = 2131034116;
            
            // aapt resource value: 0x7f050005
            public const int fingerprint_draw_off_ridge_6_path_animation = 2131034117;
            
            // aapt resource value: 0x7f050006
            public const int fingerprint_draw_off_ridge_7_path_animation = 2131034118;
            
            // aapt resource value: 0x7f050007
            public const int fingerprint_draw_on_animation_interpolator_0 = 2131034119;
            
            // aapt resource value: 0x7f050008
            public const int fingerprint_draw_on_animation_interpolator_1 = 2131034120;
            
            // aapt resource value: 0x7f050009
            public const int fingerprint_draw_on_ridge_1_path_animation = 2131034121;
            
            // aapt resource value: 0x7f05000a
            public const int fingerprint_draw_on_ridge_2_path_animation = 2131034122;
            
            // aapt resource value: 0x7f05000b
            public const int fingerprint_draw_on_ridge_5_path_animation = 2131034123;
            
            // aapt resource value: 0x7f05000c
            public const int fingerprint_draw_on_ridge_6_path_animation = 2131034124;
            
            // aapt resource value: 0x7f05000d
            public const int fingerprint_draw_on_ridge_7_path_animation = 2131034125;
            
            // aapt resource value: 0x7f05000e
            public const int fingerprint_error_state_to_fp_animation_interpolator_0 = 2131034126;
            
            // aapt resource value: 0x7f05000f
            public const int fingerprint_error_state_to_fp_animation_interpolator_1 = 2131034127;
            
            // aapt resource value: 0x7f050010
            public const int fingerprint_error_state_to_fp_animation_interpolator_2 = 2131034128;
            
            // aapt resource value: 0x7f050011
            public const int fingerprint_error_state_to_fp_animation_interpolator_3 = 2131034129;
            
            // aapt resource value: 0x7f050012
            public const int fingerprint_error_state_to_fp_animation_interpolator_4 = 2131034130;
            
            // aapt resource value: 0x7f050013
            public const int fingerprint_error_state_to_fp_animation_interpolator_5 = 2131034131;
            
            // aapt resource value: 0x7f050014
            public const int fingerprint_error_state_to_fp_group_1_animation = 2131034132;
            
            // aapt resource value: 0x7f050015
            public const int fingerprint_error_state_to_fp_group_2_animation = 2131034133;
            
            // aapt resource value: 0x7f050016
            public const int fingerprint_error_state_to_fp_path_1_animation = 2131034134;
            
            // aapt resource value: 0x7f050017
            public const int fingerprint_error_state_to_fp_path_2_animation = 2131034135;
            
            // aapt resource value: 0x7f050018
            public const int fingerprint_error_state_to_fp_path_3_animation = 2131034136;
            
            // aapt resource value: 0x7f050019
            public const int fingerprint_error_state_to_fp_ridge_1_path_animation = 2131034137;
            
            // aapt resource value: 0x7f05001a
            public const int fingerprint_error_state_to_fp_ridge_2_path_animation = 2131034138;
            
            // aapt resource value: 0x7f05001b
            public const int fingerprint_error_state_to_fp_ridge_5_path_animation = 2131034139;
            
            // aapt resource value: 0x7f05001c
            public const int fingerprint_error_state_to_fp_ridge_6_path_animation = 2131034140;
            
            // aapt resource value: 0x7f05001d
            public const int fingerprint_error_state_to_fp_ridge_7_path_animation = 2131034141;
            
            // aapt resource value: 0x7f05001e
            public const int fingerprint_error_state_to_fp_white_fingerprint_ridges_animation = 2131034142;
            
            // aapt resource value: 0x7f05001f
            public const int fingerprint_fp_to_error_state_animation_interpolator_0 = 2131034143;
            
            // aapt resource value: 0x7f050020
            public const int fingerprint_fp_to_error_state_animation_interpolator_1 = 2131034144;
            
            // aapt resource value: 0x7f050021
            public const int fingerprint_fp_to_error_state_animation_interpolator_2 = 2131034145;
            
            // aapt resource value: 0x7f050022
            public const int fingerprint_fp_to_error_state_animation_interpolator_3 = 2131034146;
            
            // aapt resource value: 0x7f050023
            public const int fingerprint_fp_to_error_state_animation_interpolator_4 = 2131034147;
            
            // aapt resource value: 0x7f050024
            public const int fingerprint_fp_to_error_state_animation_interpolator_5 = 2131034148;
            
            // aapt resource value: 0x7f050025
            public const int fingerprint_fp_to_error_state_fingerprint_ridges_animation = 2131034149;
            
            // aapt resource value: 0x7f050026
            public const int fingerprint_fp_to_error_state_group_1_animation = 2131034150;
            
            // aapt resource value: 0x7f050027
            public const int fingerprint_fp_to_error_state_group_2_animation = 2131034151;
            
            // aapt resource value: 0x7f050028
            public const int fingerprint_fp_to_error_state_path_1_animation = 2131034152;
            
            // aapt resource value: 0x7f050029
            public const int fingerprint_fp_to_error_state_path_2_animation = 2131034153;
            
            // aapt resource value: 0x7f05002a
            public const int fingerprint_fp_to_error_state_path_3_animation = 2131034154;
            
            // aapt resource value: 0x7f05002b
            public const int fingerprint_fp_to_error_state_ridge_1_path_0_animation = 2131034155;
            
            // aapt resource value: 0x7f05002c
            public const int fingerprint_fp_to_error_state_ridge_1_path_animation = 2131034156;
            
            // aapt resource value: 0x7f05002d
            public const int fingerprint_fp_to_error_state_ridge_2_path_0_animation = 2131034157;
            
            // aapt resource value: 0x7f05002e
            public const int fingerprint_fp_to_error_state_ridge_2_path_animation = 2131034158;
            
            // aapt resource value: 0x7f05002f
            public const int fingerprint_fp_to_error_state_ridge_5_path_0_animation = 2131034159;
            
            // aapt resource value: 0x7f050030
            public const int fingerprint_fp_to_error_state_ridge_5_path_animation = 2131034160;
            
            // aapt resource value: 0x7f050031
            public const int fingerprint_fp_to_error_state_ridge_6_path_0_animation = 2131034161;
            
            // aapt resource value: 0x7f050032
            public const int fingerprint_fp_to_error_state_ridge_6_path_animation = 2131034162;
            
            // aapt resource value: 0x7f050033
            public const int fingerprint_fp_to_error_state_ridge_7_path_0_animation = 2131034163;
            
            // aapt resource value: 0x7f050034
            public const int fingerprint_fp_to_error_state_ridge_7_path_animation = 2131034164;
            
            // aapt resource value: 0x7f050035
            public const int fingerprint_fp_to_error_state_white_fingerprint_ridges_animation = 2131034165;
            
            // aapt resource value: 0x7f050036
            public const int move_in = 2131034166;
            
            // aapt resource value: 0x7f050037
            public const int move_out = 2131034167;
            
            // aapt resource value: 0x7f050038
            public const int pickerview_dialog_scale_in = 2131034168;
            
            // aapt resource value: 0x7f050039
            public const int pickerview_dialog_scale_out = 2131034169;
            
            // aapt resource value: 0x7f05003a
            public const int pickerview_slide_in_bottom = 2131034170;
            
            // aapt resource value: 0x7f05003b
            public const int pickerview_slide_out_bottom = 2131034171;
            
            static Animation()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Animation()
            {
            }
        }
        
        public partial class Array
        {
            
            // aapt resource value: 0x7f0e0000
            public const int arc_colors_default = 2131623936;
            
            static Array()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Array()
            {
            }
        }
        
        public partial class Attribute
        {
            
            // aapt resource value: 0x7f01000f
            public const int arc_border_color = 2130771983;
            
            // aapt resource value: 0x7f01000e
            public const int arc_border_width = 2130771982;
            
            // aapt resource value: 0x7f01000d
            public const int arc_colors = 2130771981;
            
            // aapt resource value: 0x7f010010
            public const int arc_max = 2130771984;
            
            // aapt resource value: 0x7f010011
            public const int arc_min = 2130771985;
            
            // aapt resource value: 0x7f01000b
            public const int arc_open_angle = 2130771979;
            
            // aapt resource value: 0x7f010012
            public const int arc_progress = 2130771986;
            
            // aapt resource value: 0x7f01001a
            public const int arc_progress_bar_color = 2130771994;
            
            // aapt resource value: 0x7f01001b
            public const int arc_progress_bar_text_unit = 2130771995;
            
            // aapt resource value: 0x7f01000c
            public const int arc_rotate_angle = 2130771980;
            
            // aapt resource value: 0x7f010019
            public const int arc_shadow_radius = 2130771993;
            
            // aapt resource value: 0x7f010014
            public const int arc_thumb_color = 2130771988;
            
            // aapt resource value: 0x7f010015
            public const int arc_thumb_radius = 2130771989;
            
            // aapt resource value: 0x7f010017
            public const int arc_thumb_shadow_color = 2130771991;
            
            // aapt resource value: 0x7f010016
            public const int arc_thumb_shadow_radius = 2130771990;
            
            // aapt resource value: 0x7f010013
            public const int arc_thumb_width = 2130771987;
            
            // aapt resource value: 0x7f01000a
            public const int arc_width = 2130771978;
            
            // aapt resource value: 0x7f010009
            public const int biometricPromptDialogTheme = 2130771977;
            
            // aapt resource value: 0x7f010007
            public const int font = 2130771975;
            
            // aapt resource value: 0x7f010000
            public const int fontProviderAuthority = 2130771968;
            
            // aapt resource value: 0x7f010003
            public const int fontProviderCerts = 2130771971;
            
            // aapt resource value: 0x7f010004
            public const int fontProviderFetchStrategy = 2130771972;
            
            // aapt resource value: 0x7f010005
            public const int fontProviderFetchTimeout = 2130771973;
            
            // aapt resource value: 0x7f010001
            public const int fontProviderPackage = 2130771969;
            
            // aapt resource value: 0x7f010002
            public const int fontProviderQuery = 2130771970;
            
            // aapt resource value: 0x7f010006
            public const int fontStyle = 2130771974;
            
            // aapt resource value: 0x7f010008
            public const int fontWeight = 2130771976;
            
            // aapt resource value: 0x7f010018
            public const int hdl_arc_thumb_mode = 2130771992;
            
            // aapt resource value: 0x7f01001d
            public const int second_wave_color = 2130771997;
            
            // aapt resource value: 0x7f01001e
            public const int wave_bg_color = 2130771998;
            
            // aapt resource value: 0x7f01001f
            public const int wave_border_color = 2130771999;
            
            // aapt resource value: 0x7f01001c
            public const int wave_color = 2130771996;
            
            // aapt resource value: 0x7f010021
            public const int wave_height = 2130772001;
            
            // aapt resource value: 0x7f010020
            public const int wave_width = 2130772000;
            
            // aapt resource value: 0x7f010026
            public const int wheelview_dividerColor = 2130772006;
            
            // aapt resource value: 0x7f010022
            public const int wheelview_gravity = 2130772002;
            
            // aapt resource value: 0x7f010027
            public const int wheelview_lineSpacingMultiplier = 2130772007;
            
            // aapt resource value: 0x7f010025
            public const int wheelview_textColorCenter = 2130772005;
            
            // aapt resource value: 0x7f010024
            public const int wheelview_textColorOut = 2130772004;
            
            // aapt resource value: 0x7f010023
            public const int wheelview_textSize = 2130772003;
            
            static Attribute()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Attribute()
            {
            }
        }
        
        public partial class Boolean
        {
            
            // aapt resource value: 0x7f0b0000
            public const int abc_action_bar_embed_tabs = 2131427328;
            
            static Boolean()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Boolean()
            {
            }
        }
        
        public partial class Color
        {
            
            // aapt resource value: 0x7f080007
            public const int material_grey_100 = 2131230727;
            
            // aapt resource value: 0x7f080008
            public const int material_grey_300 = 2131230728;
            
            // aapt resource value: 0x7f080009
            public const int material_grey_50 = 2131230729;
            
            // aapt resource value: 0x7f08000a
            public const int material_red_500 = 2131230730;
            
            // aapt resource value: 0x7f080003
            public const int notification_action_color_filter = 2131230723;
            
            // aapt resource value: 0x7f080004
            public const int notification_icon_bg_color = 2131230724;
            
            // aapt resource value: 0x7f080000
            public const int notification_material_background_media_default_color = 2131230720;
            
            // aapt resource value: 0x7f08000b
            public const int pickerview_bgColor_default = 2131230731;
            
            // aapt resource value: 0x7f08000c
            public const int pickerview_bgColor_overlay = 2131230732;
            
            // aapt resource value: 0x7f08000d
            public const int pickerview_bg_topbar = 2131230733;
            
            // aapt resource value: 0x7f08000e
            public const int pickerview_timebtn_nor = 2131230734;
            
            // aapt resource value: 0x7f08000f
            public const int pickerview_timebtn_pre = 2131230735;
            
            // aapt resource value: 0x7f080010
            public const int pickerview_topbar_title = 2131230736;
            
            // aapt resource value: 0x7f080011
            public const int pickerview_wheelview_textcolor_center = 2131230737;
            
            // aapt resource value: 0x7f080012
            public const int pickerview_wheelview_textcolor_divider = 2131230738;
            
            // aapt resource value: 0x7f080013
            public const int pickerview_wheelview_textcolor_out = 2131230739;
            
            // aapt resource value: 0x7f080001
            public const int primary_text_default_material_dark = 2131230721;
            
            // aapt resource value: 0x7f080005
            public const int ripple_material_light = 2131230725;
            
            // aapt resource value: 0x7f080002
            public const int secondary_text_default_material_dark = 2131230722;
            
            // aapt resource value: 0x7f080006
            public const int secondary_text_default_material_light = 2131230726;
            
            static Color()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Color()
            {
            }
        }
        
        public partial class Dimension
        {
            
            // aapt resource value: 0x7f0c0004
            public const int compat_button_inset_horizontal_material = 2131492868;
            
            // aapt resource value: 0x7f0c0005
            public const int compat_button_inset_vertical_material = 2131492869;
            
            // aapt resource value: 0x7f0c0006
            public const int compat_button_padding_horizontal_material = 2131492870;
            
            // aapt resource value: 0x7f0c0007
            public const int compat_button_padding_vertical_material = 2131492871;
            
            // aapt resource value: 0x7f0c0008
            public const int compat_control_corner_material = 2131492872;
            
            // aapt resource value: 0x7f0c0015
            public const int fingerprint_icon_size = 2131492885;
            
            // aapt resource value: 0x7f0c0014
            public const int fingerprint_status_layout_margin_vertical = 2131492884;
            
            // aapt resource value: 0x7f0c0009
            public const int notification_action_icon_size = 2131492873;
            
            // aapt resource value: 0x7f0c000a
            public const int notification_action_text_size = 2131492874;
            
            // aapt resource value: 0x7f0c000b
            public const int notification_big_circle_margin = 2131492875;
            
            // aapt resource value: 0x7f0c0001
            public const int notification_content_margin_start = 2131492865;
            
            // aapt resource value: 0x7f0c000c
            public const int notification_large_icon_height = 2131492876;
            
            // aapt resource value: 0x7f0c000d
            public const int notification_large_icon_width = 2131492877;
            
            // aapt resource value: 0x7f0c0002
            public const int notification_main_column_padding_top = 2131492866;
            
            // aapt resource value: 0x7f0c0003
            public const int notification_media_narrow_margin = 2131492867;
            
            // aapt resource value: 0x7f0c000e
            public const int notification_right_icon_size = 2131492878;
            
            // aapt resource value: 0x7f0c0000
            public const int notification_right_side_padding_top = 2131492864;
            
            // aapt resource value: 0x7f0c000f
            public const int notification_small_icon_background_padding = 2131492879;
            
            // aapt resource value: 0x7f0c0010
            public const int notification_small_icon_size_as_large = 2131492880;
            
            // aapt resource value: 0x7f0c0011
            public const int notification_subtext_size = 2131492881;
            
            // aapt resource value: 0x7f0c0012
            public const int notification_top_pad = 2131492882;
            
            // aapt resource value: 0x7f0c0013
            public const int notification_top_pad_large_text = 2131492883;
            
            // aapt resource value: 0x7f0c0016
            public const int pickerview_textsize = 2131492886;
            
            // aapt resource value: 0x7f0c0017
            public const int pickerview_topbar_btn_textsize = 2131492887;
            
            // aapt resource value: 0x7f0c0018
            public const int pickerview_topbar_height = 2131492888;
            
            // aapt resource value: 0x7f0c0019
            public const int pickerview_topbar_padding = 2131492889;
            
            // aapt resource value: 0x7f0c001a
            public const int pickerview_topbar_title_textsize = 2131492890;
            
            static Dimension()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Dimension()
            {
            }
        }
        
        public partial class Drawable
        {
            
            // aapt resource value: 0x7f020000
            public const int fingerprint_draw_off = 2130837504;
            
            // aapt resource value: 0x7f020001
            public const int fingerprint_draw_off_animation = 2130837505;
            
            // aapt resource value: 0x7f020002
            public const int fingerprint_draw_on = 2130837506;
            
            // aapt resource value: 0x7f020003
            public const int fingerprint_draw_on_animation = 2130837507;
            
            // aapt resource value: 0x7f020004
            public const int fingerprint_error = 2130837508;
            
            // aapt resource value: 0x7f020005
            public const int fingerprint_error_off = 2130837509;
            
            // aapt resource value: 0x7f020006
            public const int fingerprint_error_off_animation = 2130837510;
            
            // aapt resource value: 0x7f020007
            public const int fingerprint_error_on = 2130837511;
            
            // aapt resource value: 0x7f020008
            public const int fingerprint_error_on_animation = 2130837512;
            
            // aapt resource value: 0x7f020009
            public const int fingerprint_error_state_to_fp = 2130837513;
            
            // aapt resource value: 0x7f02000a
            public const int fingerprint_error_state_to_fp_animation = 2130837514;
            
            // aapt resource value: 0x7f02000b
            public const int fingerprint_fingerprint = 2130837515;
            
            // aapt resource value: 0x7f02000c
            public const int fingerprint_fp_to_error_state = 2130837516;
            
            // aapt resource value: 0x7f02000d
            public const int fingerprint_fp_to_error_state_animation = 2130837517;
            
            // aapt resource value: 0x7f02000e
            public const int gd_btn_shape_app_b = 2130837518;
            
            // aapt resource value: 0x7f02000f
            public const int gd_btn_shape_app_g = 2130837519;
            
            // aapt resource value: 0x7f020010
            public const int gd_btn_shape_app_w = 2130837520;
            
            // aapt resource value: 0x7f020011
            public const int gd_btn_shape_shadow_w = 2130837521;
            
            // aapt resource value: 0x7f020012
            public const int gd_click_effect_select = 2130837522;
            
            // aapt resource value: 0x7f020013
            public const int ic_gdmap_add = 2130837523;
            
            // aapt resource value: 0x7f020014
            public const int ic_gdmap_back = 2130837524;
            
            // aapt resource value: 0x7f020015
            public const int ic_gdmap_delete = 2130837525;
            
            // aapt resource value: 0x7f020016
            public const int ic_gdmap_home = 2130837526;
            
            // aapt resource value: 0x7f020017
            public const int ic_gdmap_mylocation = 2130837527;
            
            // aapt resource value: 0x7f020018
            public const int ic_gdmap_now = 2130837528;
            
            // aapt resource value: 0x7f020019
            public const int ic_gdmap_search = 2130837529;
            
            // aapt resource value: 0x7f02001a
            public const int ic_gdmap_zoom_out = 2130837530;
            
            // aapt resource value: 0x7f02001b
            public const int ic_gps_point = 2130837531;
            
            // aapt resource value: 0x7f02001c
            public const int Icon = 2130837532;
            
            // aapt resource value: 0x7f02001d
            public const int Loading = 2130837533;
            
            // aapt resource value: 0x7f02001e
            public const int notification_action_background = 2130837534;
            
            // aapt resource value: 0x7f02001f
            public const int notification_bg = 2130837535;
            
            // aapt resource value: 0x7f020020
            public const int notification_bg_low = 2130837536;
            
            // aapt resource value: 0x7f020021
            public const int notification_bg_low_normal = 2130837537;
            
            // aapt resource value: 0x7f020022
            public const int notification_bg_low_pressed = 2130837538;
            
            // aapt resource value: 0x7f020023
            public const int notification_bg_normal = 2130837539;
            
            // aapt resource value: 0x7f020024
            public const int notification_bg_normal_pressed = 2130837540;
            
            // aapt resource value: 0x7f020025
            public const int notification_icon_background = 2130837541;
            
            // aapt resource value: 0x7f020029
            public const int notification_template_icon_bg = 2130837545;
            
            // aapt resource value: 0x7f02002a
            public const int notification_template_icon_low_bg = 2130837546;
            
            // aapt resource value: 0x7f020026
            public const int notification_tile_bg = 2130837542;
            
            // aapt resource value: 0x7f020027
            public const int notify_panel_notification_icon_bg = 2130837543;
            
            // aapt resource value: 0x7f020028
            public const int selector_pickerview_btn = 2130837544;
            
            static Drawable()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Drawable()
            {
            }
        }
        
        public partial class Id
        {
            
            // aapt resource value: 0x7f0d000a
            public const int FILL = 2131558410;
            
            // aapt resource value: 0x7f0d000b
            public const int FILL_STROKE = 2131558411;
            
            // aapt resource value: 0x7f0d000c
            public const int STROKE = 2131558412;
            
            // aapt resource value: 0x7f0d002f
            public const int action0 = 2131558447;
            
            // aapt resource value: 0x7f0d002c
            public const int action_container = 2131558444;
            
            // aapt resource value: 0x7f0d0033
            public const int action_divider = 2131558451;
            
            // aapt resource value: 0x7f0d002d
            public const int action_image = 2131558445;
            
            // aapt resource value: 0x7f0d002e
            public const int action_text = 2131558446;
            
            // aapt resource value: 0x7f0d003d
            public const int actions = 2131558461;
            
            // aapt resource value: 0x7f0d0005
            public const int async = 2131558405;
            
            // aapt resource value: 0x7f0d0006
            public const int blocking = 2131558406;
            
            // aapt resource value: 0x7f0d0026
            public const int btnCancel = 2131558438;
            
            // aapt resource value: 0x7f0d0028
            public const int btnSubmit = 2131558440;
            
            // aapt resource value: 0x7f0d0030
            public const int cancel_action = 2131558448;
            
            // aapt resource value: 0x7f0d000d
            public const int center = 2131558413;
            
            // aapt resource value: 0x7f0d0038
            public const int chronometer = 2131558456;
            
            // aapt resource value: 0x7f0d002a
            public const int content_container = 2131558442;
            
            // aapt resource value: 0x7f0d0047
            public const int day = 2131558471;
            
            // aapt resource value: 0x7f0d001c
            public const int description = 2131558428;
            
            // aapt resource value: 0x7f0d003f
            public const int end_padder = 2131558463;
            
            // aapt resource value: 0x7f0d001d
            public const int fingerprint_icon = 2131558429;
            
            // aapt resource value: 0x7f0d0007
            public const int forever = 2131558407;
            
            // aapt resource value: 0x7f0d0011
            public const int gd_btn_back = 2131558417;
            
            // aapt resource value: 0x7f0d001a
            public const int gd_btn_myLocation = 2131558426;
            
            // aapt resource value: 0x7f0d0019
            public const int gd_btn_save = 2131558425;
            
            // aapt resource value: 0x7f0d0016
            public const int gd_img_search_delete = 2131558422;
            
            // aapt resource value: 0x7f0d0018
            public const int gd_ll_myhome = 2131558424;
            
            // aapt resource value: 0x7f0d0014
            public const int gd_ll_search = 2131558420;
            
            // aapt resource value: 0x7f0d0013
            public const int gd_mapView = 2131558419;
            
            // aapt resource value: 0x7f0d0010
            public const int gd_rl_topview = 2131558416;
            
            // aapt resource value: 0x7f0d0012
            public const int gd_tv_activity_title = 2131558418;
            
            // aapt resource value: 0x7f0d0017
            public const int gd_tv_radius = 2131558423;
            
            // aapt resource value: 0x7f0d0015
            public const int gd_tv_search_title = 2131558421;
            
            // aapt resource value: 0x7f0d001f
            public const int hdl_gallery_rootView = 2131558431;
            
            // aapt resource value: 0x7f0d0020
            public const int hdl_gallery_viewPager = 2131558432;
            
            // aapt resource value: 0x7f0d0022
            public const int hdl_options1 = 2131558434;
            
            // aapt resource value: 0x7f0d0023
            public const int hdl_options2 = 2131558435;
            
            // aapt resource value: 0x7f0d0024
            public const int hdl_options3 = 2131558436;
            
            // aapt resource value: 0x7f0d0021
            public const int hdl_pickerview_ll = 2131558433;
            
            // aapt resource value: 0x7f0d0048
            public const int hour = 2131558472;
            
            // aapt resource value: 0x7f0d003a
            public const int icon = 2131558458;
            
            // aapt resource value: 0x7f0d003e
            public const int icon_group = 2131558462;
            
            // aapt resource value: 0x7f0d0039
            public const int info = 2131558457;
            
            // aapt resource value: 0x7f0d0008
            public const int italic = 2131558408;
            
            // aapt resource value: 0x7f0d000e
            public const int left = 2131558414;
            
            // aapt resource value: 0x7f0d0000
            public const int line1 = 2131558400;
            
            // aapt resource value: 0x7f0d0001
            public const int line3 = 2131558401;
            
            // aapt resource value: 0x7f0d0032
            public const int media_actions = 2131558450;
            
            // aapt resource value: 0x7f0d0049
            public const int min = 2131558473;
            
            // aapt resource value: 0x7f0d0046
            public const int month = 2131558470;
            
            // aapt resource value: 0x7f0d002b
            public const int myButton = 2131558443;
            
            // aapt resource value: 0x7f0d0009
            public const int normal = 2131558409;
            
            // aapt resource value: 0x7f0d003c
            public const int notification_background = 2131558460;
            
            // aapt resource value: 0x7f0d0035
            public const int notification_main_column = 2131558453;
            
            // aapt resource value: 0x7f0d0034
            public const int notification_main_column_container = 2131558452;
            
            // aapt resource value: 0x7f0d0041
            public const int options1 = 2131558465;
            
            // aapt resource value: 0x7f0d0042
            public const int options2 = 2131558466;
            
            // aapt resource value: 0x7f0d0043
            public const int options3 = 2131558467;
            
            // aapt resource value: 0x7f0d0040
            public const int optionspicker = 2131558464;
            
            // aapt resource value: 0x7f0d0029
            public const int outmost_container = 2131558441;
            
            // aapt resource value: 0x7f0d000f
            public const int right = 2131558415;
            
            // aapt resource value: 0x7f0d003b
            public const int right_icon = 2131558459;
            
            // aapt resource value: 0x7f0d0036
            public const int right_side = 2131558454;
            
            // aapt resource value: 0x7f0d0025
            public const int rv_topbar = 2131558437;
            
            // aapt resource value: 0x7f0d004a
            public const int second = 2131558474;
            
            // aapt resource value: 0x7f0d001e
            public const int status = 2131558430;
            
            // aapt resource value: 0x7f0d0031
            public const int status_bar_latest_event_content = 2131558449;
            
            // aapt resource value: 0x7f0d001b
            public const int subtitle = 2131558427;
            
            // aapt resource value: 0x7f0d0002
            public const int text = 2131558402;
            
            // aapt resource value: 0x7f0d0003
            public const int text2 = 2131558403;
            
            // aapt resource value: 0x7f0d0037
            public const int time = 2131558455;
            
            // aapt resource value: 0x7f0d0044
            public const int timepicker = 2131558468;
            
            // aapt resource value: 0x7f0d0004
            public const int title = 2131558404;
            
            // aapt resource value: 0x7f0d0027
            public const int tvTitle = 2131558439;
            
            // aapt resource value: 0x7f0d0045
            public const int year = 2131558469;
            
            static Id()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Id()
            {
            }
        }
        
        public partial class Integer
        {
            
            // aapt resource value: 0x7f090002
            public const int animation_default_duration = 2131296258;
            
            // aapt resource value: 0x7f090000
            public const int cancel_button_image_alpha = 2131296256;
            
            // aapt resource value: 0x7f090001
            public const int status_bar_notification_info_maxnum = 2131296257;
            
            static Integer()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Integer()
            {
            }
        }
        
        public partial class Layout
        {
            
            // aapt resource value: 0x7f040000
            public const int activity_geofence_round = 2130968576;
            
            // aapt resource value: 0x7f040001
            public const int biometric_prompt_dialog_content = 2130968577;
            
            // aapt resource value: 0x7f040002
            public const int hdl_gallery_banner_view_layout = 2130968578;
            
            // aapt resource value: 0x7f040003
            public const int hdl_pickerview = 2130968579;
            
            // aapt resource value: 0x7f040004
            public const int include_pickerview_topbar = 2130968580;
            
            // aapt resource value: 0x7f040005
            public const int layout_basepickerview = 2130968581;
            
            // aapt resource value: 0x7f040006
            public const int Main = 2130968582;
            
            // aapt resource value: 0x7f040007
            public const int notification_action = 2130968583;
            
            // aapt resource value: 0x7f040008
            public const int notification_action_tombstone = 2130968584;
            
            // aapt resource value: 0x7f040009
            public const int notification_media_action = 2130968585;
            
            // aapt resource value: 0x7f04000a
            public const int notification_media_cancel_action = 2130968586;
            
            // aapt resource value: 0x7f04000b
            public const int notification_template_big_media = 2130968587;
            
            // aapt resource value: 0x7f04000c
            public const int notification_template_big_media_custom = 2130968588;
            
            // aapt resource value: 0x7f04000d
            public const int notification_template_big_media_narrow = 2130968589;
            
            // aapt resource value: 0x7f04000e
            public const int notification_template_big_media_narrow_custom = 2130968590;
            
            // aapt resource value: 0x7f04000f
            public const int notification_template_custom_big = 2130968591;
            
            // aapt resource value: 0x7f040010
            public const int notification_template_icon_group = 2130968592;
            
            // aapt resource value: 0x7f040011
            public const int notification_template_lines_media = 2130968593;
            
            // aapt resource value: 0x7f040012
            public const int notification_template_media = 2130968594;
            
            // aapt resource value: 0x7f040013
            public const int notification_template_media_custom = 2130968595;
            
            // aapt resource value: 0x7f040014
            public const int notification_template_part_chronometer = 2130968596;
            
            // aapt resource value: 0x7f040015
            public const int notification_template_part_time = 2130968597;
            
            // aapt resource value: 0x7f040016
            public const int pickerview_options = 2130968598;
            
            // aapt resource value: 0x7f040017
            public const int pickerview_time = 2130968599;
            
            static Layout()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Layout()
            {
            }
        }
        
        public partial class Mipmap
        {
            
            // aapt resource value: 0x7f030000
            public const int Icon = 2130903040;
            
            static Mipmap()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Mipmap()
            {
            }
        }
        
        public partial class String
        {
            
            // aapt resource value: 0x7f0a0003
            public const int app_name = 2131361795;
            
            // aapt resource value: 0x7f0a0004
            public const int gd_activity_title = 2131361796;
            
            // aapt resource value: 0x7f0a0005
            public const int gd_cancel = 2131361797;
            
            // aapt resource value: 0x7f0a0006
            public const int gd_myhome = 2131361798;
            
            // aapt resource value: 0x7f0a0007
            public const int gd_notifyMsg = 2131361799;
            
            // aapt resource value: 0x7f0a0008
            public const int gd_notifyTitle = 2131361800;
            
            // aapt resource value: 0x7f0a0009
            public const int gd_save = 2131361801;
            
            // aapt resource value: 0x7f0a000a
            public const int gd_search_tip = 2131361802;
            
            // aapt resource value: 0x7f0a000b
            public const int gd_setting = 2131361803;
            
            // aapt resource value: 0x7f0a0014
            public const int hello = 2131361812;
            
            // aapt resource value: 0x7f0a0001
            public const int not_recognized_fingerprint_hint = 2131361793;
            
            // aapt resource value: 0x7f0a000c
            public const int pickerview_cancel = 2131361804;
            
            // aapt resource value: 0x7f0a000d
            public const int pickerview_day = 2131361805;
            
            // aapt resource value: 0x7f0a000e
            public const int pickerview_hours = 2131361806;
            
            // aapt resource value: 0x7f0a000f
            public const int pickerview_minutes = 2131361807;
            
            // aapt resource value: 0x7f0a0010
            public const int pickerview_month = 2131361808;
            
            // aapt resource value: 0x7f0a0011
            public const int pickerview_seconds = 2131361809;
            
            // aapt resource value: 0x7f0a0012
            public const int pickerview_submit = 2131361810;
            
            // aapt resource value: 0x7f0a0013
            public const int pickerview_year = 2131361811;
            
            // aapt resource value: 0x7f0a0000
            public const int status_bar_notification_info_overflow = 2131361792;
            
            // aapt resource value: 0x7f0a0002
            public const int touch_fingerprint_sensor_hint = 2131361794;
            
            static String()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private String()
            {
            }
        }
        
        public partial class Style
        {
            
            // aapt resource value: 0x7f07000c
            public const int BottomSheetDialogAnimation = 2131165196;
            
            // aapt resource value: 0x7f070011
            public const int MyTheme = 2131165201;
            
            // aapt resource value: 0x7f070005
            public const int TextAppearance_Compat_Notification = 2131165189;
            
            // aapt resource value: 0x7f070006
            public const int TextAppearance_Compat_Notification_Info = 2131165190;
            
            // aapt resource value: 0x7f070000
            public const int TextAppearance_Compat_Notification_Info_Media = 2131165184;
            
            // aapt resource value: 0x7f07000b
            public const int TextAppearance_Compat_Notification_Line2 = 2131165195;
            
            // aapt resource value: 0x7f070004
            public const int TextAppearance_Compat_Notification_Line2_Media = 2131165188;
            
            // aapt resource value: 0x7f070001
            public const int TextAppearance_Compat_Notification_Media = 2131165185;
            
            // aapt resource value: 0x7f070007
            public const int TextAppearance_Compat_Notification_Time = 2131165191;
            
            // aapt resource value: 0x7f070002
            public const int TextAppearance_Compat_Notification_Time_Media = 2131165186;
            
            // aapt resource value: 0x7f070008
            public const int TextAppearance_Compat_Notification_Title = 2131165192;
            
            // aapt resource value: 0x7f070003
            public const int TextAppearance_Compat_Notification_Title_Media = 2131165187;
            
            // aapt resource value: 0x7f07000d
            public const int Theme_BiometricPromptDialog = 2131165197;
            
            // aapt resource value: 0x7f070009
            public const int Widget_Compat_NotificationActionContainer = 2131165193;
            
            // aapt resource value: 0x7f07000a
            public const int Widget_Compat_NotificationActionText = 2131165194;
            
            // aapt resource value: 0x7f07000e
            public const int custom_dialog2 = 2131165198;
            
            // aapt resource value: 0x7f07000f
            public const int picker_view_scale_anim = 2131165199;
            
            // aapt resource value: 0x7f070010
            public const int picker_view_slide_anim = 2131165200;
            
            static Style()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Style()
            {
            }
        }
        
        public partial class Xml
        {
            
            // aapt resource value: 0x7f060000
            public const int file_paths = 2131099648;
            
            static Xml()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Xml()
            {
            }
        }
        
        public partial class Styleable
        {
            
            public static int[] FontFamily = new int[] {
                    2130771968,
                    2130771969,
                    2130771970,
                    2130771971,
                    2130771972,
                    2130771973};
            
            // aapt resource value: 0
            public const int FontFamily_fontProviderAuthority = 0;
            
            // aapt resource value: 3
            public const int FontFamily_fontProviderCerts = 3;
            
            // aapt resource value: 4
            public const int FontFamily_fontProviderFetchStrategy = 4;
            
            // aapt resource value: 5
            public const int FontFamily_fontProviderFetchTimeout = 5;
            
            // aapt resource value: 1
            public const int FontFamily_fontProviderPackage = 1;
            
            // aapt resource value: 2
            public const int FontFamily_fontProviderQuery = 2;
            
            public static int[] FontFamilyFont = new int[] {
                    2130771974,
                    2130771975,
                    2130771976};
            
            // aapt resource value: 1
            public const int FontFamilyFont_font = 1;
            
            // aapt resource value: 0
            public const int FontFamilyFont_fontStyle = 0;
            
            // aapt resource value: 2
            public const int FontFamilyFont_fontWeight = 2;
            
            public static int[] HDLArcSeekBar = new int[] {
                    2130771978,
                    2130771979,
                    2130771980,
                    2130771981,
                    2130771982,
                    2130771983,
                    2130771984,
                    2130771985,
                    2130771986,
                    2130771987,
                    2130771988,
                    2130771989,
                    2130771990,
                    2130771991,
                    2130771992,
                    2130771993,
                    2130771994,
                    2130771995};
            
            // aapt resource value: 5
            public const int HDLArcSeekBar_arc_border_color = 5;
            
            // aapt resource value: 4
            public const int HDLArcSeekBar_arc_border_width = 4;
            
            // aapt resource value: 3
            public const int HDLArcSeekBar_arc_colors = 3;
            
            // aapt resource value: 6
            public const int HDLArcSeekBar_arc_max = 6;
            
            // aapt resource value: 7
            public const int HDLArcSeekBar_arc_min = 7;
            
            // aapt resource value: 1
            public const int HDLArcSeekBar_arc_open_angle = 1;
            
            // aapt resource value: 8
            public const int HDLArcSeekBar_arc_progress = 8;
            
            // aapt resource value: 16
            public const int HDLArcSeekBar_arc_progress_bar_color = 16;
            
            // aapt resource value: 17
            public const int HDLArcSeekBar_arc_progress_bar_text_unit = 17;
            
            // aapt resource value: 2
            public const int HDLArcSeekBar_arc_rotate_angle = 2;
            
            // aapt resource value: 15
            public const int HDLArcSeekBar_arc_shadow_radius = 15;
            
            // aapt resource value: 10
            public const int HDLArcSeekBar_arc_thumb_color = 10;
            
            // aapt resource value: 11
            public const int HDLArcSeekBar_arc_thumb_radius = 11;
            
            // aapt resource value: 13
            public const int HDLArcSeekBar_arc_thumb_shadow_color = 13;
            
            // aapt resource value: 12
            public const int HDLArcSeekBar_arc_thumb_shadow_radius = 12;
            
            // aapt resource value: 9
            public const int HDLArcSeekBar_arc_thumb_width = 9;
            
            // aapt resource value: 0
            public const int HDLArcSeekBar_arc_width = 0;
            
            // aapt resource value: 14
            public const int HDLArcSeekBar_hdl_arc_thumb_mode = 14;
            
            public static int[] HDLWaveSeekBar = new int[] {
                    2130771996,
                    2130771997,
                    2130771998,
                    2130771999,
                    2130772000,
                    2130772001};
            
            // aapt resource value: 1
            public const int HDLWaveSeekBar_second_wave_color = 1;
            
            // aapt resource value: 2
            public const int HDLWaveSeekBar_wave_bg_color = 2;
            
            // aapt resource value: 3
            public const int HDLWaveSeekBar_wave_border_color = 3;
            
            // aapt resource value: 0
            public const int HDLWaveSeekBar_wave_color = 0;
            
            // aapt resource value: 5
            public const int HDLWaveSeekBar_wave_height = 5;
            
            // aapt resource value: 4
            public const int HDLWaveSeekBar_wave_width = 4;
            
            public static int[] pickerview = new int[] {
                    2130772002,
                    2130772003,
                    2130772004,
                    2130772005,
                    2130772006,
                    2130772007};
            
            // aapt resource value: 4
            public const int pickerview_wheelview_dividerColor = 4;
            
            // aapt resource value: 0
            public const int pickerview_wheelview_gravity = 0;
            
            // aapt resource value: 5
            public const int pickerview_wheelview_lineSpacingMultiplier = 5;
            
            // aapt resource value: 3
            public const int pickerview_wheelview_textColorCenter = 3;
            
            // aapt resource value: 2
            public const int pickerview_wheelview_textColorOut = 2;
            
            // aapt resource value: 1
            public const int pickerview_wheelview_textSize = 1;
            
            static Styleable()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Styleable()
            {
            }
        }
    }
}
#pragma warning restore 1591