-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall_files.txt
5700 lines (5700 loc) · 286 KB
/
all_files.txt
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
122744438 system/system/priv-app/Velvet/Velvet.apk
96493253 system/system/priv-app/GmsCore/GmsCore.apk
79885578 system/system/priv-app/OneDrive_Samsung_v3/OneDrive_Samsung_v3.apk
68088918 system/system/priv-app/SecSettings/SecSettings.apk
68071268 system/system/app/WebViewGoogle/WebViewGoogle.apk
65874110 system/system/priv-app/StickerFaceAR/StickerFaceAR.apk
62643346 system/system/framework/framework-res.apk
58639958 system/system/app/TrichromeLibrary/TrichromeLibrary.apk
56217129 system/system/app/YouTube/YouTube.apk
53685384 system/system/framework/oat/arm64/services.odex
51681652 system/system/app/Maps/Maps.apk
49799868 system/system/app/SamsungIMEv3.5MASS/SamsungIMEv3.5MASS.apk
46108985 system/system/priv-app/SystemUI/SystemUI.apk
41442640 vendor/lib64/egl/libGLES_mali.so
37711297 system/system/priv-app/SamsungMessages_11/SamsungMessages_11.apk
37082826 system/system/framework/framework.jar
36679408 system/system/app/MyEmoji/MyEmoji.apk
32662048 recovery.img
31916944 system/system/priv-app/SamsungInCallUI/oat/arm64/SamsungInCallUI.odex
30027975 system/system/app/GoogleTTS/GoogleTTS.apk
28800080 vendor/lib/egl/libGLES_mali.so
28562544 system/system/priv-app/SecSettings/oat/arm64/SecSettings.odex
28251669 system/system/priv-app/SamsungCloudClient/SamsungCloudClient.apk
28080008 system/system/priv-app/SystemUI/oat/arm64/SystemUI.odex
27964150 system/system/priv-app/MyGalaxy/MyGalaxy.apk
27715308 system/system/framework/services.jar
26708879 system/system/priv-app/Crane/Crane.apk
26551479 system/system/priv-app/PhotoEditor_Q_Lite/PhotoEditor_Q_Lite.apk
26185052 system/system/priv-app/GalaxyApps_OPEN/GalaxyApps_OPEN.apk
24912270 system/system/app/Gmail2/Gmail2.apk
24807540 system/system/priv-app/SamsungInCallUI/SamsungInCallUI.apk
24408960 system/system/apex/com.android.runtime.release/etc/icu/icudt63l.dat
23708008 bootRE/boot.elf
22730053 system/system/priv-app/Phonesky/Phonesky.apk
22712152 system/system/priv-app/imsservice/oat/arm64/imsservice.odex
22585142 system/system/priv-app/Accessibility/Accessibility.apk
22251594 system/system/priv-app/TelephonyUI/TelephonyUI.apk
22146041 system/system/app/SamsungCalendar/SamsungCalendar.apk
22103895 system/system/priv-app/SamsungGallery2018/SamsungGallery2018.apk
21661153 system/system/priv-app/wallpaper-res/wallpaper-res.apk
21532056 vendor/lib64/libsnap_compute.so
20417983 system/system/app/ClockPackage/ClockPackage.apk
20407967 system/system/priv-app/SamsungBilling/SamsungBilling.apk
20332200 system/system/fonts/NotoSansCJK-Regular.ttc
20289996 system/system/priv-app/SamsungContacts/SamsungContacts.apk
20034080 boot.img
19869696 bootimg/00_kernel
19787537 system/system/app/SmartReminder/SmartReminder.apk
19378895 system/system/priv-app/GameHome/GameHome.apk
19219704 system/system/lib64/libLLVM_android.so
18983920 recovery/kernel
18983920 boot/kernel
18654733 system/system/priv-app/SamsungExperienceService/SamsungExperienceService.apk
18052616 system/system/priv-app/SamsungDialer/SamsungDialer.apk
17793792 system/system/priv-app/SamsungCamera/SamsungCamera.apk
17488937 system/system/app/Chrome/Chrome.apk
17401952 vendor/lib/libsnap_compute.so
16619124 system/system/app/SmartCapture/SmartCapture.apk
16593416 system/system/fonts/SECCJK-Regular.ttc
16392318 odm/app/SamsungMax/SamsungMax.apk
15664548 vendor/lib/libOpenCv.camera.samsung.so
15606160 vendor/lib64/libOpenCv.camera.samsung.so
15158770 system/system/app/Weather_SEP11.0/Weather_SEP11.0.apk
14969804 system/system/priv-app/SamsungAccount/SamsungAccount.apk
13711264 system/system/priv-app/DynamicLockscreen/DynamicLockscreen.apk
13562004 system/system/recovery-from-boot.p
13507290 recovery/ramdisk.packed
13244515 system/system/app/SamsungTTS/SamsungTTS.apk
13123888 system/system/framework/arm64/boot-framework.oat
13022368 system/system/usr/srec/en-US/pumpkin.mmap
12738496 system/system/app/talkback/talkback.apk
12705328 system/system/fonts/SamsungColorEmoji.ttf
12604200 system/system/priv-app/Telecom/Telecom.apk
12479550 system/system/priv-app/MultipleWallpaperResourceM20/MultipleWallpaperResourceM20.apk
11961960 system/system/lib64/libface_landmark.arcsoft.so
11942280 system/system/priv-app/TeleService/TeleService.apk
11650976 system/system/app/DictDiotekForSec/DictDiotekForSec.apk
11335184 system/system/framework/oat/arm64/wifi-service.odex
11040678 system/system/priv-app/SecMyFiles2019/SecMyFiles2019.apk
10917436 system/system/framework/arm/boot-framework.oat
10860146 vendor/saiv/image_understanding/db/aic_detector/aic_detector_cnn_light.caffemodel
10452992 system/system/framework/arm64/boot-framework.art
10435879 system/system/priv-app/SmartManager_v5/SmartManager_v5.apk
10309601 system/system/saiv/imageclassification_2.5_od/db/osc_detection_reduce_4class_1branch.caffemodel
10152537 system/system/priv-app/imsservice/imsservice.apk
9785200 system/system/apex/com.android.runtime.release/lib64/libpac.so
9673367 odm/app/mygalaxy-derived-3.3.11/mygalaxy-derived-3.3.11.apk
9467523 system/system/priv-app/Turbo/Turbo.apk
9401200 system/system/priv-app/ThemeStore/ThemeStore.apk
9316864 system/system/fonts/NotoColorEmoji.ttf
9294173 system/system/priv-app/Discover/Discover.apk
9269260 system/system/priv-app/TouchWizHome_2017/TouchWizHome_2017.apk
9217493 system/system/priv-app/GameOptimizingService/GameOptimizingService.apk
9109289 system/system/cameradata/srib_FullbodyWeights
8728472 system/system/priv-app/Telecom/oat/arm64/Telecom.odex
8604492 system/system/priv-app/Fmm/Fmm.apk
8507224 system/system/lib64/libhwui.so
8506306 system/system/priv-app/GmsCore/m/independent/AndroidPlatformServices.apk
8065030 system/system/priv-app/ClockPack_v50/ClockPack_v50.apk
8046528 system/system/lib64/libsec-ims.so
7995304 system/system/priv-app/TeleService/oat/arm64/TeleService.odex
7933582 system/system/priv-app/SamsungSocial/SamsungSocial.apk
7917568 system/system/framework/arm/boot-framework.art
7746644 system/system/priv-app/DeviceKeystring/DeviceKeystring.apk
7704256 vendor/lib64/libsnap_caffe.so
7664520 system/system/apex/com.android.runtime.release/lib64/libart.so
7545107 system/system/priv-app/RubinVersion25/RubinVersion25.apk
7410506 system/system/app/DAAgent/DAAgent.apk
7363085 vendor/app/mcRegistry/ffffffff000000000000000000000059.tlbin
7313721 system/system/priv-app/SamsungVideoPlayer/SamsungVideoPlayer.apk
7303598 system/system/app/LinkSharing_v11/LinkSharing_v11.apk
7004645 vendor/saiv/image_understanding/db/aic_classifier/aic_classifier_cnn_light.caffemodel
6994296 system/system/apex/com.android.runtime.release/lib/libpac.so
6922656 vendor/lib/libhifills.so
6878376 system/system/priv-app/SmartManager_v6_DeviceSecurity/SmartManager_v6_DeviceSecurity.apk
6866352 vendor/lib64/libhifills.so
6860108 system/system/lib/libhwui.so
6857467 system/system/tts/lang_SMT/smt_en_US_f00.am
6831284 system/system/saiv/face/fr/SAIT_FR11.bin
6818088 vendor/etc/snap_gpu_kernel_64.bin
6770310 odm/sipdb/en_us/general_nlm.bin
6740114 system/system/priv-app/BiometricSetting/BiometricSetting.apk
6723391 system/system/app/RcsSettings/RcsSettings.apk
6550901 system/system/app/Traceur/Traceur.apk
6497945 system/system/priv-app/EmergencyInfo/EmergencyInfo.apk
6479216 system/system/bin/init
6475128 recovery/ramdisk/system/bin/init
6435024 vendor/etc/snap_gpu_kernel_32.bin
6404104 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
6282791 system/system/priv-app/GooglePermissionControllerPrebuilt/GooglePermissionControllerPrebuilt.apk
6163994 system/system/priv-app/StorageManager/StorageManager.apk
6161156 odm/priv-app/appcloud_oobe/appcloud_oobe.apk
5993380 system/system/apex/com.android.runtime.release/lib/libart.so
5934080 system/system/saiv/face/ed/model_3_parts_front_38pt.dat
5718933 system/system/framework/wifi-service.jar
5713393 system/system/priv-app/Quickboard/Quickboard.apk
5648277 system/system/saiv/smartcropping_2.0/db/smartcrop_saliency_train
5629932 system/system/priv-app/SetupWizard/SetupWizard.apk
5539636 system/system/lib/libwideselfie.arcsoft.so
5480598 odm/sipdb/Samsung_1301_r1-7_TAlsUN_xt9_ALM3.ldb
5458663 odm/app/MyGalaxyWidget/MyGalaxyWidget.apk
5454992 system/system/priv-app/DigitalWellbeing/DigitalWellbeing.apk
5395748 system/system/priv-app/ConfigUpdater/ConfigUpdater.apk
5387163 system/system/cameradata/srib_HumanWeights
5326902 system/system/saiv/imageclassification_2.5_od/db/preview_verification.caffemodel
5279542 system/system/priv-app/Finder/Finder.apk
5255310 odm/sipdb/Samsung_1102_r1-2_NElsUN_xt9_ALM3.ldb
5250256 vendor/lib/libsnap_caffe.so
5207791 system/system/priv-app/GameTools_Dream/GameTools_Dream.apk
5194206 system/system/priv-app/MemorySaver_O_Refresh/MemorySaver_O_Refresh.apk
5192202 system/system/tts/lang_SMT/smt_en_IN.lng
5108206 system/system/priv-app/GoogleRestore/GoogleRestore.apk
5035016 vendor/bin/hw/gpsd
5013840 system/system/app/EmergencyModeService/EmergencyModeService.apk
4995864 system/system/lib64/libpdfium.so
4994552 vendor/lib64/libhigh_dynamic_range.so
4994144 vendor/lib/libhigh_dynamic_range.so
4978925 system/system/apex/com.android.runtime.release/javalib/core-oj.jar
4972072 odm/sipdb/Samsung_1102_r1-2_SIlsUNAlternate_xt9_ALM3.ldb
4934905 system/system/priv-app/Hearingdro_Q/Hearingdro_Q.apk
4921278 system/system/app/UnifiedWFC/UnifiedWFC.apk
4871452 system/system/hidden/INTERNAL_SDCARD/Samsung/Music/Over_the_Horizon.mp3
4814012 odm/sipdb/Samsung_1301_r1-6_TElsUN_xt9_ALM3.ldb
4805056 system/system/usr/srec/en-US/lstm_model.uint8.data
4772182 system/system/priv-app/OMCAgent5/OMCAgent5.apk
4739177 odm/sipdb/Samsung_1102_r1-6_HIlsUN_xt9_ALM3.ldb
4698840 system/system/lib/libpdfium.so
4657017 system/system/priv-app/EasySetup/EasySetup.apk
4636528 system/system/app/SmartMirroring/SmartMirroring.apk
4626785 odm/sipdb/Samsung_1102_r1-5_GUlsUN_xt9_ALM3.ldb
4601200 system/system/lib64/libbluetooth.so
4577828 system/system/usr/srec/en-US/rescoring.fst.compact
4564510 odm/sipdb/en_gb/general_nlm.bin
4540540 system/system/lib/libsmart_cropping.camera.samsung.so
4534175 system/system/tts/lang_SMT/smt_en_US.lng
4533295 system/system/priv-app/UltraDataSaving_O/UltraDataSaving_O.apk
4486723 system/system/app/UniversalMDMClient/UniversalMDMClient.apk
4483060 system/system/priv-app/DressRoom/DressRoom.apk
4346194 system/system/priv-app/SecSetupWizard_Global/SecSetupWizard_Global.apk
4318474 odm/sipdb/Samsung_1102_r1-5_MRlsUN_xt9_ALM3.ldb
4301353 system/system/priv-app/FotaAgent/FotaAgent.apk
4296499 system/system/priv-app/GoogleServicesFramework/GoogleServicesFramework.apk
4292482 odm/sipdb/Samsung_1102_r1-2_BNlsUN_xt9_ALM3.ldb
4234344 system/system/lib64/libsmart_cropping.camera.samsung.so
4183810 system/system/framework/telephony-common.jar
4180455 system/system/app/SoundPicker/SoundPicker.apk
4170010 odm/sipdb/Samsung_1102_r1-6_MLlsUN_xt9_ALM3.ldb
4029892 system/system/lib/libpalmMobileDetectorFull.camera.samsung.so
3936147 system/system/app/FBAppManager_NS/FBAppManager_NS.apk
3899019 system/system/tts/lang_SMT/smt_en_IN_f00.am
3835306 system/system/priv-app/StickerStamp/StickerStamp.apk
3771086 vendor/firmware/fimc_is_lib.bin
3719778 system/system/cameradata/compressed_template.bin
3667120 system/system/usr/srec/en-US/dnn
3645040 system/system/usr/srec/en-US/CLG.prewalk.fst
3643423 system/system/priv-app/HybridRadio/HybridRadio.apk
3632046 system/system/app/SetupWizardLegalProvider/SetupWizardLegalProvider.apk
3628112 vendor/lib64/libsec-ril.so
3627928 vendor/lib64/libsec-ril-dsds.so
3609455 system/system/priv-app/HwModuleTest/HwModuleTest.apk
3587664 system/system/framework/arm64/boot.oat
3578848 system/system/lib64/libObjectAndSceneClassification_2.5_OD.camera.samsung.so
3578118 system/system/framework/knoxsdk.jar
3507201 system/system/app/Bluetooth/Bluetooth.apk
3436424 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_hevcenc.so
3428592 odm/app/MyGalaxyWidget_NEBANGS/MyGalaxyWidget_NEBANGS.apk
3383691 system/system/priv-app/SamsungContactsProvider/SamsungContactsProvider.apk
3347297 system/system/priv-app/DeviceTest/DeviceTest.apk
3326536 system/system/usr/srec/en-US/g2p_fst
3318670 system/system/apex/com.android.runtime.release/javalib/core-libart.jar
3316616 system/system/etc/textclassifier/actions_suggestions.en.model
3298064 system/system/apex/com.android.runtime.release/lib64/libart-compiler.so
3287464 vendor/etc/saiv/fd/fast_face_detect_model_full_angle_16_CHAR.dat
3249053 system/system/tts/lang_SMT/smt_hi_IN_f00.am
3235335 system/system/priv-app/SendHelpMessage/SendHelpMessage.apk
3167932 system/system/lib/libhigh_dynamic_range.so
3119729 system/system/priv-app/KnoxGuard/KnoxGuard.apk
3118396 system/system/priv-app/DocumentsUI/DocumentsUI.apk
3112794 odm/sipdb/Samsung_1102_r1-2_KNlsUN_xt9_ALM3.ldb
3081904 system/system/framework/arm/boot.oat
3080400 system/system/priv-app/StickerCenter/StickerCenter.apk
3070530 system/system/app/HiyaService/HiyaService.apk
3056519 system/system/app/EmergencyLauncher/EmergencyLauncher.apk
3004168 system/system/etc/recovery-resource.dat
2939339 odm/sipdb/Samsung_1102_r1-5_URlsUN_xt9_ALM3.ldb
2901415 system/system/framework/ext.jar
2886624 vendor/lib64/libsnap_vndk.so
2860048 system/system/priv-app/SecTelephonyProvider/oat/arm64/SecTelephonyProvider.odex
2845848 system/system/lib64/libimagecodec.quram.so
2833320 system/system/lib64/libArcSoftFaceAlignment.arcsoft.so
2833036 vendor/lib/libwvhidl.so
2814065 system/system/priv-app/NetworkDiagnostic/NetworkDiagnostic.apk
2775784 system/system/lib64/libHMT.so
2771024 system/system/lib/libObjectAndSceneClassification_2.5_OD.camera.samsung.so
2763468 system/system/lib/libHMT.so
2762352 vendor/bin/hw/wpa_supplicant
2759959 system/system/priv-app/ImsLogger/ImsLogger.apk
2756573 system/system/priv-app/SoundAlive_70/SoundAlive_70.apk
2735872 vendor/lib/mediadrm/libwvdrmengine.so
2716632 system/system/priv-app/EpdgService/oat/arm64/EpdgService.odex
2680824 system/system/lib/libArcSoftFaceAlignment.arcsoft.so
2674688 system/system/framework/arm64/boot.art
2630693 system/system/priv-app/SamsungPositioning/SamsungPositioning.apk
2613833 system/system/app/GoogleCalendarSyncAdapter/GoogleCalendarSyncAdapter.apk
2612352 system/system/lib64/libBarcode.camera.samsung.so
2558246 system/system/app/AllshareFileShare/AllshareFileShare.apk
2557620 system/system/lib/libimagecodec.quram.so
2541592 system/system/apex/com.android.runtime.release/lib64/libicui18n.so
2526139 odm/sipdb/Samsung_1102_r1-2_ASlsUN_xt9_ALM3.ldb
2524568 system/system/lib64/libandroid_runtime.so
2468396 system/system/lib/libdmcFaceEngine.so
2461612 system/system/apex/com.android.runtime.release/lib/libart-compiler.so
2443341 system/system/priv-app/MultiSoundSetting/MultiSoundSetting.apk
2440623 system/system/app/SmartSwitchAgent/SmartSwitchAgent.apk
2420376 system/system/lib64/libsthmbc.so
2399895 odm/sipdb/Samsung_1102_r1-2_PAlsUN_xt9_ALM3.ldb
2381800 vendor/lib/libstagefright_soft_ddpdec.so
2380464 system/system/lib64/libvtstack.so
2378640 vendor/lib/libsec-ril.so
2378476 vendor/lib/libsec-ril-dsds.so
2372000 system/system/framework/arm64/boot-telephony-common.oat
2248524 vendor/lib/libstagefright_soft_ac4dec.so
2218032 system/system/lib64/libImageScreener.camera.samsung.so
2153341 system/system/app/SecurityLogAgent/SecurityLogAgent.apk
2141796 system/system/cameradata/i16FaceModel.data
2140180 system/system/lib/libsthmbc.so
2108706 system/system/priv-app/SamsungPayStubMini/SamsungPayStubMini.apk
2083722 odm/sipdb/Samsung_1102_r1-2_ORlsUN_xt9_ALM3.ldb
2065888 system/system/apex/com.android.runtime.release/lib64/libvixl.so
2054248 boot/ramdisk/init
2042196 system/system/framework/arm/boot-telephony-common.oat
2018400 vendor/firmware/calliope_dram.bin
2015640 system/system/lib64/libevs_float.so
2009224 system/system/lib64/libstagefright.so
1979200 system/system/lib64/libtflite.so
1973858 system/system/priv-app/AppLock/AppLock.apk
1971008 system/system/lib/libevs_float.so
1966080 system/system/framework/arm/boot.art
1957340 system/system/lib/libvpx.so
1947072 system/system/priv-app/SecSettingsIntelligence/SecSettingsIntelligence.apk
1923424 vendor/lib64/soundfx/libswdap.so
1919280 system/system/lib64/libswdap_legacy.so
1916118 system/system/priv-app/GooglePackageInstaller/GooglePackageInstaller.apk
1906620 vendor/lib/libsnap_vndk.so
1901808 system/system/lib64/libprotobuf-cpp-full.so
1884012 system/system/lib/libasf_mediashare.so
1880064 system/system/framework/oat/arm64/services.art
1876688 system/system/lib64/libtflite_v113_jni.so
1854259 system/system/priv-app/SecLiveWallpapersPicker/SecLiveWallpapersPicker.apk
1851533 system/system/priv-app/BioFaceService/BioFaceService.apk
1850200 system/system/lib64/libsurfaceflinger.so
1834331 system/system/priv-app/SecCarrierProvider/SecCarrierProvider.apk
1815664 system/system/lib/libandroid_runtime.so
1786900 system/system/apex/com.android.runtime.release/lib/libicui18n.so
1786536 system/system/cameradata/track_data.dat
1781224 system/system/apex/com.android.runtime.release/lib64/libicuuc.so
1779896 vendor/lib/soundfx/libswdap.so
1771640 system/system/lib/libswdap_legacy.so
1753296 system/system/lib64/libneuralnetworks.so
1751087 system/system/priv-app/SetupIndiaServicesTnC/SetupIndiaServicesTnC.apk
1738888 system/system/apex/com.android.media.swcodec/lib64/libvpx.so
1738864 system/system/lib64/libvpx.so
1724256 system/system/lib/libvtstack.so
1706832 system/system/lib64/libSceneDetector_v1.camera.samsung.so
1625262 vendor/firmware/fimc_is_rta.bin
1594632 system/system/bin/bootstrap/linker64
1594632 system/system/apex/com.android.runtime.release/bin/linker64
1592112 system/system/apex/com.android.resolv/lib64/libnetd_resolv.so
1587296 system/system/lib/libSceneDetector_v1.camera.samsung.so
1581289 system/system/priv-app/Attribution/Attribution.apk
1576676 system/system/apex/com.android.runtime.release/lib/libvixl.so
1570448 system/system/lib64/libImageSequenceStabilizer.camera.samsung.so
1570000 system/system/framework/oat/arm64/org.apache.http.legacy.odex
1534256 vendor/lib64/libexynoscamera.so
1509968 vendor/lib64/libexynoscamera3.so
1494240 system/system/framework/arm64/boot-core-libart.oat
1489876 system/system/app/GoogleContactsSyncAdapter/GoogleContactsSyncAdapter.apk
1468644 system/system/lib/libasf_fileshare.so
1468008 system/system/lib64/libaplayer.so
1464876 system/system/lib/libBarcode.camera.samsung.so
1461807 system/system/priv-app/IpsGeofence/IpsGeofence.apk
1441600 recovery/ramdisk/system/bin/linker64
1431772 system/system/fonts/SECCJK-Regular-Extra.ttf
1421848 system/system/lib/libasf_fileshareserver.so
1413236 system/system/lib/libtflite.so
1411200 vendor/etc/saiv/ld/regress_matrix_short_35pt.dat
1403934 system/system/priv-app/SecTelephonyProvider/SecTelephonyProvider.apk
1398994 system/system/apex/com.android.runtime.release/javalib/bouncycastle.jar
1387352 system/system/bin/iorapd
1375832 system/system/lib64/libSamsungPkcs11Wrapper.secsmartcard.samsung.so
1374744 system/system/lib/libprotobuf-cpp-full.so
1374632 system/system/lib/libsrib_SelfieBokeh.camera.samsung.so
1372320 system/system/framework/oat/arm/org.apache.http.legacy.odex
1360560 system/system/lib64/libcrypto.so
1360560 system/system/apex/com.android.runtime.release/lib64/libcrypto.so
1360560 system/system/apex/com.android.conscrypt/lib64/libcrypto.so
1360017 vendor/etc/wifi/mx140.bin
1353536 system/system/lib64/[email protected]
1352952 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_av1dec.so
1351752 system/system/lib64/[email protected]
1335664 system/system/app/Foundation/Foundation.apk
1331390 system/system/usr/srec/en-US/lexicon.U.fst
1324968 system/system/lib/libatomcore.quram.so
1321716 system/system/etc/selinux/plat_sepolicy.cil
1311976 system/system/lib64/libxml2.so
1307144 system/system/apex/com.android.runtime.release/lib/libicuuc.so
1298912 system/system/lib/libsurfaceflinger.so
1296048 system/system/lib64/libsqlite.so
1291996 system/system/lib/libneuralnetworks.so
1279456 system/system/lib64/[email protected]
1271144 system/system/lib64/[email protected]
1271112 system/system/lib64/[email protected]
1266188 system/system/lib/lib_SoundAlive_play_plus_ver210.so
1255360 system/system/framework/arm/boot-core-libart.oat
1252488 system/system/lib64/libchrome.so
1238104 system/system/fonts/SamsungKorean-Light.ttf
1235644 system/system/fonts/SamsungKorean-Bold.ttf
1235616 system/system/lib64/bootstrap/libc.so
1235616 system/system/apex/com.android.runtime.release/lib64/bionic/libc.so
1235616 recovery/ramdisk/system/lib64/libc.so
1230304 system/system/lib64/libriddle.filter.linecorp.so
1229424 recovery/ramdisk/system/lib64/libcrypto.so
1228507 system/system/apex/com.android.runtime.release/javalib/apache-xml.jar
1226848 system/system/lib64/libsmat.so
1220608 system/system/framework/arm64/boot-telephony-common.art
1218276 system/system/fonts/SamsungKorean-Regular.ttf
1218000 system/system/bin/vold
1197734 system/system/priv-app/SPPPushClient/SPPPushClient.apk
1193804 system/system/priv-app/SmartCallProvider/SmartCallProvider.apk
1181112 system/system/lib64/[email protected]
1177064 system/system/lib64/vndk-sp-29/libblas.so
1177064 system/system/lib64/libblas.so
1166460 vendor/etc/selinux/vendor_sepolicy.cil
1165950 system/system/app/SafetyInformation/SafetyInformation.apk
1163788 system/system/lib/libsmat.so
1162532 system/system/bin/bootstrap/linker
1162532 system/system/apex/com.android.runtime.release/bin/linker
1155448 system/system/priv-app/CMHProvider/CMHProvider.apk
1153692 system/system/lib/libcameraservice.so
1152060 system/system/lib/libriddle.filter.linecorp.so
1150440 system/system/lib64/vndk-sp-29/libbcinfo.so
1150440 system/system/lib64/libbcinfo.so
1140960 vendor/lib/libexynoscamera3.so
1140928 vendor/lib/libexynoscamera.so
1140630 system/system/app/CoolEUKor/CoolEUKor.apk
1127832 system/system/lib64/libsavsvc.so
1124700 system/system/lib64/libclcore_g.bc
1123017 system/system/etc/apns-conf.xml
1121896 system/system/bin/mdnsd
1106393 system/system/priv-app/MediaLearningPlatform/MediaLearningPlatform.apk
1105916 system/system/app/VideoTrimmer/VideoTrimmer.apk
1103824 system/system/lib/libstagefright.so
1101988 system/system/lib/libsavsvc.so
1100495 system/system/app/RoseEUKor/RoseEUKor.apk
1093128 system/system/lib64/libsmsd.so
1089996 system/system/lib/libsmsd.so
1084624 system/system/lib64/libeveryday.filter.candycamera.so
1081239 system/system/priv-app/EpdgService/EpdgService.apk
1077160 system/system/lib64/libclcore_debug_g.bc
1075800 system/system/lib64/libaudioflinger.so
1072456 system/system/lib64/[email protected]
1070712 vendor/firmware/setfile_4ha.bin
1070664 vendor/firmware/setfile_3l6.bin
1067372 system/system/lib/libclcore_g.bc
1066604 system/system/priv-app/ThemeCenter/ThemeCenter.apk
1060904 system/system/framework/oat/arm64/imsmanager.odex
1060544 odm/sipdb/en_gb/general_ngram.bin
1052216 system/system/lib64/[email protected]
1048024 system/system/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
1048024 system/system/apex/com.android.media.swcodec/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
1034720 system/system/lib64/libatomcore.quram.so
1033558 system/system/priv-app/LogWriter/LogWriter.apk
1031664 system/system/app/ChocoEUKor/ChocoEUKor.apk
1022016 system/system/lib64/libaudiopolicymanagerdefault.so
1017236 system/system/usr/srec/en-US/g2p.data
1015808 system/system/framework/arm64/boot-core-libart.art
1011264 system/system/lib64/[email protected]
999816 system/system/lib64/libperfetto.so
997400 system/system/lib64/lib_SoundAlive_play_plus_ver210.so
996336 system/system/lib64/libgui.so
992116 system/system/lib/bootstrap/libc.so
992116 system/system/apex/com.android.runtime.release/lib/bionic/libc.so
991079 system/system/etc/epdg_apns_conf.xml
988812 vendor/bin/slsi_wlan_udi_log_decode
985728 vendor/bin/snap_utility_64
981130 system/system/priv-app/DeviceQualityAgent/DeviceQualityAgent.apk
973483 system/system/priv-app/KLMSAgent/KLMSAgent.apk
968156 system/system/lib/libImageScreener.camera.samsung.so
967660 system/system/lib/[email protected]
965992 system/system/lib64/[email protected]
962640 system/system/lib64/[email protected]
958568 system/system/priv-app/SDMConfig/SDMConfig.apk
951084 system/system/lib/libcrypto.so
951084 system/system/apex/com.android.runtime.release/lib/libcrypto.so
951084 system/system/apex/com.android.conscrypt/lib/libcrypto.so
947096 vendor/bin/hw/hostapd
941408 system/system/lib/libclcore_debug_g.bc
939504 system/system/lib/[email protected]
937984 system/system/framework/arm/boot-telephony-common.art
937321 system/system/app/PrintSpooler/PrintSpooler.apk
935696 system/system/lib64/libsomxaacd.so
929676 system/system/lib/libxml2.so
927722 system/system/saiv/face/mvfd/fast_face_detect_model_full_angle_16_CHAR_frontal_use_model_17.dat
924528 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_aacdec.so
921688 system/system/lib64/libstrongswan.so
917328 system/system/lib/libsqlite.so
916600 system/system/lib64/libtextclassifier.so
912598 odm/priv-app/Shopstub-release/Shopstub-release.apk
912128 system/system/lib/[email protected]
909960 system/system/framework/oat/arm64/allshare.odex
907884 system/system/lib/[email protected]
907608 system/system/lib/[email protected]
906208 recovery/ramdisk/sepolicy
905776 system/system/lib64/libSamsungAPVoiceEngine.so
904336 system/system/lib64/libsavsac.so
903952 vendor/lib64/libwebrtc_audio_preprocessing.so
903440 system/system/lib/libchrome.so
899420 system/system/lib/libsavsac.so
899344 system/system/bin/tcpdump
899236 system/system/priv-app/DiagMonAgent/DiagMonAgent.apk
897376 recovery/ramdisk/system/bin/recovery
895816 system/system/media/audio/ringtones/Purple.ogg
891976 system/system/priv-app/EmojiUpdater/EmojiUpdater.apk
885510 system/system/app/PhotoTable/PhotoTable.apk
880509 boot/ramdisk.packed
880216 system/system/usr/srec/en-US/wordlist.syms
879628 system/system/framework/oat/arm/imsmanager.odex
877408 vendor/bin/mcDriverDaemon
872388 system/system/lib/vndk-sp-29/libbcinfo.so
872388 system/system/lib/libbcinfo.so
859752 system/system/lib64/liberis_strongswan.so
855692 system/system/lib/libSamsungPkcs11Wrapper.secsmartcard.samsung.so
847874 odm/sipdb/en_us/emoji_lm.bin
847874 odm/sipdb/en_gb/emoji_lm.bin
847168 system/system/priv-app/ImsTelephonyService/oat/arm64/ImsTelephonyService.odex
844444 system/system/lib/libmediaplayerservice.so
841848 system/system/apex/com.android.conscrypt/lib64/libc++.so
841832 system/system/lib64/vndk-sp-29/libc++.so
841832 system/system/lib64/libc++.so
841832 system/system/apex/com.android.runtime.release/lib64/libc++.so
841832 system/system/apex/com.android.media.swcodec/lib64/libc++.so
841832 recovery/ramdisk/system/lib64/libc++.so
839508 system/system/lib/vndk-sp-29/libblas.so
839508 system/system/lib/libblas.so
836006 system/system/priv-app/NSFusedLocation_v5.0_UPG/NSFusedLocation_v5.0_UPG.apk
832384 vendor/etc/selinux/precompiled_sepolicy
828612 system/system/lib/libImageSequenceStabilizer.camera.samsung.so
828492 system/system/priv-app/CameraLightSensor/CameraLightSensor.apk
827619 system/system/priv-app/GalaxyAppsWidget_Phone_Dream/GalaxyAppsWidget_Phone_Dream.apk
823884 system/system/priv-app/SamsungMagnifier3/SamsungMagnifier3.apk
821400 system/system/framework/oat/arm64/uiautomator.odex
820988 system/system/lib/[email protected]
815111 system/system/app/FactoryAirCommandManager/FactoryAirCommandManager.apk
814804 system/system/framework/oat/arm/allshare.odex
813865 system/system/priv-app/CIDManager/CIDManager.apk
811036 system/system/etc/theme/wallpaper/ArtisticTouch_thumb.jpg
807168 system/system/lib64/libcookiencream.filter.candycamera.so
804664 vendor/lib/libwebrtc_audio_preprocessing.so
795907 system/system/media/audio/ringtones/Over_the_Horizon_Mellow_Mix.ogg
793176 system/system/lib64/libdng_sdk.so
790528 system/system/framework/arm/boot-core-libart.art
782080 system/system/lib64/libandroid_servers.so
780000 vendor/etc/wifi/mx140_t/debug/hardware/moredump/moredump.bin
780000 vendor/etc/wifi/mx140/debug/hardware/moredump/moredump.bin
780000 vendor/bin/moredump.bin
778968 system/system/lib64/libcharon.so
778268 vendor/firmware/mfc_fw.bin
774660 system/system/lib/libSamsungAPVoiceEngine.so
770792 vendor/lib64/libFrucSSMLib.so
770792 system/system/lib64/libFrucSSMLib.so
770392 system/system/lib64/libaudioclient.so
769960 system/system/lib64/libsamsung_videoengine_9_0.so
768478 system/system/media/audio/ringtones/Future.ogg
767669 vendor/app/mcRegistry/ffffffff00000000000000000000003e.tlbin
760296 system/system/bin/simpleperf
757744 system/system/lib64/libmedia.so
752944 system/system/lib64/libsec_skpm.so
751160 system/system/bin/netd
750757 vendor/etc/selinux/plat_pub_versioned.cil
750512 system/system/priv-app/SVCAgent/SVCAgent.apk
747392 system/system/lib64/[email protected]
746520 system/system/lib/[email protected]
744172 system/system/lib/libeveryday.filter.candycamera.so
743476 system/system/lib/[email protected]
741936 system/system/lib64/netd_aidl_interface-V2-cpp.so
738895 system/system/app/FactoryCameraFB/FactoryCameraFB.apk
738213 system/system/priv-app/StoryService/StoryService.apk
732296 system/system/framework/oat/arm64/rcsopenapi.odex
732184 system/system/bin/statsd
730568 system/system/framework/oat/arm64/vsimmanager.odex
728889 vendor/app/mcRegistry/ffffffff000000000000000000000045.tlbin
723384 system/system/lib64/libwlandutlib_slsi.so
723236 system/system/lib/libsomxaacd.so
720264 odm/sipdb/en_us/general_nlm_voc.bin
717944 system/system/apex/com.android.media.swcodec/lib64/libcodec2_vndk.so
717912 system/system/lib64/libcodec2_vndk.so
717812 system/system/media/audio/ringtones/Maybe.ogg
716420 system/system/lib/libremotedisplay_wfd.so
715248 system/system/lib64/liberis_charon.so
713864 system/system/apex/com.android.runtime.release/lib64/libopenjdkjvmti.so
712912 system/system/lib64/libmediarelayengine.so
712570 system/system/priv-app/AndroidAutoStub/AndroidAutoStub.apk
712144 system/system/priv-app/CameraBokehService/CameraBokehService.apk
709192 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
708492 system/system/lib/[email protected]
705866 system/system/framework/org.apache.http.legacy.jar
705732 system/system/framework/oat/arm/uiautomator.odex
701664 system/system/bin/keystore
699514 system/system/priv-app/GoogleFeedback/GoogleFeedback.apk
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_tdown1.dat
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_right1.dat
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_left1.dat
698880 system/system/saiv/face/ed/model_1_pose_front_13pt.dat
698584 system/sbin/sswap
698584 recovery/ramdisk/sbin/sswap
698568 system/system/lib64/libHpr_RecFace_dl_v1.0.camera.samsung.so
697100 system/system/lib/libsrib_RearBokeh.camera.samsung.so
693168 system/system/lib64/libbrotli.so
690964 system/system/lib/libgui.so
690948 vendor/lib/libgui_vendor.so
689132 system/system/lib/libaplayer.so
688112 system/system/apex/com.android.media.swcodec/lib64/libhidlbase.so
688104 system/system/lib64/vndk-sp-29/libhidlbase.so
688104 system/system/lib64/libhidlbase.so
688008 recovery/ramdisk/system/lib64/libhidlbase.so
681346 system/system/priv-app/SKMSAgent/SKMSAgent.apk
675297 system/system/priv-app/SamsungDeviceHealthManagerService/SamsungDeviceHealthManagerService.apk
675280 system/system/bin/dumpstate
675264 system/system/lib/[email protected]
673168 system/system/framework/vsimmanager.jar
672236 system/system/lib/[email protected]
671718 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_frontal1.dat
670240 system/system/bin/ld.mc
668944 system/system/lib64/[email protected]
667216 system/system/lib64/libsfplugin_ccodec.so
666320 system/system/lib64/libharfbuzz_ng.so
664584 system/system/lib64/[email protected]
657248 system/system/lib64/[email protected]
656952 system/system/lib64/libstagefright_bufferqueue_helper.so
656952 system/system/apex/com.android.media.swcodec/lib64/libstagefright_bufferqueue_helper.so
653479 vendor/etc/wifi/mx140/debug/common/log-strings.bin
652732 system/system/lib/libtextclassifier.so
644144 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_aacenc.so
643064 system/system/lib64/libbinder.so
643064 system/system/apex/com.android.media.swcodec/lib64/libbinder.so
642148 system/system/app/GearManagerStub/GearManagerStub.apk
641488 vendor/lib64/hw/[email protected]
641384 system/system/framework/oat/arm64/ssrm.odex
640804 system/system/lib/libagifencoder.quram.so
639233 system/system/priv-app/FaceService/FaceService.apk
635072 system/system/apex/com.android.runtime.release/bin/dex2oat
632696 vendor/lib64/[email protected]
632696 system/system/lib64/[email protected]
631412 system/system/lib/libstagefright_soft_aacdec.so
630176 system/system/lib/libharfbuzz_ng.so
629624 system/system/bin/perfetto
627214 system/system/framework/imsmanager.jar
625344 system/system/lib/libBeauty_v4.camera.samsung.so
623766 system/system/apex/com.android.runtime.release/javalib/okhttp.jar
623527 system/system/tts/lang_SMT/smt_en_US_f00.dt
623220 system/system/framework/oat/arm/vsimmanager.odex
622073 system/system/priv-app/FBServices/FBServices.apk
621624 system/system/lib64/[email protected]
621108 system/system/lib/libBeauty_v3.camera.samsung.so
618976 system/system/lib64/libft2.so
618736 system/system/lib/libQmageDecoder.so
617396 system/system/framework/oat/arm/rcsopenapi.odex
615072 system/system/lib64/libQmageDecoder.so
614640 vendor/firmware/setfile_5e9.bin
609296 vendor/lib/libFrucSSMLib.so
609296 system/system/lib/libFrucSSMLib.so
608986 system/system/media/audio/ringtones/Another.ogg
600584 system/system/lib64/libagifencoder.quram.so
595352 system/system/lib64/libFacePreProcessing.camera.samsung.so
594856 system/system/lib/libft2.so
590348 system/system/saiv/imageclassification_2.5_od/db/OSC2.5_2ndtrained_reduce_fix.db
587192 system/system/lib/libc++_shared.so
586176 system/system/lib/libsamsung_videoengine_9_0.so
584272 system/system/lib/libdng_sdk.so
581720 system/system/lib/libandroid_servers.so
581584 vendor/lib64/libexynosdisplay.so
580740 system/system/lib/vndk-sp-29/libc++.so
580740 system/system/lib/libc++.so
580740 system/system/apex/com.android.runtime.release/lib/libc++.so
580740 system/system/apex/com.android.conscrypt/lib/libc++.so
580116 system/system/saiv/imageclassification_2.5_od/db/preview_verification_svm.db
579689 vendor/app/mcRegistry/ffffffff00000000000000000000002e.tlbin
577373 system/system/priv-app/SecDownloadProvider/SecDownloadProvider.apk
575314 system/system/priv-app/SettingsBixby/SettingsBixby.apk
575260 system/system/media/crypt_bootsamsungloop.qmg
574272 system/system/priv-app/SettingsProvider/oat/arm64/SettingsProvider.odex
574225 system/system/tts/lang_SMT/smt_en_IN_f00.dt
574016 system/system/framework/oat/arm64/com.google.android.maps.odex
567782 system/system/priv-app/SamsungCalendarProvider/SamsungCalendarProvider.apk
567740 system/system/media/audio/ringtones/Over_the_Horizon.ogg
567600 system/system/apex/com.android.runtime.release/lib64/libartbase.so
566730 system/system/priv-app/OmaCP/OmaCP.apk
565904 system/system/app/SecureElement/oat/arm64/SecureElement.odex
562368 system/system/etc/theme/wallpaper/BeautifulEarth_thumb.jpg
562056 system/system/lib64/[email protected]
557983 system/system/app/SecHTMLViewer/SecHTMLViewer.apk
555976 system/system/lib/libsec_skpm.so
555512 vendor/lib64/[email protected]_vendor.so
551528 system/system/etc/textclassifier/textclassifier.en.model
548888 system/system/etc/textclassifier/textclassifier.ru.model
548720 system/system/etc/textclassifier/textclassifier.ar.model
548432 system/system/etc/textclassifier/textclassifier.ko.model
548248 system/system/etc/textclassifier/textclassifier.fr.model
547936 system/system/etc/textclassifier/textclassifier.it.model
547912 system/system/etc/textclassifier/textclassifier.es.model
547888 system/system/etc/textclassifier/textclassifier.pt.model
547880 system/system/etc/textclassifier/textclassifier.de.model
547864 system/system/etc/textclassifier/textclassifier.pl.model
547864 system/system/etc/textclassifier/textclassifier.nl.model
547784 system/system/etc/textclassifier/textclassifier.tr.model
547060 system/system/lib/[email protected]
546944 system/system/usr/srec/en-US/offensive_word_normalizer.mfar
546368 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_hevcdec.so
544822 system/system/app/CertInstaller/CertInstaller.apk
544728 system/system/fonts/SamsungOneUI-400.ttf
542639 system/system/etc/theme/wallpaper/Tilt-shift_thumb.jpg
542360 recovery/ramdisk/res/images/wipe_data_confirmation_text.png
538848 vendor/lib64/libpredeflicker_native.so
538848 system/system/lib64/libpredeflicker_native.so
534188 system/system/bin/ss_conn_daemon2
533543 system/system/priv-app/SOAgent/SOAgent.apk
531776 system/system/priv-app/MtpApplication/MtpApplication.apk
528080 vendor/etc/saiv/gae/PmAgeModel.bin
528080 system/system/saiv/face/attr/gae/PmAgeModel.bin
526972 system/system/apex/com.android.runtime.release/lib/libopenjdkjvmti.so
526648 system/system/apex/com.android.media.swcodec/lib64/[email protected]
526624 system/system/lib64/[email protected]
526488 system/system/lib64/libvintf.so
523980 system/system/lib/libcookiencream.filter.candycamera.so
523816 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_avcdec.so
523248 system/system/lib64/libAudioTranscoder.so
513107 system/system/etc/NOTICE.xml.gz
511736 system/system/framework/oat/arm64/motionrecognitionservice.odex
510112 vendor/lib64/libril.so
509268 system/system/lib/libmediarelayengine.so
508656 system/system/lib64/libcamera_client.so
505436 system/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf
504639 system/system/usr/share/zoneinfo/tzdata
504639 system/system/apex/com.android.tzdata/etc/tz/tzdata
504639 system/system/apex/com.android.runtime.release/etc/tz/tzdata
504457 system/system/priv-app/GooglePartnerSetup/GooglePartnerSetup.apk
503928 system/system/lib64/libmedia_jni.so
503203 system/system/app/EasterEgg/EasterEgg.apk
502104 system/system/lib64/[email protected]
501248 system/system/saiv/face/ed/model_1_pose_right_11pt.dat
501248 system/system/saiv/face/ed/model_1_pose_left_11pt.dat
500380 system/system/fonts/NotoSansCuneiform-Regular.ttf
500222 system/system/priv-app/SettingsReceiver/SettingsReceiver.apk
500216 system/system/lib64/vndk-sp-29/libRSCpuRef.so
500216 system/system/lib64/libRSCpuRef.so
500212 system/system/usr/srec/en-US/portable_lstm
497743 system/system/media/audio/ringtones/Bubble_Beat.ogg
495204 system/system/framework/oat/arm/com.google.android.maps.odex
494624 system/system/app/sveservice/oat/arm64/sveservice.odex
494160 system/system/lib64/libArcSoft3DStickerEngine.arcsoft.so
492977 vendor/app/mcRegistry/ffffffffd0000000000000000000000a.tlbin
492973 system/system/media/audio/ringtones/Trailer.ogg
491504 system/system/lib/vndk-sp-29/libhidlbase.so
491504 system/system/lib/libhidlbase.so
490208 system/system/lib64/libaudiopolicyenginedefault.so
489104 system/system/lib64/libsensorservice.so
487656 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_avcenc.so
485824 vendor/bin/cbd
485182 system/system/media/audio/ui/Media_preview_Over_the_horizon.ogg
482600 vendor/bin/toybox_vendor
482600 system/system/bin/toybox
482600 recovery/ramdisk/system/bin/toybox
482280 system/system/etc/textclassifier/textclassifier.th.model
481408 system/system/etc/textclassifier/textclassifier.zh.model
480904 system/system/lib/[email protected]
475743 system/system/priv-app/MediaProvider/MediaProvider.apk
474000 system/system/lib/[email protected]
472616 system/system/lib/[email protected]
470225 system/system/tts/lang_SMT/smt_hi_IN.lng
466656 system/system/lib/libAudioTranscoder.so
466586 system/system/tts/lang_SMT/smt_hi_IN_f00.dt
466465 system/system/media/audio/ringtones/Future_Phone.ogg
465988 system/system/media/audio/ringtones/Friday.ogg
465976 system/system/framework/oat/arm/motionrecognitionservice.odex
465760 system/system/lib/libcodec2_vndk.so
462472 system/sbin/knox_changer
462472 recovery/ramdisk/sbin/knox_changer
462256 recovery/ramdisk/system/lib64/librecovery_ui.so
462021 system/system/usr/srec/en-US/config.pumpkin
461112 system/system/lib64/libcups.so
458504 system/system/lib64/libomafldrm.so
458504 system/system/lib/libaudioflinger.so
457272 system/system/bin/apexd
456856 system/system/lib64/extractors/libsecmpeg2extractor.so
456752 vendor/lib/[email protected]
456752 system/system/lib/[email protected]
453013 recovery/ramdisk/res/images/installing_security_text.png
449976 system/system/bin/heapprofd
447516 system/system/lib/libstagefright_soft_aacenc.so
446720 system/system/lib64/libTeeClient.so
446364 system/system/fonts/SECTibetan-Regular.ttf
446220 system/system/lib/[email protected]
446180 system/system/lib/libarac.so
443696 system/system/lib64/libaudioprocessing.so
443112 system/system/apex/com.android.runtime.release/lib/libartbase.so
441536 system/system/lib64/libarac.so
439620 vendor/lib/libexynosdisplay.so
439022 system/system/apex/com.android.conscrypt/javalib/conscrypt.jar
438184 system/system/framework/oat/arm64/hcm.odex
437580 system/system/lib/libbinder.so
436700 system/system/lib/libstagefright_soft_hevcdec.so
434864 system/system/usr/srec/en-US/embedded_normalizer.mfar
432893 system/system/priv-app/MobileWips/MobileWips.apk
429896 system/system/lib64/libadbd_services.so
429864 recovery/ramdisk/system/lib64/libadbd_services.so
428523 system/system/app/AllshareMediaShare/AllshareMediaShare.apk
428288 odm/sipdb/en_gb/general_nlm_voc.bin
427512 vendor/bin/hw/[email protected]
425424 vendor/lib64/libbauthserver.so
424840 system/system/lib/libaudioclient.so
423744 system/system/lib/libseccameracore.so
420560 system/system/lib64/extractors/libsecmp4extractor.so
420313 recovery/ramdisk/res/images/installing_text.png
419584 system/system/lib64/libandroidfw.so
415788 system/system/lib/libmediacaptureservice.so
415640 system/system/lib64/libmaet.so
415536 vendor/lib/libstagefright_bufferqueue_helper_vendor.so
414344 system/system/lib64/libsec_ode_keymaster.so
413400 system/system/apex/com.android.media.swcodec/lib64/libopus.so
412508 system/system/lib/libmedia.so
411980 system/system/media/audio/ringtones/City_Lights.ogg
411916 vendor/lib/libsavscmn.so
411916 system/system/lib/libsavscmn.so
411730 system/system/usr/srec/en-US/c_fst
409752 system/system/framework/oat/arm64/hqm.odex
409368 vendor/lib64/libsavscmn.so
409368 system/system/lib64/libsavscmn.so
407132 system/system/lib/libHpr_RecFace_dl_v1.0.camera.samsung.so
407101 system/system/media/audio/ringtones/Thinker.ogg
405736 system/system/lib64/libmtp_samsung.so
402692 system/system/fonts/SECTibetan-Bold.ttf
401952 system/system/lib64/[email protected]
401952 system/system/apex/com.android.media.swcodec/lib64/[email protected]
401764 system/system/fonts/NotoSansTibetan-Regular.ttf
398672 system/system/bin/wificond
398382 system/system/framework/rcsopenapi.jar
397992 system/system/bin/installd
396124 vendor/lib/[email protected]_vendor.so
396072 system/system/etc/textclassifier/textclassifier.ja.model
395744 system/system/lib/vndk-sp-29/libRSCpuRef.so
395744 system/system/lib/libRSCpuRef.so
395424 system/system/bin/ip6tables
395096 system/system/bin/ip
394224 system/system/lib64/[email protected]
392296 system/system/framework/oat/arm/hcm.odex
390905 system/system/media/audio/ringtones/Blue.ogg
389936 system/system/etc/ipm/auf.tflite
388264 system/system/lib64/libcurl2.so
387602 system/system/usr/srec/en-US/semantics.pumpkin
385960 system/system/bin/iptables
385596 system/system/lib/libstagefright_bufferqueue_helper.so
383968 system/system/lib64/[email protected]
383465 system/system/framework/allshare.jar
382136 system/system/lib64/vndk-sp-29/libunwindstack.so
382136 system/system/lib64/libunwindstack.so
382136 system/system/apex/com.android.runtime.release/lib64/libunwindstack.so
382136 system/system/apex/com.android.media.swcodec/lib64/libunwindstack.so
381264 system/system/framework/oat/arm64/secsmartcard.odex
380612 system/system/lib/libsfplugin_ccodec.so
379632 system/system/lib64/libfmradio_jni.so
378072 system/system/lib/[email protected]
377848 system/system/lib/libvintf.so
377295 system/system/priv-app/ImsTelephonyService/ImsTelephonyService.apk
375658 vendor/etc/wifi/mx140_t/debug/wlan/mib_out.xml
375658 vendor/etc/wifi/mx140/debug/wlan/mib_out.xml
375240 vendor/lib64/hw/[email protected]
374696 system/system/lib/libsensorservice.so
374472 system/system/lib/libmedia_jni.so
373120 system/system/fonts/NotoSansTibetan-Bold.ttf
372608 system/system/lib64/libbcc.so
372428 system/system/etc/textclassifier/lang_id.model
370376 system/system/lib64/libMattingCore.camera.samsung.so
370268 system/system/lib/[email protected]
369360 recovery/ramdisk/system/lib64/libunwindstack.so
368904 system/system/media/audio/ringtones/Planet.ogg
368624 system/system/lib64/[email protected]
367016 system/system/lib64/libsonivox.so
366596 system/system/lib/libArcSoft3DStickerEngine.arcsoft.so
366368 system/system/priv-app/Shell/Shell.apk
366360 vendor/bin/snap_utility_32
365112 system/system/lib64/libsecimaging.camera.samsung.so
363793 system/system/framework/uiautomator.jar
363520 vendor/etc/wifi/hydra_config.sdb
361308 system/system/media/crypt_bootsamsung.qmg
359812 system/system/framework/oat/arm/hqm.odex
358420 system/system/lib/libFacePreProcessing.camera.samsung.so
357800 system/system/lib64/libsnaace.so
357224 system/system/lib64/extractors/libsecmidiextractor.so
355196 vendor/lib/libril.so
353076 system/system/lib64/libclcore_debug.bc
351640 system/system/lib64/libssl.so
351640 system/system/apex/com.android.conscrypt/lib64/libssl.so
347736 system/system/lib64/libFFTEm.so
347332 system/system/fonts/RobotoCondensed-LightItalic.ttf
347052 system/system/fonts/Roboto-LightItalic.ttf
347016 system/system/lib/libsonivox.so
347012 system/system/fonts/Roboto-BoldItalic.ttf
346112 vendor/etc/saiv/ld/regress_matrix_short_13pt.dat
345840 system/system/fonts/Roboto-MediumItalic.ttf
345788 system/system/fonts/Roboto-BlackItalic.ttf
345452 system/system/fonts/RobotoCondensed-BoldItalic.ttf
344976 system/system/apex/com.android.media.swcodec/lib64/[email protected]
344820 system/system/fonts/RobotoCondensed-MediumItalic.ttf
344588 system/system/fonts/Roboto-ThinItalic.ttf
344024 system/system/fonts/RobotoCondensed-Italic.ttf
343276 system/system/fonts/Roboto-Italic.ttf
342860 system/system/lib/libsnaace.so
342232 system/system/lib64/libfs_mgr.so
342232 recovery/ramdisk/system/lib64/libfs_mgr.so
341804 vendor/lib/libpredeflicker_native.so
341804 system/system/lib/libpredeflicker_native.so
341708 system/system/lib/libopus.so
340672 system/system/apex/com.android.runtime.release/lib64/libdexfile.so
340640 system/system/lib64/vndk-sp-29/libdexfile.so
337936 system/system/lib64/libbluetooth_jni.so
333656 system/system/lib64/[email protected]
333380 system/system/lib/libomafldrm.so
333012 system/system/lib/libcamerahardwareinterface.so
332636 system/system/lib/libaudioprocessing.so
332235 system/system/app/AutomationTest_FB/AutomationTest_FB.apk
332180 system/system/lib/libstagefright_soft_avcdec.so
330904 system/system/lib64/libpcap.so
330544 system/system/lib64/libkeymaster_portable.so
330480 system/system/lib64/libSDSensorWrapper.camera.samsung.so
330432 system/system/lib64/libclcore.bc
330143 system/system/priv-app/SettingsProvider/SettingsProvider.apk
329584 vendor/lib64/libsnap_compute_wrapper.so
328472 system/system/lib64/libinputreader.so
327252 system/system/framework/oat/arm/secsmartcard.odex
326806 system/system/app/BuiltInPrintService/BuiltInPrintService.apk
326128 system/system/lib64/[email protected]
325816 system/system/lib64/libwfds.so
324864 system/system/lib/libMattingCore.camera.samsung.so
324464 system/system/apex/com.android.runtime.release/lib64/libart-dexlayout.so
323992 system/system/bin/trigger_perfetto
323452 system/system/lib/libclcore_debug.bc
323408 system/system/lib64/libjpeg.so
322924 system/system/fonts/Roboto-Thin.ttf
322044 system/system/fonts/Roboto-Bold.ttf
321820 system/system/fonts/Roboto-Light.ttf
321800 system/system/lib64/vndk-sp-29/[email protected]
321800 system/system/lib64/[email protected]
321725 vendor/app/mcRegistry/ffffffff00000000000000000000002f.tlbin
321280 vendor/lib64/[email protected]
321280 system/system/lib64/[email protected]
321172 system/system/fonts/Roboto-Black.ttf
320932 system/system/fonts/Roboto-Medium.ttf
320912 system/system/app/ImsSettings/oat/arm64/ImsSettings.odex
320696 system/system/lib64/libadbd.so
320696 recovery/ramdisk/system/lib64/libadbd.so
319960 system/system/fonts/Roboto-Regular.ttf
318988 system/system/fonts/RobotoCondensed-Bold.ttf
318648 system/system/lib64/vndk-sp-29/libRS_internal.so
318648 system/system/lib64/libRS_internal.so
318204 system/system/lib/libTeeClient.so
318030 system/system/priv-app/SmartEpdgTestApp/SmartEpdgTestApp.apk
317344 system/system/fonts/RobotoCondensed-Medium.ttf
317251 system/system/usr/hyphen-data/hyph-hu.hyb
316404 system/system/fonts/RobotoCondensed-Light.ttf
315856 system/system/lib64/libpcre2.so
315848 recovery/ramdisk/system/lib64/libpcre2.so
315336 system/system/fonts/RobotoCondensed-Regular.ttf
315200 system/system/lib/libstagefright_httplive_sec.so
314313 vendor/etc/wifi/mx140/debug/wlan/symbols.dbg
314272 system/system/lib/libandroidfw.so
312944 system/system/lib64/libstagefright_omx.so
311605 system/system/etc/preloaded-classes
311184 vendor/lib/libbauthserver.so
309912 system/system/bin/viewcompiler
309048 system/system/bin/secilc
308136 system/system/lib64/libevent.so
306168 system/system/framework/arm64/boot-okhttp.oat
305455 vendor/etc/wifi/mx140_t/debug/wlan/symbols.dbg
304912 system/system/lib/libstagefright_soft_avcenc.so
302468 system/system/framework/semextendedformat.jar
301196 system/system/lib/libclcore_neon.bc
301056 system/system/priv-app/Shell/oat/arm64/Shell.odex
299624 recovery/ramdisk/system/bin/sh
299616 vendor/bin/sh
299616 system/system/bin/sh
299209 system/system/app/SLocation/SLocation.apk
299080 system/system/bin/incidentd
298080 vendor/lib64/hw/[email protected]
297820 system/system/lib/libclcore.bc
297416 system/system/lib64/liblshal.so
297320 system/system/lib64/libaaudio.so
297200 system/system/lib64/libinputflinger.so
297148 system/system/lib/libmtp_samsung.so
296990 system/system/framework/ssrm.jar
295660 system/system/lib/libjpeg.so
295481 system/system/priv-app/InputDevices/InputDevices.apk
295077 system/system/app/PlatformCaptivePortalLogin/PlatformCaptivePortalLogin.apk
292916 system/system/lib/libcamera_client.so
292448 system/system/lib64/libRScpp.so
292200 system/system/lib64/libmedia_omx.so
292008 system/system/lib64/libnativehelper_compat_libc++.so
291192 system/system/lib/vndk-sp-29/libunwindstack.so
291192 system/system/lib/libunwindstack.so
291192 system/system/apex/com.android.runtime.release/lib/libunwindstack.so
290384 system/system/lib64/libsfplugin_ccodec_utils.so
290384 system/system/apex/com.android.media.swcodec/lib64/libsfplugin_ccodec_utils.so
289084 system/system/lib/[email protected]
288700 system/system/lib/[email protected]
288160 system/system/lib64/libext2fs.so
288160 recovery/ramdisk/system/lib64/libext2fs.so
286920 system/system/lib64/[email protected]
286267 system/system/media/audio/ringtones/Haze.ogg
285800 system/system/lib/libevent.so
285704 system/system/lib/libfmradio_jni.so
285592 system/system/lib64/libc_malloc_debug.so
285592 system/system/apex/com.android.runtime.release/lib64/libc_malloc_debug.so
284537 system/system/etc/old-apns-conf.xml
283760 system/system/apex/com.android.conscrypt/lib64/libjavacrypto.so
280682 system/system/app/Stk/Stk.apk
279896 system/system/framework/oat/arm64/semcontextservice.odex
279752 system/system/lib64/libprotobuf-cpp-lite.so
279548 system/system/lib/vndk-sp-29/libdexfile.so
279548 system/system/apex/com.android.runtime.release/lib/libdexfile.so
279485 system/system/app/mcRegistry/ffffffff000000000000000000000004.tlbin
279360 system/system/apex/com.android.runtime.release/lib64/libjdwp.so
278673 vendor/etc/wifi/mx140_t.bin
278408 system/system/lib64/[email protected]
278032 system/system/app/FilterProvider/FilterProvider.apk
277440 system/system/lib/[email protected]
276855 system/system/app/EasyOneHand3/EasyOneHand3.apk
276800 system/system/lib64/libaudiopolicyservice.so
276584 system/system/lib64/slicer.so
276152 system/system/apex/com.android.runtime.release/lib64/libjavacore.so
275969 system/system/priv-app/BeaconManager/BeaconManager.apk
274432 system/system/framework/arm64/boot-bouncycastle.art
274040 system/system/lib64/[email protected]
273992 vendor/lib64/omx/libOMX.Exynos.AVC.Encoder.so
273984 system/system/lib64/[email protected]
271819 system/system/media/charging_New_Fast.spi
271183 system/system/etc/theme/wallpaper/DelicateBlossoms_thumb.jpg
270792 system/system/lib64/libstagefright_foundation.so
270792 system/system/apex/com.android.media.swcodec/lib64/libstagefright_foundation.so
267520 system/system/bin/tc
266820 system/system/lib/libpcre2.so
266235 system/system/priv-app/SamsungContactsMigrator/SamsungContactsMigrator.apk
265864 vendor/lib64/omx/libOMX.Exynos.HEVC.Decoder.so
265776 vendor/lib64/omx/libOMX.Exynos.HEVC.Encoder.so
265480 system/system/lib/[email protected]
265256 system/system/lib64/[email protected]
264888 system/system/lib64/libwilhelm.so
264404 system/system/framework/arm/boot-okhttp.oat
264385 system/system/app/vsimservice/vsimservice.apk
264176 vendor/lib64/libsaiv_BeautySolutionVideo.so
264048 vendor/lib64/libsnap_caffe_wrapper.so
263768 vendor/lib64/[email protected]