-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreplay_pid1724.log
1485 lines (1485 loc) · 294 KB
/
replay_pid1724.log
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
JvmtiExport can_access_local_variables 0
JvmtiExport can_hotswap_or_post_breakpoint 0
JvmtiExport can_post_on_exceptions 0
# 463 ciObject found
ciMethod java/lang/Object <init> ()V 4097 1 393282 0 0
ciMethod java/lang/Object getClass ()Ljava/lang/Class; 2049 1 256 0 -1
ciMethod java/lang/System arraycopy (Ljava/lang/Object;ILjava/lang/Object;II)V 2049 1 256 0 -1
ciMethod java/util/Map get (Ljava/lang/Object;)Ljava/lang/Object; 0 0 1 0 -1
ciMethod java/util/Map put (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; 0 0 1 0 -1
ciMethod java/lang/NullPointerException <init> (Ljava/lang/String;)V 0 0 1 0 -1
ciMethod java/lang/Math max (II)I 217 1 32026 0 -1
ciMethod java/util/Iterator hasNext ()Z 0 0 1 0 -1
ciMethod java/util/Iterator next ()Ljava/lang/Object; 0 0 1 0 -1
ciMethod java/util/ArrayList ensureCapacityInternal (I)V 4001 1 143904 0 0
ciMethod java/util/ArrayList ensureExplicitCapacity (I)V 4001 1 142258 0 544
ciMethod java/util/ArrayList grow (I)V 121 1 5135 0 544
ciMethod java/util/ArrayList hugeCapacity (I)I 0 0 1 0 -1
ciMethod java/util/ArrayList size ()I 1025 1 128 0 0
ciMethod java/util/ArrayList elementData (I)Ljava/lang/Object; 2193 1 423744 0 0
ciMethod java/util/ArrayList get (I)Ljava/lang/Object; 2065 1 407319 0 128
ciMethod java/util/ArrayList set (ILjava/lang/Object;)Ljava/lang/Object; 3065 1 4391 0 -1
ciMethod java/util/ArrayList add (Ljava/lang/Object;)Z 4001 1 139020 0 736
ciMethod java/util/ArrayList clear ()V 3073 8065 4480 0 0
ciMethod java/util/ArrayList rangeCheck (I)V 2065 1 423100 0 64
ciMethod java/util/ArrayList iterator ()Ljava/util/Iterator; 2049 1 62234 0 192
ciMethod java/util/ArrayList access$100 (Ljava/util/ArrayList;)I 1025 1 128 0 0
ciMethod java/util/HashMap <init> ()V 4097 1 17057 0 -1
ciMethod java/util/Arrays copyOf ([Ljava/lang/Object;I)[Ljava/lang/Object; 3145 1 10963 0 0
ciMethod java/util/Arrays copyOf ([Ljava/lang/Object;ILjava/lang/Class;)[Ljava/lang/Object; 3153 1 5514 0 -1
ciMethodData java/lang/Object <init> ()V 2 393282 orig 264 136 160 177 82 0 0 0 0 104 4 194 20 0 0 0 0 32 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 17 242 47 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0
ciMethod java/util/ArrayList$Itr <init> (Ljava/util/ArrayList;)V 2041 1 62316 0 96
ciMethod java/util/ArrayList$Itr hasNext ()Z 2049 1 235313 0 64
ciMethod java/util/ArrayList$Itr next ()Ljava/lang/Object; 2209 1 5410 0 224
ciMethod java/util/ArrayList$Itr checkForComodification ()V 2209 1 5410 0 0
ciMethod java/util/ArrayList$Itr <init> (Ljava/util/ArrayList;Ljava/util/ArrayList$1;)V 2041 1 62317 0 96
ciMethodData java/util/ArrayList add (Ljava/lang/Object;)Z 2 140462 orig 264 136 160 177 82 0 0 0 0 80 204 208 20 0 0 0 0 144 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 244 1 0 0 209 21 17 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 15 0 2 0 0 0 64 0 0 0 255 255 255 255 2 0 7 0 0 0 0 0 data 8 0x70002 0x222ba 0x1a0104 0x0 0x2e8e410 0x8 0x17594e20 0x8 oops 2 4 java/lang/String 6 com/android/dx/dex/file/EncodedField
ciMethodData java/util/ArrayList ensureCapacityInternal (I)V 2 143904 orig 264 136 160 177 82 0 0 0 0 80 194 208 20 0 0 0 0 144 1 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 244 1 0 0 97 129 17 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 14 0 2 0 0 0 64 0 0 0 255 255 255 255 7 0 7 0 0 0 0 0 data 8 0x70007 0x1bad5 0x30 0x7557 0xd0002 0x7557 0x130002 0x2302c oops 0
ciMethodData java/util/ArrayList ensureExplicitCapacity (I)V 2 142258 orig 264 136 160 177 82 0 0 0 0 248 194 208 20 0 0 0 0 88 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 244 1 0 0 241 77 17 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 48 0 0 0 255 255 255 255 7 0 17 0 0 0 0 0 data 6 0x110007 0x1c4fa 0x30 0x64c4 0x160002 0x64c4 oops 0
ciMethodData java/util/ArrayList grow (I)V 2 5135 orig 264 136 160 177 82 0 0 0 0 176 195 208 20 0 0 0 0 176 1 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 1 160 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 15 0 2 0 0 0 96 0 0 0 255 255 255 255 7 0 15 0 0 0 0 0 data 12 0xf0007 0x180 0x20 0x1280 0x180007 0x1400 0x30 0x0 0x1c0002 0x0 0x260002 0x1400 oops 0
ciMethod java/lang/IndexOutOfBoundsException <init> ()V 0 0 1 0 -1
ciMethodData java/util/ArrayList get (I)Ljava/lang/Object; 2 412133 orig 264 136 160 177 82 0 0 0 0 8 203 208 20 0 0 0 0 144 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 17 71 50 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 64 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 8 0x20002 0x648e2 0x70005 0x0 0x1757e4b0 0x648e2 0x0 0x0 oops 1 4 java/util/ArrayList
ciMethodData java/util/ArrayList rangeCheck (I)V 2 423194 orig 264 136 160 177 82 0 0 0 0 80 211 208 20 0 0 0 0 104 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 193 160 51 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 5 0 2 0 0 0 64 0 0 0 255 255 255 255 7 0 5 0 0 0 0 0 data 8 0x50007 0x67418 0x40 0x0 0xe0002 0x0 0x110002 0x0 oops 0
ciMethodData java/util/ArrayList elementData (I)Ljava/lang/Object; 2 423805 orig 264 136 160 177 82 0 0 0 0 112 202 208 20 0 0 0 0 40 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 1 0 0 89 179 51 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0
ciMethodData java/util/ArrayList$Itr hasNext ()Z 2 235313 orig 264 136 160 177 82 0 0 0 0 8 111 231 20 0 0 0 0 144 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 137 177 28 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 72 0 0 0 255 255 255 255 2 0 8 0 0 0 0 0 data 9 0x80002 0x39631 0xb0007 0x4d61 0x38 0x348d0 0xf0003 0x348d0 0x18 oops 0
ciMethodData java/util/ArrayList$Itr next ()Ljava/lang/Object; 2 5410 orig 264 136 160 177 82 0 0 0 0 216 111 231 20 0 0 0 0 232 1 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1 0 0 113 160 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 10 0 2 0 0 0 160 0 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 20 0x10005 0x0 0x1708c280 0x140e 0x0 0x0 0xe0002 0x140e 0x110007 0x140e 0x30 0x0 0x180002 0x0 0x270007 0x140e 0x30 0x0 0x2e0002 0x0 oops 1 2 java/util/ArrayList$Itr
ciMethodData java/util/ArrayList$Itr checkForComodification ()V 2 5410 orig 264 136 160 177 82 0 0 0 0 64 114 231 20 0 0 0 0 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1 0 0 113 160 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 48 0 0 0 255 255 255 255 7 0 11 0 0 0 0 0 data 6 0xb0007 0x140e 0x30 0x0 0x120002 0x0 oops 0
ciMethodData java/util/ArrayList iterator ()Ljava/util/Iterator; 2 62234 orig 264 136 160 177 82 0 0 0 0 248 218 208 20 0 0 0 0 48 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 209 144 7 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 16 0 0 0 255 255 255 255 2 0 6 0 0 0 0 0 data 2 0x60002 0xf21a oops 0
ciMethodData java/util/ArrayList$Itr <init> (Ljava/util/ArrayList;Ljava/util/ArrayList$1;)V 2 62317 orig 264 136 160 177 82 0 0 0 0 208 114 231 20 0 0 0 0 64 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 113 147 7 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 2 0x20002 0xf26e oops 0
ciMethodData java/util/ArrayList$Itr <init> (Ljava/util/ArrayList;)V 2 62316 orig 264 136 160 177 82 0 0 0 0 104 110 231 20 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 105 147 7 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 6 0 0 0 0 0 data 2 0x60002 0xf26d oops 0
ciMethodData java/util/Arrays copyOf ([Ljava/lang/Object;I)[Ljava/lang/Object; 2 10963 orig 264 136 160 177 82 0 0 0 0 56 169 212 20 0 0 0 0 192 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 137 1 0 0 81 74 1 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 112 0 0 0 255 255 255 255 5 0 3 0 0 0 0 0 data 14 0x30005 0x2 0x175e9f30 0x2948 0x0 0x0 0x60002 0x294a 0x90004 0x0 0x175e9f30 0x2 0x0 0x0 oops 2 2 [Ljava/lang/Object; 10 [Ljava/lang/Object;
ciMethodData java/util/ArrayList clear ()V 2 10361 orig 264 136 160 177 82 0 0 0 0 48 208 208 20 0 0 0 0 176 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240 3 0 0 1 128 0 0 73 36 1 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 6 0 2 0 0 0 104 0 0 0 255 255 255 255 7 0 17 0 0 0 0 0 data 13 0x110007 0x1000 0x68 0x2489 0x1a0104 0x0 0x0 0x0 0x0 0x0 0x1e0003 0x2489 0xffffffffffffffb0 oops 0
ciMethod com/android/dex/util/ExceptionWithContext addContext (Ljava/lang/String;)V 0 0 1 0 -1
ciMethod com/android/dx/rop/cst/CstType getClassType ()Lcom/android/dx/rop/type/Type; 1177 1 147 0 0
ciMethod com/android/dx/rop/type/TypeBearer getType ()Lcom/android/dx/rop/type/Type; 0 0 1 0 -1
ciMethod com/android/dx/rop/type/TypeBearer getFrameType ()Lcom/android/dx/rop/type/TypeBearer; 0 0 1 0 -1
ciMethod com/android/dx/rop/cst/ConstantPool get (I)Lcom/android/dx/rop/cst/Constant; 0 0 1 0 -1
ciMethod com/android/dx/util/ByteArray getByte (I)I 0 0 58 0 -1
ciMethod com/android/dx/util/ByteArray getShort (I)I 113 1 452 0 -1
ciMethod com/android/dx/util/ByteArray getInt (I)I 585 1 2919 0 -1
ciMethod com/android/dx/util/ByteArray getUnsignedByte (I)I 2321 1 38784 0 -1
ciMethod com/android/dx/util/ByteArray getUnsignedShort (I)I 2153 1 18497 0 -1
ciMethod com/android/dx/cf/code/BytecodeArray$Visitor visitInvalid (III)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/BytecodeArray$Visitor visitNoArgs (IIILcom/android/dx/rop/type/Type;)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/BytecodeArray$Visitor visitLocal (IIIILcom/android/dx/rop/type/Type;I)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/BytecodeArray$Visitor visitConstant (IIILcom/android/dx/rop/cst/Constant;I)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/BytecodeArray$Visitor visitBranch (IIII)V 0 0 1 0 -1
ciMethod com/android/dx/rop/cst/CstInteger make (I)Lcom/android/dx/rop/cst/CstInteger; 209 1 1126 0 -1
ciMethod com/android/dx/rop/cst/CstInteger getValue ()I 417 1 2842 0 -1
ciMethod com/android/dx/util/MutabilityControl <init> (Z)V 2049 1 26377 0 32
ciMethod com/android/dx/util/MutabilityControl setImmutable ()V 2089 1 79564 0 0
ciMethod com/android/dx/util/MutabilityControl throwIfImmutable ()V 2153 1 143929 0 64
ciMethod com/android/dx/util/MutabilityControl throwIfMutable ()V 2081 1 24612 0 0
ciMethod com/android/dx/rop/type/Type getCategory ()I 2065 1 1282 0 -1
ciMethod com/android/dx/rop/type/StdTypeList <init> (I)V 2129 1 4336 0 0
ciMethod com/android/dx/rop/type/StdTypeList set (ILcom/android/dx/rop/type/Type;)V 1241 1 2324 0 0
ciMethod com/android/dx/util/FixedSizeList <init> (I)V 2049 1 5433 0 256
ciMethod com/android/dx/util/FixedSizeList size ()I 2049 1 176275 0 0
ciMethod com/android/dx/util/FixedSizeList get0 (I)Ljava/lang/Object; 2337 1 5485 0 128
ciMethod com/android/dx/util/FixedSizeList set0 (ILjava/lang/Object;)V 3081 1 76377 0 224
ciMethod com/android/dx/util/FixedSizeList throwIndex (I)Ljava/lang/Object; 0 0 1 0 -1
ciMethod com/android/dx/cf/iface/Member getAccessFlags ()I 0 0 1 0 -1
ciMethod com/android/dx/cf/iface/StdMember getAccessFlags ()I 1033 1 129 0 0
ciMethod com/android/dx/cf/code/BytecodeArray parseInstruction (ILcom/android/dx/cf/code/BytecodeArray$Visitor;)I 2097 1 6302 0 -1
ciMethod com/android/dx/cf/code/BytecodeArray parseTableswitch (ILcom/android/dx/cf/code/BytecodeArray$Visitor;)I 0 0 1 0 -1
ciMethod com/android/dx/cf/code/BytecodeArray parseLookupswitch (ILcom/android/dx/cf/code/BytecodeArray$Visitor;)I 0 0 1 0 -1
ciMethod com/android/dx/cf/code/BytecodeArray parseNewarray (ILcom/android/dx/cf/code/BytecodeArray$Visitor;)I 0 0 14 0 -1
ciMethod com/android/dx/cf/code/BytecodeArray parseWide (ILcom/android/dx/cf/code/BytecodeArray$Visitor;)I 0 0 1 0 -1
ciMethod com/android/dx/cf/code/SimException <init> (Ljava/lang/String;)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/ByteCatchList get (I)Lcom/android/dx/cf/code/ByteCatchList$Item; 0 0 7557 0 0
ciMethod com/android/dx/cf/code/ByteCatchList toRopCatchList ()Lcom/android/dx/rop/type/TypeList; 3089 1 4479 0 0
ciMethod com/android/dx/cf/attrib/AttCode getCatches ()Lcom/android/dx/cf/code/ByteCatchList; 1137 1 142 0 0
ciMethodData com/android/dx/util/MutabilityControl throwIfImmutable ()V 2 143929 orig 264 136 160 177 82 0 0 0 0 152 55 6 21 0 0 0 0 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 1 0 0 97 137 17 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 5 0 2 0 0 0 48 0 0 0 255 255 255 255 7 0 4 0 0 0 0 0 data 6 0x40007 0x2312c 0x30 0x0 0xd0002 0x0 oops 0
ciMethod com/android/dx/cf/code/ConcreteMethod getAccessFlags ()I 2001 1 5795 0 0
ciMethod com/android/dx/cf/code/ConcreteMethod getCatches ()Lcom/android/dx/cf/code/ByteCatchList; 3137 1 7565 0 0
ciMethod com/android/dx/cf/code/Ropper getSpecialLabel (I)I 1305 1 2171 0 0
ciMethod com/android/dx/cf/code/Ropper getMinimumUnreservedLabel ()I 2049 1 1169 0 0
ciMethod com/android/dx/cf/code/Ropper getAvailableLabel ()I 1601 23753 1169 0 992
ciMethod com/android/dx/cf/code/Ropper isSynchronized ()Z 2001 1 5778 0 0
ciMethod com/android/dx/cf/code/Ropper labelToResultIndex (I)I 2425 32769 1079 0 608
ciMethod com/android/dx/cf/code/Ropper addBlock (Lcom/android/dx/rop/code/BasicBlock;Lcom/android/dx/util/IntList;)V 2233 1 3134 0 0
ciMethod com/android/dx/cf/code/Ropper addOrReplaceBlock (Lcom/android/dx/rop/code/BasicBlock;Lcom/android/dx/util/IntList;)Z 3249 1 4479 0 0
ciMethod com/android/dx/cf/code/Ropper removeBlockAndSpecialSuccessors (I)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/Ropper processBlock (Lcom/android/dx/cf/code/ByteBlock;Lcom/android/dx/cf/code/Frame;[I)V 3073 11665 4480 0 -1
ciMethod com/android/dx/cf/code/Ropper mergeAndWorkAsNecessary (IILcom/android/dx/cf/code/Ropper$Subroutine;Lcom/android/dx/cf/code/Frame;[I)V 2049 1 5171 0 0
ciMethod com/android/dx/cf/code/Ropper access$000 (Lcom/android/dx/cf/code/Ropper;)Lcom/android/dx/cf/code/Ropper$ExceptionSetupLabelAllocator; 129 1 16 0 0
ciMethod com/android/dx/rop/code/Insn <init> (Lcom/android/dx/rop/code/Rop;Lcom/android/dx/rop/code/SourcePosition;Lcom/android/dx/rop/code/RegisterSpec;Lcom/android/dx/rop/code/RegisterSpecList;)V 3193 1 5546 0 192
ciMethod com/android/dx/rop/code/Insn getOpcode ()Lcom/android/dx/rop/code/Rop; 1129 1 141 0 0
ciMethod com/android/dx/rop/code/Insn getPosition ()Lcom/android/dx/rop/code/SourcePosition; 1073 1 134 0 0
ciMethod com/android/dx/rop/code/Insn canThrow ()Z 321 1 532 0 -1
ciMethod com/android/dx/rop/code/Insn withAddedCatch (Lcom/android/dx/rop/type/Type;)Lcom/android/dx/rop/code/Insn; 0 0 1 0 -1
ciMethod com/android/dx/rop/code/PlainInsn <init> (Lcom/android/dx/rop/code/Rop;Lcom/android/dx/rop/code/SourcePosition;Lcom/android/dx/rop/code/RegisterSpec;Lcom/android/dx/rop/code/RegisterSpecList;)V 3073 1 5504 0 288
ciMethod com/android/dx/util/Bits set ([II)V 2249 1 32347 0 128
ciMethod com/android/dx/util/IntList makeImmutable (I)Lcom/android/dx/util/IntList; 3177 1 5823 0 0
ciMethod com/android/dx/util/IntList <init> ()V 2401 1 10693 0 0
ciMethod com/android/dx/util/IntList <init> (I)V 2097 1 5382 0 256
ciMethod com/android/dx/util/IntList equals (Ljava/lang/Object;)Z 2049 1 1218 0 0
ciMethod com/android/dx/util/IntList size ()I 1585 1 198 0 0
ciMethod com/android/dx/util/IntList get (I)I 2113 1 5700 0 128
ciMethod com/android/dx/util/IntList set (II)V 3073 1 5553 0 192
ciMethod com/android/dx/util/IntList add (I)V 2049 1 5594 0 832
ciMethod com/android/dx/util/IntList growIfNeeded ()V 2041 1 5594 0 576
ciMethod com/android/dx/util/IntList mutableCopy ()Lcom/android/dx/util/IntList; 1913 16177 2213 0 1472
ciMethod com/android/dx/util/IntList indexOf (I)I 2049 1 18733 0 384
ciMethod com/android/dx/util/IntList binarysearch (I)I 2049 1857 10589 0 384
ciMethod com/android/dx/util/IntList contains (I)Z 2881 1 13036 0 0
ciMethod com/android/dx/cf/code/ByteOps opInfo (I)I 2129 1 6014 0 -1
ciMethod com/android/dx/cf/code/ByteCatchList$Item getHandlerPc ()I 1025 1 128 0 0
ciMethod com/android/dx/cf/code/ByteCatchList$Item getExceptionClass ()Lcom/android/dx/rop/cst/CstType; 1 1 3406 0 0
ciMethod com/android/dx/cf/code/ByteBlock getLabel ()I 1153 1 144 0 0
ciMethod com/android/dx/cf/code/ByteBlock getStart ()I 1057 1 132 0 0
ciMethod com/android/dx/cf/code/ByteBlock getEnd ()I 1057 1 132 0 0
ciMethod com/android/dx/cf/code/ByteBlock getSuccessors ()Lcom/android/dx/util/IntList; 1057 1 132 0 0
ciMethod com/android/dx/cf/code/ByteBlock getCatches ()Lcom/android/dx/cf/code/ByteCatchList; 1057 1 132 0 0
ciMethod com/android/dx/cf/code/RopperMachine getInsns ()Ljava/util/ArrayList; 1057 1 132 0 0
ciMethod com/android/dx/cf/code/RopperMachine startBlock (Lcom/android/dx/rop/type/TypeList;)V 3089 1 4479 0 0
ciMethod com/android/dx/cf/code/RopperMachine wereCatchesUsed ()Z 1057 1 132 0 0
ciMethod com/android/dx/cf/code/RopperMachine returns ()Z 521 1 65 0 0
ciMethod com/android/dx/cf/code/RopperMachine getPrimarySuccessorIndex ()I 1065 1 133 0 0
ciMethod com/android/dx/cf/code/RopperMachine getExtraBlockCount ()I 1057 1 132 0 0
ciMethod com/android/dx/cf/code/RopperMachine canThrow ()Z 0 0 1 0 -1
ciMethod com/android/dx/cf/code/RopperMachine hasJsr ()Z 1057 1 132 0 0
ciMethod com/android/dx/cf/code/RopperMachine hasRet ()Z 3097 1 4479 0 0
ciMethod com/android/dx/cf/code/RopperMachine getReturnAddress ()Lcom/android/dx/cf/code/ReturnAddress; 0 0 1 0 -1
ciMethod com/android/dx/cf/code/Simulator simulate (Lcom/android/dx/cf/code/ByteBlock;Lcom/android/dx/cf/code/Frame;)V 3089 6713 4479 0 0
ciMethod com/android/dx/cf/code/Simulator$SimVisitor setFrame (Lcom/android/dx/cf/code/Frame;)V 4097 1 4479 0 0
ciMethod com/android/dx/cf/code/Simulator$SimVisitor setPreviousOffset (I)V 4097 1 8412 0 0
ciMethod com/android/dx/cf/code/Frame <init> (Lcom/android/dx/cf/code/LocalsArray;Lcom/android/dx/cf/code/ExecutionStack;Lcom/android/dx/util/IntList;)V 3241 1 5525 0 192
ciMethod com/android/dx/cf/code/Frame copy ()Lcom/android/dx/cf/code/Frame; 3089 1 4479 0 0
ciMethod com/android/dx/cf/code/Frame setImmutable ()V 3401 1 5004 0 0
ciMethod com/android/dx/cf/code/Frame getLocals ()Lcom/android/dx/cf/code/LocalsArray; 1033 1 129 0 0
ciMethod com/android/dx/cf/code/Frame getStack ()Lcom/android/dx/cf/code/ExecutionStack; 1049 1 131 0 0
ciMethod com/android/dx/cf/code/Frame getSubroutines ()Lcom/android/dx/util/IntList; 1081 1 135 0 0
ciMethod com/android/dx/cf/code/Frame mergeWith (Lcom/android/dx/cf/code/Frame;)Lcom/android/dx/cf/code/Frame; 105 1 1218 0 0
ciMethod com/android/dx/cf/code/Frame mergeSubroutineLists (Lcom/android/dx/util/IntList;)Lcom/android/dx/util/IntList; 2049 1 1218 0 0
ciMethod com/android/dx/cf/code/Frame adjustLocalsForSubroutines (Lcom/android/dx/cf/code/LocalsArray;Lcom/android/dx/util/IntList;)Lcom/android/dx/cf/code/LocalsArray; 2049 1 1218 0 0
ciMethod com/android/dx/cf/code/Frame mergeWithSubroutineCaller (Lcom/android/dx/cf/code/Frame;II)Lcom/android/dx/cf/code/Frame; 0 0 1 0 -1
ciMethod com/android/dx/cf/code/Frame makeNewSubroutineStartFrame (II)Lcom/android/dx/cf/code/Frame; 0 0 1 0 -1
ciMethod com/android/dx/cf/code/Frame makeExceptionHandlerStartFrame (Lcom/android/dx/rop/cst/CstType;)Lcom/android/dx/cf/code/Frame; 0 0 988 0 0
ciMethod com/android/dx/cf/code/Frame annotate (Lcom/android/dex/util/ExceptionWithContext;)V 0 0 1 0 0
ciMethod com/android/dx/cf/code/Ropper$Subroutine <init> (Lcom/android/dx/cf/code/Ropper;I)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/Ropper$Subroutine getStartBlock ()I 0 0 1 0 -1
ciMethod com/android/dx/cf/code/Ropper$Subroutine addCallerBlock (I)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/Ropper$CatchInfo <init> (Lcom/android/dx/cf/code/Ropper;)V 697 1 79 0 -1
ciMethod com/android/dx/cf/code/Ropper$CatchInfo getSetup (Lcom/android/dx/rop/type/Type;)Lcom/android/dx/cf/code/Ropper$ExceptionHandlerSetup; 3161 1 988 0 0
ciMethod com/android/dx/cf/code/Ropper$CatchInfo <init> (Lcom/android/dx/cf/code/Ropper;Lcom/android/dx/cf/code/Ropper$1;)V 697 1 79 0 -1
ciMethod com/android/dx/cf/code/LocalsArray <init> (Z)V 4097 1 5021 0 0
ciMethod com/android/dx/cf/code/LocalsArray copy ()Lcom/android/dx/cf/code/LocalsArray; 0 0 1 0 -1
ciMethod com/android/dx/cf/code/LocalsArray annotate (Lcom/android/dex/util/ExceptionWithContext;)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/LocalsArray merge (Lcom/android/dx/cf/code/LocalsArray;)Lcom/android/dx/cf/code/LocalsArray; 0 0 1 0 -1
ciMethod com/android/dx/cf/code/OneLocalsArray <init> (I)V 4097 1 5021 0 0
ciMethod com/android/dx/cf/code/OneLocalsArray copy ()Lcom/android/dx/cf/code/OneLocalsArray; 4097 1 4496 0 0
ciMethod com/android/dx/cf/code/OneLocalsArray annotate (Lcom/android/dex/util/ExceptionWithContext;)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/OneLocalsArray getMaxLocals ()I 2049 1 2436 0 -1
ciMethod com/android/dx/cf/code/OneLocalsArray set (ILcom/android/dx/rop/type/TypeBearer;)V 2057 1 1351 0 -1
ciMethod com/android/dx/cf/code/OneLocalsArray invalidate (I)V 81 1 24 0 -1
ciMethod com/android/dx/cf/code/OneLocalsArray getOrNull (I)Lcom/android/dx/rop/type/TypeBearer; 2145 1 12072 0 -1
ciMethod com/android/dx/cf/code/OneLocalsArray merge (Lcom/android/dx/cf/code/LocalsArray;)Lcom/android/dx/cf/code/LocalsArray; 2049 1 1218 0 0
ciMethod com/android/dx/cf/code/OneLocalsArray merge (Lcom/android/dx/cf/code/OneLocalsArray;)Lcom/android/dx/cf/code/OneLocalsArray; 2041 1 1218 0 0
ciMethod com/android/dx/cf/code/OneLocalsArray copy ()Lcom/android/dx/cf/code/LocalsArray; 4097 1 4479 0 0
ciMethod com/android/dx/cf/code/LocalsArraySet getPrimary ()Lcom/android/dx/cf/code/OneLocalsArray; 0 0 1 0 -1
ciMethod com/android/dx/cf/code/ExecutionStack <init> (I)V 3225 1 6020 0 0
ciMethod com/android/dx/cf/code/ExecutionStack copy ()Lcom/android/dx/cf/code/ExecutionStack; 3073 1 5495 0 0
ciMethod com/android/dx/cf/code/ExecutionStack annotate (Lcom/android/dex/util/ExceptionWithContext;)V 0 0 1 0 -1
ciMethod com/android/dx/cf/code/ExecutionStack size ()I 1201 1 150 0 -1
ciMethod com/android/dx/cf/code/ExecutionStack clear ()V 1 1 991 0 0
ciMethod com/android/dx/cf/code/ExecutionStack push (Lcom/android/dx/rop/type/TypeBearer;)V 2361 1 6203 0 0
ciMethod com/android/dx/cf/code/ExecutionStack peek (I)Lcom/android/dx/rop/type/TypeBearer; 2153 1 7437 0 -1
ciMethod com/android/dx/cf/code/ExecutionStack change (ILcom/android/dx/rop/type/TypeBearer;)V 49 1 28 0 -1
ciMethod com/android/dx/cf/code/ExecutionStack merge (Lcom/android/dx/cf/code/ExecutionStack;)Lcom/android/dx/cf/code/ExecutionStack; 2049 1 1218 0 0
ciMethod com/android/dx/cf/code/ExecutionStack throwSimException (Ljava/lang/String;)Lcom/android/dx/rop/type/TypeBearer; 0 0 1 0 -1
ciMethod com/android/dx/cf/code/Ropper$ExceptionSetupLabelAllocator getNextLabel ()I 129 1 79 0 0
ciMethod com/android/dx/rop/code/InsnList <init> (I)V 2049 1 15328 0 0
ciMethod com/android/dx/rop/code/InsnList get (I)Lcom/android/dx/rop/code/Insn; 2049 1 108511 0 192
ciMethod com/android/dx/rop/code/InsnList set (ILcom/android/dx/rop/code/Insn;)V 2049 1 26882 0 224
ciMethod com/android/dx/rop/code/Rop getBranchingness ()I 1049 1 131 0 0
ciMethodData com/android/dx/util/FixedSizeList size ()I 2 176275 orig 264 136 160 177 82 0 0 0 0 112 189 6 21 0 0 0 0 32 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 153 124 21 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0
ciMethod com/android/dx/rop/code/BasicBlock <init> (ILcom/android/dx/rop/code/InsnList;Lcom/android/dx/util/IntList;I)V 2049 1481 5657 0 1568
ciMethod com/android/dx/rop/code/BasicBlock getLabel ()I 1049 1 131 0 0
ciMethod com/android/dx/cf/code/Merger mergeLocals (Lcom/android/dx/cf/code/OneLocalsArray;Lcom/android/dx/cf/code/OneLocalsArray;)Lcom/android/dx/cf/code/OneLocalsArray; 2041 13409 1218 0 0
ciMethod com/android/dx/cf/code/Merger mergeStack (Lcom/android/dx/cf/code/ExecutionStack;Lcom/android/dx/cf/code/ExecutionStack;)Lcom/android/dx/cf/code/ExecutionStack; 2041 1465 1218 0 0
ciMethod com/android/dx/cf/code/Merger mergeType (Lcom/android/dx/rop/type/TypeBearer;Lcom/android/dx/rop/type/TypeBearer;)Lcom/android/dx/rop/type/TypeBearer; 2049 1 6400 0 -1
ciMethodData com/android/dx/util/FixedSizeList get0 (I)Ljava/lang/Object; 2 5485 orig 264 136 160 177 82 0 0 0 0 8 192 6 21 0 0 0 0 48 2 0 0 192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 1 0 0 73 162 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 9 0 2 0 0 0 224 0 0 0 255 255 255 255 7 0 8 0 0 0 0 0 data 28 0x80007 0x1449 0xd0 0x0 0x130002 0x0 0x180005 0x0 0x0 0x0 0x0 0x0 0x1c0005 0x0 0x0 0x0 0x0 0x0 0x1f0005 0x0 0x0 0x0 0x0 0x0 0x220002 0x0 0x2b0002 0x0 oops 0
ciMethodData com/android/dx/util/MutabilityControl <init> (Z)V 2 26377 orig 264 136 160 177 82 0 0 0 0 224 52 6 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 73 48 3 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 16 0 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 2 0x10002 0x6609 oops 0
ciMethodData com/android/dx/util/MutabilityControl setImmutable ()V 2 79564 orig 264 136 160 177 82 0 0 0 0 136 53 6 21 0 0 0 0 32 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 0 0 57 174 9 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0
ciMethodData com/android/dx/util/IntList get (I)I 2 5700 orig 264 136 160 177 82 0 0 0 0 200 183 12 21 0 0 0 0 104 1 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 0 0 225 169 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 7 0 2 0 0 0 64 0 0 0 255 255 255 255 7 0 5 0 0 0 0 0 data 8 0x50007 0x153c 0x30 0x0 0xe0002 0x0 0x200002 0x0 oops 0
ciMethodData com/android/dx/util/IntList add (I)V 2 5594 orig 264 136 160 177 82 0 0 0 0 248 185 12 21 0 0 0 0 8 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 209 166 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 14 0 2 0 0 0 184 0 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 23 0x10005 0x0 0x1757e560 0x14da 0x0 0x0 0x50002 0x14da 0x1d0007 0x7ae 0x78 0xd2c 0x250007 0x75a 0x58 0x5d2 0x350007 0xc 0x38 0x5c6 0x390003 0x5c6 0x18 oops 1 2 com/android/dx/util/IntList
ciMethodData com/android/dx/util/IntList growIfNeeded ()V 2 5594 orig 264 136 160 177 82 0 0 0 0 72 189 12 21 0 0 0 0 120 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 217 166 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 48 0 0 0 255 255 255 255 7 0 9 0 0 0 0 0 data 6 0x90007 0x147e 0x30 0x5d 0x250002 0x5d oops 0
ciMethodData com/android/dx/rop/code/InsnList get (I)Lcom/android/dx/rop/code/Insn; 2 108511 orig 264 136 160 177 82 0 0 0 0 16 203 14 21 0 0 0 0 176 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 249 54 13 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 96 0 0 0 255 255 255 255 5 0 2 0 0 0 0 0 data 12 0x20005 0x0 0x1757ea30 0x1a6df 0x0 0x0 0x50004 0x0 0x1757eae0 0x7129 0x1757e8d0 0x1095f oops 3 2 com/android/dx/rop/code/InsnList 8 com/android/dx/rop/code/ThrowingCstInsn 10 com/android/dx/rop/code/PlainInsn
ciMethodData com/android/dx/util/FixedSizeList set0 (ILjava/lang/Object;)V 2 76377 orig 264 136 160 177 82 0 0 0 0 192 193 6 21 0 0 0 0 224 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 1 0 0 193 70 9 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 11 0 2 0 0 0 136 0 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 17 0x10005 0x11fa6 0x17a181d0 0x44e 0x17a18280 0x4e4 0xa0104 0x0 0x17c45790 0x59c8 0x17a18330 0x44e 0xb0003 0x128d8 0x28 0x110002 0x0 oops 4 2 com/android/dx/cf/code/LocalVariableList 4 com/android/dx/cf/code/ByteBlockList 8 com/android/dx/rop/code/RegisterSpec 10 com/android/dx/cf/code/LocalVariableList$Item
ciMethodData com/android/dx/util/FixedSizeList <init> (I)V 2 5433 orig 264 136 160 177 82 0 0 0 0 192 183 6 21 0 0 0 0 152 1 0 0 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 201 161 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 10 0 2 0 0 0 112 0 0 0 255 255 255 255 7 0 2 0 0 0 0 0 data 14 0x20007 0x5c0 0x38 0xe79 0x60003 0xe79 0x18 0xa0002 0x1439 0x150003 0x1439 0x28 0x1f0002 0x0 oops 0
ciMethodData com/android/dx/util/Bits set ([II)V 2 32348 orig 264 136 160 177 82 0 0 0 0 40 159 12 21 0 0 0 0 40 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 1 0 0 25 234 3 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0
ciMethodData com/android/dx/util/IntList <init> (I)V 2 5382 orig 264 136 160 177 82 0 0 0 0 208 178 12 21 0 0 0 0 96 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 0 0 1 160 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 7 0 2 0 0 0 56 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 7 0x20002 0x1400 0xc0003 0x1400 0x28 0x160002 0x0 oops 0
ciMethodData com/android/dx/util/MutabilityControl throwIfMutable ()V 2 24612 orig 264 136 160 177 82 0 0 0 0 96 56 6 21 0 0 0 0 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 0 0 1 249 2 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 5 0 2 0 0 0 48 0 0 0 255 255 255 255 7 0 4 0 0 0 0 0 data 6 0x40007 0x5f20 0x30 0x0 0xd0002 0x0 oops 0
ciMethodData com/android/dx/rop/code/Insn <init> (Lcom/android/dx/rop/code/Rop;Lcom/android/dx/rop/code/SourcePosition;Lcom/android/dx/rop/code/RegisterSpec;Lcom/android/dx/rop/code/RegisterSpecList;)V 2 5546 orig 264 136 160 177 82 0 0 0 0 208 12 12 21 0 0 0 0 224 1 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 143 1 0 0 217 160 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 9 0 2 0 0 0 160 0 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 20 0x10002 0x141b 0x50007 0x141b 0x30 0x0 0xe0002 0x0 0x130007 0x141b 0x30 0x0 0x1c0002 0x0 0x220007 0x141b 0x30 0x0 0x2b0002 0x0 oops 0
ciMethodData com/android/dx/rop/code/InsnList set (ILcom/android/dx/rop/code/Insn;)V 2 27181 orig 264 136 160 177 82 0 0 0 0 208 203 14 21 0 0 0 0 136 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 105 73 3 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 12 0 2 0 0 0 48 0 0 0 255 255 255 255 5 0 3 0 0 0 0 0 data 6 0x30005 0x0 0x1757ea30 0x692d 0x0 0x0 oops 1 2 com/android/dx/rop/code/InsnList
ciMethodData com/android/dx/util/IntList indexOf (I)I 2 18826 orig 264 136 160 177 82 0 0 0 0 32 195 12 21 0 0 0 0 184 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 81 68 2 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 104 0 0 0 255 255 255 255 5 0 2 0 0 0 0 0 data 13 0x20005 0x0 0x1757e560 0x488a 0x0 0x0 0x70007 0x1c53 0x38 0x2c37 0xb0003 0x2c37 0x18 oops 1 2 com/android/dx/util/IntList
ciMethodData com/android/dx/util/IntList binarysearch (I)I 2 12232 orig 264 136 160 177 82 0 0 0 0 192 196 12 21 0 0 0 0 112 2 0 0 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 233 66 1 0 1 119 1 0 5 20 0 0 240 18 0 0 2 0 0 0 2 0 21 0 2 0 0 0 64 1 0 0 255 255 255 255 7 0 9 0 0 0 0 0 data 40 0x90007 0x1f05 0x78 0x958 0x100007 0x195 0x58 0x1723 0x1a0007 0xf60 0x20 0x7c3 0x220003 0xf60 0xffffffffffffffc0 0x320007 0x1f05 0x70 0x1f7f 0x4b0007 0xd36 0x38 0x1249 0x520003 0x1249 0x18 0x580003 0x1f7f 0xffffffffffffffa8 0x5e0007 0xcbc 0x58 0x1249 0x69e007 0x5 0x38 0x1245 0x6e0003 0x1245 0x18 oops 0
ciMethodData com/android/dx/util/IntList set (II)V 2 5553 orig 264 136 160 177 82 0 0 0 0 240 184 12 21 0 0 0 0 0 2 0 0 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 1 0 0 137 161 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 13 0 2 0 0 0 168 0 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 21 0x10005 0x0 0x1757e560 0x1431 0x0 0x0 0x90007 0x1431 0x30 0x0 0x120002 0x0 0x220003 0x1431 0x48 0x270007 0x0 0x30 0x0 0x300002 0x0 oops 1 2 com/android/dx/util/IntList
ciMethodData com/android/dx/cf/code/BytecodeArray parseInstruction (ILcom/android/dx/cf/code/BytecodeArray$Visitor;)I 2 6302 orig 264 136 160 177 82 0 0 0 0 72 92 10 21 0 0 0 0 0 40 0 0 176 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 0 0 193 188 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 239 0 2 0 0 0 40 38 0 0 255 255 255 255 7 0 1 0 0 0 0 0 data 1221 0x10007 0x1798 0x20 0x0 0xd0005 0x1d0 0x17601b60 0x15c8 0x0 0x0 0x120002 0x1798 0x1f0008 0x196 0x0 0x23c8 0x0 0xcc0 0x7 0xcf0 0x1 0xd20 0x10 0xd50 0xe 0xd80 0x2 0xdb0 0x0 0xde0 0x4 0xe10 0x0 0xe40 0x0 0xe70 0x0 0xea0 0x0 0xed0 0x0 0xf00 0x0 0xf30 0x0 0xf60 0x0 0xf90 0x2 0xfc0 0x0 0x1030 0x4 0x10a0 0x0 0x11f8 0x0 0x1350 0x2 0x13e0 0x0 0x1440 0x0 0x14a0 0x0 0x1500 0x14 0x1560 0x0 0x15c0 0xc 0x15c0 0x0 0x15c0 0x7 0x15c0 0x0 0x15f0 0x0 0x15f0 0x0 0x15f0 0x0 0x15f0 0x0 0x1620 0x0 0x1620 0x0 0x1620 0x0 0x1620 0x0 0x1650 0x0 0x1650 0x0 0x1650 0x0 0x1650 0x49 0x1680 0xc 0x1680 0x14 0x1680 0x4 0x1680 0x0 0x16b0 0x0 0x16e0 0x0 0x1710 0x0 0x1740 0x0 0x1770 0x0 0x17a0 0x0 0x17d0 0x0 0x1800 0x2 0x1830 0x0 0x1890 0x0 0x18f0 0x0 0x1950 0x6 0x19b0 0x0 0x1a10 0x0 0x1a10 0x0 0x1a10 0x6 0x1a10 0x0 0x1a40 0x0 0x1a40 0x0 0x1a40 0x0 0x1a40 0x0 0x1a70 0x0 0x1a70 0x0 0x1a70 0x0 0x1a70 0x0 0x1aa0 0x0 0x1aa0 0x0 0x1aa0 0x0 0x1aa0 0x0 0x1ad0 0x5 0x1ad0 0x2 0x1ad0 0x2 0x1ad0 0x0 0x1b00 0x0 0x1b30 0x0 0x1b60 0x0 0x1b90 0x0 0x1bc0 0x0 0x1bf0 0x0 0x1c20 0x0 0x1c50 0xe 0x1c80 0x0 0x1c80 0x7 0x1c80 0x0 0x1c80 0x0 0x1c80 0x0 0x1c80 0x0 0x1c80 0x0 0x1c80 0x0 0x1c80 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1d10 0x0 0x1d40 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1d10 0x0 0x1d40 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1d10 0x0 0x1d40 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1d10 0x0 0x1d40 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1d10 0x0 0x1d40 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1d10 0x0 0x1d40 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1cb0 0x0 0x1ce0 0x0 0x1cb0 0x0 0x1ce0 0x2 0x1d70 0x0 0x1e00 0x0 0x1e30 0x0 0x1e60 0x0 0x1e90 0x0 0x1e30 0x0 0x1e60 0x0 0x1e90 0x0 0x1e00 0x0 0x1e60 0x0 0x1e90 0x0 0x1e00 0x0 0x1e30 0x0 0x1e90 0x0 0x1e90 0x0 0x1e90 0x0 0x1e90 0x0 0x1e90 0x0 0x1e90 0x0 0x1e90 0x0 0x1e90 0x4 0x1ec0 0x4 0x1ec0 0x0 0x1ec0 0x0 0x1ec0 0x0 0x1ec0 0x6 0x1ec0 0x2 0x1ec0 0x2 0x1ec0 0x0 0x1ec0 0x0 0x1ec0 0x0 0x1ec0 0x0 0x1ec0 0x0 0x1ec0 0x0 0x1ec0 0x10 0x1ec0 0x0 0x1ec0 0x0 0x1f20 0x0 0x1f80 0x0 0x1f90 0xc 0x1fa0 0x2 0x1fd0 0x0 0x2000 0x0 0x2030 0x11 0x2060 0x9 0x2090 0x0 0x20c0 0x0 0x20c0 0x1d 0x20c0 0xf 0x20c0 0x39 0x20c0 0x15 0x20c0 0x8 0x20c0 0x3 0x2150 0x0 0x2240 0x5 0x20c0 0x2 0x2250 0x2 0x20c0 0x0 0x1e90 0x0 0x2090 0x2 0x20c0 0x0 0x20c0 0x0 0x2090 0x0 0x2090 0x0 0x2260 0x0 0x2270 0x0 0x1ec0 0x0 0x1ec0 0x0 0x2330 0x0 0x2330 0x35b0005 0x0 0x0 0x0 0x0 0x0 0x36b0005 0x0 0x179e74f0 0x1f 0x17340f20 0x20 0x37b0005 0x0 0x17340f20 0x5 0x179e74f0 0x4 0x38bf005 0x2 0x179e74f0 0x37 0x17340f20 0x37 0x39b0005 0x0 0x179e74f0 0x52 0x17340f20 0x52 0x3ab0005 0x0 0x179e74f0 0x5 0x17340f20 0x5 0x3bb0005 0x0 0x179e74f0 0x1 0x17340f20 0x1 0x3cb0005 0x0 0x179e74f0 0x3 0x17340f20 0x3 0x3db0005 0x0 0x179e74f0 0x1 0x17340f20 0x1 0x3eb0005 0x0 0x179e74f0 0x2 0x17340f20 0x2 0x3fb0005 0x0 0x0 0x0 0x0 0x0 0x40b0005 0x0 0x0 0x0 0x0 0x0 0x41b0005 0x0 0x0 0x0 0x0 0x0 0x42b0005 0x0 0x0 0x0 0x0 0x0 0x43b0005 0x0 0x0 0x0 0x0 0x0 0x44b0005 0x0 0x0 0x0 0x0 0x0 0x4590005 0x2 0x17601b60 0xc 0x0 0x0 0x4650002 0xe 0x46a0005 0x0 0x179e74f0 0x7 0x17340f20 0x7 0x4780005 0x0 0x17601b60 0x6 0x0 0x0 0x4840002 0x6 0x4890005 0x0 0x179e74f0 0x3 0x17340f20 0x3 0x4970005 0x4 0x17601b60 0x14 0x0 0x0 0x4a20005 0x0 0x179e75a0 0x18 0x0 0x0 0x4ab0004 0xffffffffffffffe8 0x181c4f80 0x4 0x0 0x0 0x4ae0007 0x18 0x98 0x0 0x4b30004 0x0 0x0 0x0 0x0 0x0 0x4b60005 0x0 0x0 0x0 0x0 0x0 0x4b90003 0x0 0x18 0x4c80005 0x0 0x179e74f0 0xc 0x17340f20 0xc 0x4d60005 0x0 0x17601b60 0x6 0x0 0x0 0x4e10005 0x0 0x179e75a0 0x6 0x0 0x0 0x4ea0004 0xfffffffffffffffa 0x0 0x0 0x0 0x0 0x4ed0007 0x6 0x98 0x0 0x4f20004 0x0 0x0 0x0 0x0 0x0 0x4f50005 0x0 0x0 0x0 0x0 0x0 0x4f80003 0x0 0x18 0x5070005 0x0 0x179e74f0 0x3 0x17340f20 0x3 0x5150005 0x0 0x0 0x0 0x0 0x0 0x5200005 0x0 0x0 0x0 0x0 0x0 0x52f0005 0x0 0x0 0x0 0x0 0x0 0x53d0005 0x2 0x17601b60 0x56 0x0 0x0 0x54d0005 0x0 0x179e74f0 0x2c 0x17340f20 0x2c 0x55b0005 0x0 0x17601b60 0xe 0x0 0x0 0x56b0005 0x0 0x179e74f0 0x7 0x17340f20 0x7 0x5790005 0x0 0x0 0x0 0x0 0x0 0x5890005 0x0 0x0 0x0 0x0 0x0 0x5970005 0x0 0x0 0x0 0x0 0x0 0x5a70005 0x0 0x0 0x0 0x0 0x0 0x5b50005 0x14 0x17601b60 0x8c 0x0 0x0 0x5c50005 0x0 0x179e74f0 0x50 0x17340f20 0x50 0x5dd7005 0x4 0x179e74f0 0x6d 0x17340f20 0x6e 0x5f50005 0x0 0x179e74f0 0x1 0x17340f20 0x1 0x60d0005 0x0 0x0 0x0 0x0 0x0 0x6250005 0x0 0x0 0x0 0x0 0x0 0x63d0005 0x0 0x17340f20 0x2e3 0x179e74f0 0x2de 0x64c0005 0x0 0x0 0x0 0x0 0x0 0x65b0005 0x0 0x0 0x0 0x0 0x0 0x66a0005 0x0 0x0 0x0 0x0 0x0 0x6790005 0x0 0x0 0x0 0x0 0x0 0x6880005 0x0 0x179e74f0 0x16 0x17340f20 0x16 0x6970005 0x0 0x0 0x0 0x0 0x0 0x6a60005 0x0 0x0 0x0 0x0 0x0 0x6b50005 0x0 0x0 0x0 0x0 0x0 0x6c30005 0x2 0x17601b60 0x2a 0x0 0x0 0x6d30005 0x0 0x179e74f0 0x16 0x17340f20 0x16 0x6e10005 0x0 0x17601b60 0x6 0x0 0x0 0x6f10005 0x0 0x179e74f0 0x3 0x17340f20 0x3 0x6ff0005 0x0 0x0 0x0 0x0 0x0 0x70f0005 0x0 0x0 0x0 0x0 0x0 0x71d0005 0x0 0x0 0x0 0x0 0x0 0x72d0005 0x0 0x0 0x0 0x0 0x0 0x73b0005 0x6 0x17601b60 0x44 0x0 0x0 0x74b0005 0x0 0x179e74f0 0x25 0x17340f20 0x25 0x7630005 0x0 0x179e74f0 0x31 0x17340f20 0x31 0x77b0005 0x0 0x0 0x0 0x0 0x0 0x7930005 0x0 0x0 0x0 0x0 0x0 0x7ab0005 0x0 0x0 0x0 0x0 0x0 0x7c30005 0x0 0x179e74f0 0x31 0x17340f20 0x32 0x7d20005 0x0 0x0 0x0 0x0 0x0 0x7e10005 0x0 0x0 0x0 0x0 0x0 0x7f00005 0x0 0x0 0x0 0x0 0x0 0x7ff0005 0x0 0x0 0x0 0x0 0x0 0x80e0005 0x0 0x179e74f0 0xb 0x17340f20 0xb 0x81d0005 0x0 0x0 0x0 0x0 0x0 0x82c0005 0x0 0x0 0x0 0x0 0x0 0x83b0005 0x0 0x0 0x0 0x0 0x0 0x8490005 0x0 0x179e74f0 0x61 0x17340f20 0x62 0x8570005 0x0 0x179e74f0 0x5a 0x17340f20 0x5a 0x8670005 0x0 0x179e74f0 0x2 0x17340f20 0x2 0x8770005 0x0 0x0 0x0 0x0 0x0 0x8870005 0x0 0x0 0x0 0x0 0x0 0x8950005 0x2 0x17601b60 0x8 0x0 0x0 0x8a10005 0x2 0x17601b60 0x8 0x0 0x0 0x8b10005 0x0 0x179e74f0 0x5 0x17340f20 0x5 0x8bf0005 0x0 0x179e74f0 0x3 0x17340f20 0x3 0x8cd0005 0x0 0x0 0x0 0x0 0x0 0x8db0005 0x0 0x0 0x0 0x0 0x0 0x8e90005 0x0 0x179e74f0 0x1c 0x17340f20 0x1c 0x8f80005 0x22 0x17601b60 0x186 0x0 0x0 0x9040005 0x0 0x179e74f0 0xd4 0x17340f20 0xd4 0x9120005 0x0 0x0 0x0 0x0 0x0 0x9210005 0x0 0x0 0x0 0x0 0x0 0x92b0002 0x0 0x9320002 0x0 0x93f0005 0x0 0x179e74f0 0x2b 0x17340f20 0x2b 0x94f0005 0x0 0x179e74f0 0x1 0x17340f20 0x1 0x95f0005 0x0 0x0 0x0 0x0 0x0 0x96f0005 0x0 0x0 0x0 0x0 0x0 0x97f0005 0x0 0x179e74f0 0x37 0x17340f20 0x3a 0x98d0005 0x0 0x17340f20 0x86 0x179e74f0 0x85 0x99b0005 0x8b 0x17601b60 0x6b2 0x0 0x0 0x9a60005 0x0 0x179e75a0 0x73d 0x0 0x0 0x9b4f005 0x2 0x17340f20 0x3a1 0x179e74f0 0x39c 0x9c20005 0x3 0x17601b60 0x4a 0x0 0x0 0x9ce0005 0x3 0x17601b60 0x4a 0x0 0x0 0x9da0005 0x3 0x17601b60 0x4a 0x0 0x0 0x9e50005 0x0 0x179e75a0 0x4d 0x0 0x0 0x9fa0005 0x0 0x179e74f0 0x26 0x17340f20 0x27 0xa070002 0x0 0xa0e0002 0x2 0xa150002 0x0 0xa200005 0x0 0x0 0x0 0x0 0x0 0xa2c0005 0x0 0x0 0x0 0x0 0x0 0xa370005 0x0 0x0 0x0 0x0 0x0 0xa460005 0x0 0x0 0x0 0x0 0x0 0xa550005 0x0 0x0 0x0 0x0 0x0 0xa5f0007 0x0 0x38 0x0 0xa650003 0x0 0x18 0xa740005 0x0 0x0 0x0 0x0 0x0 0xa7f0005 0x0 0x0 0x0 0x0 0x0 0xa8c0002 0x0 0xa910005 0x0 0x0 0x0 0x0 0x0 0xa950002 0x0 0xa980005 0x0 0x0 0x0 0x0 0x0 0xa9b0005 0x0 0x0 0x0 0x0 0x0 0xa9e0005 0x0 0x0 0x0 0x0 0x0 0xaa90002 0x0 0xab40002 0x0 0xab90005 0x0 0x0 0x0 0x0 0x0 0xabd0002 0x0 0xac00005 0x0 0x0 0x0 0x0 0x0 0xac30005 0x0 0x0 0x0 0x0 0x0 0xac60005 0x0 0x0 0x0 0x0 0x0 oops 101 6 com/android/dx/util/ByteArray 428 com/android/dx/cf/code/BasicBlocker 430 com/android/dx/cf/code/Simulator$SimVisitor 434 com/android/dx/cf/code/Simulator$SimVisitor 436 com/android/dx/cf/code/BasicBlocker 440 com/android/dx/cf/code/BasicBlocker 442 com/android/dx/cf/code/Simulator$SimVisitor 446 com/android/dx/cf/code/BasicBlocker 448 com/android/dx/cf/code/Simulator$SimVisitor 452 com/android/dx/cf/code/BasicBlocker 454 com/android/dx/cf/code/Simulator$SimVisitor 458 com/android/dx/cf/code/BasicBlocker 460 com/android/dx/cf/code/Simulator$SimVisitor 464 com/android/dx/cf/code/BasicBlocker 466 com/android/dx/cf/code/Simulator$SimVisitor 470 com/android/dx/cf/code/BasicBlocker 472 com/android/dx/cf/code/Simulator$SimVisitor 476 com/android/dx/cf/code/BasicBlocker 478 com/android/dx/cf/code/Simulator$SimVisitor 518 com/android/dx/util/ByteArray 526 com/android/dx/cf/code/BasicBlocker 528 com/android/dx/cf/code/Simulator$SimVisitor 532 com/android/dx/util/ByteArray 540 com/android/dx/cf/code/BasicBlocker 542 com/android/dx/cf/code/Simulator$SimVisitor 546 com/android/dx/util/ByteArray 552 com/android/dx/rop/cst/StdConstantPool 558 com/android/dx/rop/cst/CstString 583 com/android/dx/cf/code/BasicBlocker 585 com/android/dx/cf/code/Simulator$SimVisitor 589 com/android/dx/util/ByteArray 595 com/android/dx/rop/cst/StdConstantPool 626 com/android/dx/cf/code/BasicBlocker 628 com/android/dx/cf/code/Simulator$SimVisitor 650 com/android/dx/util/ByteArray 656 com/android/dx/cf/code/BasicBlocker 658 com/android/dx/cf/code/Simulator$SimVisitor 662 com/android/dx/util/ByteArray 668 com/android/dx/cf/code/BasicBlocker 670 com/android/dx/cf/code/Simulator$SimVisitor 698 com/android/dx/util/ByteArray 704 com/android/dx/cf/code/BasicBlocker 706 com/android/dx/cf/code/Simulator$SimVisitor 710 com/android/dx/cf/code/BasicBlocker 712 com/android/dx/cf/code/Simulator$SimVisitor 716 com/android/dx/cf/code/BasicBlocker 718 com/android/dx/cf/code/Simulator$SimVisitor 734 com/android/dx/cf/code/Simulator$SimVisitor 736 com/android/dx/cf/code/BasicBlocker 764 com/android/dx/cf/code/BasicBlocker 766 com/android/dx/cf/code/Simulator$SimVisitor 788 com/android/dx/util/ByteArray 794 com/android/dx/cf/code/BasicBlocker 796 com/android/dx/cf/code/Simulator$SimVisitor 800 com/android/dx/util/ByteArray 806 com/android/dx/cf/code/BasicBlocker 808 com/android/dx/cf/code/Simulator$SimVisitor 836 com/android/dx/util/ByteArray 842 com/android/dx/cf/code/BasicBlocker 844 com/android/dx/cf/code/Simulator$SimVisitor 848 com/android/dx/cf/code/BasicBlocker 850 com/android/dx/cf/code/Simulator$SimVisitor 872 com/android/dx/cf/code/BasicBlocker 874 com/android/dx/cf/code/Simulator$SimVisitor 902 com/android/dx/cf/code/BasicBlocker 904 com/android/dx/cf/code/Simulator$SimVisitor 926 com/android/dx/cf/code/BasicBlocker 928 com/android/dx/cf/code/Simulator$SimVisitor 932 com/android/dx/cf/code/BasicBlocker 934 com/android/dx/cf/code/Simulator$SimVisitor 938 com/android/dx/cf/code/BasicBlocker 940 com/android/dx/cf/code/Simulator$SimVisitor 956 com/android/dx/util/ByteArray 962 com/android/dx/util/ByteArray 968 com/android/dx/cf/code/BasicBlocker 970 com/android/dx/cf/code/Simulator$SimVisitor 974 com/android/dx/cf/code/BasicBlocker 976 com/android/dx/cf/code/Simulator$SimVisitor 992 com/android/dx/cf/code/BasicBlocker 994 com/android/dx/cf/code/Simulator$SimVisitor 998 com/android/dx/util/ByteArray 1004 com/android/dx/cf/code/BasicBlocker 1006 com/android/dx/cf/code/Simulator$SimVisitor 1026 com/android/dx/cf/code/BasicBlocker 1028 com/android/dx/cf/code/Simulator$SimVisitor 1032 com/android/dx/cf/code/BasicBlocker 1034 com/android/dx/cf/code/Simulator$SimVisitor 1050 com/android/dx/cf/code/BasicBlocker 1052 com/android/dx/cf/code/Simulator$SimVisitor 1056 com/android/dx/cf/code/Simulator$SimVisitor 1058 com/android/dx/cf/code/BasicBlocker 1062 com/android/dx/util/ByteArray 1068 com/android/dx/rop/cst/StdConstantPool 1074 com/android/dx/cf/code/Simulator$SimVisitor 1076 com/android/dx/cf/code/BasicBlocker 1080 com/android/dx/util/ByteArray 1086 com/android/dx/util/ByteArray 1092 com/android/dx/util/ByteArray 1098 com/android/dx/rop/cst/StdConstantPool 1104 com/android/dx/cf/code/BasicBlocker 1106 com/android/dx/cf/code/Simulator$SimVisitor
ciMethodData com/android/dx/rop/code/InsnList <init> (I)V 2 15474 orig 264 136 160 177 82 0 0 0 0 96 202 14 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 145 219 1 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 16 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 2 0x20002 0x3b72 oops 0
ciMethodData com/android/dx/rop/code/BasicBlock <init> (ILcom/android/dx/rop/code/InsnList;Lcom/android/dx/util/IntList;I)V 2 5657 orig 264 136 160 177 82 0 0 0 0 208 54 16 21 0 0 0 0 32 7 0 0 40 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 201 168 0 0 169 129 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 44 0 2 0 0 0 184 5 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 183 0x10002 0x1519 0x50007 0x1519 0x30 0x0 0xe0002 0x0 0x130005 0x0 0x1757ea30 0x1519 0x0 0x0 0x160003 0x1519 0x28 0x210002 0x0 0x260005 0x0 0x1757ea30 0x1519 0x0 0x0 0x2d0007 0x1519 0x30 0x0 0x360002 0x0 0x420007 0x1519 0x1f8 0x1035 0x480005 0x0 0x1757ea30 0x1035 0x0 0x0 0x4b0005 0x0 0x1757e8d0 0xccd 0x1757ec40 0x368 0x520005 0x0 0x1757e980 0x1035 0x0 0x0 0x560007 0x1035 0x130 0x0 0x610002 0x0 0x660005 0x0 0x0 0x0 0x0 0x0 0x6b0005 0x0 0x0 0x0 0x0 0x0 0x700005 0x0 0x0 0x0 0x0 0x0 0x750005 0x0 0x0 0x0 0x0 0x0 0x780005 0x0 0x0 0x0 0x0 0x0 0x7b0002 0x0 0x820003 0x1035 0xfffffffffffffe20 0x8a0005 0x0 0x1757ea30 0x1519 0x0 0x0 0x910005 0xc6 0x1757eae0 0x891 0x1757e8d0 0xbc2 0x940005 0x0 0x1757e980 0x1519 0x0 0x0 0x980007 0x1519 0x30 0x0 0xa10002 0x0 0xa60005 0x0 0x1757e560 0x1519 0x0 0x0 0xa90003 0x1519 0x28 0xb40002 0x0 0xbb0007 0x1519 0x30 0x0 0xc40002 0x0 0xca0007 0x13d 0x180 0x13dc 0xd00005 0x0 0x1757e560 0x13dc 0x0 0x0 0xd30007 0x13dc 0x130 0x0 0xde0002 0x0 0xe30005 0x0 0x0 0x0 0x0 0x0 0xe80005 0x0 0x0 0x0 0x0 0x0 0xed0005 0x0 0x0 0x0 0x0 0x0 0xf10005 0x0 0x0 0x0 0x0 0x0 0xf40005 0x0 0x0 0x0 0x0 0x0 0xf70002 0x0 oops 12 10 com/android/dx/rop/code/InsnList 21 com/android/dx/rop/code/InsnList 37 com/android/dx/rop/code/InsnList 43 com/android/dx/rop/code/PlainInsn 45 com/android/dx/rop/code/PlainCstInsn 49 com/android/dx/rop/code/Rop 96 com/android/dx/rop/code/InsnList 102 com/android/dx/rop/code/ThrowingCstInsn 104 com/android/dx/rop/code/PlainInsn 108 com/android/dx/rop/code/Rop 120 com/android/dx/util/IntList 141 com/android/dx/util/IntList
ciMethodData com/android/dx/util/IntList contains (I)Z 2 13036 orig 264 136 160 177 82 0 0 0 0 160 197 12 21 0 0 0 0 184 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 104 1 0 0 33 140 1 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 10 0 2 0 0 0 104 0 0 0 255 255 255 255 5 0 2 0 0 0 0 0 data 13 0x20005 0x171 0x1757e560 0x3013 0x0 0x0 0x50007 0x1bc6 0x38 0x15be 0x90003 0x15be 0x18 oops 1 2 com/android/dx/util/IntList
ciMethodData com/android/dx/rop/code/PlainInsn <init> (Lcom/android/dx/rop/code/Rop;Lcom/android/dx/rop/code/SourcePosition;Lcom/android/dx/rop/code/RegisterSpec;Lcom/android/dx/rop/code/RegisterSpecList;)V 2 5504 orig 264 136 160 177 82 0 0 0 0 16 39 12 21 0 0 0 0 120 2 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 1 0 0 1 160 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 11 0 2 0 0 0 16 1 0 0 255 255 255 255 2 0 6 0 0 0 0 0 data 34 0x60002 0x1400 0xa0005 0x0 0x1757e980 0x1400 0x0 0x0 0xd0008 0x6 0x0 0x50 0x0 0x40 0x0 0x40 0x2e0002 0x0 0x330007 0x9af 0x80 0xa51 0x370005 0x0 0x1757e980 0xa51 0x0 0x0 0x3b0007 0xa51 0x30 0x0 0x440002 0x0 oops 2 4 com/android/dx/rop/code/Rop 24 com/android/dx/rop/code/Rop
ciMethodData com/android/dx/util/IntList <init> ()V 2 10693 orig 264 136 160 177 82 0 0 0 0 224 177 12 21 0 0 0 0 48 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 1 0 0 201 68 1 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 16 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 2 0x20002 0x2899 oops 0
ciMethodData com/android/dx/cf/code/ExecutionStack push (Lcom/android/dx/rop/type/TypeBearer;)V 2 6236 orig 264 136 160 177 82 0 0 0 0 104 160 14 21 0 0 0 0 232 2 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 1 0 0 169 185 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 14 0 2 0 0 0 152 1 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 51 0x10005 0x106 0x179b0dc0 0x162f 0x0 0x0 0x50005 0x59d 0x17c4b310 0x1168 0x181c4f80 0x30 0xc0005 0x59d 0x17c4b310 0x1168 0x181c4f80 0x30 0x110005 0x106 0x17c4b310 0x162f 0x0 0x0 0x150003 0x1735 0x28 0x1f0002 0x0 0x2e0007 0x1735 0x30 0x0 0x330002 0x0 0x3a0007 0x16fd 0x50 0x38 0x460104 0x0 0x0 0x0 0x0 0x0 0x5a0004 0x0 0x17c4b310 0x1168 0x181c4f80 0x30 oops 8 2 com/android/dx/cf/code/ExecutionStack 8 com/android/dx/rop/type/Type 10 com/android/dx/rop/cst/CstString 14 com/android/dx/rop/type/Type 16 com/android/dx/rop/cst/CstString 20 com/android/dx/rop/type/Type 47 com/android/dx/rop/type/Type 49 com/android/dx/rop/cst/CstString
ciMethodData com/android/dx/cf/code/Ropper isSynchronized ()Z 2 5796 orig 264 136 160 177 82 0 0 0 0 184 191 11 21 0 0 0 0 176 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 81 173 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 104 0 0 0 255 255 255 255 5 0 4 0 0 0 0 0 data 13 0x40005 0x79 0x173f9480 0x1531 0x0 0x0 0xc0007 0x15aa 0x38 0x0 0x100003 0x0 0x18 oops 1 2 com/android/dx/cf/code/ConcreteMethod
ciMethodData com/android/dx/cf/code/ConcreteMethod getAccessFlags ()I 2 5800 orig 264 136 160 177 82 0 0 0 0 72 119 11 21 0 0 0 0 120 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 113 173 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 48 0 0 0 255 255 255 255 5 0 4 0 0 0 0 0 data 6 0x40005 0x0 0x17c30930 0x15ae 0x0 0x0 oops 1 2 com/android/dx/cf/iface/StdMethod
ciMethodData com/android/dx/cf/code/ConcreteMethod getCatches ()Lcom/android/dx/cf/code/ByteCatchList; 2 7565 orig 264 136 160 177 82 0 0 0 0 128 124 11 21 0 0 0 0 120 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 1 0 0 41 224 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 48 0 0 0 255 255 255 255 5 0 4 0 0 0 0 0 data 6 0x40005 0x1 0x173fa410 0x1c04 0x0 0x0 oops 1 2 com/android/dx/cf/attrib/AttCode
ciMethodData com/android/dx/cf/code/Simulator$SimVisitor setPreviousOffset (I)V 2 8421 orig 264 136 160 177 82 0 0 0 0 224 2 14 21 0 0 0 0 40 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 41 247 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0
ciMethodData com/android/dx/cf/code/Ropper mergeAndWorkAsNecessary (IILcom/android/dx/cf/code/Ropper$Subroutine;Lcom/android/dx/cf/code/Frame;[I)V 2 5177 orig 264 136 160 177 82 0 0 0 0 192 216 11 21 0 0 0 0 168 3 0 0 248 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 201 153 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 14 0 2 0 0 0 56 2 0 0 255 255 255 255 7 0 10 0 0 0 0 0 data 71 0xa0007 0xe84 0x160 0x4b5 0xe0007 0x4b5 0x98 0x0 0x160005 0x0 0x0 0x0 0x0 0x0 0x1a0005 0x0 0x0 0x0 0x0 0x0 0x1f0003 0x0 0x48 0x260005 0x0 0x1757c900 0x4b5 0x0 0x0 0x2f0007 0x48a 0x150 0x2b 0x390004 0x0 0x1757c900 0x2b 0x0 0x0 0x3d0002 0x2b 0x400003 0x2b 0xf0 0x440007 0xe84 0x98 0x0 0x500005 0x0 0x0 0x0 0x0 0x0 0x530004 0x0 0x0 0x0 0x0 0x0 0x540003 0x0 0x48 0x5e0004 0x0 0x1757c900 0xe84 0x0 0x0 0x620002 0xe84 oops 3 25 com/android/dx/cf/code/Frame 35 com/android/dx/cf/code/Frame 65 com/android/dx/cf/code/Frame
ciMethodData com/android/dx/cf/code/Frame mergeWith (Lcom/android/dx/cf/code/Frame;)Lcom/android/dx/cf/code/Frame; 2 1218 orig 264 136 160 177 82 0 0 0 0 40 32 14 21 0 0 0 0 96 3 0 0 224 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 169 37 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 18 0 2 0 0 0 16 2 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 66 0x10005 0x10b 0x1757c900 0x3aa 0x0 0x0 0x50005 0x10b 0x1757c900 0x3aa 0x0 0x0 0x80005 0x0 0x179b1590 0x4b5 0x0 0x0 0xd0005 0x10b 0x1757c900 0x3aa 0x0 0x0 0x110005 0x10b 0x1757c900 0x3aa 0x0 0x0 0x140005 0x10b 0x179b0dc0 0x3aa 0x0 0x0 0x1d0002 0x4b5 0x250002 0x4b5 0x2b0005 0x10b 0x1757c900 0x3aa 0x0 0x0 0x2e0007 0x11 0x90 0x4a4 0x330005 0x107 0x1757c900 0x39d 0x0 0x0 0x360007 0x1a 0x40 0x48a 0x3f0007 0x0 0x20 0x48a 0x4c0002 0x2b oops 8 2 com/android/dx/cf/code/Frame 8 com/android/dx/cf/code/Frame 14 com/android/dx/cf/code/OneLocalsArray 20 com/android/dx/cf/code/Frame 26 com/android/dx/cf/code/Frame 32 com/android/dx/cf/code/ExecutionStack 42 com/android/dx/cf/code/Frame 52 com/android/dx/cf/code/Frame
ciMethodData com/android/dx/util/IntList makeImmutable (I)Lcom/android/dx/util/IntList; 2 5836 orig 264 136 160 177 82 0 0 0 0 104 176 12 21 0 0 0 0 184 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 141 1 0 0 249 169 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 112 0 0 0 255 255 255 255 2 0 5 0 0 0 0 0 data 14 0x50002 0x153f 0xb0005 0x0 0x1757e560 0x153f 0x0 0x0 0xf0005 0x0 0x1757e560 0x153f 0x0 0x0 oops 2 4 com/android/dx/util/IntList 10 com/android/dx/util/IntList
ciMethodData com/android/dx/cf/code/Ropper labelToResultIndex (I)I 2 21409 orig 264 136 160 177 82 0 0 0 0 48 195 11 21 0 0 0 0 104 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 0 65 24 0 0 9 29 2 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 12 0 2 0 0 0 24 1 0 0 255 255 255 255 5 0 4 0 0 0 0 0 data 35 0x40005 0x0 0x1757e4b0 0x308 0x0 0x0 0xc0007 0x2fe 0xe8 0x43a2 0x140005 0x0 0x1757e4b0 0x43a2 0x0 0x0 0x170004 0x0 0x17c464d0 0x43a2 0x0 0x0 0x1e0005 0x0 0x17c464d0 0x43a2 0x0 0x0 0x220007 0x4398 0x20 0xa 0x2a0003 0x4398 0xffffffffffffff30 oops 4 2 java/util/ArrayList 12 java/util/ArrayList 18 com/android/dx/rop/code/BasicBlock 24 com/android/dx/rop/code/BasicBlock
ciMethodData com/android/dx/cf/code/ExecutionStack <init> (I)V 2 6020 orig 264 136 160 177 82 0 0 0 0 152 153 14 21 0 0 0 0 112 1 0 0 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 147 1 0 0 137 175 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 72 0 0 0 255 255 255 255 7 0 2 0 0 0 0 0 data 9 0x20007 0xe 0x38 0x15e3 0x60003 0x15e3 0x18 0xa0002 0x15f1 oops 0
ciMethodData com/android/dx/cf/code/Frame <init> (Lcom/android/dx/cf/code/LocalsArray;Lcom/android/dx/cf/code/ExecutionStack;Lcom/android/dx/util/IntList;)V 2 5525 orig 264 136 160 177 82 0 0 0 0 224 22 14 21 0 0 0 0 0 2 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 149 1 0 0 1 160 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 10 0 2 0 0 0 160 0 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 20 0x10002 0x1400 0x50007 0x1400 0x30 0x0 0xe0002 0x0 0x130007 0x1400 0x30 0x0 0x1c0002 0x0 0x210005 0x0 0x1757e560 0x1400 0x0 0x0 oops 1 16 com/android/dx/util/IntList
ciMethodData com/android/dx/cf/code/ExecutionStack copy ()Lcom/android/dx/cf/code/ExecutionStack; 2 5495 orig 264 136 160 177 82 0 0 0 0 152 154 14 21 0 0 0 0 120 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 1 0 0 185 159 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 7 0 2 0 0 0 48 0 0 0 255 255 255 255 2 0 9 0 0 0 0 0 data 6 0x90002 0x13f7 0x1c0002 0x13f7 0x2e0002 0x13f7 oops 0
ciMethodData com/android/dx/cf/code/Ropper processBlock (Lcom/android/dx/cf/code/ByteBlock;Lcom/android/dx/cf/code/Frame;[I)V 2 16384 orig 264 136 160 177 82 0 0 0 0 240 212 11 21 0 0 0 0 120 24 0 0 120 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 178 5 0 0 1 128 0 0 113 210 1 0 0 0 0 0 0 0 0 0 2 0 0 0 5 0 181 0 2 0 0 0 0 23 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 736 0x10005 0x18 0x1757c830 0xfe7 0x0 0x0 0xc0005 0x18 0x1757e2a0 0xfe7 0x0 0x0 0xf0005 0x18 0x1757e350 0xfe7 0x0 0x0 0x130005 0x18 0x1757c900 0xfe7 0x0 0x0 0x1d0005 0x0 0x1757e400 0xfff 0x0 0x0 0x210005 0x18 0x1757c900 0xfe7 0x0 0x0 0x280005 0x18 0x1757e350 0xfe7 0x0 0x0 0x310005 0x18 0x1757e350 0xfe7 0x0 0x0 0x380005 0x0 0x1757e4b0 0xfff 0x0 0x0 0x3f0005 0x18 0x1757e2a0 0xfe7 0x0 0x0 0x450005 0x18 0x1757c830 0xfe7 0x0 0x0 0x510005 0x18 0x1757e350 0xfe7 0x0 0x0 0x540007 0xfff 0x128 0x0 0x5d0005 0x0 0x0 0x0 0x0 0x0 0x690007 0x0 0x60 0x0 0x790002 0x0 0x7c0004 0x0 0x0 0x0 0x0 0x0 0x850005 0x0 0x0 0x0 0x0 0x0 0x880005 0x0 0x0 0x0 0x0 0x0 0x940003 0x0 0x2e0 0x9b0005 0x18 0x1757e350 0xfe7 0x0 0x0 0x9e0007 0xfff 0x230 0x0 0xa50005 0x0 0x0 0x0 0x0 0x0 0xac0005 0x0 0x0 0x0 0x0 0x0 0xb80007 0x0 0xa8 0x0 0xc90005 0x0 0x0 0x0 0x0 0x0 0xcc0002 0x0 0xcf0004 0x0 0x0 0x0 0x0 0x0 0xd00003 0x0 0x78 0xdb0005 0x0 0x0 0x0 0x0 0x0 0xde0005 0x0 0x0 0x0 0x0 0x0 0xe80005 0x0 0x0 0x0 0x0 0x0 0xf60005 0x0 0x0 0x0 0x0 0x0 0xfb0005 0x0 0x0 0x0 0x0 0x0 0x1000003 0x0 0x80 0x1070005 0x18 0x1757e350 0xfe7 0x0 0x0 0x10a0007 0x4c9 0x38 0xb36 0x1110003 0xb36 0x18 0x1190005 0x18 0x1757e560 0xfe7 0x0 0x0 0x1260007 0xfff 0x1a0 0xee8 0x12d0005 0x18 0x1757e560 0xed0 0x0 0x0 0x1360005 0x18 0x1757c830 0xed0 0x0 0x0 0x13d0002 0xee8 0x1400003 0xee8 0xf8 0x14b0002 0x0 0x1500005 0x0 0x0 0x0 0x0 0x0 0x1550002 0x0 0x1580005 0x0 0x0 0x0 0x0 0x0 0x15b0005 0x0 0x0 0x0 0x0 0x0 0x15e0005 0x0 0x0 0x0 0x0 0x0 0x1670003 0xee8 0xfffffffffffffe78 0x16c0007 0xd92 0x90 0x26d 0x1730005 0x3 0x1757e350 0x26a 0x0 0x0 0x1760007 0x3f 0x40 0x22e 0x17c0002 0x22e 0x17f0002 0x22e 0x1890007 0xfc0 0x38 0x3f 0x18f0003 0x3f 0x98 0x1960005 0x17 0x1757e350 0xfa9 0x0 0x0 0x19d0007 0xd 0x50 0xfb3 0x1a40005 0x17 0x1757e560 0xf9c 0x0 0x0 0x1aa0002 0xfff 0x1ad0007 0xfff 0x88 0x0 0x1b40005 0x0 0x0 0x0 0x0 0x0 0x1b70007 0x0 0x38 0x0 0x1bb0003 0x0 0x18 0x1c30007 0x0 0x40 0xfff 0x1c80007 0xd1a 0x600 0x2e5 0x1d40002 0x2e5 0x1e00007 0x2e5 0x388 0x3dc 0x1e70005 0x0 0x1757e2a0 0x3dc 0x0 0x0 0x1ee0005 0x0 0x1757e610 0x3dc 0x0 0x0 0x1f50005 0x0 0x1757e610 0x3dc 0x0 0x0 0x2010007 0x280 0x38 0x15c 0x2050003 0x15c 0x18 0x20f0005 0x0 0x1757c900 0x3dc 0x0 0x0 0x2180005 0x0 0x1757c830 0x3dc 0x0 0x0 0x21f0002 0x3dc 0x2220003 0x3dc 0xf8 0x22d0002 0x0 0x2320005 0x0 0x0 0x0 0x0 0x0 0x2370002 0x0 0x23a0005 0x0 0x0 0x0 0x0 0x0 0x23d0005 0x0 0x0 0x0 0x0 0x0 0x2400005 0x0 0x0 0x0 0x0 0x0 0x2510007 0x38d 0x60 0x4f 0x25a0002 0x4f 0x2670004 0x0 0x1757e6c0 0x4f 0x0 0x0 0x26c0005 0x0 0x1757e770 0x3dc 0x0 0x0 0x26f0005 0x0 0x1757e6c0 0x3dc 0x0 0x0 0x2780005 0x0 0x1757e820 0x3dc 0x0 0x0 0x27b0005 0x0 0x1757e560 0x3dc 0x0 0x0 0x2810003 0x3dc 0xfffffffffffffc90 0x2860007 0x2e5 0x1c8 0x0 0x28b0007 0x0 0x1a8 0x0 0x2930002 0x0 0x2960005 0x0 0x0 0x0 0x0 0x0 0x2ab0007 0x0 0x148 0x0 0x2b20005 0x0 0x0 0x0 0x0 0x0 0x2b50004 0x0 0x0 0x0 0x0 0x0 0x2bc0005 0x0 0x0 0x0 0x0 0x0 0x2bf0007 0x0 0x80 0x0 0x2c70005 0x0 0x0 0x0 0x0 0x0 0x2d20005 0x0 0x0 0x0 0x0 0x0 0x2d90003 0x0 0xfffffffffffffed0 0x2de0007 0xd 0x50 0x2d8 0x2e50005 0x0 0x1757e560 0x2d8 0x0 0x0 0x2ea0005 0x0 0x1757e560 0x2e5 0x0 0x0 0x2f50005 0x18 0x1757e560 0xfe7 0x0 0x0 0x2fc0007 0xfff 0x368 0x717 0x3060005 0x0 0x1757e4b0 0x717 0x0 0x0 0x3090004 0x0 0x1757e8d0 0x717 0x0 0x0 0x3100005 0x3 0x1757e8d0 0x714 0x0 0x0 0x3130005 0x3 0x1757e980 0x714 0x0 0x0 0x3170007 0x0 0x38 0x717 0x31b0003 0x717 0x18 0x3270007 0x0 0x38 0x717 0x32b0003 0x717 0x18 0x32f0002 0x717 0x33d0005 0x3 0x1757ea30 0x714 0x0 0x0 0x3420007 0x0 0xa0 0x717 0x3510005 0x3 0x1757e8d0 0x714 0x0 0x0 0x3580002 0x717 0x35b0005 0x3 0x1757ea30 0x714 0x0 0x0 0x3600002 0x717 0x3670005 0x0 0x1757ea30 0x717 0x0 0x0 0x36b0002 0x717 0x37c0002 0x717 0x3850005 0x3 0x1757c900 0x714 0x0 0x0 0x3880002 0x717 0x38d0005 0x3 0x1757e560 0x714 0x0 0x0 0x3980005 0x3 0x1757e560 0x714 0x0 0x0 0x39d0005 0x0 0x1757e560 0x717 0x0 0x0 0x3a70003 0x717 0xfffffffffffffcb0 0x3ac0007 0xfe3 0x38 0x1c 0x3b00003 0x1c 0x78 0x3b90005 0x0 0x1757e4b0 0xfe3 0x0 0x0 0x3bc0004 0x0 0x1757eae0 0xa67 0x1757eb90 0xcf 0x3c30007 0x1c 0xa0 0xfe3 0x3c80005 0x4be 0x1757eae0 0xa5c 0x1757eb90 0xc9 0x3cb0005 0x18 0x1757e980 0xfcb 0x0 0x0 0x3cf0007 0xf71 0xc8 0x72 0x3d40007 0x72 0x38 0x1c 0x3da0003 0x1c 0x48 0x3df0005 0x0 0x1757ec40 0x1a 0x1757e8d0 0x58 0x3f30002 0x8e 0x3f60005 0x0 0x1757e4b0 0x8e 0x0 0x0 0x4030002 0xfff 0x40f0007 0xfff 0xc8 0x205d 0x41a0005 0x0 0x1757e4b0 0x205d 0x0 0x0 0x41d0004 0x0 0x1757eae0 0xa67 0x1757e8d0 0x138a 0x4200005 0x6a 0x1757ea30 0x1ff3 0x0 0x0 0x4260003 0x205d 0xffffffffffffff50 0x42b0005 0x0 0x1757ea30 0xfff 0x0 0x0 0x4330005 0x18 0x1757c830 0xfe7 0x0 0x0 0x43c0002 0xfff 0x4450005 0x18 0x1757c900 0xfe7 0x0 0x0 0x4480002 0xfff oops 61 2 com/android/dx/cf/code/ByteBlock 8 com/android/dx/cf/code/ByteCatchList 14 com/android/dx/cf/code/RopperMachine 20 com/android/dx/cf/code/Frame 26 com/android/dx/cf/code/Simulator 32 com/android/dx/cf/code/Frame 38 com/android/dx/cf/code/RopperMachine 44 com/android/dx/cf/code/RopperMachine 50 java/util/ArrayList 56 com/android/dx/cf/code/ByteCatchList 62 com/android/dx/cf/code/ByteBlock 68 com/android/dx/cf/code/RopperMachine 111 com/android/dx/cf/code/RopperMachine 187 com/android/dx/cf/code/RopperMachine 200 com/android/dx/util/IntList 210 com/android/dx/util/IntList 216 com/android/dx/cf/code/ByteBlock 262 com/android/dx/cf/code/RopperMachine 283 com/android/dx/cf/code/RopperMachine 293 com/android/dx/util/IntList 332 com/android/dx/cf/code/ByteCatchList 338 com/android/dx/cf/code/ByteCatchList$Item 344 com/android/dx/cf/code/ByteCatchList$Item 357 com/android/dx/cf/code/Frame 363 com/android/dx/cf/code/ByteBlock 408 com/android/dx/cf/code/Ropper$CatchInfo 414 com/android/dx/rop/cst/CstType 420 com/android/dx/cf/code/Ropper$CatchInfo 426 com/android/dx/cf/code/Ropper$ExceptionHandlerSetup 432 com/android/dx/util/IntList 502 com/android/dx/util/IntList 508 com/android/dx/util/IntList 514 com/android/dx/util/IntList 524 java/util/ArrayList 530 com/android/dx/rop/code/PlainInsn 536 com/android/dx/rop/code/PlainInsn 542 com/android/dx/rop/code/Rop 564 com/android/dx/rop/code/InsnList 574 com/android/dx/rop/code/PlainInsn 582 com/android/dx/rop/code/InsnList 590 com/android/dx/rop/code/InsnList 600 com/android/dx/cf/code/Frame 608 com/android/dx/util/IntList 614 com/android/dx/util/IntList 620 com/android/dx/util/IntList 636 java/util/ArrayList 642 com/android/dx/rop/code/ThrowingCstInsn 644 com/android/dx/rop/code/ThrowingInsn 652 com/android/dx/rop/code/ThrowingCstInsn 654 com/android/dx/rop/code/ThrowingInsn 658 com/android/dx/rop/code/Rop 675 com/android/dx/rop/code/PlainCstInsn 677 com/android/dx/rop/code/PlainInsn 683 java/util/ArrayList 695 java/util/ArrayList 701 com/android/dx/rop/code/ThrowingCstInsn 703 com/android/dx/rop/code/PlainInsn 707 com/android/dx/rop/code/InsnList 716 com/android/dx/rop/code/InsnList 722 com/android/dx/cf/code/ByteBlock 730 com/android/dx/cf/code/Frame
ciMethodData com/android/dx/cf/code/ByteCatchList toRopCatchList ()Lcom/android/dx/rop/type/TypeList; 2 4479 orig 264 136 160 177 82 0 0 0 0 216 146 10 21 0 0 0 0 208 2 0 0 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 130 1 0 0 233 127 0 0 225 30 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 22 0 2 0 0 0 136 1 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 49 0x10005 0x16 0x1757e2a0 0xfe7 0x0 0x0 0x60007 0x2e5 0x20 0xd18 0x120002 0x2e5 0x1a0007 0x2e5 0xf8 0x3dc 0x210005 0x0 0x1757e2a0 0x3dc 0x0 0x0 0x240005 0x0 0x1757e610 0x3dc 0x0 0x0 0x270005 0x0 0x1757e770 0x3dc 0x0 0x0 0x2a0005 0x0 0x175e73f0 0x3dc 0x0 0x0 0x300003 0x3dc 0xffffffffffffff20 0x340005 0x0 0x175e73f0 0x2e5 0x0 0x0 oops 6 2 com/android/dx/cf/code/ByteCatchList 18 com/android/dx/cf/code/ByteCatchList 24 com/android/dx/cf/code/ByteCatchList$Item 30 com/android/dx/rop/cst/CstType 36 com/android/dx/rop/type/StdTypeList 45 com/android/dx/rop/type/StdTypeList
ciMethodData com/android/dx/cf/code/RopperMachine startBlock (Lcom/android/dx/rop/type/TypeList;)V 2 4479 orig 264 136 160 177 82 0 0 0 0 104 66 13 21 0 0 0 0 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 130 1 0 0 233 127 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 48 0 0 0 255 255 255 255 5 0 9 0 0 0 0 0 data 6 0x90005 0x0 0x1757e4b0 0xffd 0x0 0x0 oops 1 2 java/util/ArrayList
ciMethodData com/android/dx/cf/code/Frame copy ()Lcom/android/dx/cf/code/Frame; 2 4479 orig 264 136 160 177 82 0 0 0 0 128 24 14 21 0 0 0 0 184 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 130 1 0 0 233 127 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 112 0 0 0 255 255 255 255 5 0 8 0 0 0 0 0 data 14 0x80005 0x0 0x179b1590 0xffd 0x0 0x0 0xf0005 0x16 0x179b0dc0 0xfe7 0x0 0x0 0x160002 0xffd oops 2 2 com/android/dx/cf/code/OneLocalsArray 8 com/android/dx/cf/code/ExecutionStack
ciMethodData com/android/dx/cf/code/Simulator simulate (Lcom/android/dx/cf/code/ByteBlock;Lcom/android/dx/cf/code/Frame;)V 2 8412 orig 264 136 160 177 82 0 0 0 0 112 211 13 21 0 0 0 0 200 2 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 71 3 0 0 233 127 0 0 169 236 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 11 0 2 0 0 0 112 1 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 46 0x10005 0x84 0x1757c830 0xf79 0x0 0x0 0xa0005 0x0 0x17340f20 0xffd 0x0 0x0 0xe0005 0x84 0x1757c830 0xf79 0x0 0x0 0x160007 0xffd 0x98 0x1d93 0x230005 0x155 0x17343130 0x1c3e 0x0 0x0 0x2e0005 0x0 0x17340f20 0x1d93 0x0 0x0 0x380003 0x1d93 0xffffffffffffff80 0x3b0003 0xffd 0x48 0x430005 0x0 0x0 0x0 0x0 0x0 oops 5 2 com/android/dx/cf/code/ByteBlock 8 com/android/dx/cf/code/Simulator$SimVisitor 14 com/android/dx/cf/code/ByteBlock 24 com/android/dx/cf/code/BytecodeArray 30 com/android/dx/cf/code/Simulator$SimVisitor
ciMethodData com/android/dx/cf/code/Frame setImmutable ()V 2 5009 orig 264 136 160 177 82 0 0 0 0 48 25 14 21 0 0 0 0 168 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 169 1 0 0 65 143 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 96 0 0 0 255 255 255 255 5 0 4 0 0 0 0 0 data 12 0x40005 0x0 0x179b1590 0x11e8 0x0 0x0 0xb0005 0x0 0x179b0dc0 0x11e8 0x0 0x0 oops 2 2 com/android/dx/cf/code/OneLocalsArray 8 com/android/dx/cf/code/ExecutionStack
ciMethodData com/android/dx/cf/code/RopperMachine hasRet ()Z 2 4484 orig 264 136 160 177 82 0 0 0 0 208 70 13 21 0 0 0 0 88 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 131 1 0 0 9 128 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 56 0 0 0 255 255 255 255 7 0 4 0 0 0 0 0 data 7 0x40007 0x1001 0x38 0x0 0x80003 0x0 0x18 oops 0
ciMethodData com/android/dx/cf/code/Ropper getSpecialLabel (I)I 2 2182 orig 264 136 160 177 82 0 0 0 0 40 189 11 21 0 0 0 0 176 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 163 0 0 0 25 63 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 96 0 0 0 255 255 255 255 5 0 8 0 0 0 0 0 data 12 0x80005 0x5e 0x173f9480 0x785 0x0 0x0 0xb0005 0x5e 0x1757e2a0 0x785 0x0 0x0 oops 2 2 com/android/dx/cf/code/ConcreteMethod 8 com/android/dx/cf/code/ByteCatchList
ciMethodData com/android/dx/cf/code/ByteCatchList get (I)Lcom/android/dx/cf/code/ByteCatchList$Item; 2 7557 orig 264 136 160 177 82 0 0 0 0 96 139 10 21 0 0 0 0 176 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 236 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 96 0 0 0 255 255 255 255 5 0 2 0 0 0 0 0 data 12 0x20005 0xe9 0x1757e2a0 0x1c9c 0x0 0x0 0x50004 0x0 0x1757e610 0x1d85 0x0 0x0 oops 2 2 com/android/dx/cf/code/ByteCatchList 8 com/android/dx/cf/code/ByteCatchList$Item
ciMethodData com/android/dx/cf/code/ByteCatchList$Item getExceptionClass ()Lcom/android/dx/rop/cst/CstType; 2 3406 orig 264 136 160 177 82 0 0 0 0 240 246 12 21 0 0 0 0 88 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 113 106 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 56 0 0 0 255 255 255 255 7 0 4 0 0 0 0 0 data 7 0x40007 0x427 0x38 0x927 0xb0003 0x927 0x18 oops 0
ciMethodData com/android/dx/cf/code/Frame makeExceptionHandlerStartFrame (Lcom/android/dx/rop/cst/CstType;)Lcom/android/dx/cf/code/Frame; 1 991 orig 264 136 160 177 82 0 0 0 0 232 38 14 21 0 0 0 0 80 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 249 30 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 32 0x10005 0x0 0x1757c900 0x3df 0x0 0x0 0x40005 0x0 0x179b0dc0 0x3df 0x0 0x0 0x90005 0x0 0x179b0dc0 0x3df 0x0 0x0 0xe0005 0x0 0x179b0dc0 0x3df 0x0 0x0 0x160005 0x0 0x1757c900 0x3df 0x0 0x0 0x1e0002 0x3df oops 5 2 com/android/dx/cf/code/Frame 8 com/android/dx/cf/code/ExecutionStack 14 com/android/dx/cf/code/ExecutionStack 20 com/android/dx/cf/code/ExecutionStack 26 com/android/dx/cf/code/Frame
ciMethodData com/android/dx/cf/code/ExecutionStack clear ()V 2 1192 orig 264 136 160 177 82 0 0 0 0 16 159 14 21 0 0 0 0 224 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 32 0 0 65 37 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 9 0 2 0 0 0 152 0 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 19 0x10005 0x11d 0x179b0dc0 0x2e3 0x0 0x0 0xb0007 0x400 0x68 0x4a9 0x140104 0x0 0x0 0x0 0x0 0x0 0x1f0003 0x4a9 0xffffffffffffffb0 oops 1 2 com/android/dx/cf/code/ExecutionStack
ciMethodData com/android/dx/cf/code/Ropper getAvailableLabel ()I 2 27889 orig 264 136 160 177 82 0 0 0 0 224 190 11 21 0 0 0 0 160 2 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153 11 0 0 73 30 0 0 193 10 3 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 13 0 2 0 0 0 88 1 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 43 0x10002 0x3c9 0x90005 0x0 0x1757e4b0 0x3c9 0x0 0x0 0xe0005 0x0 0x1708c280 0x6521 0x0 0x0 0x130007 0x3c9 0xe8 0x6158 0x170005 0x0 0x1708c280 0x6158 0x0 0x0 0x1c0004 0x0 0x17c464d0 0x6158 0x0 0x0 0x210005 0x430 0x17c464d0 0x5d28 0x0 0x0 0x290007 0x3fd8 0x20 0x2180 0x310003 0x6158 0xffffffffffffff00 oops 5 4 java/util/ArrayList 10 java/util/ArrayList$Itr 20 java/util/ArrayList$Itr 26 com/android/dx/rop/code/BasicBlock 32 com/android/dx/rop/code/BasicBlock
ciMethodData com/android/dx/cf/code/Ropper addBlock (Lcom/android/dx/rop/code/BasicBlock;Lcom/android/dx/util/IntList;)V 2 3196 orig 264 136 160 177 82 0 0 0 0 48 197 11 21 0 0 0 0 24 2 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 1 0 0 41 91 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 34 0 2 0 0 0 192 0 0 0 255 255 255 255 7 0 1 0 0 0 0 0 data 24 0x10007 0xb65 0x30 0x0 0xa0002 0x0 0x130005 0x0 0x1757e4b0 0xb65 0x0 0x0 0x180005 0x81 0x1757e560 0xae4 0x0 0x0 0x200005 0x0 0x1757e4b0 0xb65 0x0 0x0 oops 3 8 java/util/ArrayList 14 com/android/dx/util/IntList 20 java/util/ArrayList
ciMethodData com/android/dx/util/IntList mutableCopy ()Lcom/android/dx/util/IntList; 2 18436 orig 264 136 160 177 82 0 0 0 0 104 193 12 21 0 0 0 0 192 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230 7 0 0 177 61 0 0 241 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 6 0 2 0 0 0 120 0 0 0 255 255 255 255 2 0 10 0 0 0 0 0 data 15 0xa0002 0x7b6 0x120007 0x7b6 0x68 0x401e 0x1c0005 0x401 0x1757e560 0x3c1d 0x0 0x0 0x220003 0x401e 0xffffffffffffffb0 oops 1 8 com/android/dx/util/IntList
ciMethodData com/android/dx/cf/code/Ropper addOrReplaceBlock (Lcom/android/dx/rop/code/BasicBlock;Lcom/android/dx/util/IntList;)Z 2 4630 orig 264 136 160 177 82 0 0 0 0 112 198 11 21 0 0 0 0 160 2 0 0 168 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150 1 0 0 1 132 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 37 0 2 0 0 0 72 1 0 0 255 255 255 255 7 0 1 0 0 0 0 0 data 41 0x10007 0x1080 0x30 0x0 0xa0002 0x0 0x100005 0x8f 0x17c464d0 0xff1 0x0 0x0 0x130002 0x1080 0x180007 0x0 0x38 0x1080 0x1e0003 0x1080 0x28 0x230002 0x0 0x2e0005 0x0 0x1757e4b0 0x1080 0x0 0x0 0x330005 0x8f 0x1757e560 0xff1 0x0 0x0 0x3b0005 0x0 0x1757e4b0 0x1080 0x0 0x0 oops 4 8 com/android/dx/rop/code/BasicBlock 25 java/util/ArrayList 31 com/android/dx/util/IntList 37 java/util/ArrayList
ciMethodData com/android/dx/rop/type/StdTypeList <init> (I)V 2 4336 orig 264 136 160 177 82 0 0 0 0 8 168 6 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0 0 49 127 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 16 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 2 0x20002 0xfe6 oops 0
ciMethodData com/android/dx/rop/type/StdTypeList set (ILcom/android/dx/rop/type/Type;)V 2 2324 orig 264 136 160 177 82 0 0 0 0 80 172 6 21 0 0 0 0 136 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 155 0 0 0 201 67 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 48 0 0 0 255 255 255 255 5 0 3 0 0 0 0 0 data 6 0x30005 0xe7 0x175e73f0 0x792 0x0 0x0 oops 1 2 com/android/dx/rop/type/StdTypeList
ciMethodData com/android/dx/cf/code/OneLocalsArray <init> (I)V 2 5021 orig 264 136 160 177 82 0 0 0 0 240 79 14 21 0 0 0 0 112 1 0 0 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 233 140 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 6 0 2 0 0 0 72 0 0 0 255 255 255 255 7 0 2 0 0 0 0 0 data 9 0x20007 0x6c 0x38 0x1131 0x60003 0x1131 0x18 0xa0002 0x119d oops 0
ciMethodData com/android/dx/cf/code/LocalsArray <init> (Z)V 2 5021 orig 264 136 160 177 82 0 0 0 0 0 63 14 21 0 0 0 0 56 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 233 140 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 16 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 2 0x20002 0x119d oops 0
ciMethod com/android/dx/cf/code/Ropper$ExceptionHandlerSetup <init> (Lcom/android/dx/rop/type/Type;I)V 129 1 79 0 0
ciMethod com/android/dx/cf/code/Ropper$ExceptionHandlerSetup getLabel ()I 1025 1 128 0 0
ciMethodData com/android/dx/cf/code/OneLocalsArray copy ()Lcom/android/dx/cf/code/LocalsArray; 2 4479 orig 264 136 160 177 82 0 0 0 0 96 96 14 21 0 0 0 0 120 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 249 123 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 8 0 2 0 0 0 48 0 0 0 255 255 255 255 5 0 1 0 0 0 0 0 data 6 0x10005 0x0 0x179b1590 0xf7f 0x0 0x0 oops 1 2 com/android/dx/cf/code/OneLocalsArray
ciMethodData com/android/dx/cf/code/OneLocalsArray copy ()Lcom/android/dx/cf/code/OneLocalsArray; 2 4496 orig 264 136 160 177 82 0 0 0 0 216 80 14 21 0 0 0 0 104 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 129 124 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 7 0 2 0 0 0 32 0 0 0 255 255 255 255 2 0 9 0 0 0 0 0 data 4 0x90002 0xf90 0x1c0002 0xf90 oops 0
ciMethodData com/android/dx/cf/code/Simulator$SimVisitor setFrame (Lcom/android/dx/cf/code/Frame;)V 2 4479 orig 264 136 160 177 82 0 0 0 0 232 234 13 21 0 0 0 0 88 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 249 123 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 5 0 2 0 0 0 48 0 0 0 255 255 255 255 7 0 1 0 0 0 0 0 data 6 0x10007 0xf7f 0x30 0x0 0xa0002 0x0 oops 0
ciMethodData com/android/dx/cf/code/Frame annotate (Lcom/android/dex/util/ExceptionWithContext;)V 1 0 orig 264 136 160 177 82 0 0 0 0 168 39 14 21 0 0 0 0 176 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 96 0 0 0 255 255 255 255 5 0 5 0 0 0 0 0 data 12 0x50005 0x0 0x0 0x0 0x0 0x0 0xd0005 0x0 0x0 0x0 0x0 0x0 oops 0
ciMethodData com/android/dx/cf/code/Ropper getMinimumUnreservedLabel ()I 1 1169 orig 264 136 160 177 82 0 0 0 0 216 189 11 21 0 0 0 0 168 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 137 28 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 2 0 0 0 96 0 0 0 255 255 255 255 5 0 8 0 0 0 0 0 data 12 0x80005 0x0 0x173f9480 0x391 0x0 0x0 0xb0005 0x0 0x1757e2a0 0x391 0x0 0x0 oops 2 2 com/android/dx/cf/code/ConcreteMethod 8 com/android/dx/cf/code/ByteCatchList
ciMethodData com/android/dx/cf/code/OneLocalsArray getOrNull (I)Lcom/android/dx/rop/type/TypeBearer; 2 12426 orig 264 136 160 177 82 0 0 0 0 192 88 14 21 0 0 0 0 40 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 1 0 0 241 123 1 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0
ciMethodData com/android/dx/cf/code/OneLocalsArray getMaxLocals ()I 2 2512 orig 264 136 160 177 82 0 0 0 0 56 85 14 21 0 0 0 0 32 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 129 70 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 255 255 255 255 0 0 0 0 0 0 0 0 data 0 oops 0
ciMethodData com/android/dx/cf/code/OneLocalsArray merge (Lcom/android/dx/cf/code/LocalsArray;)Lcom/android/dx/cf/code/LocalsArray; 1 1218 orig 264 136 160 177 82 0 0 0 0 96 92 14 21 0 0 0 0 48 2 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 17 30 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 8 0 2 0 0 0 224 0 0 0 255 255 255 255 4 0 1 0 0 0 0 0 data 28 0x10004 0x0 0x179b1590 0x3c2 0x0 0x0 0x40007 0x0 0x80 0x3c2 0x90004 0x0 0x179b1590 0x3c2 0x0 0x0 0xc0005 0x0 0x179b1590 0x3c2 0x0 0x0 0x120005 0x0 0x0 0x0 0x0 0x0 oops 3 2 com/android/dx/cf/code/OneLocalsArray 12 com/android/dx/cf/code/OneLocalsArray 18 com/android/dx/cf/code/OneLocalsArray
ciMethodData com/android/dx/cf/code/OneLocalsArray merge (Lcom/android/dx/cf/code/OneLocalsArray;)Lcom/android/dx/cf/code/OneLocalsArray; 1 1218 orig 264 136 160 177 82 0 0 0 0 96 93 14 21 0 0 0 0 32 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 25 30 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 208 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 26 0x20002 0x3c3 0xa0005 0x0 0x0 0x0 0x0 0x0 0xf0005 0x0 0x0 0x0 0x0 0x0 0x150005 0x0 0x0 0x0 0x0 0x0 0x1a0005 0x0 0x0 0x0 0x0 0x0 oops 0
ciMethodData com/android/dx/cf/code/Merger mergeLocals (Lcom/android/dx/cf/code/OneLocalsArray;Lcom/android/dx/cf/code/OneLocalsArray;)Lcom/android/dx/cf/code/OneLocalsArray; 2 9212 orig 264 136 160 177 82 0 0 0 0 32 88 16 21 0 0 0 0 0 4 0 0 96 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140 6 0 0 73 31 0 0 129 235 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 29 0 2 0 0 0 176 2 0 0 255 255 255 255 7 0 2 0 0 0 0 0 data 86 0x20007 0x3e9 0x20 0x0 0x80005 0x0 0x179b1590 0x3e9 0x0 0x0 0xf0005 0x0 0x179b1590 0x3e9 0x0 0x0 0x130007 0x3e9 0x30 0x0 0x1c0002 0x0 0x260007 0x3e9 0x1b0 0x1d70 0x2c0005 0x0 0x179b1590 0x1d70 0x0 0x0 0x340005 0x0 0x179b1590 0x1d70 0x0 0x0 0x3d0002 0x1d70 0x460007 0x1d56 0x108 0x1a 0x4a0007 0xd 0x50 0xd 0x4e0005 0x0 0x179b1590 0xd 0x0 0x0 0x540007 0xc 0x68 0xe 0x5a0005 0x0 0x179b1590 0xe 0x0 0x0 0x5d0003 0xe 0x48 0x650005 0x0 0x179b1590 0xc 0x0 0x0 0x6b0003 0x1d70 0xfffffffffffffe68 0x6f0007 0xd 0x20 0x3dc 0x750005 0x0 0x179b1590 0xd 0x0 0x0 oops 8 6 com/android/dx/cf/code/OneLocalsArray 12 com/android/dx/cf/code/OneLocalsArray 28 com/android/dx/cf/code/OneLocalsArray 34 com/android/dx/cf/code/OneLocalsArray 50 com/android/dx/cf/code/OneLocalsArray 60 com/android/dx/cf/code/OneLocalsArray 69 com/android/dx/cf/code/OneLocalsArray 82 com/android/dx/cf/code/OneLocalsArray
ciMethodData com/android/dx/cf/code/ExecutionStack merge (Lcom/android/dx/cf/code/ExecutionStack;)Lcom/android/dx/cf/code/ExecutionStack; 1 1218 orig 264 136 160 177 82 0 0 0 0 32 167 14 21 0 0 0 0 32 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 17 30 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 5 0 2 0 0 0 208 0 0 0 255 255 255 255 2 0 2 0 0 0 0 0 data 26 0x20002 0x3c2 0xa0005 0x0 0x0 0x0 0x0 0x0 0xf0005 0x0 0x0 0x0 0x0 0x0 0x150005 0x0 0x0 0x0 0x0 0x0 0x1a0005 0x0 0x0 0x0 0x0 0x0 oops 0
ciMethodData com/android/dx/cf/code/Merger mergeStack (Lcom/android/dx/cf/code/ExecutionStack;Lcom/android/dx/cf/code/ExecutionStack;)Lcom/android/dx/cf/code/ExecutionStack; 2 1256 orig 264 136 160 177 82 0 0 0 0 56 90 16 21 0 0 0 0 240 5 0 0 80 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 73 31 0 0 225 24 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 32 0 2 0 0 0 160 4 0 0 255 255 255 255 7 0 2 0 0 0 0 0 data 148 0x20007 0x3e9 0x20 0x0 0x80005 0xd8 0x179b0dc0 0x311 0x0 0x0 0xf0005 0xd8 0x179b0dc0 0x311 0x0 0x0 0x130007 0x3e9 0x30 0x0 0x1c0002 0x0 0x260007 0x3e9 0x3a0 0x31c 0x2c0005 0xca 0x179b0dc0 0x252 0x0 0x0 0x340005 0xca 0x179b0dc0 0x252 0x0 0x0 0x3d0002 0x31c 0x460007 0x306 0x2f8 0x16 0x4a0007 0x0 0x50 0x16 0x4e0005 0x0 0x179b0dc0 0x16 0x0 0x0 0x540007 0x16 0x130 0x0 0x5f0002 0x0 0x640005 0x0 0x0 0x0 0x0 0x0 0x690005 0x0 0x0 0x0 0x0 0x0 0x6e0005 0x0 0x0 0x0 0x0 0x0 0x730005 0x0 0x0 0x0 0x0 0x0 0x760005 0x0 0x0 0x0 0x0 0x0 0x790002 0x0 0x820005 0x0 0x179b0dc0 0x16 0x0 0x0 0x850003 0x16 0x128 0x900002 0x0 0x950005 0x0 0x0 0x0 0x0 0x0 0x9a0002 0x0 0x9d0005 0x0 0x0 0x0 0x0 0x0 0xa20005 0x0 0x0 0x0 0x0 0x0 0xa50005 0x0 0x0 0x0 0x0 0x0 0xa80005 0x0 0x0 0x0 0x0 0x0 0xb10003 0x31c 0xfffffffffffffc78 0xb50007 0x16 0x20 0x3d3 0xbb0005 0x0 0x179b0dc0 0x16 0x0 0x0 oops 7 6 com/android/dx/cf/code/ExecutionStack 12 com/android/dx/cf/code/ExecutionStack 28 com/android/dx/cf/code/ExecutionStack 34 com/android/dx/cf/code/ExecutionStack 50 com/android/dx/cf/code/ExecutionStack 94 com/android/dx/cf/code/ExecutionStack 144 com/android/dx/cf/code/ExecutionStack
ciMethodData com/android/dx/cf/code/Frame mergeSubroutineLists (Lcom/android/dx/util/IntList;)Lcom/android/dx/util/IntList; 1 1218 orig 264 136 160 177 82 0 0 0 0 128 33 14 21 0 0 0 0 72 3 0 0 144 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 17 30 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 13 0 2 0 0 0 248 1 0 0 255 255 255 255 5 0 5 0 0 0 0 0 data 63 0x50005 0x0 0x1757e560 0x3c2 0x0 0x0 0x80007 0x0 0x20 0x3c2 0x140002 0x0 0x1c0005 0x0 0x0 0x0 0x0 0x0 0x210005 0x0 0x0 0x0 0x0 0x0 0x2c0007 0x0 0x108 0x0 0x330007 0x0 0xe8 0x0 0x3c0005 0x0 0x0 0x0 0x0 0x0 0x420005 0x0 0x0 0x0 0x0 0x0 0x450007 0x0 0x68 0x0 0x4b0005 0x0 0x0 0x0 0x0 0x0 0x510003 0x0 0xffffffffffffff10 0x550005 0x0 0x0 0x0 0x0 0x0 oops 1 2 com/android/dx/util/IntList
ciMethodData com/android/dx/util/IntList equals (Ljava/lang/Object;)Z 1 1256 orig 264 136 160 177 82 0 0 0 0 0 181 12 21 0 0 0 0 136 2 0 0 192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 65 31 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 16 0 2 0 0 0 56 1 0 0 255 255 255 255 7 0 2 0 0 0 0 0 data 39 0x20007 0x0 0x20 0x3e8 0x80004 0x0 0x0 0x0 0x0 0x0 0xb0007 0x0 0x20 0x0 0x110004 0x0 0x0 0x0 0x0 0x0 0x1d0007 0x0 0x20 0x0 0x2a0007 0x0 0x20 0x0 0x360007 0x0 0x58 0x0 0x450007 0x0 0x20 0x0 0x4d0003 0x0 0xffffffffffffffc0 oops 0
ciMethodData com/android/dx/cf/code/Frame adjustLocalsForSubroutines (Lcom/android/dx/cf/code/LocalsArray;Lcom/android/dx/util/IntList;)Lcom/android/dx/cf/code/LocalsArray; 1 1218 orig 264 136 160 177 82 0 0 0 0 120 34 14 21 0 0 0 0 80 2 0 0 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 17 30 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 7 0 2 0 0 0 0 1 0 0 255 255 255 255 4 0 1 0 0 0 0 0 data 32 0x10004 0xfffffffffffffc3e 0x0 0x0 0x0 0x0 0x40007 0x0 0x20 0x3c2 0xa0004 0x0 0x0 0x0 0x0 0x0 0xf0005 0x0 0x0 0x0 0x0 0x0 0x120007 0x0 0x50 0x0 0x160005 0x0 0x0 0x0 0x0 0x0 oops 0
ciMethodData com/android/dx/cf/code/Ropper$CatchInfo getSetup (Lcom/android/dx/rop/type/Type;)Lcom/android/dx/cf/code/Ropper$ExceptionHandlerSetup; 1 991 orig 264 136 160 177 82 0 0 0 0 8 58 14 21 0 0 0 0 80 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 139 1 0 0 161 18 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 9 0 2 0 0 0 0 1 0 0 255 255 255 255 5 0 5 0 0 0 0 0 data 32 0x50005 0x0 0x17a29bf0 0x254 0x0 0x0 0xa0104 0x0 0x1757e820 0x215 0x0 0x0 0xf0007 0x215 0xa0 0x3f 0x160002 0x3f 0x190005 0x0 0x17a293f0 0x3f 0x0 0x0 0x230002 0x3f 0x2d0005 0x0 0x17a29bf0 0x3f 0x0 0x0 oops 4 2 java/util/HashMap 8 com/android/dx/cf/code/Ropper$ExceptionHandlerSetup 20 com/android/dx/cf/code/Ropper$ExceptionSetupLabelAllocator 28 java/util/HashMap
ciMethodData com/android/dx/cf/code/Ropper$ExceptionSetupLabelAllocator getNextLabel ()I 1 81 orig 264 136 160 177 82 0 0 0 0 192 176 14 21 0 0 0 0 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 9 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 48 0 0 0 255 255 255 255 7 0 8 0 0 0 0 0 data 6 0x80007 0x41 0x30 0x0 0xf0002 0x0 oops 0
ciMethodData com/android/dx/cf/code/Ropper$ExceptionHandlerSetup <init> (Lcom/android/dx/rop/type/Type;I)V 1 80 orig 264 136 160 177 82 0 0 0 0 128 100 32 21 0 0 0 0 64 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77 68 79 32 101 120 116 114 97 32 100 97 116 97 32 108 111 99 107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 1 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 255 255 255 255 2 0 1 0 0 0 0 0 data 2 0x10002 0x40 oops 0
instanceKlass com/android/dx/rop/code/RegOps
instanceKlass sun/reflect/generics/reflectiveObjects/LazyReflectiveObjectGenerator
instanceKlass java/lang/reflect/TypeVariable
instanceKlass sun/reflect/generics/reflectiveObjects/ParameterizedTypeImpl
instanceKlass java/lang/reflect/ParameterizedType
instanceKlass sun/reflect/generics/visitor/Reifier
instanceKlass sun/reflect/generics/visitor/TypeTreeVisitor
instanceKlass sun/reflect/generics/tree/ClassSignature
instanceKlass sun/reflect/generics/tree/Signature
instanceKlass sun/reflect/generics/tree/ClassTypeSignature
instanceKlass sun/reflect/generics/tree/SimpleClassTypeSignature
instanceKlass sun/reflect/generics/tree/FieldTypeSignature
instanceKlass sun/reflect/generics/tree/BaseType
instanceKlass sun/reflect/generics/tree/TypeSignature
instanceKlass sun/reflect/generics/tree/ReturnType
instanceKlass sun/reflect/generics/tree/TypeArgument
instanceKlass sun/reflect/generics/tree/FormalTypeParameter
instanceKlass sun/reflect/generics/tree/TypeTree
instanceKlass sun/reflect/generics/tree/Tree
instanceKlass sun/reflect/generics/parser/SignatureParser
instanceKlass sun/reflect/generics/factory/CoreReflectionFactory
instanceKlass sun/reflect/generics/factory/GenericsFactory
instanceKlass sun/reflect/generics/scope/AbstractScope
instanceKlass sun/reflect/generics/scope/Scope
instanceKlass com/android/dx/cf/direct/AnnotationParser
instanceKlass com/android/dx/rop/code/RegisterSpec$1
instanceKlass java/util/DualPivotQuicksort
instanceKlass com/android/dx/dex/file/FieldAnnotationStruct
instanceKlass com/android/dx/cf/code/Ropper$ExceptionHandlerSetup
instanceKlass java/util/ArrayList$1
instanceKlass com/android/dx/dex/file/MethodAnnotationStruct
instanceKlass com/android/dx/ssa/back/FirstFitLocalCombiningAllocator$Multiset
instanceKlass com/android/dx/ssa/PhiInsn$Operand
instanceKlass com/android/dx/dex/code/DalvCode
instanceKlass com/android/dx/dex/code/StdCatchBuilder
instanceKlass com/android/dx/dex/code/RopToDop
instanceKlass com/android/dx/dex/code/OutputFinisher
instanceKlass com/android/dx/dex/code/OutputCollector
instanceKlass com/android/dx/rop/code/Insn$BaseVisitor
instanceKlass com/android/dx/io/Opcodes
instanceKlass com/android/dx/dex/code/InsnFormat
instanceKlass com/android/dx/dex/code/Dop
instanceKlass com/android/dx/dex/code/Dops
instanceKlass com/android/dx/dex/code/BlockAddresses
instanceKlass com/android/dx/dex/code/CatchBuilder
instanceKlass com/android/dx/dex/code/DalvInsn
instanceKlass com/android/dx/dex/code/RopTranslator$TranslationVisitor
instanceKlass com/android/dx/dex/code/RopTranslator
instanceKlass com/android/dx/rop/code/LocalVariableExtractor
instanceKlass com/android/dx/ssa/back/IdenticalBlockCombiner
instanceKlass com/android/dx/ssa/back/SsaToRop$1
instanceKlass com/android/dx/ssa/back/SsaToRop$PhiVisitor
instanceKlass com/android/dx/ssa/back/FirstFitLocalCombiningAllocator$1
instanceKlass com/android/dx/ssa/back/LivenessAnalyzer$1
instanceKlass com/android/dx/ssa/back/InterferenceGraph
instanceKlass com/android/dx/ssa/back/LivenessAnalyzer
instanceKlass com/android/dx/ssa/back/RegisterAllocator
instanceKlass com/android/dx/ssa/back/SsaToRop
instanceKlass com/android/dx/ssa/PhiTypeResolver
instanceKlass java/util/TimSort
instanceKlass sun/security/action/GetBooleanAction
instanceKlass java/util/Arrays$LegacyMergeSort
instanceKlass com/android/dx/ssa/ConstCollector$1
instanceKlass com/android/dx/ssa/ConstCollector
instanceKlass com/android/dx/ssa/LiteralOpUpgrader$1
instanceKlass com/android/dx/ssa/LiteralOpUpgrader
instanceKlass com/android/dx/ssa/DeadCodeRemover$NoSideEffectVisitor
instanceKlass com/android/dx/ssa/DeadCodeRemover
instanceKlass com/android/dx/ssa/SsaMethod$1
instanceKlass com/android/dx/ssa/SsaMethod$2
instanceKlass com/android/dx/ssa/SCCP
instanceKlass com/android/dx/ssa/MoveParamCombiner$1
instanceKlass com/android/dx/ssa/MoveParamCombiner
instanceKlass com/android/dx/ssa/SsaRenamer$BlockRenamer$1
instanceKlass com/android/dx/ssa/PhiInsn$Visitor
instanceKlass com/android/dx/ssa/RegisterMapper
instanceKlass com/android/dx/ssa/SsaRenamer$BlockRenamer
instanceKlass com/android/dx/ssa/SsaRenamer$1
instanceKlass com/android/dx/ssa/SsaRenamer
instanceKlass com/android/dx/util/BitIntSet$1
instanceKlass com/android/dx/util/IntIterator
instanceKlass com/android/dx/util/BitIntSet
instanceKlass com/android/dx/util/IntSet
instanceKlass com/android/dx/ssa/SetFactory
instanceKlass com/android/dx/ssa/Dominators$DfsWalker
instanceKlass com/android/dx/ssa/Dominators$DFSInfo
instanceKlass com/android/dx/ssa/SsaBasicBlock$Visitor
instanceKlass com/android/dx/ssa/Dominators
instanceKlass com/android/dx/ssa/DomFront$DomInfo
instanceKlass com/android/dx/ssa/DomFront
instanceKlass com/android/dx/ssa/LocalVariableExtractor
instanceKlass com/android/dx/ssa/SsaBasicBlock$LabelComparator
instanceKlass com/android/dx/ssa/SsaBasicBlock
instanceKlass com/android/dx/rop/code/BasicBlockList$RegCountVisitor
instanceKlass com/android/dx/ssa/SsaInsn$Visitor
instanceKlass com/android/dx/ssa/SsaInsn
instanceKlass com/android/dx/ssa/SsaMethod
instanceKlass com/android/dx/ssa/SsaConverter
instanceKlass java/lang/Class$4
instanceKlass com/android/dx/ssa/Optimizer
instanceKlass com/android/dx/rop/code/RopMethod
instanceKlass com/android/dx/rop/code/Insn$Visitor
instanceKlass com/android/dx/cf/code/Merger
instanceKlass com/android/dx/rop/code/BasicBlock
instanceKlass com/android/dx/rop/code/Exceptions
instanceKlass com/android/dx/rop/code/Rop
instanceKlass com/android/dx/rop/code/Rops
instanceKlass com/android/dx/rop/code/RegisterSpec$ForComparison
instanceKlass com/android/dx/rop/code/RegisterSpec
instanceKlass com/android/dx/rop/code/LocalItem
instanceKlass com/android/dx/rop/code/SourcePosition
instanceKlass com/android/dx/cf/code/Ropper$LabelAllocator
instanceKlass com/android/dx/cf/code/Ropper$CatchInfo
instanceKlass com/android/dx/cf/code/Ropper$Subroutine
instanceKlass com/android/dx/cf/code/Frame
instanceKlass com/android/dx/cf/code/Simulator$SimVisitor
instanceKlass com/android/dx/cf/code/Simulator
instanceKlass com/android/dx/cf/code/BaseMachine
instanceKlass com/android/dx/cf/code/ByteBlock
instanceKlass com/android/dx/util/LabeledItem
instanceKlass com/android/dx/cf/code/ByteCatchList$Item
instanceKlass com/android/dx/cf/code/ByteOps
instanceKlass com/android/dx/util/Bits
instanceKlass com/android/dx/cf/code/BasicBlocker
instanceKlass com/android/dx/rop/code/Insn
instanceKlass com/android/dx/rop/code/BasicBlock$Visitor
instanceKlass com/android/dx/cf/code/Machine
instanceKlass com/android/dx/cf/code/Ropper
instanceKlass com/android/dx/rop/code/DexTranslationAdvice
instanceKlass com/android/dx/cf/code/ConcreteMethod
instanceKlass com/android/dx/dex/file/EncodedMember
instanceKlass com/android/dx/util/Hex
instanceKlass com/android/dx/cf/code/LocalVariableList$Item
instanceKlass com/android/dx/cf/code/LineNumberList$Item
instanceKlass com/android/dx/cf/code/BytecodeArray$BaseVisitor
instanceKlass com/android/dx/cf/code/BytecodeArray
instanceKlass com/android/dx/cf/iface/StdMember
instanceKlass com/android/dx/cf/direct/DirectClassFile$DcfTypeList
instanceKlass com/android/dx/rop/type/Prototype
instanceKlass com/android/dx/dex/file/ValueEncoder
instanceKlass com/android/dx/dex/file/AnnotationItem$TypeIdSorter
instanceKlass java/util/Collections$UnmodifiableCollection$1
instanceKlass com/android/dx/rop/code/AccessFlags
instanceKlass java/util/TreeMap$PrivateEntryIterator
instanceKlass com/android/dx/rop/annotation/NameValuePair
instanceKlass com/android/dx/dex/file/AnnotationUtils
instanceKlass com/android/dx/dex/cf/AttributeTranslator
instanceKlass com/android/dx/dex/cf/OptimizerOptions
instanceKlass com/android/dx/rop/code/TranslationAdvice
instanceKlass com/android/dx/dex/code/DalvCode$AssignIndicesCallback
instanceKlass com/android/dx/dex/cf/CfTranslator
instanceKlass com/android/dx/cf/attrib/InnerClassList$Item
instanceKlass com/android/dx/cf/attrib/BaseAttribute
instanceKlass com/android/dx/cf/direct/AttributeListParser
instanceKlass com/android/dx/cf/iface/Method
instanceKlass com/android/dx/cf/iface/Field
instanceKlass com/android/dx/cf/iface/Member
instanceKlass com/android/dx/cf/direct/MemberListParser
instanceKlass com/android/dx/rop/type/Type
instanceKlass com/android/dx/util/MutabilityControl
instanceKlass com/android/dx/cf/cst/ConstantPoolParser
instanceKlass com/android/dx/cf/code/BytecodeArray$Visitor
instanceKlass com/android/dx/cf/iface/Attribute
instanceKlass com/android/dx/util/ByteArray
instanceKlass com/android/dx/rop/type/TypeList
instanceKlass com/android/dx/cf/iface/MethodList
instanceKlass com/android/dx/cf/iface/FieldList
instanceKlass com/android/dx/cf/iface/AttributeList
instanceKlass com/android/dx/rop/cst/ConstantPool
instanceKlass com/android/dx/cf/direct/DirectClassFile
instanceKlass com/android/dx/cf/iface/ClassFile
instanceKlass com/android/dx/cf/iface/HasAttribute
instanceKlass sun/util/calendar/CalendarUtils
instanceKlass sun/util/calendar/CalendarDate
instanceKlass java/util/TimeZone$1
instanceKlass java/util/zip/CRC32
instanceKlass java/util/zip/Checksum
instanceKlass sun/util/calendar/ZoneInfoFile$ZoneOffsetTransitionRule
instanceKlass java/io/FileInputStream$1
instanceKlass java/io/DataInput
instanceKlass sun/util/calendar/ZoneInfoFile$1
instanceKlass sun/util/calendar/ZoneInfoFile
instanceKlass java/util/TimeZone
instanceKlass sun/util/calendar/CalendarSystem
instanceKlass java/util/Date
instanceKlass java/util/zip/ZipUtils
instanceKlass java/util/ArrayList$Itr
instanceKlass java/util/zip/ZipFile$ZipEntryIterator
instanceKlass com/android/dx/command/dexer/Main$1
instanceKlass com/android/dx/cf/direct/ClassPathOpener$1
instanceKlass com/android/dx/cf/direct/ClassPathOpener
instanceKlass com/android/dx/dex/file/MixedItemSection$1
instanceKlass com/android/dx/dex/file/Item
instanceKlass com/android/dx/util/AnnotatedOutput
instanceKlass com/android/dx/util/Output
instanceKlass com/android/dex/util/ByteOutput
instanceKlass com/android/dx/dex/file/Section
instanceKlass com/android/dx/rop/type/TypeBearer
instanceKlass com/android/dx/rop/cst/Constant
instanceKlass com/android/dx/util/ToHuman
instanceKlass com/android/dx/dex/file/DexFile
instanceKlass com/android/dx/dex/DexOptions
instanceKlass com/android/dx/command/DxConsole
instanceKlass com/android/dx/dex/cf/CfOptions
instanceKlass com/android/dex/util/FileUtils
instanceKlass com/android/dx/command/dexer/Main$Arguments$ArgumentsParser
instanceKlass com/android/dx/command/dexer/Main$Arguments
instanceKlass com/android/dx/cf/direct/AttributeFactory
instanceKlass java/util/concurrent/Callable
instanceKlass com/android/dx/cf/direct/ClassPathOpener$Consumer
instanceKlass java/io/Reader
instanceKlass java/lang/Readable
instanceKlass com/android/dx/cf/direct/ClassPathOpener$FileNameFilter
instanceKlass com/android/dx/command/dexer/Main
instanceKlass java/lang/Void
instanceKlass java/lang/Class$MethodArray
instanceKlass sun/launcher/LauncherHelper$FXHelper
instanceKlass com/android/dx/command/Main
instanceKlass java/io/FilePermission$1
instanceKlass sun/net/www/MessageHeader
instanceKlass java/net/URLConnection
instanceKlass java/security/PermissionCollection
instanceKlass sun/nio/ByteBuffered
instanceKlass sun/security/util/ManifestEntryVerifier
instanceKlass sun/security/util/SignatureFileVerifier
instanceKlass java/lang/Package
instanceKlass sun/misc/Resource
instanceKlass sun/misc/ExtensionDependency
instanceKlass sun/misc/JarIndex
instanceKlass sun/misc/FileURLMapper
instanceKlass sun/misc/URLClassPath$JarLoader$1
instanceKlass sun/misc/URLClassPath$Loader
instanceKlass sun/misc/URLClassPath$3
instanceKlass sun/net/util/URLUtil
instanceKlass java/net/URLClassLoader$1
instanceKlass java/util/jar/JarVerifier$3
instanceKlass java/security/CodeSigner
instanceKlass java/util/jar/JarVerifier
instanceKlass sun/misc/ASCIICaseInsensitiveComparator
instanceKlass java/util/jar/Attributes$Name
instanceKlass java/util/jar/Attributes
instanceKlass sun/misc/IOUtils
instanceKlass java/util/zip/ZStreamRef
instanceKlass java/util/zip/Inflater
instanceKlass java/util/zip/ZipEntry
instanceKlass sun/nio/ch/DirectBuffer
instanceKlass sun/misc/PerfCounter$CoreCounters
instanceKlass sun/misc/Perf
instanceKlass sun/misc/Perf$GetPerfAction
instanceKlass sun/misc/PerfCounter
instanceKlass java/util/zip/ZipCoder
instanceKlass java/util/Deque
instanceKlass java/util/Queue
instanceKlass java/nio/charset/StandardCharsets
instanceKlass java/util/jar/JavaUtilJarAccessImpl
instanceKlass sun/misc/JavaUtilJarAccess
instanceKlass java/util/zip/ZipFile$1
instanceKlass sun/misc/JavaUtilZipFileAccess
instanceKlass java/util/zip/ZipFile
instanceKlass java/util/zip/ZipConstants
instanceKlass java/nio/charset/CharsetDecoder
instanceKlass sun/nio/cs/ArrayDecoder
instanceKlass java/lang/StringCoding$StringDecoder
instanceKlass java/io/FileOutputStream$1
instanceKlass java/lang/StringCoding$StringEncoder
instanceKlass java/lang/ThreadLocal$ThreadLocalMap
instanceKlass java/lang/StringCoding
instanceKlass sun/usagetracker/UsageTrackerClient$3
instanceKlass java/util/TreeMap$Entry
instanceKlass java/lang/ProcessEnvironment$CheckedEntry
instanceKlass java/util/HashMap$HashIterator
instanceKlass java/lang/ProcessEnvironment$CheckedEntrySet$1
instanceKlass java/util/NavigableMap
instanceKlass java/util/SortedMap
instanceKlass java/util/Collections$UnmodifiableMap
instanceKlass java/lang/ProcessEnvironment$EntryComparator
instanceKlass java/lang/ProcessEnvironment$NameComparator
instanceKlass sun/usagetracker/UsageTrackerClient$2
instanceKlass sun/usagetracker/UsageTrackerClient$4
instanceKlass sun/usagetracker/UsageTrackerClient$1
instanceKlass java/util/concurrent/atomic/AtomicBoolean
instanceKlass sun/usagetracker/UsageTrackerClient
instanceKlass sun/misc/PostVMInitHook
instanceKlass java/lang/invoke/MethodHandleStatics$1
instanceKlass java/lang/invoke/MethodHandleStatics
instanceKlass java/lang/invoke/MemberName$Factory
instanceKlass java/lang/ClassValue$Version
instanceKlass java/lang/ClassValue$Identity
instanceKlass java/lang/ClassValue
instanceKlass java/lang/invoke/MethodHandleImpl$3
instanceKlass java/lang/invoke/MethodHandleImpl$2
instanceKlass java/util/function/Function
instanceKlass java/lang/invoke/MethodHandleImpl$1
instanceKlass java/lang/invoke/MethodHandleImpl
instanceKlass java/lang/SystemClassLoaderAction
instanceKlass sun/misc/Launcher$AppClassLoader$1
instanceKlass sun/misc/URLClassPath
instanceKlass java/security/Principal
instanceKlass java/security/ProtectionDomain$Key
instanceKlass java/security/ProtectionDomain$2
instanceKlass sun/misc/JavaSecurityProtectionDomainAccess
instanceKlass java/security/ProtectionDomain$JavaSecurityAccessImpl
instanceKlass sun/misc/JavaSecurityAccess
instanceKlass java/net/URLStreamHandler
instanceKlass java/net/Parts
instanceKlass java/lang/CharacterData
instanceKlass sun/util/locale/LocaleUtils
instanceKlass java/util/Locale$LocaleKey
instanceKlass sun/util/locale/BaseLocale$Key
instanceKlass sun/util/locale/BaseLocale
instanceKlass java/util/concurrent/ConcurrentHashMap$CollectionView
instanceKlass java/util/concurrent/ConcurrentHashMap$CounterCell
instanceKlass java/util/concurrent/ConcurrentHashMap$Node
instanceKlass java/util/concurrent/locks/ReentrantLock
instanceKlass java/util/concurrent/locks/Lock
instanceKlass java/util/concurrent/ConcurrentMap
instanceKlass sun/util/locale/LocaleObjectCache
instanceKlass java/util/Locale
instanceKlass java/util/BitSet
instanceKlass sun/net/www/ParseUtil
instanceKlass sun/misc/MetaIndex
instanceKlass sun/misc/Launcher$ExtClassLoader$1
instanceKlass java/util/StringTokenizer
instanceKlass java/net/URLClassLoader$7
instanceKlass sun/misc/JavaNetAccess
instanceKlass java/lang/ClassLoader$ParallelLoaders
instanceKlass sun/security/util/Debug
instanceKlass sun/misc/Launcher$Factory
instanceKlass java/net/URLStreamHandlerFactory
instanceKlass java/lang/Compiler$1
instanceKlass java/lang/Compiler
instanceKlass java/lang/System$2
instanceKlass sun/misc/JavaLangAccess
instanceKlass sun/io/Win32ErrorMode
instanceKlass sun/misc/OSEnvironment
instanceKlass java/lang/Integer$IntegerCache
instanceKlass sun/misc/NativeSignalHandler
instanceKlass sun/misc/Signal
instanceKlass java/lang/Terminator$1
instanceKlass sun/misc/SignalHandler
instanceKlass java/lang/Terminator
instanceKlass java/lang/ClassLoader$NativeLibrary
instanceKlass java/io/ExpiringCache$Entry
instanceKlass java/lang/ClassLoader$3
instanceKlass java/nio/file/Path
instanceKlass java/nio/file/Watchable
instanceKlass java/lang/Enum
instanceKlass java/io/ExpiringCache
instanceKlass java/io/FileSystem
instanceKlass java/io/DefaultFileSystem
instanceKlass java/nio/Bits$1
instanceKlass sun/misc/JavaNioAccess
instanceKlass java/nio/ByteOrder
instanceKlass java/nio/Bits
instanceKlass java/nio/charset/CodingErrorAction
instanceKlass java/nio/charset/CharsetEncoder
instanceKlass sun/nio/cs/ArrayEncoder
instanceKlass sun/reflect/ReflectionFactory$1
instanceKlass java/lang/Class$1
instanceKlass sun/nio/cs/SingleByte
instanceKlass sun/nio/cs/HistoricallyNamedCharset
instanceKlass java/util/Arrays
instanceKlass sun/security/action/GetPropertyAction
instanceKlass java/lang/ThreadLocal
instanceKlass java/nio/charset/spi/CharsetProvider
instanceKlass java/nio/charset/Charset
instanceKlass java/io/Writer
instanceKlass sun/reflect/misc/ReflectUtil
instanceKlass java/lang/reflect/ReflectAccess
instanceKlass sun/reflect/LangReflectAccess
instanceKlass java/lang/reflect/Modifier
instanceKlass sun/reflect/annotation/AnnotationType
instanceKlass java/lang/Class$AnnotationData
instanceKlass sun/reflect/generics/repository/AbstractRepository
instanceKlass java/lang/Class$Atomic
instanceKlass java/lang/Class$ReflectionData
instanceKlass java/lang/Class$3
instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl$1
instanceKlass java/security/PrivilegedExceptionAction
instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater
instanceKlass java/io/OutputStream
instanceKlass java/io/Flushable
instanceKlass java/util/HashMap$Node
instanceKlass sun/reflect/Reflection
instanceKlass java/util/Collections$UnmodifiableCollection
instanceKlass sun/misc/SharedSecrets
instanceKlass java/io/FileDescriptor$1
instanceKlass sun/misc/JavaIOFileDescriptorAccess
instanceKlass java/io/FileDescriptor
instanceKlass sun/misc/Version
instanceKlass java/lang/Runtime
instanceKlass java/util/Hashtable$Enumerator
instanceKlass java/util/Iterator
instanceKlass java/util/Enumeration
instanceKlass java/util/Objects
instanceKlass java/util/Collections$SynchronizedCollection
instanceKlass java/util/AbstractMap
instanceKlass java/util/Collections
instanceKlass java/util/Set
instanceKlass java/lang/Math
instanceKlass java/util/Hashtable$Entry
instanceKlass java/util/Map$Entry
instanceKlass sun/misc/VM
instanceKlass java/lang/ref/ReferenceQueue$Lock
instanceKlass java/lang/ref/ReferenceQueue
instanceKlass java/lang/ref/Reference$Lock
instanceKlass sun/reflect/ReflectionFactory
instanceKlass java/util/AbstractCollection
instanceKlass java/util/RandomAccess
instanceKlass java/util/List
instanceKlass java/util/Collection
instanceKlass java/lang/Iterable
instanceKlass java/security/cert/Certificate
instanceKlass sun/reflect/ReflectionFactory$GetReflectionFactoryAction
instanceKlass java/security/PrivilegedAction
instanceKlass java/security/AccessController
instanceKlass java/security/Permission
instanceKlass java/security/Guard
instanceKlass java/lang/String$CaseInsensitiveComparator
instanceKlass java/util/Comparator
instanceKlass java/io/ObjectStreamField
instanceKlass java/lang/Number
instanceKlass java/lang/Character
instanceKlass java/lang/Boolean
instanceKlass java/nio/Buffer
instanceKlass java/lang/StackTraceElement
instanceKlass java/security/CodeSource
instanceKlass sun/misc/Launcher
instanceKlass java/util/jar/Manifest
instanceKlass java/net/URL
instanceKlass java/io/File
instanceKlass java/io/InputStream
instanceKlass java/io/Closeable
instanceKlass java/lang/AutoCloseable
instanceKlass sun/misc/Unsafe
instanceKlass java/lang/AbstractStringBuilder
instanceKlass java/lang/Appendable
instanceKlass java/lang/invoke/CallSite
instanceKlass java/lang/invoke/MethodType
instanceKlass java/lang/invoke/LambdaForm
instanceKlass java/lang/invoke/MethodHandleNatives
instanceKlass java/lang/invoke/MemberName
instanceKlass java/lang/invoke/MethodHandle
instanceKlass sun/reflect/CallerSensitive
instanceKlass java/lang/annotation/Annotation
instanceKlass sun/reflect/FieldAccessor
instanceKlass sun/reflect/ConstantPool
instanceKlass sun/reflect/ConstructorAccessor
instanceKlass sun/reflect/MethodAccessor
instanceKlass sun/reflect/MagicAccessorImpl
instanceKlass java/lang/reflect/Parameter
instanceKlass java/lang/reflect/Member
instanceKlass java/lang/reflect/AccessibleObject
instanceKlass java/util/Dictionary
instanceKlass java/util/Map
instanceKlass java/lang/ThreadGroup
instanceKlass java/lang/Thread$UncaughtExceptionHandler
instanceKlass java/lang/Thread
instanceKlass java/lang/Runnable
instanceKlass java/lang/ref/Reference
instanceKlass java/security/AccessControlContext
instanceKlass java/security/ProtectionDomain
instanceKlass java/lang/SecurityManager
instanceKlass java/lang/Throwable
instanceKlass java/lang/System
instanceKlass java/lang/ClassLoader
instanceKlass java/lang/Cloneable
instanceKlass java/lang/Class
instanceKlass java/lang/reflect/Type
instanceKlass java/lang/reflect/GenericDeclaration
instanceKlass java/lang/reflect/AnnotatedElement
instanceKlass java/lang/String
instanceKlass java/lang/CharSequence
instanceKlass java/lang/Comparable
instanceKlass java/io/Serializable
ciInstanceKlass java/lang/Object 1 1 75 3 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 100 100 1 1 1 12 12 12 12 12 12 12 12 12 12 10 10 10 10 10 10 10 10 10 10
ciInstanceKlass java/io/Serializable 1 0 5 1 1 100 100
ciInstanceKlass java/lang/String 1 1 537 3 3 3 3 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 100 100 100 7 100 100 100 100 100 100 100 100 100 7 100 7 7 100 7 100 100 7 100 7 100 100 100 7 100 100 100 100 7 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 1
staticfield java/lang/String serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField;
staticfield java/lang/String CASE_INSENSITIVE_ORDER Ljava/util/Comparator; java/lang/String$CaseInsensitiveComparator
ciInstanceKlass java/lang/Class 1 1 1187 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 8 8 8 8 8 100 7 100 100 100 100 7 7 100 7 100 7 7 100 7 100 7 7 100 7 100 100 100 7 100 100 100 100 100 100 100 100 7 100 100 100 100 7 100 7 100 100 100 7 100 100 7 7 100 100 100 7 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 7 7 100 100 100 100 7 7 100 100 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1 1 1 1 1 1 1
staticfield java/lang/Class serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField;
ciInstanceKlass java/lang/Cloneable 1 0 5 1 1 100 100
instanceKlass sun/reflect/DelegatingClassLoader
instanceKlass java/security/SecureClassLoader
ciInstanceKlass java/lang/ClassLoader 1 1 839 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 7 100 100 100 100 7 100 100 100 7 7 7 100 100 100 100 100 100 7 7 100 100 7 100 7 7 100 100 100 100 7 100 100 7 7 100 7 7 100 7 100 7 7 100 100 7 7 7 7 100 7 7 100 100 7 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 1 1
staticfield java/lang/ClassLoader nocerts [Ljava/security/cert/Certificate; 0 [Ljava/security/cert/Certificate;
ciInstanceKlass java/lang/System 1 1 366 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 7 7 100 7 100 100 100 100 100 100 7 7 100 100 7 100 100 7 7 7 7 100 100 100 7 100 100 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11
staticfield java/lang/System in Ljava/io/InputStream; java/io/BufferedInputStream
staticfield java/lang/System out Ljava/io/PrintStream; java/io/PrintStream
staticfield java/lang/System err Ljava/io/PrintStream; java/io/PrintStream
instanceKlass java/lang/Exception
instanceKlass java/lang/Error
ciInstanceKlass java/lang/Throwable 1 1 324 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 7 100 100 100 100 7 7 100 100 100 100 100 100 100 100 100 7 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 1 1 1 1
staticfield java/lang/Throwable UNASSIGNED_STACK [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement;
staticfield java/lang/Throwable SUPPRESSED_SENTINEL Ljava/util/List; java/util/Collections$UnmodifiableRandomAccessList
staticfield java/lang/Throwable EMPTY_THROWABLE_ARRAY [Ljava/lang/Throwable; 0 [Ljava/lang/Throwable;
staticfield java/lang/Throwable $assertionsDisabled Z 1
instanceKlass java/lang/AssertionError
instanceKlass java/lang/VirtualMachineError
instanceKlass java/lang/LinkageError
instanceKlass java/lang/ThreadDeath
ciInstanceKlass java/lang/Error 1 1 27 1 1 1 1 1 1 1 1 1 1 5 0 100 7 1 1 12 12 12 12 12 10 10 10 10 10
ciInstanceKlass java/lang/ThreadDeath 0 0 15 1 1 1 1 1 1 1 1 5 0 100 100 12 10
instanceKlass java/lang/CloneNotSupportedException
instanceKlass java/security/GeneralSecurityException
instanceKlass java/io/IOException
instanceKlass java/util/concurrent/ExecutionException
instanceKlass java/lang/InterruptedException
instanceKlass java/lang/ReflectiveOperationException
instanceKlass java/lang/RuntimeException
ciInstanceKlass java/lang/Exception 1 1 27 1 1 1 1 1 1 1 1 1 1 5 0 100 7 1 1 12 12 12 12 12 10 10 10 10 10
instanceKlass com/android/dx/util/Warning
instanceKlass java/lang/NegativeArraySizeException
instanceKlass java/lang/IndexOutOfBoundsException
instanceKlass java/lang/IllegalStateException
instanceKlass java/lang/UnsupportedOperationException
instanceKlass java/util/NoSuchElementException
instanceKlass com/android/dex/util/ExceptionWithContext
instanceKlass com/android/dx/command/dexer/Main$StopProcessing
instanceKlass com/android/dx/command/UsageException
instanceKlass java/lang/IllegalArgumentException
instanceKlass java/lang/ArithmeticException
instanceKlass java/lang/NullPointerException
instanceKlass java/lang/IllegalMonitorStateException
instanceKlass java/lang/ArrayStoreException
instanceKlass java/lang/ClassCastException
ciInstanceKlass java/lang/RuntimeException 1 1 27 1 1 1 1 1 1 1 1 1 1 5 0 7 100 1 1 12 12 12 12 12 10 10 10 10 10
ciInstanceKlass java/lang/SecurityManager 0 0 372 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
ciInstanceKlass java/security/ProtectionDomain 1 1 267 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 100 100 100 100 100 100 100 100 7 7 100 7 7 100 7 7 7 100 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 1
staticfield java/security/ProtectionDomain debug Lsun/security/util/Debug; null
ciInstanceKlass java/security/AccessControlContext 1 1 302 8 8 8 8 8 8 8 8 8 8 8 8 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 100 100 100 100 7 100 100 7 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11
instanceKlass java/net/URLClassLoader
ciInstanceKlass java/security/SecureClassLoader 1 1 127 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 100 100 7 100 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
staticfield java/security/SecureClassLoader debug Lsun/security/util/Debug; null
instanceKlass java/lang/ClassNotFoundException
ciInstanceKlass java/lang/ReflectiveOperationException 0 0 24 1 1 1 1 1 1 1 1 1 1 5 0 100 100 1 12 12 12 12 10 10 10 10
ciInstanceKlass java/lang/ClassNotFoundException 0 0 29 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 1 1 1 12 12 12 9 10 10
instanceKlass java/lang/IncompatibleClassChangeError
instanceKlass java/lang/BootstrapMethodError
instanceKlass java/lang/NoClassDefFoundError
ciInstanceKlass java/lang/LinkageError 1 1 21 1 1 1 1 1 1 1 1 1 5 0 7 100 1 12 12 12 10 10 10
ciInstanceKlass java/lang/NoClassDefFoundError 0 0 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10
ciInstanceKlass java/lang/ClassCastException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10
ciInstanceKlass java/lang/ArrayStoreException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10
instanceKlass java/lang/StackOverflowError
instanceKlass java/lang/OutOfMemoryError
ciInstanceKlass java/lang/VirtualMachineError 1 1 24 1 1 1 1 1 1 1 1 1 1 5 0 100 100 1 12 12 12 12 10 10 10 10
ciInstanceKlass java/lang/OutOfMemoryError 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10
ciInstanceKlass java/lang/StackOverflowError 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10
ciInstanceKlass java/lang/IllegalMonitorStateException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10
instanceKlass java/lang/ref/PhantomReference
instanceKlass java/lang/ref/FinalReference
instanceKlass java/lang/ref/WeakReference
instanceKlass java/lang/ref/SoftReference
ciInstanceKlass java/lang/ref/Reference 1 1 114 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 7 100 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 1 1
instanceKlass sun/util/locale/LocaleObjectCache$CacheEntry
ciInstanceKlass java/lang/ref/SoftReference 1 1 32 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 7 1 1 1 1 12 12 12 12 12 9 9 10 10 10
instanceKlass java/lang/ThreadLocal$ThreadLocalMap$Entry
instanceKlass java/lang/ClassValue$Entry
instanceKlass java/util/WeakHashMap$Entry
ciInstanceKlass java/lang/ref/WeakReference 1 1 17 1 1 1 1 1 1 7 100 1 1 1 1 12 12 10 10
instanceKlass java/lang/ref/Finalizer
ciInstanceKlass java/lang/ref/FinalReference 1 1 13 1 1 1 1 1 100 7 1 1 1 12 10
instanceKlass sun/misc/Cleaner
ciInstanceKlass java/lang/ref/PhantomReference 0 0 16 1 1 1 1 1 1 1 1 100 100 1 1 1 12 10
ciInstanceKlass sun/misc/Cleaner 0 0 71 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 11
ciInstanceKlass java/lang/ref/Finalizer 1 1 145 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 7 100 7 7 100 100 100 7 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1
staticfield java/lang/ref/Finalizer lock Ljava/lang/Object; java/lang/Object
instanceKlass java/lang/ref/Finalizer$FinalizerThread
instanceKlass java/lang/ref/Reference$ReferenceHandler
ciInstanceKlass java/lang/Thread 1 1 543 3 3 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 100 100 100 100 100 100 100 100 100 100 100 100 7 100 7 100 7 7 100 7 100 100 100 100 100 100 7 100 100 100 100 100 100 100 7 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 1 1 1 1
staticfield java/lang/Thread EMPTY_STACK_TRACE [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement;
staticfield java/lang/Thread SUBCLASS_IMPLEMENTATION_PERMISSION Ljava/lang/RuntimePermission; java/lang/RuntimePermission
ciInstanceKlass java/lang/ThreadGroup 1 1 265 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 7 100 100 7 7 100 100 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1
ciInstanceKlass java/util/Map 1 1 129 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11
instanceKlass java/util/Hashtable
ciInstanceKlass java/util/Dictionary 1 1 28 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 1 1 1 1 1 1 12 10
instanceKlass java/util/Properties
ciInstanceKlass java/util/Hashtable 1 1 394 3 3 4 4 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 100 100 100 100 100 100 100 100 100 100 7 100 100 7 100 7 100 100 100 7 100 7 7 100 7 7 7 100 100 7 7 7 100 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 1 1 1 1
ciInstanceKlass java/util/Properties 1 1 260 3 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 100 100 100 100 7 100 100 100 100 100 7 100 100 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 1
staticfield java/util/Properties hexDigit [C 16
instanceKlass java/lang/reflect/Executable
instanceKlass java/lang/reflect/Field
ciInstanceKlass java/lang/reflect/AccessibleObject 1 1 141 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 100 7 7 100 7 100 7 7 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1
staticfield java/lang/reflect/AccessibleObject ACCESS_PERMISSION Ljava/security/Permission; java/lang/reflect/ReflectPermission
staticfield java/lang/reflect/AccessibleObject reflectionFactory Lsun/reflect/ReflectionFactory; sun/reflect/ReflectionFactory
ciInstanceKlass java/lang/reflect/Field 1 1 359 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 7 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1
ciInstanceKlass java/lang/reflect/Parameter 0 0 207 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11
instanceKlass java/lang/reflect/Constructor
instanceKlass java/lang/reflect/Method
ciInstanceKlass java/lang/reflect/Executable 1 1 375 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 1
ciInstanceKlass java/lang/reflect/Method 1 1 343 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 100 100 100 100 100 100 7 100 7 100 100 100 100 100 100 7 100 7 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11
ciInstanceKlass java/lang/reflect/Constructor 1 1 327 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 7 100 100 100 100 100 100 7 7 100 100 100 100 100 7 100 7 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1
instanceKlass sun/reflect/FieldAccessorImpl
instanceKlass sun/reflect/ConstructorAccessorImpl
instanceKlass sun/reflect/MethodAccessorImpl
ciInstanceKlass sun/reflect/MagicAccessorImpl 1 1 10 1 1 1 1 1 7 100 12 10
instanceKlass sun/reflect/DelegatingMethodAccessorImpl
instanceKlass sun/reflect/NativeMethodAccessorImpl
ciInstanceKlass sun/reflect/MethodAccessorImpl 1 1 19 1 1 1 1 1 1 1 1 1 1 1 100 100 7 100 100 12 10
instanceKlass sun/reflect/DelegatingConstructorAccessorImpl
instanceKlass sun/reflect/NativeConstructorAccessorImpl
ciInstanceKlass sun/reflect/ConstructorAccessorImpl 1 1 21 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 12 10
ciInstanceKlass sun/reflect/DelegatingClassLoader 0 0 10 1 1 1 1 100 100 1 12 10
ciInstanceKlass sun/reflect/ConstantPool 0 0 103 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
instanceKlass sun/reflect/UnsafeFieldAccessorImpl
ciInstanceKlass sun/reflect/FieldAccessorImpl 0 0 53 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10
instanceKlass sun/reflect/UnsafeStaticFieldAccessorImpl
ciInstanceKlass sun/reflect/UnsafeFieldAccessorImpl 0 0 226 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
ciInstanceKlass sun/reflect/UnsafeStaticFieldAccessorImpl 0 0 35 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 1 1 1 12 12 12 12 12 9 9 10 10 10
ciInstanceKlass sun/reflect/CallerSensitive 0 0 15 1 1 1 1 1 1 1 100 100 100 1 1 1 1
instanceKlass java/lang/invoke/DirectMethodHandle
ciInstanceKlass java/lang/invoke/MethodHandle 1 1 435 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 7 100 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1
staticfield java/lang/invoke/MethodHandle FORM_OFFSET J 20
staticfield java/lang/invoke/MethodHandle $assertionsDisabled Z 1
ciInstanceKlass java/lang/invoke/DirectMethodHandle 0 0 691 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 1 1 1 1 1
ciInstanceKlass java/lang/invoke/MemberName 1 1 641 3 3 3 3 3 3 3 3 3 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 100 100 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1
staticfield java/lang/invoke/MemberName $assertionsDisabled Z 1
ciInstanceKlass java/lang/invoke/MethodHandleNatives 1 1 422 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1
staticfield java/lang/invoke/MethodHandleNatives COUNT_GWT Z 1
staticfield java/lang/invoke/MethodHandleNatives $assertionsDisabled Z 1
ciInstanceKlass java/lang/invoke/LambdaForm 0 0 964 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 8 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 1 1 1 1 1
ciInstanceKlass java/lang/invoke/MethodType 0 0 588 8 8 8 8 8 8 8 8 8 8 8 8 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 1
ciInstanceKlass java/lang/BootstrapMethodError 0 0 35 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 1 1 12 12 12 12 12 10 10 10 10 10
instanceKlass java/lang/invoke/VolatileCallSite
instanceKlass java/lang/invoke/MutableCallSite
instanceKlass java/lang/invoke/ConstantCallSite
ciInstanceKlass java/lang/invoke/CallSite 0 0 308 8 8 8 8 8 8 8 8 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
ciInstanceKlass java/lang/invoke/ConstantCallSite 0 0 39 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 1 1 12 12 12 12 12 12 9 9 10 10 10 10 10
ciInstanceKlass java/lang/invoke/MutableCallSite 0 0 54 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10
ciInstanceKlass java/lang/invoke/VolatileCallSite 0 0 30 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 12 12 12 12 12 12 10 10 10 10 10 10
instanceKlass java/lang/StringBuilder
instanceKlass java/lang/StringBuffer
ciInstanceKlass java/lang/AbstractStringBuilder 1 1 309 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 100 100 100 100 100 100 7 7 100 7 100 100 100 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11
ciInstanceKlass java/lang/StringBuffer 1 1 369 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 7 7 100 100 7 7 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1
staticfield java/lang/StringBuffer serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField;
ciInstanceKlass java/lang/StringBuilder 1 1 323 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11
ciInstanceKlass sun/misc/Unsafe 1 1 386 8 8 7 7 7 7 7 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 100 7 100 100 7 100 7 100 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
staticfield sun/misc/Unsafe theUnsafe Lsun/misc/Unsafe; sun/misc/Unsafe
staticfield sun/misc/Unsafe ARRAY_BOOLEAN_BASE_OFFSET I 16
staticfield sun/misc/Unsafe ARRAY_BYTE_BASE_OFFSET I 16
staticfield sun/misc/Unsafe ARRAY_SHORT_BASE_OFFSET I 16
staticfield sun/misc/Unsafe ARRAY_CHAR_BASE_OFFSET I 16
staticfield sun/misc/Unsafe ARRAY_INT_BASE_OFFSET I 16
staticfield sun/misc/Unsafe ARRAY_LONG_BASE_OFFSET I 16
staticfield sun/misc/Unsafe ARRAY_FLOAT_BASE_OFFSET I 16
staticfield sun/misc/Unsafe ARRAY_DOUBLE_BASE_OFFSET I 16
staticfield sun/misc/Unsafe ARRAY_OBJECT_BASE_OFFSET I 16
staticfield sun/misc/Unsafe ARRAY_BOOLEAN_INDEX_SCALE I 1
staticfield sun/misc/Unsafe ARRAY_BYTE_INDEX_SCALE I 1
staticfield sun/misc/Unsafe ARRAY_SHORT_INDEX_SCALE I 2
staticfield sun/misc/Unsafe ARRAY_CHAR_INDEX_SCALE I 2
staticfield sun/misc/Unsafe ARRAY_INT_INDEX_SCALE I 4
staticfield sun/misc/Unsafe ARRAY_LONG_INDEX_SCALE I 8
staticfield sun/misc/Unsafe ARRAY_FLOAT_INDEX_SCALE I 4
staticfield sun/misc/Unsafe ARRAY_DOUBLE_INDEX_SCALE I 8
staticfield sun/misc/Unsafe ARRAY_OBJECT_INDEX_SCALE I 4
staticfield sun/misc/Unsafe ADDRESS_SIZE I 8
instanceKlass com/android/dx/util/ByteArray$MyInputStream
instanceKlass java/util/zip/ZipFile$ZipFileInputStream
instanceKlass java/io/FilterInputStream
instanceKlass java/io/FileInputStream
instanceKlass java/io/ByteArrayInputStream
ciInstanceKlass java/io/InputStream 1 1 58 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 5 0 100 100 100 100 100 100 100 7 12 12 12 12 12 10 10 10 10 10 10 10
ciInstanceKlass java/io/ByteArrayInputStream 1 1 59 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 7 100 100 100 7 1 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10
ciInstanceKlass java/io/File 1 1 575 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 7 100 7 100 100 7 100 100 100 100 100 100 100 7 100 100 100 100 100 7 100 100 100 100 7 7 7 100 100 100 100 100 100 100 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 1 1 1
staticfield java/io/File fs Ljava/io/FileSystem; java/io/WinNTFileSystem
staticfield java/io/File separatorChar C 92
staticfield java/io/File separator Ljava/lang/String; "\"
staticfield java/io/File pathSeparatorChar C 59
staticfield java/io/File pathSeparator Ljava/lang/String; ";"
staticfield java/io/File PATH_OFFSET J 16
staticfield java/io/File PREFIX_LENGTH_OFFSET J 12
staticfield java/io/File UNSAFE Lsun/misc/Unsafe; sun/misc/Unsafe
staticfield java/io/File $assertionsDisabled Z 1
instanceKlass sun/misc/Launcher$ExtClassLoader
instanceKlass sun/misc/Launcher$AppClassLoader
ciInstanceKlass java/net/URLClassLoader 1 1 519 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 100 100 100 7 7 100 100 100 7 100 100 100 7 100 7 100 100 100 7 7 7 100 100 100 100 100 7 7 100 100 100 7 7 7 7 100 7 100 100 100 7 7 7 100 7 7 7 7 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11
ciInstanceKlass java/net/URL 1 1 454 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 100 100 100 100 7 100 7 7 7 100 100 100 100 7 100 100 100 100 7 100 7 100 7 7 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11
ciInstanceKlass java/util/jar/Manifest 1 1 227 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 7 100 100 100 7 100 7 100 100 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 1
ciInstanceKlass sun/misc/Launcher 1 1 215 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 100 100 100 100 100 100 100 100 7 100 7 100 7 7 100 7 7 100 7 100 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 1
ciInstanceKlass sun/misc/Launcher$AppClassLoader 1 1 198 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 7 100 100 100 7 7 100 100 7 100 7 100 100 100 7 7 7 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1
staticfield sun/misc/Launcher$AppClassLoader $assertionsDisabled Z 1
ciInstanceKlass sun/misc/Launcher$ExtClassLoader 1 1 206 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 7 7 7 7 7 100 7 100 100 100 7 7 7 7 7 7 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1
ciInstanceKlass java/security/CodeSource 1 1 319 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 100 100 7 100 100 100 100 7 100 7 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11
ciInstanceKlass java/lang/StackTraceElement 0 0 95 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10
instanceKlass java/nio/LongBuffer
instanceKlass java/nio/ByteBuffer
ciInstanceKlass java/nio/Buffer 1 1 100 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 100 100 7 100 7 100 100 100 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10
ciInstanceKlass java/lang/Boolean 1 1 107 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 7 100 100 100 7 100 7 7 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10
staticfield java/lang/Boolean TRUE Ljava/lang/Boolean; java/lang/Boolean
staticfield java/lang/Boolean FALSE Ljava/lang/Boolean; java/lang/Boolean
staticfield java/lang/Boolean TYPE Ljava/lang/Class; java/lang/Class
ciInstanceKlass java/lang/Character 1 1 456 3 3 3 3 3 3 3 3 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 5 0 5 0 100 100 100 100 100 100 100 7 100 7 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 1 1 1
staticfield java/lang/Character TYPE Ljava/lang/Class; java/lang/Class
staticfield java/lang/Character $assertionsDisabled Z 1
instanceKlass java/util/concurrent/atomic/AtomicInteger
instanceKlass java/lang/Long
instanceKlass java/lang/Integer
instanceKlass java/lang/Short
instanceKlass java/lang/Byte
instanceKlass java/lang/Double
instanceKlass java/lang/Float
ciInstanceKlass java/lang/Number 1 1 31 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 7 12 12 10 10
ciInstanceKlass java/lang/Float 1 1 166 3 3 3 4 4 4 4 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 4 4 5 0 7 100 100 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
staticfield java/lang/Float TYPE Ljava/lang/Class; java/lang/Class
ciInstanceKlass java/lang/Double 1 1 220 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 5 0 5 0 5 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 7 100 7 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
staticfield java/lang/Double TYPE Ljava/lang/Class; java/lang/Class
ciInstanceKlass java/lang/Byte 1 1 150 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 7 100 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
staticfield java/lang/Byte TYPE Ljava/lang/Class; java/lang/Class
ciInstanceKlass java/lang/Short 1 1 156 3 3 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 7 100 100 100 100 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
staticfield java/lang/Short TYPE Ljava/lang/Class; java/lang/Class
ciInstanceKlass java/lang/Integer 1 1 306 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 5 0 5 0 5 0 100 100 7 100 100 7 7 100 100 100 7 100 100 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
staticfield java/lang/Integer TYPE Ljava/lang/Class; java/lang/Class
staticfield java/lang/Integer digits [C 36
staticfield java/lang/Integer DigitTens [C 100
staticfield java/lang/Integer DigitOnes [C 100
staticfield java/lang/Integer sizeTable [I 10
ciInstanceKlass java/lang/Long 1 1 353 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 100 100 7 100 100 7 7 100 7 100 100 100 100 100 7 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
staticfield java/lang/Long TYPE Ljava/lang/Class; java/lang/Class
ciInstanceKlass java/lang/NullPointerException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10
ciInstanceKlass java/lang/ArithmeticException 1 1 18 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10
instanceKlass java/util/HashMap$Values