-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppleStore.csv
We can't make this file beautiful and searchable because it's too large.
7198 lines (7198 loc) · 709 KB
/
AppleStore.csv
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
id,track_name,size_bytes,currency,price,rating_count_tot,rating_count_ver,user_rating,user_rating_ver,ver,cont_rating,prime_genre,sup_devices.num,ipadSc_urls.num,lang.num,vpp_lic
284882215,Facebook,389879808,USD,0.0,2974676,212,3.5,3.5,95.0,4+,Social Networking,37,1,29,1
389801252,Instagram,113954816,USD,0.0,2161558,1289,4.5,4.0,10.23,12+,Photo & Video,37,0,29,1
529479190,Clash of Clans,116476928,USD,0.0,2130805,579,4.5,4.5,9.24.12,9+,Games,38,5,18,1
420009108,Temple Run,65921024,USD,0.0,1724546,3842,4.5,4.0,1.6.2,9+,Games,40,5,1,1
284035177,Pandora - Music & Radio,130242560,USD,0.0,1126879,3594,4.0,4.5,8.4.1,12+,Music,37,4,1,1
429047995,Pinterest,74778624,USD,0.0,1061624,1814,4.5,4.0,6.26,12+,Social Networking,37,5,27,1
282935706,Bible,92774400,USD,0.0,985920,5320,4.5,5.0,7.5.1,4+,Reference,37,5,45,1
553834731,Candy Crush Saga,222846976,USD,0.0,961794,2453,4.5,4.5,1.101.0,4+,Games,43,5,24,1
324684580,Spotify Music,132510720,USD,0.0,878563,8253,4.5,4.5,8.4.3,12+,Music,37,5,18,1
343200656,Angry Birds,175966208,USD,0.0,824451,107,4.5,3.0,7.4.0,4+,Games,38,0,10,1
512939461,Subway Surfers,156038144,USD,0.0,706110,97,4.5,4.0,1.72.1,9+,Games,38,5,1,1
362949845,Fruit Ninja Classic,104590336,USD,1.99,698516,132,4.5,4.0,2.3.9,4+,Games,38,5,13,1
359917414,Solitaire,101943296,USD,0.0,679055,9673,4.5,4.5,4.11.2,4+,Games,38,4,11,1
469369175,CSR Racing,524803072,USD,0.0,677247,2029,4.5,4.5,4.0.1,4+,Games,37,5,10,1
924373886,Crossy Road - Endless Arcade Hopper,165471232,USD,0.0,669079,1087,4.5,4.5,1.5.4,9+,Games,38,5,13,1
575658129,Injustice: Gods Among Us,1829599232,USD,0.0,612532,410,4.5,4.5,2.15.1,12+,Games,39,5,13,1
506627515,Hay Day,113641472,USD,0.0,567344,4887,4.5,4.5,1.33.134,4+,Games,38,5,18,1
500116670,Clear Vision (17+),37879808,USD,0.99,541693,69225,4.5,4.5,1.1.3,17+,Games,43,5,1,1
479516143,Minecraft: Pocket Edition,147787776,USD,6.99,522012,1148,4.5,4.5,1.1,9+,Games,37,1,11,1
293778748,PAC-MAN,100849664,USD,0.0,508808,99,3.0,4.5,6.3.5,4+,Games,38,5,10,1
341232718,Calorie Counter & Diet Tracker by MyFitnessPal,152700928,USD,0.0,507706,181,4.5,4.5,7.16,4+,Health & Fitness,37,5,19,1
440045374,DragonVale,153074688,USD,0.0,503230,282,4.5,4.5,3.15.0,4+,Games,37,5,10,1
295646461,"The Weather Channel: Forecast, Radar & Alerts",199734272,USD,0.0,495626,5893,3.5,4.5,8.11,4+,Weather,37,0,33,1
487119327,Head Soccer,121319424,USD,0.0,481564,8518,5.0,5.0,5.4.1,4+,Games,40,4,11,1
284815942,Google – Search made just for mobile,179979264,USD,0.0,479440,203,3.5,4.0,27.0,17+,Utilities,37,4,33,1
596402997,Despicable Me: Minion Rush,147123200,USD,0.0,464312,444,4.5,4.5,4.6.0,9+,Games,38,5,16,1
466965151,The Sims™ FreePlay,695603200,USD,0.0,446880,1832,4.5,4.0,5.29.0,12+,Games,38,5,12,1
293622097,Google Earth,37214208,USD,0.0,446185,1359,3.5,3.5,7.1.6,4+,Travel,43,5,30,1
350642635,Plants vs. Zombies,105379840,USD,0.99,426463,680,5.0,4.0,1.9.13,9+,Games,38,0,5,1
582654048,Sonic Dash,186687488,USD,0.0,418033,419,4.5,4.5,3.7.1,4+,Games,37,5,7,1
352683833,"Groupon - Deals, Coupons & Discount Shopping App",127382528,USD,0.0,417779,914,4.5,4.5,17.7,12+,Shopping,37,4,10,1
543186831,8 Ball Pool™,86776832,USD,0.0,416736,19076,4.5,4.5,3.9.1,4+,Games,38,5,10,1
422667065,Tiny Tower - Free City Building,124720128,USD,0.0,414803,4536,4.5,4.5,3.3.12,12+,Games,38,4,1,1
457446957,Jetpack Joyride,108813312,USD,0.0,405647,877,4.5,4.5,1.9.24,9+,Games,38,5,3,1
510461758,Bike Race - Top Motorcycle Racing Games,120187904,USD,0.0,405007,4053,4.5,5.0,7.3.11,4+,Games,38,5,9,1
284993459,"Shazam - Discover music, artists, videos & lyrics",147093504,USD,0.0,402925,136,4.0,4.5,11.0.3,12+,Music,37,3,16,1
860822992,Kim Kardashian: Hollywood,239976448,USD,0.0,397730,467,4.5,4.5,6.6.0,12+,Games,38,5,1,1
307727765,Doodle Jump,48741376,USD,0.99,395261,88,4.5,4.5,3.17.6,4+,Games,37,0,1,1
651510680,Trivia Crack,265484288,USD,0.0,393469,34,4.5,3.5,2.40,4+,Games,37,5,26,1
708600202,WordBrain,110595072,USD,0.0,391401,82,4.5,4.5,1.21.1,4+,Games,38,5,1,1
930574573,Sniper 3D Assassin: Shoot to Kill Gun Game,157851648,USD,0.0,386521,10332,5.0,5.0,1.17.6,17+,Games,40,5,9,1
526641427,Flow Free,20669440,USD,0.0,373857,3428,4.5,4.5,2.9,4+,Games,38,5,11,1
297368629,Lose It! – Weight Loss Program and Calorie Counter,182054912,USD,0.0,373835,402,4.0,4.5,8.0.2,4+,Health & Fitness,37,3,1,1
304878510,Skype for iPhone,133238784,USD,0.0,373519,127,3.5,4.0,6.35.1,4+,Social Networking,37,0,32,1
698255242,Geometry Dash Lite,69076992,USD,0.0,370370,2650,5.0,4.5,2.11,4+,Games,37,4,1,1
488627858,Draw Something,84379648,USD,2.99,360974,3,4.5,4.5,3.0.17,4+,Games,38,5,1,1
366247306,▻Sudoku,71002112,USD,0.0,359832,17119,4.5,5.0,5.4,4+,Games,40,5,7,1
333903271,Twitter,210569216,USD,0.0,354058,452,3.5,4.0,6.79.1,17+,News,37,2,33,1
454638411,Messenger,275729408,USD,0.0,351466,892,3.0,3.0,119.0,4+,Social Networking,37,1,33,1
323229106,"Waze - GPS Navigation, Maps & Real-time Traffic",94139392,USD,0.0,345046,3040,4.5,4.5,4.24,4+,Navigation,37,5,36,1
310738695,Zillow Real Estate - Homes for Sale & for Rent,132632576,USD,0.0,342969,88478,4.5,4.5,10.4.5,4+,Lifestyle,37,5,1,1
305343404,Tumblr,151573504,USD,0.0,334293,919,4.0,4.0,8.6,17+,Social Networking,37,5,16,1
403858572,Fruit Ninja®,163801088,USD,0.0,327025,82,4.5,4.0,2.5.1,4+,Games,38,5,13,1
387428400,Infinity Blade,624107810,USD,0.99,326482,177050,5.0,5.0,1.4.1,12+,Games,43,5,13,1
447188370,Snapchat,203038720,USD,0.0,323905,576,2.5,3.0,10.9.2.0,12+,Photo & Video,37,0,22,1
363590051,Netflix,125016064,USD,0.0,308844,139,3.5,3.0,9.21.3,4+,Entertainment,37,5,20,1
331177714,Starbucks,135032832,USD,0.0,303856,7027,4.5,4.5,4.3.5,4+,Food & Drink,37,0,2,1
640111933,Pixel Gun 3D,1744486400,USD,0.0,301182,3493,4.5,4.5,12.1.1,12+,Games,38,5,1,1
572395608,Temple Run 2,158025728,USD,0.0,295211,91,4.5,4.0,1.37,9+,Games,38,5,1,1
421167112,My Horse,301896704,USD,0.0,293857,249,4.5,4.0,1.30.0,4+,Games,40,5,8,1
290638154,iHeartRadio – Free Music & Radio Stations,116443136,USD,0.0,293228,110,4.0,3.0,8.0.0,12+,Music,37,5,2,1
307906541,Fandango Movies - Times + Tickets,81924096,USD,0.0,291787,589,4.0,5.0,8.6,4+,Entertainment,37,4,1,1
317469184,"ESPN: Get scores, news, alerts & watch live sports",51538944,USD,0.0,290996,150,3.5,3.5,5.7.1,4+,Sports,37,5,2,1
310633997,WhatsApp Messenger,135044096,USD,0.0,287589,73088,4.5,4.5,2.17.22,4+,Social Networking,12,0,35,1
1153883316,Word Cookies!,113321984,USD,0.0,287095,16109,4.5,4.5,1.2.6,4+,Games,38,5,1,1
544007664,"YouTube - Watch Videos, Music, and Live Streams",124673024,USD,0.0,278166,0,2.5,0.0,12.21,17+,Photo & Video,37,4,34,1
561941526,Dragon City Mobile,123612160,USD,0.0,277268,223,4.5,4.5,4.11,4+,Games,38,5,12,1
497595276,The Simpsons™: Tapped Out,86079488,USD,0.0,274501,44,4.0,4.0,4.27.0,12+,Games,38,5,18,1
597986893,Plants vs. Zombies™ 2,98507776,USD,0.0,267394,1763,4.5,4.5,6.0.1,9+,Games,37,5,6,1
1053012308,Clash Royale,114408448,USD,0.0,266921,3967,4.5,4.0,1.8.2,9+,Games,38,5,15,1
625334537,Geometry Dash,83931136,USD,1.99,266440,6263,5.0,4.5,2.10,4+,Games,37,4,1,1
282614216,"eBay: Best App to Buy, Sell, Save! Online Shopping",128512000,USD,0.0,262241,649,4.0,4.5,5.10.0,12+,Shopping,37,5,9,1
357218860,Kik,151864320,USD,0.0,260965,228,4.0,3.0,11.21.0,12+,Social Networking,37,0,14,0
436491861,Domino's Pizza USA,105743360,USD,0.0,258624,2481,5.0,4.5,4.2.0,4+,Food & Drink,37,5,2,1
1094591345,Pokémon GO,290762752,USD,0.0,257627,1284,3.0,3.5,1.33.1,9+,Games,37,5,8,1
887947640,CSR Racing 2,1944321024,USD,0.0,257100,2025,5.0,5.0,1.11.3,4+,Games,37,5,11,1
847985808,Star Wars™: Commander,187205632,USD,0.0,253448,315,4.5,4.5,4.10.0,9+,Games,37,5,11,1
302584613,"Kindle – Read eBooks, Magazines & Textbooks",169747456,USD,0.0,252076,80,3.5,4.5,5.11,4+,Book,37,5,9,1
1009442510,Colorfy: Coloring Book for Adults,124185600,USD,0.0,247809,217,4.5,4.5,3.7.1,4+,Entertainment,37,5,13,1
672150402,Boom Beach,153955328,USD,0.0,241929,2013,4.5,4.5,30.125,9+,Games,38,5,4,1
896112560,MARVEL Contest of Champions,868048896,USD,0.0,233599,299,4.5,4.5,13.1.0,12+,Games,38,5,17,1
298867247,Chase Mobile℠,39505920,USD,0.0,233270,14625,4.5,4.5,2.610,4+,Finance,37,0,2,1
300238550,"Mint: Personal Finance, Budget, Bills & Money",162891776,USD,0.0,232940,683,4.0,4.5,5.9.0,4+,Finance,37,5,1,1
855627886,MADDEN NFL Mobile,147190784,USD,0.0,230289,411,4.5,4.5,3.9.1,4+,Games,37,5,1,1
284910350,"Yelp - Nearby Restaurants, Shopping & Services",167407616,USD,0.0,223885,3726,4.0,4.5,11.15.0,12+,Travel,37,5,18,1
469960709,Bejeweled Blitz,91591680,USD,0.0,221002,131,4.0,4.0,1.29.1,4+,Games,38,5,1,1
417817520,Tiny Wings,30252032,USD,0.99,219418,328,4.5,4.5,2.2,4+,Games,37,0,6,1
658293394,Can You Escape,64293888,USD,0.0,218024,1734,4.5,4.5,2.0,4+,Games,40,5,16,1
322423174,Traffic Rush,8573952,USD,0.99,213092,51,3.5,4.5,1.45.1,9+,Games,37,3,1,1
364252504,"The Weather Channel App for iPad – best local forecast, radar map, and storm tracking",59101184,USD,0.0,208648,25664,4.0,4.5,4.5.1,4+,Weather,24,4,1,1
308750436,Dictionary.com Dictionary & Thesaurus,111275008,USD,0.0,200047,177,4.0,4.0,7.1.3,4+,Reference,37,0,1,1
991153141,Fallout Shelter,1172922368,USD,0.0,199396,1131,4.5,4.5,1.12,12+,Games,38,5,5,1
913292932,SimCity BuildIt,96606208,USD,0.0,198338,2078,4.5,4.5,1.16.94,4+,Games,38,5,15,1
597855590,Real Basketball,70336512,USD,0.0,198050,94315,4.5,4.5,1.9,4+,Games,43,5,1,1
328415391,Yahoo Fantasy Sports,131000320,USD,0.0,190670,19,3.5,2.5,9.1.0,17+,Sports,37,3,45,1
281940292,"WeatherBug - Local Weather, Radar, Maps, Alerts",100524032,USD,0.0,188583,2822,3.5,4.5,5.0.0,4+,Weather,37,5,3,1
610391947,Asphalt 8: Airborne,1777940480,USD,0.0,188568,2850,4.5,4.5,3.0.0,12+,Games,37,5,15,1
439873467,Magic Jigsaw Puzzles,235259904,USD,0.0,187666,1263,4.5,4.5,2.11.1,4+,Games,37,5,10,1
608206510,Farm Heroes Saga,262421504,USD,0.0,187579,286,4.5,4.5,2.72.16,4+,Games,38,4,14,1
301387274,Pocket God,145293312,USD,0.99,187529,1071,4.0,4.0,1.48.2,9+,Entertainment,43,5,1,1
303849934,Beer Pong Game,188956672,USD,0.0,187315,9,2.0,4.0,17.05.15,17+,Games,37,5,9,1
346453382,Glow Hockey 2 FREE,34056767,USD,0.0,186653,226,3.5,3.5,2.2.9,4+,Games,43,0,1,1
600674056,Pictoword: Fun 2 Pics Guess What's the Word Trivia,126216192,USD,0.0,186089,1010,5.0,4.5,2.4.2,4+,Games,37,5,1,1
431946152,ROBLOX,115178496,USD,0.0,183621,300,4.5,4.5,2.293.126451,12+,Games,37,5,1,1
342792525,IMDb Movies & TV - Trailers and Showtimes,88702976,USD,0.0,183425,4724,4.5,5.0,7.11,12+,Entertainment,37,5,10,1
479536744,Bejeweled Classic,99593216,USD,0.0,183259,804,4.5,4.0,2.1,4+,Games,37,0,5,1
570439968,Daily Celebrity Crossword,94110720,USD,0.0,181384,1766,4.0,4.5,4.12.23,4+,Games,37,5,1,1
927006017,AdVenture Capitalist,292289536,USD,0.0,181359,11269,4.5,5.0,5.1,4+,Games,38,5,1,1
289523017,Blackjack by MobilityWare,105431040,USD,0.0,180087,1101,3.5,4.5,5.5.3,12+,Games,37,5,5,1
898968647,Call of Duty®: Heroes,210842624,USD,0.0,179416,839,4.5,4.5,4.0.1,12+,Games,38,5,7,1
583222866,Deer Hunter Classic,185881600,USD,0.0,179111,167,4.5,4.5,3.4.0,17+,Games,38,5,12,1
428845974,"ooVoo – Free Video Call, Text and Voice",113510400,USD,0.0,177501,1014,4.5,4.5,3.1.6,4+,Social Networking,37,5,21,1
995999703,Agar.io,63954944,USD,0.0,176514,1310,4.5,4.0,1.7.1,9+,Games,38,5,1,1
848160327,Piano Tiles (Don't Tap The White Tile),22286336,USD,0.0,172686,2026,4.5,4.0,4.1.1,4+,Games,38,4,13,1
332568551,TRUTH or DARE!!! - FREE,20795392,USD,0.0,171055,31,3.0,3.5,5,12+,Entertainment,38,1,1,1
420635506,Angry Birds Rio,138319872,USD,0.0,170843,123,4.5,4.0,2.6.6,4+,Games,40,0,1,1
542180079,The Secret Society® - Hidden Mystery,1433910272,USD,0.0,168674,252,4.0,4.5,1.25.2500,4+,Games,37,5,11,1
314716233,TextNow - Unlimited Text + Calls,130637824,USD,0.0,164963,69,3.5,4.0,8.5.1,4+,Social Networking,37,5,3,1
556164008,Real Racing 3,874184704,USD,0.0,164483,171,4.5,4.5,5.3.0,4+,Games,38,5,12,1
494833223,Highway Rider,169675776,USD,0.0,164377,78,4.5,4.0,2.0.2,12+,Games,37,4,1,1
382617920,Viber Messenger – Text & Call,129657856,USD,0.0,164249,206,4.5,4.5,6.9.0,4+,Social Networking,37,5,32,1
363282253,Plants vs. Zombies HD,225859584,USD,0.99,163598,503,5.0,4.0,1.9.12,9+,Games,24,5,5,1
570060128,"Duolingo - Learn Spanish, French and more",89782272,USD,0.0,162701,1881,4.5,4.5,5.1.0,4+,Education,37,5,24,1
281796108,Evernote - stay organized,158578688,USD,0.0,161065,26,4.0,3.5,8.2.2,4+,Productivity,37,5,23,1
804379658,Words with Friends – Best Word Game,183009280,USD,0.0,160668,613,4.5,4.0,5.35,4+,Games,37,4,6,1
429009175,WatchESPN,33714176,USD,0.0,159735,2556,4.0,4.5,1.9.9,4+,Sports,37,2,1,1
1118431695,Bowmasters - Top Multiplayer Bowman Archery Game,164000768,USD,0.0,159323,24387,4.5,4.5,2.4,12+,Games,37,5,1,1
905852173,aa,11337728,USD,0.0,158845,112,4.5,4.0,1.5.3,4+,Games,37,4,1,1
840919914,2048,15536128,USD,0.0,157882,4710,4.5,4.5,2.0.4,4+,Games,40,5,7,1
656971078,Episode - Choose Your Story,182361088,USD,0.0,155903,713,4.5,4.5,6.20,12+,Games,38,5,1,1
585027354,Google Maps - Navigation & Transit,120232960,USD,0.0,154911,1253,4.5,4.0,4.31.1,12+,Navigation,37,5,34,1
447689011,Infinity Blade II,1344401408,USD,0.99,153588,595,4.5,4.5,1.3.4,12+,Games,40,5,16,1
639930688,Dumb Ways to Die,842893312,USD,0.0,151559,866,4.5,4.5,2.2.0,12+,Games,40,5,1,1
322439990,MyRadar NOAA Weather Radar Forecast,127284224,USD,0.0,150158,3392,4.5,5.0,5.1.4,4+,Weather,37,2,8,1
791211390,Jurassic World™: The Game,482223104,USD,0.0,149138,913,4.5,4.5,1.13.14,4+,Games,37,5,10,1
309025938,The Masters Tournament,120725504,USD,0.0,148160,63,4.5,3.5,9.0.701,4+,Sports,37,5,1,1
406719683,GasBuddy,145240064,USD,0.0,145549,330,4.5,4.5,4.4.6.1,17+,Travel,37,4,1,1
1053533457,Color Switch,77757440,USD,0.0,145043,147,4.5,4.5,7.91,4+,Games,38,5,4,1
300048137,AccuWeather - Weather for Life,181941248,USD,0.0,144214,2162,3.5,4.0,10.4.1,4+,Weather,37,1,43,1
552039496,The Room,338273280,USD,0.99,143908,1056,5.0,5.0,1.0.4,9+,Games,24,5,1,1
525818839,Plague Inc.,95603712,USD,0.99,143285,406,4.5,4.5,1.14.1,12+,Games,40,5,14,1
547702041,Tinder,126720000,USD,0.0,143040,114,3.5,4.0,7.5.1,17+,Lifestyle,37,0,42,1
530621395,Wish - Shopping Made Fun,48428032,USD,0.0,141960,579,4.5,4.5,3.20.6,12+,Shopping,37,5,30,1
606190854,Iron Force,124666880,USD,0.0,141634,1655,5.0,4.0,2.4.1,17+,Games,38,5,12,1
443637419,Racing Penguin Free - Top Flying and Diving Game,79857664,USD,0.0,141224,1909,4.5,4.5,5.8.6,4+,Games,38,5,1,1
880178264,Two Dots,285004800,USD,0.0,139486,137,4.5,4.5,3.11.3,4+,Games,38,5,1,1
495583717,Jigsaw Puzzle,104091648,USD,0.0,138726,385,4.5,4.5,3.6.2,4+,Games,37,5,46,1
286058814,"Yahoo Sports - Teams, Scores, News & Highlights",130583552,USD,0.0,137951,131,4.0,4.5,6.9,4+,Sports,37,2,6,1
852912420,Summoners War,38124544,USD,0.0,137122,336,4.5,4.0,3.4.3,12+,Games,38,5,15,1
331308914,Weight Watchers,230720512,USD,0.0,136833,64,3.5,4.5,5.9.0,12+,Health & Fitness,37,5,6,1
422689480,"Gmail - email by Google: secure, fast & organized",236067840,USD,0.0,135962,677,4.0,4.5,5.0.170507,4+,Productivity,37,5,56,1
336353151,SoundCloud - Music & Audio,105009152,USD,0.0,135744,594,4.0,4.5,5.6.0,4+,Music,37,4,7,1
635573390,Sniper Shooter: Gun Shooting Games,113509376,USD,0.0,134080,451,5.0,5.0,5.0.4,12+,Games,37,5,1,1
850417475,Candy Crush Soda Saga,241862656,USD,0.0,133394,101,4.5,4.5,1.91.5,4+,Games,40,5,6,1
367623543,Fox News,64705536,USD,0.0,132703,394,4.0,3.0,2.6,4+,News,37,5,1,0
421254504,Magic Piano by Smule,55030784,USD,0.0,131695,1102,4.5,4.0,8.3.1,4+,Music,37,5,12,1
449735650,Where's My Water?,90853376,USD,1.99,131656,484,4.5,4.0,1.14.1.58,4+,Games,40,5,11,1
383298204,shopkick - Shopping Rewards & Discounts,74822656,USD,0.0,130823,29363,4.5,5.0,5.1.4,4+,Shopping,37,4,2,1
521671873,My Singing Monsters,240521216,USD,0.0,130519,1445,4.5,5.0,2.0.8,4+,Games,37,5,7,1
381471023,Flashlight Ⓞ,42027008,USD,0.0,130450,1010,5.0,4.5,2.1.2,4+,Utilities,40,0,22,1
395979574,Spider Solitaire Free by MobilityWare,91588608,USD,0.0,128739,5515,4.5,4.5,3.4.0,4+,Games,38,5,3,1
416023011,My Verizon,150791168,USD,0.0,126948,107245,4.5,4.5,5.10.0,4+,Utilities,37,3,2,1
297606951,"Amazon App: shop, scan, compare, and read reviews",133688320,USD,0.0,126312,22,3.5,3.0,9.10.0,4+,Shopping,37,5,8,1
603527166,Smash Hit,97505280,USD,0.0,126233,22200,4.5,4.5,1.4.0,4+,Games,40,5,9,1
500963785,▻Solitaire,58882048,USD,0.0,124618,8588,4.5,4.5,5.4,4+,Games,40,5,7,1
657500465,My Talking Tom,255747072,USD,0.0,123859,1174,4.5,4.5,4.1.2,4+,Games,38,5,13,1
448639966,Pic Collage - Picture Editor & Photo Collage Maker,109210624,USD,0.0,123433,1521,5.0,5.0,7.12.17,12+,Photo & Video,37,5,12,1
844570015,Funimate video editor: add cool effects to videos,104902656,USD,0.0,123268,64,4.5,4.5,6.5.7,12+,Photo & Video,37,4,7,1
288113403,iTranslate - Language Translator & Dictionary,287933440,USD,0.0,123215,25,3.5,5.0,10.5.4,4+,Productivity,37,5,23,1
318592730,Guess My Age Math Magic,767126,USD,0.0,123190,68841,3.0,3.0,1.1,4+,Education,47,0,1,1
561416817,Clumsy Ninja,255400960,USD,0.0,123032,608,4.5,4.5,1.29.0,4+,Games,40,5,5,1
632827808,Tetris® Blitz,131477504,USD,0.0,122868,176,4.5,4.0,3.5.4,4+,Games,37,5,11,1
921022358,Star Wars™: Galaxy of Heroes,119752704,USD,0.0,122260,1944,4.5,4.5,0.8.0,9+,Games,37,5,15,1
534342529,Bubble Mania™,189151232,USD,0.0,122081,49,4.5,4.0,1.9,4+,Games,38,5,1,1
284847138,Bank of America - Mobile Banking,160925696,USD,0.0,119773,2336,3.5,4.5,7.3.8,4+,Finance,37,0,2,1
283646709,PayPal - Send and request money safely,227795968,USD,0.0,119487,879,4.0,4.5,6.12.0,4+,Finance,37,0,19,1
509993510,Smule Sing!,109940736,USD,0.0,119316,33,4.5,4.0,5.2.3,9+,Music,37,5,12,1
326885152,Mad Libs,118498304,USD,0.0,117889,725,3.0,4.5,3.3.3,4+,Entertainment,38,1,1,1
1045901853,Geometry Dash Meltdown,55445504,USD,0.0,117470,117470,4.5,4.5,1.0,4+,Games,40,5,1,1
572534490,Beat the Boss 2,205271040,USD,0.0,117338,22708,4.5,4.5,2.8.0,12+,Games,43,5,15,1
616655687,"Village Life: Love, Marriage and Babies",502828032,USD,0.0,116620,6593,4.5,4.5,2.6.9,4+,Games,38,4,8,1
471063940,Call of Duty: Black Ops Zombies,880267264,USD,6.99,116601,5839,4.5,4.5,1.3.5,17+,Games,43,4,1,1
949701151,MORTAL KOMBAT X,1738707968,USD,0.0,114475,1265,4.5,4.5,1.13,17+,Games,39,5,13,1
311972587,Sky Burger - Build & Match Food Free,146228224,USD,0.0,114096,2157,4.5,4.0,3.0.3,4+,Games,37,5,3,1
538212549,Big Fish Casino – Best Vegas Slot Machines & Games,108107776,USD,0.0,113959,707,4.5,4.5,10.3.1,12+,Games,38,5,1,1
296581815,OpenTable - Restaurant Reservations,93420544,USD,0.0,113936,150,4.5,5.0,10.18.0,4+,Food & Drink,37,1,6,1
577586159,Yahoo Mail - Keeps You Organized!,177899520,USD,0.0,113709,18,4.0,4.5,4.16.1,4+,Productivity,37,5,45,1
331786748,"CNN: Breaking US & World News, Live Video",80211968,USD,0.0,112886,298,3.5,1.5,5.3,12+,News,37,1,1,1
552208596,Followers - Social Analytics For Instagram,59160576,USD,0.0,112778,139,4.5,4.5,6.8.4,4+,Social Networking,37,5,11,1
628677149,Yahoo Weather,123047936,USD,0.0,112603,537,4.5,4.5,1.11.3,4+,Weather,37,5,39,1
653508448,"Monster Legends RPG - War, Fight & Heroes Game",170844160,USD,0.0,111579,365,4.5,5.0,5.2.3,9+,Games,38,5,12,1
418987775,TuneIn Radio - MLB NBA Audiobooks Podcasts Music,101735424,USD,0.0,110420,370,4.5,4.5,11.9,12+,Music,37,4,14,1
685675706,Fairway Solitaire Blast,124966912,USD,0.0,110062,613,4.5,4.5,2.7.13,4+,Games,38,5,9,1
460177396,Twitch,79983616,USD,0.0,109549,149,4.5,4.5,3.20.2,12+,Entertainment,37,5,26,1
299515267,Allrecipes Dinner Spinner,36399104,USD,0.0,109349,1540,3.5,5.0,6.3,12+,Food & Drink,37,5,1,1
880047117,Angry Birds 2,446483456,USD,0.0,109104,3636,4.0,4.5,2.13.0,4+,Games,37,5,10,1
309172177,myAT&T,68491264,USD,0.0,108507,628,3.0,3.0,5.3,4+,Utilities,37,5,2,1
564540143,Hill Climb Racing,108322816,USD,0.0,108183,186,4.5,4.5,1.33.0,9+,Games,37,5,1,1
297430070,Target,138754048,USD,0.0,108131,13,3.0,2.0,8.21.0,4+,Shopping,37,0,1,1
667728512,Game of War - Fire Age,220386304,USD,0.0,107916,507,4.0,3.0,3.22.510,9+,Games,37,5,29,1
1091944550,slither.io,32516096,USD,0.0,107817,11929,3.5,4.0,1.4.2,4+,Games,40,4,1,1
714796093,Cooking Fever,106808320,USD,0.0,107797,5073,4.5,4.5,2.3.1,4+,Games,38,5,14,1
313199385,Sunday Lawn,16086016,USD,0.99,107727,55,3.5,4.5,1.41.1,4+,Games,37,3,1,1
869231055,Angry Birds Transformers,364130304,USD,0.0,106434,535,4.5,4.5,1.27.1,4+,Games,37,5,10,1
479280326,⋆Solitaire,49839104,USD,0.0,106398,12554,4.5,4.5,1.5.6,4+,Games,37,5,1,1
510855668,Amazon Music,77778944,USD,0.0,106235,4605,4.5,5.0,6.5.0,4+,Music,37,5,6,1
284815117,SCRABBLE Premium,227547136,USD,7.99,105776,166,3.5,2.5,5.19.0,4+,Games,37,0,6,1
835599320,musical.ly - your video social network,173910016,USD,0.0,105429,0,4.5,0.0,5.7.3,12+,Photo & Video,37,0,21,1
379693831,"Audible – audio books, original series & podcasts",81558528,USD,0.0,105274,1774,4.5,4.5,2.23,4+,Book,37,5,5,1
320606217,Sleep Cycle alarm clock,79315968,USD,0.0,104539,11,4.5,4.5,5.4.1,4+,Health & Fitness,37,5,13,1
951364656,ZigZag,120344576,USD,0.0,104502,20813,4.5,4.0,1.2.1,4+,Games,40,4,1,1
838500730,Family Guy: The Quest for Stuff,131257344,USD,0.0,104060,269,4.5,4.0,1.48.3,17+,Games,38,4,19,1
392988420,"Zappos: shop shoes & clothes, fast free shipping",70325248,USD,0.0,103655,39452,5.0,5.0,3.9.0,4+,Shopping,37,4,1,1
519817714,"Credit Karma: Free Credit Scores, Reports & Alerts",95494144,USD,0.0,101679,181,5.0,5.0,4.11.1,4+,Finance,37,0,1,1
485126024,DoubleDown Casino & Slots – Vegas Slot Machines!,45689856,USD,0.0,101599,457,4.0,4.0,3.14.2,12+,Games,37,5,6,1
489321253,Action Movie FX,142996480,USD,0.0,101222,160,4.5,4.5,3.2.12,9+,Entertainment,38,1,8,1
399355755,Text Free: Free Texting + Calling + MMS,136184832,USD,0.0,100477,35,4.0,4.5,9.25,4+,Lifestyle,37,5,1,1
626469977,MLB.com Home Run Derby 17,232590336,USD,0.0,100035,195,4.5,3.5,5.0.3,4+,Games,37,5,1,1
398129933,The Calculator - Free and Easy Calculating!,84945920,USD,0.0,99244,1760,4.5,4.5,4.7.2,4+,Utilities,38,5,11,1
696565994,Shadow Fight 2,144713728,USD,0.0,99206,1876,4.5,4.5,1.9.29,12+,Games,40,5,1,1
454086751,Flick Home Run !,27196416,USD,0.99,98851,478,4.5,4.0,1.7.2,4+,Games,38,0,1,1
339440515,Voice Changer Plus,40722432,USD,0.0,98777,233,3.0,4.0,5.01,4+,Entertainment,37,2,12,1
429610587,iFunny :),66599936,USD,0.0,98344,877,3.5,4.5,4.6.8,17+,Entertainment,37,2,2,1
640364616,Terraria,126036992,USD,4.99,98036,11022,4.5,4.5,1.2.12785,9+,Games,37,5,5,1
491730359,The CW,30552064,USD,0.0,97368,9,4.5,3.5,v2.13.9,12+,Entertainment,37,5,9,1
806077016,War Robots,600535040,USD,0.0,97122,380,4.5,4.5,2.9.0,12+,Games,38,5,17,1
372648912,MeetMe - Chat and Meet New People,133956608,USD,0.0,97072,143,4.0,3.5,12.1.1.0,17+,Social Networking,37,0,18,1
577232024,Lumosity - Brain Training,214962176,USD,0.0,96534,188,4.5,4.5,9.8,4+,Education,37,5,6,1
499511971,Angry Birds Space,161200128,USD,0.0,95892,2,4.0,1.0,2.2.12,4+,Games,37,0,1,1
530957474,Photo Collage Maker & Photo Editor - Live Collage,94266368,USD,0.0,93781,0,4.5,0.0,5.5.0,4+,Photo & Video,37,5,4,1
1093190533,PewDiePie's Tuber Simulator,266766336,USD,0.0,90851,535,5.0,5.0,1.9.1,9+,Games,37,5,17,1
462638897,Fitbit,132913152,USD,0.0,90496,399,4.0,3.5,2.36,4+,Health & Fitness,37,0,9,1
539124565,"We Heart It - Fashion, wallpapers, quotes, tattoos",79953920,USD,0.0,90414,44,5.0,4.0,8.3.0,12+,Social Networking,37,5,31,1
592447445,Vine Camera,51642368,USD,0.0,90355,150,3.5,1.5,6.0.2,4+,Photo & Video,37,0,25,1
364234221,Angry Birds HD,176164864,USD,0.0,89110,114,4.5,4.0,7.4.0,4+,Games,24,5,10,1
335364882,"Walgreens – Pharmacy, Photo, Coupons and Shopping",169138176,USD,0.0,88885,333,4.5,4.0,6.5,12+,Shopping,37,5,1,1
962194608,Google Photos - unlimited photo and video storage,160215040,USD,0.0,88742,1145,5.0,5.0,2.17.0,4+,Photo & Video,37,5,75,1
312343159,The Moron Test,45712384,USD,0.0,88613,392,4.0,4.5,6.3.1,4+,Entertainment,37,5,1,1
1145275343,Super Mario Run,194245632,USD,0.0,87958,370,2.5,4.0,2.1.1,4+,Games,37,5,11,1
940596201,Tap Titans,393954304,USD,0.0,87898,8763,4.5,5.0,4.0.0,4+,Games,43,5,18,1
444844790,Scribblenauts Remix,209452032,USD,0.99,86127,179,4.5,4.0,7.1,9+,Games,40,5,2,1
558512661,InsTrack for Instagram - Analytics Plus More,14225408,USD,0.0,85535,1897,4.5,4.5,2.3.4,4+,Social Networking,37,5,31,1
847492141,Score! Hero,170775552,USD,0.0,85395,2856,4.5,4.5,1.55,4+,Games,37,5,12,1
767319014,Angry Birds Epic RPG,581533696,USD,0.0,84680,68,4.5,4.5,2.1.2,4+,Games,37,5,11,1
1031002863,Color Therapy Adult Coloring Book for Adults,135236608,USD,0.0,84062,1450,5.0,4.5,2.0,4+,Book,37,4,2,1
535500008,Hungry Shark Evolution,320535552,USD,0.0,83784,358,4.5,4.5,4.8,12+,Games,38,5,33,1
355554941,SoundHound Song Search & Music Player,70516736,USD,0.0,82602,13,4.0,4.5,7.6,9+,Music,37,5,23,1
680022952,Candy Blast Mania,240198656,USD,0.0,81648,9,4.5,5.0,1.9.6,4+,Games,38,5,8,1
815181808,Godus,167555072,USD,0.0,81311,709,4.5,4.5,1.14,4+,Games,38,4,1,1
307386350,DIRECTV,151397376,USD,0.0,81006,25,3.5,3.0,4.9.705,4+,Entertainment,37,0,1,1
638689075,Township,175876096,USD,0.0,80801,953,4.5,4.5,4.8.0,4+,Games,38,5,14,1
314855255,Best Buy,180500480,USD,0.0,80424,46,4.0,4.5,10.11.0,4+,Shopping,37,5,2,1
595558452,4 Pics 1 Word,131642368,USD,0.0,80308,489,4.5,4.5,7.3.3,12+,Games,37,5,1,1
962969578,Blackbox - think outside the box,100392960,USD,0.0,80058,444,5.0,5.0,1.3.10,4+,Games,37,0,1,1
512727332,Flipagram,84792320,USD,0.0,79905,324,4.5,4.5,8.19.2,12+,Photo & Video,37,5,36,1
454781476,Zombieville USA 2,175780864,USD,0.99,79683,597,4.5,4.5,1.6.1,12+,Games,40,3,1,1
993492744,"Egg, Inc.",53579776,USD,0.0,79074,8442,5.0,5.0,1.5,4+,Games,38,4,1,1
533079551,DEAD TRIGGER,301228032,USD,0.0,78918,4345,4.5,4.5,1.9.0,17+,Games,43,4,1,1
364191819,ABC – Watch Live TV & Stream Full Episodes,85724160,USD,0.0,78890,449,3.0,3.5,5.0.14,12+,Entertainment,37,5,1,0
981633844,Block Craft 3D: Building Simulator Game For Free,93063168,USD,0.0,78412,11001,4.5,5.0,2.3.2,4+,Games,37,5,9,1
723795263,Trivia Crack (No Ads),247385088,USD,2.99,77370,2,4.5,4.5,2.40,4+,Games,37,5,26,1
284791396,Solitaire by MobilityWare,49618944,USD,4.99,76720,4017,4.5,4.5,4.10.1,4+,Games,38,4,11,1
905921908,Daddy Long Legs,87174144,USD,0.0,76622,55,4.5,4.5,3.12.0,4+,Games,38,5,1,1
433592592,Nyan Cat: Lost In Space,96872448,USD,0.0,76392,700,4.5,4.5,9.0,4+,Games,37,5,1,1
890378044,Toy Blast,268521472,USD,0.0,75822,1321,4.5,4.5,3348,4+,Games,38,5,1,1
642821482,Angry Birds Go!,499580928,USD,0.0,75793,953,4.0,3.5,2.6.3,4+,Games,37,5,10,1
398329664,Angry Birds Seasons HD,710486016,USD,0.0,75714,481,4.0,4.5,6.6.1,4+,Games,24,5,1,1
372513032,"Tango - Free Video Call, Voice and Chat",134848512,USD,0.0,75412,66,4.5,4.5,4.1.219400,17+,Social Networking,37,5,18,1
620112416,Covet Fashion - The Game for Dresses & Shopping,112668672,USD,0.0,75034,66,4.0,4.0,3.02.25,4+,Games,38,5,6,1
718421443,QuizUp™,139014144,USD,0.0,72989,327,4.5,3.5,3.2.7,12+,Games,37,2,5,1
736179781,Xbox,111777792,USD,0.0,72187,909,4.5,4.5,1705.522.332,12+,Entertainment,37,3,18,1
288429040,LinkedIn,273844224,USD,0.0,71856,62,3.5,4.5,9.1.32,4+,Social Networking,37,2,23,1
319295332,TuneIn Radio Pro - MLB Audiobooks Podcasts Music,101925888,USD,9.99,71609,99,4.5,4.0,11.9,12+,Music,37,4,14,1
517260318,Bejeweled Classic HD,151254016,USD,0.0,70926,927,4.5,4.5,2.1,4+,Games,24,5,5,1
338137227,"Walmart: Free 2-Day Shipping,* Easy Store Shopping",146507776,USD,0.0,70286,51,3.0,4.0,17.8,4+,Shopping,37,0,1,1
420636551,Angry Birds Rio HD,226899968,USD,0.0,70122,251,4.5,4.0,2.6.6,4+,Games,24,5,1,1
531184261,Trigger Fist,144196155,USD,0.0,69624,58269,4.5,4.5,1.11,12+,Games,43,5,1,1
522408559,Slots - Pharaoh's Way,76591104,USD,0.0,69610,69,4.5,4.0,7.4.0,12+,Games,43,4,1,1
1080487957,Stack,115195904,USD,0.0,69368,28389,4.5,4.5,2.1.1,4+,Games,40,5,1,1
537263603,UNO ™ & Friends,131464192,USD,0.0,68911,2137,4.0,4.0,3.3.3,9+,Games,38,5,14,1
624533261,Bloons TD Battles,107245568,USD,0.0,67861,173,4.5,4.5,4.3.1,9+,Games,40,5,1,1
1064216828,Reddit Official App: All That's Trending and Viral,30855168,USD,0.0,67560,1442,4.5,4.5,3.0,17+,News,37,1,1,1
1010704842,Dream League Soccer 2017,359676928,USD,0.0,66004,6514,4.5,4.5,4.04,4+,Games,37,5,12,1
593715088,Solitaire·,24890368,USD,0.0,66002,3238,4.5,4.5,3.1,4+,Games,37,4,18,1
694972182,Ace Fishing: Wild Catch,224596992,USD,0.0,65831,30,4.5,4.5,2.5.4,4+,Games,40,5,14,1
366869252,OverDrive – Library eBooks and Audiobooks,39844864,USD,0.0,65450,2721,4.0,4.5,3.6.4,4+,Book,37,5,18,1
533173905,MY LITTLE PONY: Magic Princess Quests,107032576,USD,0.0,65201,148,4.5,4.0,3.5.0,4+,Games,38,4,13,1
867964741,LINE: Disney Tsum Tsum,77043712,USD,0.0,65155,71,4.5,3.5,1.32.2,4+,Games,37,5,5,1
300704847,Speedtest by Ookla,23936000,USD,0.0,65016,274,3.5,5.0,3.8.2,4+,Utilities,38,4,17,1
555376968,ESPN Fantasy Football Baseball Basketball Hockey,25164800,USD,0.0,64925,1543,4.0,3.5,3.2.0,4+,Sports,37,5,1,1
674657235,MARVEL Spider-Man Unlimited,906462208,USD,0.0,64586,330,4.5,4.5,3.1.0,12+,Games,38,5,15,1
842842640,Google Docs,199993344,USD,0.0,64259,138,4.5,4.5,1.2017.20203,4+,Productivity,37,4,69,1
338057689,Call of Duty: Zombies,52821364,USD,4.99,63943,31264,4.0,4.0,1.5.0,17+,Games,47,0,1,1
767473889,Criminal Case,131917824,USD,0.0,63291,1991,4.5,4.5,1.16,12+,Games,37,5,12,1
450542233,Cut the Rope: Experiments,124532736,USD,0.99,63272,305,4.5,4.5,1.7.6,4+,Games,40,0,11,1
922488002,WordBubbles!,79702016,USD,0.0,62061,2363,4.5,4.5,1.3.9,4+,Games,37,5,1,1
504631398,USA TODAY,96060416,USD,0.0,61724,100,3.5,4.5,4.14.1,4+,News,37,4,1,1
305939712,Match™ - #1 Dating App.,101259264,USD,0.0,60659,57,3.0,2.5,17.05.01,17+,Social Networking,37,5,10,1
648668184,Happy Wheels,38466560,USD,0.0,60601,5645,4.5,4.5,1.0.6,17+,Games,38,5,1,1
424216726,Countdown‼ (Event Reminders and Timer),81287168,USD,0.0,60490,1102,4.0,4.0,4.2.5,4+,Lifestyle,37,1,22,1
690852527,Cascade: Fun Spin and Match Puzzle Game,98864128,USD,0.0,60488,538,4.5,5.0,1.8.6,4+,Games,38,5,7,1
959619034,Flight Pilot Simulator 3D: Flying Game For Free,142512128,USD,0.0,60360,6551,5.0,4.5,1.3.4,4+,Games,38,5,1,1
769737983,Bowling King,174499840,USD,0.0,60271,114,4.5,4.0,1.40.23,4+,Games,38,4,1,1
339532909,Redbox,83906560,USD,0.0,60236,58,3.0,4.5,5.24,12+,Entertainment,37,0,1,1
442012681,Skype for iPad,129096704,USD,0.0,60163,104,4.0,4.5,6.35.1,4+,Social Networking,24,5,32,1
307184892,"CBS Sports App - Sports Scores, News, Stats, Watch",120357888,USD,0.0,59639,11,3.0,2.5,10.2.2,17+,Sports,37,4,1,1
507874739,Google Drive - free online storage,185695232,USD,0.0,59255,599,4.5,4.5,4.2017.17212,4+,Productivity,37,5,47,1
828578246,Gummy Drop! – A Match 3 Puzzle Game,123356160,USD,0.0,59158,437,4.5,4.5,2.31.0,4+,Games,38,5,10,1
302049354,Phase 10 Pro - Play Your Friends!,66695168,USD,1.99,59155,101,4.5,2.5,3.2.0,4+,Games,40,5,1,1
1017064541,Viva™ Slots Las Vegas Classic Casino Games,167431168,USD,0.0,58738,2560,4.5,5.0,1.34.3,12+,Games,38,5,1,1
792595594,"Logos Quiz -Guess the most famous brands, new fun!",72567808,USD,0.0,58640,2023,5.0,5.0,2.0,4+,Games,38,2,1,1
875063456,Elevate - Brain Training and Games,196350976,USD,0.0,58092,436,5.0,5.0,4.0.1,4+,Education,37,5,31,1
615563599,Videoshop - Video Editor,140902400,USD,1.99,57878,6343,4.5,5.0,6.0.1,4+,Photo & Video,37,5,8,1
294056623,FOX Sports Mobile,72748032,USD,0.0,57500,103,3.0,4.0,3.5.13,4+,Sports,37,0,1,0
468996152,OfferUp - Buy. Sell. Simple.,73138176,USD,0.0,57348,1213,4.5,4.5,2.10.17,4+,Shopping,37,0,1,1
546871573,Bingo!™,236914688,USD,0.0,56852,6,4.5,3.0,2.4.11,12+,Games,38,5,1,1
421998342,Talking Tom Cat 2 for iPad,73111552,USD,0.0,56399,98,4.0,4.0,5.2.2,4+,Entertainment,24,5,13,1
284876795,TripAdvisor Hotels Flights Restaurants,207907840,USD,0.0,56194,87,4.0,3.5,21.1,4+,Travel,37,1,26,1
376510438,Hulu: Watch TV Shows & Stream the Latest Movies,99568640,USD,0.0,56170,1264,2.0,2.0,4.10.1,12+,Entertainment,37,5,2,1
407558537,Capital One Mobile,273259520,USD,0.0,56110,57,4.5,4.0,5.19.1,4+,Finance,37,5,2,1
1078643602,WordWhizzle,68079616,USD,0.0,56054,2972,4.5,4.5,1.1.5,4+,Games,37,5,1,1
442839435,NBC – Watch Now and Stream Full TV Episodes,135252992,USD,0.0,55950,248,4.0,3.5,4.8.0,12+,Entertainment,37,5,1,1
706099830,My Boo - Virtual Pet with Mini Games for Kids,105143296,USD,0.0,55783,521,4.5,4.5,2.6.1,4+,Games,38,5,5,1
535886823,Google Chrome – The Fast and Secure Web Browser,95385600,USD,0.0,55750,163,3.5,3.0,58.0.3029.113,17+,Utilities,37,5,37,1
604186826,Racing Rivals,339898368,USD,0.0,55548,97,4.0,3.5,6.2.3,4+,Games,38,5,8,1
506460513,Emoji>,130970624,USD,0.0,55338,455,4.5,4.5,8.9,9+,Entertainment,38,5,21,1
375380948,Apple Store,70782976,USD,0.0,55171,187,3.5,3.5,4.2,4+,Shopping,37,5,21,1
1027688889,Piano Tiles 2™(Don't Tap The White Tile 2),81668096,USD,0.0,55077,251,4.5,4.5,3.1.9,4+,Games,38,5,17,1
1032381310,Kendall and Kylie,556161024,USD,0.0,55011,774,4.5,4.5,2.8.0,12+,Games,38,5,1,1
338828953,Shop Savvy Barcode Scanner - Price Compare & Deals,89517056,USD,0.0,54630,280,2.5,4.5,12.0,4+,Shopping,37,4,1,1
909351158,My Talking Angela,398783488,USD,0.0,54549,404,4.5,4.5,3.1.1,4+,Games,38,5,13,1
476555713,Alarm Clock HD Free - Digital Alarm Clock Display,82529280,USD,0.0,54496,252,4.5,4.0,3.0.5,4+,Utilities,37,5,12,1
317904170,The Sims 3,430128128,USD,6.99,54408,65,3.5,2.0,1.4.10,12+,Games,37,5,8,1
785638228,Mixgram - Picture Collage Maker - Pic Photo Editor,90218496,USD,0.0,54282,1440,4.5,4.5,4.2.2,4+,Photo & Video,37,5,16,1
319204550,2016 U.S. Open Golf Championship,139545600,USD,0.0,54192,32,4.0,2.0,8.0.263,4+,Sports,37,0,1,1
364740856,Dictionary.com Dictionary & Thesaurus for iPad,165748736,USD,0.0,54175,10176,4.5,4.5,4.0,4+,Reference,24,5,9,1
466710109,HB2 PLUS,56817664,USD,0.99,54073,73,5.0,4.0,1.3.0,4+,Games,38,5,4,1
309527804,StickWars,17010688,USD,0.99,53821,165,3.5,4.0,1.8.9,12+,Games,43,1,1,0
330376830,Period Tracker Lite,50169856,USD,0.0,53620,2872,4.0,5.0,9.5.1,12+,Health & Fitness,38,0,15,1
911793120,1010!,131249152,USD,0.0,53496,321,4.5,4.5,54,4+,Games,38,5,1,1
307569751,NYTimes Crossword - Daily Word Puzzle Game,46880768,USD,0.0,53465,204,3.5,4.0,2.8.1,4+,Games,37,5,1,1
645705454,Evil Apples: A Filthy Adult Card & Party Game,126050304,USD,0.0,53415,2938,4.5,4.5,1.9.23,17+,Games,37,5,1,1
672828590,WGT Golf Game by Topgolf,250150912,USD,0.0,53285,623,4.5,4.5,1.31.2,17+,Games,40,5,1,1
1020119327,Smashy Road: Wanted,200108032,USD,0.0,53162,1339,4.5,4.0,1.2.1,9+,Games,40,5,1,1
727296976,Cookie Jam,148408320,USD,0.0,52831,89,4.5,4.5,6.50.110,4+,Games,38,5,16,1
389638243,POF - Best Dating App for Conversations,59248640,USD,0.0,52642,16,3.5,3.5,5.90,17+,Social Networking,37,5,31,1
309465525,"Shutterfly: Prints, Photo Books, Cards Made Easy",122315776,USD,0.0,51427,874,4.0,5.0,7.7.0,4+,Photo & Video,37,5,1,1
509987785,"Pic Jointer – Photo Collage, Camera Effects Editor",81019904,USD,0.0,51330,58,4.5,4.5,5.0,4+,Photo & Video,37,5,7,1
326979430,BATTLE BEARS: Zombies!,103197675,USD,0.99,50710,309,3.5,4.0,1.6.7,9+,Games,45,0,1,1
692412579,Frozen Free Fall,272471040,USD,0.0,50593,3,4.5,5.0,5.2.1,4+,Games,37,5,9,1
463630399,PINK Nation,86456320,USD,0.0,49816,413,4.5,4.5,4.13.2,12+,Lifestyle,37,0,1,1
1105834924,WordWhizzle Search,83180544,USD,0.0,49635,3056,4.5,4.5,1.2.4,4+,Games,37,5,1,1
327630330,Dropbox,180804608,USD,0.0,49578,16,3.5,3.0,50.2,4+,Productivity,37,5,20,1
569077959,Timehop,67424256,USD,0.0,49510,90,3.5,2.0,4.0.12,4+,Social Networking,37,0,1,1
368677368,Uber,283852800,USD,0.0,49466,150,3.0,2.0,3.247.2,4+,Travel,37,4,41,1
486154808,Weather Underground: Custom Forecast & Local Radar,99829760,USD,0.0,49192,1649,4.5,4.5,5.9.4,4+,Weather,37,5,31,1
293523031,Sonos Controller,107983872,USD,0.0,48905,2691,4.5,4.5,7.2,4+,Music,37,4,12,1
301724680,Citi Mobile®,281244672,USD,0.0,48822,193,3.5,4.0,8.5.0,4+,Finance,37,0,1,1
955327604,Jelly Jump,249597952,USD,0.0,48694,7168,4.5,4.5,1.4,4+,Games,40,5,1,1
300255638,ABC News - US & World News + Live Video,98108416,USD,0.0,48407,20,3.0,3.5,5.16,12+,News,37,0,1,0
632311326,Close Up Pics Quiz - Guess the Word Trivia Games,95661056,USD,0.0,48032,899,4.5,4.0,3.9.2,4+,Games,40,3,1,1
586447913,Microsoft Word,334425088,USD,0.0,47999,691,4.5,4.5,2.1,4+,Productivity,37,5,33,1
692669501,Castle Clash: Brave Squads,312680448,USD,0.0,47963,164,4.0,4.0,1.8.0,9+,Games,40,5,11,1
938207958,Mahjong Journey®,161162240,USD,0.0,47949,4578,4.5,4.5,1.6.1600,4+,Games,37,5,11,1
1024818709,HOOKED - Chat Stories,94545920,USD,0.0,47829,708,4.5,4.5,2.28.0,9+,Book,37,0,8,1
749118884,Calculator Pro for iPad Free - Smart Calculator,89096192,USD,0.0,47803,6883,4.5,4.5,4.9,4+,Utilities,24,5,14,1
421547368,DIRECTV App for iPad,209462272,USD,0.0,47506,30,3.5,4.0,4.9.705,4+,Entertainment,24,5,1,1
519640317,Alice in the Mirrors of Albion: Hidden object game,1222732800,USD,0.0,47382,50,4.0,4.5,5.9.3,4+,Games,37,5,7,1
542511686,NBC Sports,129395712,USD,0.0,47172,28,2.5,2.5,5.4,4+,Sports,37,5,31,1
529379082,Lyft,157950976,USD,0.0,46922,414,4.5,4.5,4.33.3,4+,Travel,37,0,1,1
585259203,Super Stickman Golf 2,96925696,USD,0.0,46859,2808,4.5,4.5,2.8,4+,Games,38,5,1,1
571393580,Gangstar Vegas,2088777728,USD,0.0,46705,1118,4.5,4.5,3.1.0,17+,Games,38,5,13,1
940292587,Seekers Notes: Hidden Mystery,137282560,USD,0.0,46384,3041,4.5,4.5,1.16.0,4+,Games,38,5,7,1
565200595,Fit Brains Trainer,188902400,USD,0.0,46363,213,4.5,4.5,5.1.10,4+,Education,37,5,9,1
749133753,NOAA Weather Radar - Weather Forecast & HD Radar,108172288,USD,0.0,45696,2673,4.5,4.5,3.17,4+,Weather,37,5,12,1
1141762073,Tricky Test 2™: Genius Brain?,134669312,USD,0.0,45578,19952,5.0,5.0,5.1,4+,Games,38,5,1,1
548580856,Slayin,22982656,USD,0.99,45574,34080,4.5,4.5,2.0,12+,Games,43,5,1,1
940508574,Color Pop Effects - Photo Editor & Picture Editing,78735360,USD,0.0,45320,7896,4.5,4.5,5.3,4+,Photo & Video,37,3,1,1
656176278,Modern Combat 5 : The Multiplayer eSports Shooter,1271361536,USD,0.0,45270,763,4.5,4.0,2.5.0,17+,Games,37,5,15,1
1105855019,Gardenscapes - New Acres,195908608,USD,0.0,45227,4795,4.0,4.5,1.5.0,4+,Games,38,5,10,1
503092422,Ski Safari,161255424,USD,0.99,45121,1168,5.0,4.5,1.5.4,4+,Games,40,5,1,1
392084834,Lane Splitter,106458112,USD,0.99,44567,202,4.5,4.5,5.2.1,4+,Games,38,4,1,1
559887125,"Ibotta: Cash Back App, Grocery Coupons & Shopping",192774144,USD,0.0,44313,0,4.5,0.0,5.0.3,12+,Shopping,37,0,1,1
1078160821,Wooden Block Puzzle - Wood jigsaw fit 1010 matrix,50578432,USD,0.0,44237,1219,4.5,5.0,2.0.2,4+,Games,37,5,1,1
384830320,"Find My Family, Friends & iPhone - Life360 Locator",154507264,USD,0.0,43877,80,4.5,4.5,13.7.1,4+,Social Networking,37,0,13,1
598603610,CSR Classics,1080938496,USD,0.0,43770,722,4.5,4.5,2.0.0,4+,Games,38,5,5,1
335744614,NBA,112074752,USD,0.0,43682,19,3.5,2.5,2013.4.3,4+,Sports,37,5,1,1
545519333,Amazon Prime Video,69435392,USD,0.0,43667,1109,4.0,4.5,4.4.1,12+,Entertainment,37,5,3,1
826523703,Soccer Stars™,67262464,USD,0.0,43216,264,4.5,4.5,3.6.2,4+,Games,40,5,9,1
311548709,Wells Fargo Mobile,57328640,USD,0.0,43064,216,3.0,2.5,3.55,4+,Finance,37,0,2,1
1157626939,Flippy Bottle Extreme! - Marker Flip Tricky 2K16,143591424,USD,0.0,42435,2957,4.5,4.5,1.7,4+,Games,40,5,1,1
286911400,Hangman.,4765696,USD,0.0,42316,248,3.0,3.5,2.0.6,9+,Games,38,0,1,1
563718995,Bloons TD 5,113020928,USD,2.99,42078,141,4.5,4.5,3.8.3,9+,Games,40,0,15,1
881342787,Billionaire – Business Capitalist Tycoon!,83843072,USD,0.0,42058,602,4.5,4.5,1.8.3,12+,Games,37,5,1,1
859204347,World of Tanks Blitz,2952593408,USD,0.0,41729,677,4.5,2.5,3.9.0,12+,Games,38,5,18,1
292421271,Fieldrunners,66872320,USD,2.99,41633,6,4.0,3.0,1.7.177604,9+,Games,37,0,1,1
397049430,Super Stickman Golf,88879104,USD,2.99,41446,566,4.5,4.5,2.0,4+,Games,43,5,1,1
594802437,Pearl's Peril - Hidden Object Adventures,278532096,USD,0.0,41428,20,4.5,4.5,2.17,9+,Games,24,5,14,1
659425518,Real Steel World Robot Boxing,935366656,USD,0.0,41277,220,4.5,4.5,31.31.840,9+,Games,38,5,10,1
580175049,Blitz Brigade: Multiplayer FPS shooter online!,1024388096,USD,0.0,41266,153,4.5,3.5,2.9.1,17+,Games,38,5,11,1
700970012,Panda Pop,263766016,USD,0.0,41214,88,4.5,4.5,5.5.101,4+,Games,40,5,1,1
520777858,The Sandbox - Building & Crafting a Pixel World!,171482112,USD,0.0,41108,258,4.5,4.5,2.0,4+,Games,38,5,45,1
1017551780,Disney Emoji Blitz,257001472,USD,0.0,41036,500,4.5,4.5,1.11.5,4+,Games,37,5,10,1
1055502792,NBA LIVE Mobile Basketball,139769856,USD,0.0,40619,3279,4.0,4.0,1.5.2,4+,Games,38,5,10,1
373342398,Cat Physics,14824448,USD,1.99,40552,238,4.5,4.5,1.26.1,4+,Games,40,3,1,1
543577420,Photo Grid - photo collage maker & photo editor,112073728,USD,0.0,40531,10,4.5,4.5,6.1.80,4+,Photo & Video,37,5,22,1
967422975,YAHTZEE® With Buddies: The Classic Dice Game,420385792,USD,0.0,40446,246,4.0,4.5,4.30.5,4+,Games,37,5,1,1
642831690,Jigsaw Puzzle Collection HD,86220800,USD,0.0,40227,2371,4.5,4.5,1.2.4,12+,Games,24,5,2,1
506141837,"Whisper - Share, Express, Meet",98764800,USD,0.0,39819,58,4.0,3.0,8.6.1,17+,Social Networking,37,0,6,1
307354030,iSwap Faces LITE,30796800,USD,0.0,39722,0,3.0,0.0,5.1,4+,Photo & Video,37,5,1,1
363306776,SCRABBLE Premium for iPad,229992448,USD,9.99,39678,114,3.5,3.5,5.19.0,4+,Games,24,5,6,1
359891723,ESPN Tournament Challenge,69057536,USD,0.0,39642,492,4.0,4.0,5.5.3,4+,Sports,37,5,1,1
410395246,Microsoft OneNote,233533440,USD,0.0,39638,1213,4.5,4.5,16.0,4+,Productivity,37,5,33,1
501968250,Angry Birds Space HD,171300864,USD,0.0,39502,13,4.0,4.0,2.2.12,4+,Games,24,5,1,1
608188610,"MOLDIV - Photo Editor, Collage & Beauty Camera",120056832,USD,0.0,39501,4851,4.5,4.5,3.2.1,4+,Photo & Video,37,5,18,1
527445936,Photo Editor by Aviary,36269056,USD,0.0,39501,741,4.5,5.0,4.6.1,12+,Photo & Video,37,5,23,1
530168168,CBS Full Episodes and Live TV,93207552,USD,0.0,39436,6,2.5,1.5,4.12,4+,Entertainment,37,5,1,1
571096102,FOX NOW - Watch Full Episodes and Stream Live TV,56974336,USD,0.0,39391,1724,4.5,4.5,2.16.6,4+,Entertainment,37,4,1,1
664575829,Fishdom,181924864,USD,0.0,39217,1947,4.5,4.5,2.1.0,4+,Games,38,5,12,1
309735670,Indeed Job Search,3691520,USD,0.0,38681,563,4.0,4.5,4.3,4+,Business,37,3,28,1
1046593064,Disney Crossy Road,187282432,USD,0.0,38571,1223,4.5,4.5,2.901.17125,4+,Games,37,5,10,1
330803072,Camera Plus: For Macro Photos & Remote Photography,101181440,USD,0.99,38533,36,2.5,3.5,4.5.4,4+,Photo & Video,37,4,11,1
986339882,letgo: Buy & Sell Second Hand Stuff,109915136,USD,0.0,38424,1022,4.5,4.5,1.18.1,12+,Shopping,37,4,16,1
1057844059,Zombie Frontier 3 – Top Zombie Shooting Game,132756480,USD,0.0,38159,5370,4.5,4.5,1.3.6,17+,Games,37,5,1,1
486717857,Lep's World Free - platformer games,60937216,USD,0.0,38075,1005,4.5,4.5,2.9.8,4+,Games,38,5,19,1
868077558,Bitmoji - Your Personal Emoji,105198592,USD,0.0,37972,783,4.5,4.0,10.6.1,12+,Utilities,37,0,22,1
610003290,Infinity Blade III,3013255168,USD,0.99,37673,9983,4.0,4.5,1.4.2,12+,Games,40,5,18,1
868013618,Best Fiends,271392768,USD,0.0,37584,8,4.5,4.5,4.6.1,4+,Games,37,5,1,1
327455869,2016 US Open Tennis Championships,77700096,USD,0.0,37522,39,4.0,3.0,8.0.353,4+,Sports,37,4,1,1
722217471,Hidden City®: Mystery of Shadows,103477248,USD,0.0,37304,198,4.5,4.5,1.13.1301,9+,Games,37,5,11,1
351707231,Flick Kick Field Goal,75612160,USD,1.99,36946,152,4.5,4.0,1.11.0,4+,Games,38,5,3,1
486645049,Calculator‰,16766976,USD,0.0,36879,12021,4.5,4.5,4.0,4+,Utilities,38,3,31,1
667362389,The Room Two,460077056,USD,1.99,36809,2858,5.0,5.0,1.0.4,9+,Games,39,4,1,1
968953976,Unison League,71931904,USD,0.0,36414,32,4.5,4.5,1.2.4,9+,Games,40,5,1,1
643496868,Hangouts,94750720,USD,0.0,36404,0,4.0,0.0,16.0.0,4+,Social Networking,37,5,34,1
1068095192,Gin Rummy Plus - Multiplayer Online Card Game,178644992,USD,0.0,36355,304,5.0,4.5,2.4.1,12+,Games,38,5,1,1
397836467,Hotel Dash Deluxe,50085888,USD,0.99,36190,221,4.5,4.0,1.27.3,4+,Games,43,4,1,1
395545555,CVS Pharmacy,129167360,USD,0.0,35981,237,4.0,4.0,3.4.1,12+,Shopping,37,0,1,1
323242790,Cartoon Wars,13216994,USD,0.99,35930,262,3.5,4.0,114,12+,Games,43,0,1,1
429851711,Flashlight !,14336000,USD,0.0,35769,21,4.5,2.0,2.6,4+,Utilities,37,1,1,1
376374689,Doodle God™,121715712,USD,1.99,35759,64,4.5,4.0,3.0.19,12+,Games,40,0,13,1
297694601,Touchgrind,55205888,USD,4.99,35735,378,4.0,4.5,1.5.1,4+,Games,40,0,0,1
937718942,Angry Birds POP! - Bubble Shooter,148629504,USD,0.0,35711,249,4.5,4.5,3.9.0,4+,Games,37,5,12,1
749083919,Weather Live Free - Weather Forecast & Alerts,101524480,USD,0.0,35702,3768,4.5,4.5,5.3,4+,Weather,38,5,16,1
871809581,Timberman,72761344,USD,0.0,35587,118,4.5,4.5,3.1.2,4+,Games,40,4,1,1
1068378177,Yu-Gi-Oh! Duel Links,185152512,USD,0.0,35570,937,5.0,4.5,1.6.0,9+,Games,37,5,11,1
552602056,ClassDojo,80195584,USD,0.0,35440,122,4.5,5.0,4.8.3,4+,Education,37,5,55,1
398348506,Gravity Guy,22577152,USD,0.99,35161,1316,4.5,4.0,1.4.4,9+,Games,43,0,1,1
609704981,Multiplayer for Minecraft PE,33418240,USD,2.99,35109,26,4.0,2.0,3.01,4+,Games,37,5,1,1
307132353,Sally's Spa,431771648,USD,2.99,35074,403,4.5,4.0,3.3.0,4+,Games,43,0,6,1
433620759,Fishing Kings Free+,610881536,USD,0.0,35058,7453,4.5,4.5,1.0.6,4+,Games,40,5,12,1
357828853,Tabs & Chords by Ultimate Guitar - learn and play,103049216,USD,2.99,35045,250,4.5,4.5,3.1.2,4+,Music,37,0,6,1
883393043,Need for Speed™ No Limits,1085844480,USD,0.0,34998,402,4.5,4.5,2.2.3,4+,Games,37,5,12,1
868692227,Goat Simulator,436621312,USD,4.99,34819,167,4.5,4.0,1.9.3,9+,Games,38,5,1,1
625257520,Hearthstone,2405958656,USD,0.0,34694,50,4.0,4.0,8.2.19371,12+,Games,40,5,12,1
575147772,LINE PLAY - Your Avatar World,108691456,USD,0.0,34677,313,4.5,4.5,4.9.6,4+,Social Networking,37,5,6,1
441457218,"Photo Lab: Picture Editor, effects & fun face app",102964224,USD,0.0,34585,34,4.5,4.5,2.8.24,12+,Photo & Video,37,5,10,1
414478124,WeChat,182624256,USD,0.0,34584,100,4.5,4.0,6.5.8,12+,Social Networking,38,4,21,1
336860594,Victoria’s Secret – The Sexiest Bras & Lingerie,60976128,USD,0.0,34507,38,3.5,5.0,5.2.1,12+,Shopping,37,0,1,1
351331194,"Badoo - Meet New People, Chat, Socialize.",157625344,USD,0.0,34428,23,4.5,4.0,5.8.0,17+,Social Networking,37,4,30,1
370697773,Chase Mobile,34950144,USD,0.0,34322,3167,4.5,4.5,3.620,4+,Finance,24,5,1,1
557137623,Angry Birds Star Wars,177338368,USD,0.0,34138,7,4.5,3.5,1.5.11,4+,Games,37,0,1,1
882507985,Dragon Mania Legends: Dragon Breeding Game,122903552,USD,0.0,34039,541,4.5,4.5,2.9.0,12+,Games,38,5,15,1
301521403,Nike+ Training Club - Workouts & Fitness Plans,140367872,USD,0.0,33969,466,3.5,5.0,5.4.1,4+,Health & Fitness,37,0,17,1
799406905,Rookie Cam - Photo Editor & Filter Camera,110953472,USD,0.0,33921,2404,4.5,4.5,3.2,4+,Photo & Video,37,5,18,1
388130466,iSlash,27619328,USD,0.99,33868,463,4.5,4.5,1.5.4,4+,Games,43,0,1,1
1146465836,Hill Climb Racing 2,120797184,USD,0.0,33854,732,4.5,4.5,1.5.1,9+,Games,37,5,1,1
978866413,Cooking Dash™,154318848,USD,0.0,33808,513,4.0,4.0,1.30.10,4+,Games,37,5,11,1
645859810,Angry Birds Star Wars II,226834432,USD,0.0,33724,64,4.5,4.5,1.9.22,4+,Games,37,5,1,1
1071310449,Choices: Stories You Play,108666880,USD,0.0,33698,543,4.5,4.5,1.9.0,12+,Games,38,5,1,1
289894882,White Noise,44129280,USD,0.99,33426,299,4.0,5.0,7.2,4+,Health & Fitness,37,5,3,1
1034420003,Egg!,323473408,USD,0.0,33407,5946,4.5,4.5,2.08,4+,Games,38,5,11,1
955157084,Mr Jump,66228224,USD,0.0,33282,286,4.5,4.5,3.4,4+,Games,37,5,14,1
304871622,Zombieville USA,27962441,USD,0.99,32988,2489,4.0,4.0,1.7,12+,Games,47,5,1,1
319740707,NBC News,52951040,USD,0.0,32881,7,3.5,2.0,5.11.0,12+,News,37,5,1,1
951937596,Microsoft Outlook - email and calendar,185139200,USD,0.0,32807,178,3.5,4.5,2.27.0,4+,Productivity,37,5,58,1
554936942,Talking Angela for iPad,76846080,USD,0.0,32763,191,3.5,3.5,2.7,4+,Entertainment,24,5,13,1
314652382,I Am T-Pain 2.0,20542280,USD,2.99,32650,754,3.5,3.5,2.0.4,12+,Music,43,1,1,1
457517348,FotoRus -Camera & Photo Editor & Pic Collage Maker,119500800,USD,0.0,32558,147,5.0,4.5,7.0.4,4+,Photo & Video,38,5,3,1
763692274,Grand Theft Auto: San Andreas,2060416000,USD,6.99,32533,188,4.0,4.0,2.0,17+,Games,37,5,7,1
392915994,Jenga,97562624,USD,0.0,32527,4411,4.5,4.0,1.7.6,4+,Games,43,5,1,1
443369807,Hotspot Shield Free VPN Proxy & Wi-Fi Privacy,72476672,USD,0.0,32499,438,4.5,4.5,3.7.5,4+,Productivity,37,5,11,1
535609266,Into the Dead,171828224,USD,0.0,32492,2346,4.5,4.5,2.5,12+,Games,38,5,14,1
1047246341,Candy Crush Jelly Saga,196369408,USD,0.0,32395,469,4.0,4.5,1.42.13,4+,Games,40,5,6,1
407690035,HotelTonight - Great Deals on Last Minute Hotels,79332352,USD,0.0,32341,1707,4.5,5.0,10.15,12+,Travel,37,5,6,1
329670577,Camera+,89187328,USD,1.99,32338,261,4.0,4.5,9.1,4+,Photo & Video,37,0,10,1
892521917,Solitaire TriPeaks: Classic Card Game,149481472,USD,0.0,32215,442,4.5,4.5,3.8.1,4+,Games,38,5,1,1
973005664,Arrow Ambush,25895936,USD,0.0,32020,192,5.0,4.0,1.8,4+,Games,38,2,1,1
920482331,Fun Run 2 - Multiplayer Race,126603264,USD,0.0,31981,276,4.5,4.5,4.0,9+,Games,37,5,1,1
333710667,Scanner Pro - PDF document scanner app with OCR,101346304,USD,3.99,31912,154,4.5,5.0,7.1.3,4+,Business,37,5,9,1
918338898,Stick Hero,28680192,USD,0.0,31727,6017,4.5,4.0,1.5,4+,Games,40,5,1,1
285005463,Crash Bandicoot Nitro Kart 3D,10735026,USD,2.99,31456,4178,4.0,3.5,1.0.0,4+,Games,47,0,1,1
529652920,Zombie Tsunami,115895296,USD,0.0,31311,83,4.5,4.5,3.6.3,4+,Games,38,5,14,1
367003839,Hotels & Vacation Rentals by Booking.com,105609216,USD,0.0,31261,374,4.5,4.5,14.4,4+,Travel,37,5,40,1
923917775,Neko Atsume: Kitty Collector,44166144,USD,0.0,31219,249,4.5,4.5,1.9.6,4+,Games,40,5,2,1
1027352017,Recolor - Coloring Book,68480000,USD,0.0,31180,76,4.5,5.0,3.5.1,4+,Entertainment,37,5,4,1
416345444,Talking Ben the Dog for iPad,78565376,USD,0.0,31116,77,4.0,4.5,3.4.1,4+,Entertainment,24,5,13,1
848218959,100 Balls,23143424,USD,0.0,30967,845,4.5,4.0,4.2,4+,Games,37,5,1,1
471394851,Bandsintown Concerts,80923648,USD,0.0,30845,105,4.5,5.0,5.10,4+,Music,37,3,7,1
487250856,Lep's World Plus - super best platformer games,42897408,USD,0.99,30830,100,4.5,4.5,2.8.4,4+,Games,40,5,18,1
805845189,Crazy Kitchen,196248576,USD,0.0,30704,67,5.0,4.5,4.1.2,4+,Games,38,5,1,1
1036661603,Rolling Sky,138529792,USD,0.0,30670,279,4.5,4.5,1.5.2,4+,Games,40,5,12,1
344542975,Southwest Airlines,88773632,USD,0.0,30552,18,3.0,2.5,4.5.1,4+,Travel,37,0,1,1
477128284,"Etsy: Shop Handmade, Vintage & Creative Goods",120922112,USD,0.0,30434,309,4.5,5.0,4.66,4+,Shopping,37,5,7,1
941421328,WWE Immortals,2245948416,USD,0.0,29918,1401,4.5,4.5,2.4,12+,Games,39,5,12,1
1010677881,World Chef: Restaurant & Cooking Game,136355840,USD,0.0,29886,103,4.5,4.5,1.34.7,12+,Games,38,5,12,1
932463620,Dog Simulator 2015,195235840,USD,0.0,29817,6173,4.5,4.5,2.2.3,4+,Games,38,5,11,1
413423472,Legendary Wars,247508992,USD,0.99,29739,2253,4.5,5.0,2.3,9+,Games,43,5,1,1
304871603,Color Splash,28135424,USD,0.99,29554,55,4.0,5.0,3.6.1,4+,Photo & Video,37,0,3,1
1052231801,Twist,140345344,USD,0.0,29548,29548,4.0,4.0,1.0,4+,Games,40,5,1,1
736683061,A Dark Room,26759168,USD,0.99,29540,2749,4.5,5.0,2.33,12+,Games,38,1,1,1
379983299,Talking Tom Cat for iPad,75417600,USD,0.0,29492,51,3.5,4.0,3.3,4+,Entertainment,24,5,13,1
973482525,Blossom Blast Saga - Fun Flower Match & Grow Game,70504448,USD,0.0,29475,170,4.5,4.5,43.0.1,4+,Games,43,5,1,1
382509315,Splashtop Personal - Remote Desktop,55986176,USD,4.99,29376,11,4.5,5.0,2.7.4.1,4+,Business,24,5,11,1
364901807,"Documents 6 - File manager, PDF reader and browser",107259904,USD,0.0,29110,324,4.5,4.5,6.0,17+,Productivity,37,5,9,1
306621789,"HuffPost - News, Politics & Entertainment",110420992,USD,0.0,29107,85,3.0,4.0,11.2,12+,News,37,5,10,1
659283309,Trials Frontier,253294592,USD,0.0,29090,23,4.5,4.0,5.1.1,12+,Games,37,5,11,1
587366035,PicsArt Photo Studio: Collage Maker & Pic Editor,124726272,USD,0.0,29078,6,4.5,4.0,9.8,12+,Photo & Video,37,5,21,1
580765736,Megapolis,136165376,USD,0.0,28902,92,4.5,4.5,3.70.20429,4+,Games,38,5,10,1
959498315,Extreme Car Driving Simulator Free,170371072,USD,0.0,28900,7165,4.5,4.5,4.10,4+,Games,38,5,1,1
979100082,Pop the Lock,39330816,USD,0.0,28754,1656,4.5,4.0,2.0.1,4+,Games,40,4,1,1
404095058,Rat On A Skateboard,9458688,USD,1.99,28672,11,4.5,4.5,1.22.1,4+,Games,37,3,1,1
694164275,Quik – GoPro Video Editor to edit clips with music,211343360,USD,0.0,28654,21,4.5,4.5,4.0.1,4+,Photo & Video,37,5,15,1
566223681,Followers + for Instagram - Follower Analytics,17986560,USD,0.0,28633,402,4.0,3.5,2.1.1,12+,Social Networking,38,5,29,1
547109049,"Karaoke - Sing Karaoke, Unlimited Songs!",95711232,USD,0.0,28606,955,4.5,4.5,4.1.5,4+,Music,38,5,19,1
936971630,YouTube Kids,119236608,USD,0.0,28560,125,4.5,4.5,2.19.13,4+,Entertainment,37,5,34,1
1095572547,Block! Hexa Puzzle,132425728,USD,0.0,28524,1307,4.5,4.5,1.4.0,4+,Games,38,5,1,1
749078962,"Weather Live - Weather Forecast, Radar and Alerts",57539584,USD,4.99,28497,4672,4.5,4.5,5.4,4+,Weather,38,5,20,1
567767430,Yoga Studio,162386944,USD,4.99,28439,1067,5.0,5.0,3.4,4+,Health & Fitness,37,5,1,1
342548956,TurboScan™ Pro - document & receipt scanner: scan multiple pages and photos to PDF,8821760,USD,4.99,28388,7009,5.0,5.0,2.8.2,4+,Business,38,5,9,1
942494098,Dude Perfect 2,103986176,USD,0.0,28361,681,4.5,4.5,1.6.1,4+,Games,40,5,6,1
566199224,Bloons TD 5 HD,217499648,USD,2.99,28341,184,4.5,5.0,3.8.3,9+,Games,24,5,15,1
392796698,GroupMe,66864128,USD,0.0,28260,294,4.5,4.5,5.9.0,4+,Social Networking,37,1,14,1
976173170,Basketball Stars™,141687808,USD,0.0,28216,1508,4.0,4.5,1.8.0,4+,Games,38,5,8,1
409838725,Splice - Video Editor + Movie Maker by GoPro,123070464,USD,0.0,28189,2723,4.5,5.0,3.5.3,4+,Photo & Video,37,5,22,1
1078553808,FINAL FANTASY BRAVE EXVIUS,108917760,USD,0.0,28187,38,4.5,4.0,2.1.2,12+,Games,40,5,1,1
456355158,Doodle Jump FREE - BE WARNED: Insanely addictive,63676416,USD,0.0,28153,100,4.0,4.0,2.6.3,4+,Games,37,0,1,1
749133301,NOAA Radar Pro – Weather Alerts & Forecast,82765824,USD,3.99,28032,3123,4.5,4.5,3.16,4+,Weather,37,5,12,1
448142450,Truecaller - Spam Identification & Block,84406272,USD,0.0,27791,5779,4.5,4.5,7.50,4+,Utilities,37,0,30,1
979401801,Browser and File Manager for Documents,42198016,USD,0.0,27750,27213,5.0,5.0,2.0.1,17+,Utilities,37,4,5,1
681370499,Batman: Arkham Origins,910774272,USD,0.0,27738,14077,4.5,4.5,1.2.1,9+,Games,39,5,1,1
496218553,Tom's Love Letters,29392896,USD,0.0,27711,1965,4.0,4.5,2.1,4+,Entertainment,43,4,13,1
912561374,Marco Polo Video Walkie Talkie,122692608,USD,0.0,27662,381,4.5,4.5,0.14.87,4+,Social Networking,37,2,1,1
524509185,Temple Run: Brave,130115584,USD,1.99,27593,386,4.0,4.0,1.6,4+,Games,40,5,1,1
839599050,Make It Rain: The Love of Money,169664512,USD,0.0,27556,35,4.5,5.0,5.8,4+,Games,37,5,31,1
590216134,Plant Nanny - Water Reminder with Cute Plants,74738688,USD,0.0,27421,2544,4.5,4.5,1.9.2,4+,Health & Fitness,38,0,12,1
912536422,Five Nights at Freddy's,49946624,USD,2.99,27388,27388,4.5,4.5,1.0,12+,Games,43,5,1,1
389781154,NFL,131428352,USD,0.0,27317,2,2.5,5.0,14.1.4,4+,Sports,37,1,1,1
686365571,Cops N Robbers (FPS) - Block Survival Multiplayer,467697664,USD,0.0,27122,0,4.5,0.0,5.3.0,12+,Games,38,5,1,1
1003820457,Animal Jam - Play Wild!,620323840,USD,0.0,26990,189,4.5,4.5,14.0,9+,Games,38,5,5,1
510461370,Bike Race Pro - Top Motorcycle Racing Game,119231488,USD,0.99,26881,5,4.5,3.5,7.4.3,4+,Games,38,5,9,1
414706506,Google Translate,65281024,USD,0.0,26786,27,3.5,4.5,5.10.0,4+,Reference,37,5,59,1
340769953,Trenches,37340259,USD,0.99,26732,1428,4.0,4.5,1.9.3,17+,Games,43,0,1,1
388838723,"Flashlight for iPhone , iPod and iPad",64041984,USD,0.0,26697,3109,4.5,4.5,4.1.1,4+,Utilities,37,5,1,1
1075939556,Driving School 2016,293660672,USD,0.0,26685,1961,4.5,4.5,1.7.1,4+,Games,37,5,1,1
479662730,Grand Theft Auto III,726392832,USD,4.99,26547,1682,4.0,4.5,1.3.5,17+,Games,43,4,7,1
337021781,MONOPOLY Game,194386944,USD,0.99,26482,331,3.5,2.5,1.4.04,4+,Games,37,0,6,1
405743220,Eden - World Builder,122429440,USD,0.99,26419,1157,4.0,4.5,2.1,9+,Games,43,5,1,1
331804452,Gilt,148201472,USD,0.0,26353,3,3.5,2.5,5.1.3,4+,Shopping,37,5,2,1
484090401,Akinator the Genie,93021184,USD,1.99,26333,537,4.5,4.5,4.8,12+,Entertainment,37,5,14,1
525781368,My Mixtapez Music,84864000,USD,0.0,26286,2,4.5,3.5,7.0.57,12+,Music,25,0,1,1
429775439,HBO GO,41109504,USD,0.0,26278,9,3.0,3.0,10.1.0,17+,Entertainment,37,5,1,1
533451786,Bad Piggies,260106240,USD,0.0,26259,38,4.5,3.5,2.3.3,4+,Games,37,0,1,1
342138881,Sing Karaoke Songs Unlimited with StarMaker,91267072,USD,0.0,26227,7,4.0,4.5,6.0.3,9+,Music,37,4,14,1
518158653,FreePrints – Photos Delivered,112790528,USD,0.0,26060,0,5.0,0.0,2.11.3,4+,Photo & Video,37,5,1,1
719972451,DoorDash - Food Delivery,100554752,USD,0.0,25947,3,4.5,3.5,3.0.18,4+,Food & Drink,37,0,1,1
1162255664,SMILE Inc.,137533440,USD,0.0,25859,839,5.0,4.5,1.11,12+,Games,37,5,1,1
958763157,War Dragons,137094144,USD,0.0,25834,115,4.5,4.5,3.21,12+,Games,38,5,12,1
1050831202,Tap Sports Baseball 2016,178905088,USD,0.0,25834,2004,4.5,4.5,2.2.1,12+,Games,38,5,1,1
852801667,Looney Tunes Dash!,179526656,USD,0.0,25806,43,4.5,4.0,1.89,9+,Games,39,1,16,1
923268741,N.O.V.A. 3: Freedom Edition - Near Orbit Vanguard Alliance game,1400971264,USD,0.0,25716,25716,4.5,4.5,1.0.0,17+,Games,43,5,12,1
994905763,Triller - Music Video & Film Maker,87287808,USD,0.0,25683,186,5.0,4.5,4.2.2,12+,Photo & Video,37,5,1,1
537931449,Rayman Jungle Run,78690304,USD,2.99,25517,273,4.5,4.0,1.3.6,9+,Games,38,5,8,1
379869627,Living Earth - Clock & Weather,169009152,USD,2.99,25475,71,4.5,4.0,3.82,4+,Utilities,37,4,11,1
380908399,Ringtones for iPhone & Ringtone Maker,109270016,USD,0.0,25403,1598,4.5,4.5,8.9.6,12+,Music,37,4,9,1
591560124,Musi - Unlimited Music For YouTube,16686080,USD,0.0,25193,245,4.5,5.0,5.8.5,17+,Music,37,5,2,1
705211891,Royal Revolt 2 – Defend Your Castle,146573312,USD,0.0,25152,153,4.5,5.0,3.2.0,9+,Games,38,5,17,1
794524208,Disco Zoo,116933632,USD,0.0,24999,573,4.5,4.5,1.4.2,4+,Games,37,5,1,1
934596429,Mobile Strike,256203776,USD,0.0,24935,265,3.5,3.5,3.22.515,12+,Games,37,5,29,1
728293409,Monument Valley,673243136,USD,3.99,24909,510,4.5,4.5,2.4.60,4+,Games,38,5,1,1
455650341,Real Steel,968384512,USD,0.99,24880,13,4.5,4.0,1.37.1,9+,Games,38,5,8,1
1122444037,Angry Birds Blast,129589248,USD,0.0,24878,712,4.5,4.5,1.3.5,4+,Games,37,5,12,1
881155044,Turbo Dismount®,317992960,USD,0.0,24808,937,4.5,4.5,1.25.0,12+,Games,38,5,1,1
1116876789,Tank War - Geometry Go Shot Color Dot.IO,32032768,USD,0.0,24760,1251,4.5,4.5,1.4,4+,Games,40,2,31,1
455612214,Flashlight ◎,37967872,USD,0.0,24744,171,4.5,4.0,2.0.6,4+,Business,40,4,11,1
842849113,Google Sheets,292418560,USD,0.0,24602,39,4.5,4.5,1.2017.20204,4+,Productivity,37,3,69,1
341776037,5-0 Radio Pro Police Scanner (Extra Feeds),49594368,USD,3.99,24553,2620,4.0,4.5,39.1,9+,News,38,5,26,1
937737946,Survivors: the Quest®,102812672,USD,0.0,24547,2262,4.0,4.0,1.6.401,9+,Games,37,5,11,1
626583252,Faded - Photo Editor,118618112,USD,1.99,24530,3551,4.5,4.5,2.3.1,4+,Photo & Video,38,5,5,1
1073286211,Wizard of OZ: Magic Match,160321536,USD,0.0,24507,1198,4.5,4.5,1.0.2551,4+,Games,38,5,16,1
586683407,Microsoft Excel,323411968,USD,0.0,24430,357,4.5,4.5,2.1,4+,Productivity,37,5,33,1
528805631,Where's My Perry?,126416896,USD,2.99,24314,123,4.5,3.5,1.7.7.78,4+,Games,38,5,14,1
379323382,Osmos for iPad,41772032,USD,4.99,24306,6,4.5,5.0,2.4.1,4+,Games,24,5,9,1
327243363,NFL Sunday Ticket,96093184,USD,0.0,24258,305,3.0,2.5,2.6.042,4+,Entertainment,37,0,1,1
896130944,Mercari: Shopping Marketplace to Buy & Sell Stuff,72579072,USD,0.0,24244,215,4.0,3.5,4.2.0,4+,Shopping,37,4,1,1
1171814682,Paper.io,281393152,USD,0.0,24097,4469,4.0,4.5,2.8,4+,Games,37,4,1,1
1046846443,Hungry Shark World,952222720,USD,0.0,24057,340,4.5,4.5,2.1.0,12+,Games,37,5,12,1
1062006344,Pigment - Coloring Book for Adults,145373184,USD,0.0,23967,240,4.5,4.5,1.6.6,4+,Entertainment,37,5,8,1
1073816197,Miitomo,112008192,USD,0.0,23965,299,4.0,4.5,2.2.2,4+,Social Networking,37,5,9,1
945274928,Clash of Kings - CoK,157344768,USD,0.0,23910,7,4.5,3.5,2.44.0,9+,Games,38,5,20,1
692717444,Assassin's Creed Pirates,775233536,USD,0.0,23895,1660,4.5,4.5,2.9.1,12+,Games,38,5,13,1
918054748,The Room Three,1005560832,USD,4.99,23878,21769,5.0,5.0,1.0.1,9+,Games,39,5,1,1
318639200,Crush the Castle,12996628,USD,0.99,23810,582,3.5,4.0,1.5,12+,Games,45,0,1,1
671464704,Vainglory,1182578688,USD,0.0,23779,128,4.5,4.0,2.5.0,9+,Games,38,5,32,1
711923939,Square Cash - Send Money for Free,90040320,USD,0.0,23775,132,4.5,4.5,2.16,4+,Finance,37,0,1,1
442522082,Modern Combat 3: Fallen Nation,1978085376,USD,6.99,23766,582,4.5,4.5,1.5.0,17+,Games,43,5,12,1
979759584,Words Crush: Hidden Words!,117254144,USD,0.0,23735,102,4.5,4.5,2.2.2,4+,Games,38,5,1,1
555936735,Angry Birds Friends,190382080,USD,0.0,23655,376,4.0,4.5,3.4.0,4+,Games,37,5,1,1
1068204657,My Cafe: Recipes & Stories - World Restaurant Game,133657600,USD,0.0,23556,604,4.5,4.5,2017.6,4+,Games,38,5,46,1
375239755,SimSimi,31358976,USD,0.0,23530,7,4.0,2.5,6.8.9,17+,Social Networking,37,0,25,1
569632660,Toca Hair Salon 2,99796992,USD,2.99,23349,308,4.5,4.0,1.1.5,4+,Education,40,5,18,1
1010962391,Design Home,173576192,USD,0.0,23298,468,4.5,4.0,1.02.51,4+,Games,38,5,1,1
319881193,"Grindr - Gay and same sex guys chat, meet and date",80409600,USD,0.0,23201,14,2.5,2.0,3.9.1,17+,Social Networking,37,5,5,1
652945710,100 PICS Quiz - guess the picture trivia games,67786752,USD,0.0,23160,44,4.5,4.5,2.50,4+,Games,37,5,7,1
1060704812,Castle Crush: Epic Strategy Game,106132480,USD,0.0,23148,684,5.0,5.0,2.5.0,12+,Games,37,5,11,1
915637540,"RainbowKey - Color keyboard themes, fonts & GIF",86156288,USD,0.0,23063,101,4.5,4.5,4.0.9,4+,Utilities,37,5,14,1
1002340615,PAC-MAN 256 - Endless Arcade Maze,145424384,USD,0.0,23015,1730,4.5,4.5,2.0.3,4+,Games,38,5,11,1
898838405,Empires & Allies,145223680,USD,0.0,22902,102,4.5,4.0,1.38.1012249,12+,Games,38,5,13,1
794507331,Crazy Taxi™ City Rush,237275136,USD,0.0,22877,993,4.5,4.5,1.7.1,4+,Games,38,5,8,1
955957721,Storm Radar,93304832,USD,0.0,22792,1563,4.5,3.5,1.9.9,4+,Weather,37,5,31,1
544118997,"Shopular Coupons, Weekly Deals for Target, Walmart",52582400,USD,0.0,22729,997,5.0,5.0,6.80,4+,Shopping,37,4,1,1
557138109,Angry Birds Star Wars HD,212249600,USD,0.0,22674,10,4.5,4.5,1.5.11,4+,Games,24,5,1,1
323438913,Moto X Mayhem,21010210,USD,0.99,22557,526,4.0,4.0,1.8.7,4+,Games,47,0,1,1
885823239,Dungeon Hunter 5 - Multiplayer RPG on iOS,2288456704,USD,0.0,22513,62,4.5,4.5,2.8.2,12+,Games,37,5,15,1
547101139,Traffic Racer,132160512,USD,0.0,22458,369,4.5,4.5,2.4.1,4+,Games,40,4,16,1
979598664,Kill Shot Bravo,104240128,USD,0.0,22444,148,4.5,4.5,2.10,17+,Games,37,5,46,1
574123647,iGun Pro HD - The Original Gun Application,69952512,USD,0.0,22324,543,4.5,4.5,5.24,12+,Games,40,5,6,1
401626263,Airbnb,243776512,USD,0.0,22302,0,4.0,0.0,17.22,4+,Travel,37,5,29,1
638853147,Where's My Water? 2,181628928,USD,0.0,22302,221,3.5,4.0,1.5.1,4+,Games,37,5,11,1
516875543,Offroad Legends,96497664,USD,0.99,22281,49,4.5,4.0,1.3.3,4+,Games,38,5,30,1
374791544,Robot Unicorn Attack,52117504,USD,0.99,22150,1141,4.0,4.5,3.4,9+,Games,43,5,1,1
576588894,Sky Guide: View Stars Night or Day,175430656,USD,2.99,22100,1939,5.0,5.0,6.2.2,4+,Reference,37,5,11,1
606413051,Solitaire Classic Card Game™,141391872,USD,0.0,22079,193,4.5,4.0,1.1.0,4+,Games,43,4,1,1
914079393,Amazing Thief,17489920,USD,0.0,21984,5528,4.0,4.0,1.1.1,4+,Games,40,4,14,1
1045165396,Vlogger Go Viral - Clicker Game & Vlog Simulator,100562944,USD,0.0,21977,563,5.0,5.0,1.17,4+,Games,38,5,7,1
918780702,Inside Out Thought Bubbles,164248576,USD,0.0,21881,113,4.5,4.0,1.19.0,4+,Games,38,5,9,1
694133485,Capital One for iPad,92510208,USD,0.0,21858,389,4.5,4.5,2.8.0,4+,Finance,24,5,1,1
493619333,MLB.com At Bat,91044864,USD,0.0,21830,247,3.5,4.5,10.2.2,4+,Sports,37,5,2,1
293760823,iFart - The Original Fart Sounds App,60320768,USD,1.99,21825,10,3.0,4.0,4.0.8,9+,Entertainment,37,5,1,1
1089048531,Restaurant DASH with Gordon Ramsay,174926848,USD,0.0,21804,803,4.5,4.0,2.0.9,9+,Games,37,5,11,1
893393414,Juice Jam,131652608,USD,0.0,21733,82,4.5,4.5,2.1.11,4+,Games,37,5,19,1
402370879,NBA JAM by EA SPORTS™,410202112,USD,4.99,21648,460,4.0,3.5,1.1.35,4+,Games,37,0,8,1
290807369,Line Rider iRide™,1646592,USD,1.99,21609,69,3.5,2.5,2.4,9+,Entertainment,40,0,1,1
645949180,Jelly Splash,138738688,USD,0.0,21601,14,4.0,3.5,3.13.0,4+,Games,38,5,19,1
905060486,Inbox by Gmail,219122688,USD,0.0,21561,373,4.5,4.5,1.3.170423,4+,Productivity,37,4,63,1
1020187921,Colorfly : Coloring Book for Adults - Free Games,61465600,USD,0.0,21472,245,4.5,4.5,3.19,4+,Games,40,5,3,1
541672969,Robot Unicorn Attack 2,106917888,USD,0.0,21432,269,4.5,4.5,1.7.3,9+,Games,40,5,6,1
314303518,Peggle Classic,223805440,USD,0.99,21416,974,4.5,4.5,1.7.2,4+,Games,43,0,5,1
880735556,Gods of Olympus,116436992,USD,0.0,21414,540,4.5,5.0,1.12,9+,Games,37,5,12,1
797639732,RollerCoaster Tycoon® 4 Mobile™,195613696,USD,0.0,21407,1146,3.5,4.0,1.10.14,4+,Games,37,5,14,1
982354972,Lifeline...,29690880,USD,1.99,21347,1187,4.5,4.5,1.10.1,9+,Games,37,5,6,1
535176909,BADLAND,222380032,USD,2.99,21325,195,4.5,4.5,3.3.3,9+,Games,37,5,13,1
281656475,PAC-MAN Premium,100788224,USD,3.99,21292,26,4.0,4.5,6.3.5,4+,Games,38,5,10,1
351727428,Venmo,68153344,USD,0.0,21090,1325,4.5,5.0,7.1.0,4+,Finance,37,4,1,1
529997671,"Disney Channel – Watch Full Episodes, Movies & TV",132038656,USD,0.0,21082,37,3.5,3.5,5.7.0,4+,Entertainment,37,5,1,1
927060395,MONOPOLY Bingo!,253120512,USD,0.0,21025,24,4.5,2.5,2.5.1,12+,Games,38,5,1,1
970417047,The Walking Dead: No Man's Land,574139392,USD,0.0,21016,1124,4.5,4.5,2.5.0,17+,Games,37,5,1,1
1032301062,BuzzTube - Video Player for YouTube,15563776,USD,0.0,21012,1427,4.5,4.5,2.0,17+,Entertainment,37,5,1,1
444947784,Talking Tom & Ben News for iPad,55250944,USD,0.0,20988,963,4.0,4.5,2.2.1,4+,Entertainment,24,5,13,1
776132132,Dungeon Boss,169657344,USD,0.0,20980,616,4.5,4.5,0.5.7961,9+,Games,38,5,5,1
319284643,"The Championships, Wimbledon 2016 - Tennis Grand Slam",130394112,USD,0.0,20953,481,4.0,4.0,8.1,4+,Sports,37,5,1,1
430200224,Photon Flash Player for iPad - Flash Video & Games plus Private Web Browser,35695616,USD,4.99,20951,935,4.0,4.0,6.2,17+,Utilities,26,5,10,1
939906112,Tubex - Videos and Music for YouTube,13450240,USD,0.0,20943,1562,4.0,2.5,3.0,17+,Entertainment,37,4,20,1
952715194,King of Thieves,183342080,USD,0.0,20911,142,4.5,4.5,2.18,9+,Games,38,5,13,1
961875786,Roll the Ball™ - slide puzzle,173849600,USD,0.0,20911,1110,4.5,4.5,1.7.2,4+,Games,38,5,1,1
955705796,MARVEL Future Fight,1350787072,USD,0.0,20906,433,4.5,4.5,3.0.0,9+,Games,38,5,15,1
992448528,Spinny Circle,16656384,USD,0.0,20812,213,4.5,4.0,1.9,4+,Games,38,2,1,1
497693461,VS. Racing 2,58599424,USD,0.0,20805,2995,4.5,4.5,1.6.3,4+,Games,40,5,1,1
836071680,Wishbone - Compare Anything,117052416,USD,0.0,20649,49,4.5,3.0,5.17.4,12+,Social Networking,37,0,1,1
1001286466,Minecraft: Story Mode,1089228800,USD,0.0,20621,6745,4.0,4.5,1.6,9+,Games,38,4,1,1
489185828,happn — Dating app — Find and meet your crush,78902272,USD,0.0,20546,78,4.5,4.5,7.8.2,17+,Lifestyle,37,0,14,1
885661130,Paradise Bay,322693120,USD,0.0,20383,404,4.0,4.5,2.5.0,4+,Games,38,5,13,1
635966718,Memrise: learn languages,83949568,USD,0.0,20383,138,5.0,4.5,2.2.22,4+,Education,37,5,24,1
432749907,Dice With Buddies: Fun New Social Dice Game,409732096,USD,2.99,20355,23,4.5,4.5,4.30.5,4+,Games,37,5,1,1
806223188,Peak - Brain Training,254793728,USD,0.0,20322,29,4.5,4.5,3.20,4+,Education,37,5,14,1
916281743,Sugar Smash: Book of Life,128648192,USD,0.0,20254,71,5.0,4.5,3.32.162,4+,Games,37,4,16,1
710535379,"DraftKings - Daily Fantasy Golf, Baseball, & More",144820224,USD,0.0,20251,53,4.5,5.0,3.9.0,17+,Sports,37,4,18,1
918820076,Dubsmash,101078016,USD,0.0,20243,44,4.5,4.0,2.21.0,12+,Entertainment,37,4,20,1
688319243,PicLab Studio - Creative Editing & Graphic Design,53941248,USD,2.99,20200,94,4.5,4.0,2.10,4+,Photo & Video,37,5,1,1
955682952,Century City,83817472,USD,0.0,20147,381,4.5,4.5,3.4.0,12+,Games,37,5,1,1
742625884,Blek,118883328,USD,2.99,20144,64,4.5,4.5,1.7,4+,Games,37,4,1,1
578448682,Grand Theft Auto: Vice City,1161168896,USD,4.99,20113,1153,4.0,4.5,1.6,17+,Games,43,3,8,1
469337564,"Adobe Acrobat Reader: View, Create, & Convert PDFs",81007616,USD,0.0,20069,33,4.0,4.5,17.05.23,4+,Business,37,5,19,1
531325150,Talking Ginger for iPad,79683584,USD,0.0,20065,113,4.5,4.0,2.4.2,4+,Entertainment,24,5,13,1
986110430,Hot Shot Slots Games – Vegas Casino Slot Machines,179004416,USD,0.0,20064,690,4.5,4.5,1.24,12+,Games,38,5,1,1
480883488,Canvas by Instructure,138883072,USD,0.0,19981,36,4.5,4.5,3.18.3,4+,Education,37,4,16,1
561625752,T-Mobile,65560576,USD,0.0,19977,828,4.0,4.5,2.9.5,4+,Productivity,37,3,1,1
312325565,USAA Mobile,164382720,USD,0.0,19946,13,4.0,2.5,7.32.3,4+,Finance,37,5,1,1
622613679,Survivalcraft,55344128,USD,3.99,19784,1086,4.0,4.5,1.29.21.0,9+,Games,43,5,1,1
964436963,Drive Ahead!,250080256,USD,0.0,19776,105,4.5,4.5,1.51,9+,Games,40,5,17,1
316025912,Sonic The Hedgehog,36692992,USD,2.99,19621,1191,4.0,4.5,2.1.2,4+,Games,37,5,1,1
475976577,Perfect365 - Custom makeup designs and beauty tips,143038464,USD,0.0,19540,5,4.5,4.0,6.50.10,4+,Lifestyle,37,3,12,1
785537179,Heart of Vegas Slots – Casino Slot Machine Games,96088064,USD,0.0,19355,317,4.5,4.5,2.22.0,12+,Games,38,5,1,1
900721327,EA SPORTS™ UFC®,985080832,USD,0.0,19354,408,4.5,4.5,1.9.3,12+,Games,38,5,10,1
727420266,LEGO® Star Wars™: The Complete Saga,865561600,USD,0.0,19340,289,4.0,4.0,1.9.15,9+,Games,40,5,1,1
342699962,Rat On A Scooter XL,7767040,USD,0.99,19296,7,4.0,4.0,1.24.1,4+,Games,37,3,1,1
1047961826,Rodeo Stampede - Sky Zoo Safari,252826624,USD,0.0,19199,189,4.5,4.5,1.8.2,4+,Games,38,5,12,1
1067589627,Racing in Car,106005504,USD,0.0,19067,19067,4.0,4.0,1.0,4+,Games,40,5,1,1
545229893,Bad Piggies HD,260040704,USD,0.0,19018,81,4.5,4.5,2.3.3,4+,Games,24,5,1,1
547305617,Bingo Pop,274991104,USD,0.0,18971,36,4.0,4.0,3.11.25,12+,Games,38,5,1,1
297606726,Fish Tycoon,13564835,USD,0.99,18943,1787,3.5,4.5,1.1.0,4+,Games,47,0,1,1
320300350,Virtual Families,27746273,USD,1.99,18920,3014,3.5,4.5,1.1.2,9+,Games,47,0,1,1
334503000,The Impossible Quiz!,44652544,USD,0.0,18884,451,4.0,4.5,1.62,9+,Entertainment,37,0,1,1
336435697,imo video calls and chat,22562816,USD,0.0,18841,0,4.0,0.0,7.0.84,4+,Social Networking,38,2,29,1
574375380,Sky Gamblers: Storm Raiders,1820131328,USD,4.99,18822,25,4.5,4.0,1.5.2,12+,Games,37,5,10,1
972013240,100! Block Puzzle - Color jigsaw 10x10 board game,26438656,USD,0.0,18821,96,4.5,5.0,2.3.1,4+,Games,37,4,1,1
576836614,SpongeBob Moves In,634097664,USD,2.99,18758,44,4.0,4.0,4.37.7,4+,Games,40,4,9,1
586328581,ABCmouse.com - Early Learning Academy,266735616,USD,0.0,18749,119,4.5,4.5,5.5,4+,Education,38,4,1,1
911800950,Dawn of Titans,1213626368,USD,0.0,18735,46,4.5,4.5,1.15.4,9+,Games,37,5,16,1
1089336971,Talking Tom Gold Run: Fun & Endless Running Game,202542080,USD,0.0,18733,737,4.5,4.5,1.7.4,4+,Games,38,5,13,1
352509417,The Washington Post Classic,118980608,USD,0.0,18572,307,4.5,4.5,3.8.2,12+,News,37,3,1,1
521207075,"RetailMeNot Shopping Deals, Coupons, Savings",133086208,USD,0.0,18544,14,4.5,4.5,4.25,4+,Shopping,37,0,1,1
779157948,Threes!,93796352,USD,2.99,18494,1983,4.5,3.5,1.3.5,4+,Games,40,5,1,1
505728417,Freeform – watch live TV & stream full episodes,56845312,USD,0.0,18492,8,2.5,4.5,4.2.3,12+,Entertainment,37,5,1,1
918396645,After School - Funny Anonymous School News,148799488,USD,0.0,18482,1,4.0,5.0,1.90,17+,Social Networking,37,0,1,1
388389451,"Muslim Pro: Ramadan 2017 Prayer Times, Azan, Quran",100551680,USD,0.0,18418,706,4.5,5.0,9.2.1,4+,Reference,37,5,16,1
1084252650,Letter Soup - Word Game,88837120,USD,0.0,18358,2426,4.5,4.5,5.1.1,4+,Games,37,5,1,1
329981776,Sudoku⁺,1608704,USD,2.99,18332,1007,4.5,5.0,3.4,4+,Games,37,5,2,1
860011430,Ghost Lens+Scary Photo Video Edit&Collage Maker,102500352,USD,0.0,18316,756,5.0,4.5,3.91,12+,Photo & Video,40,5,3,1
376412660,Carnivores: Dinosaur Hunter Pro,304654336,USD,2.99,18306,186,4.0,4.5,1.7.0,12+,Games,37,5,4,1
447149103,Reckless Getaway,123644928,USD,0.99,18259,77,4.5,4.5,1.1.4,12+,Games,43,5,1,1
506003812,"Paper by FiftyThree - Sketch, Diagram, Take Notes",134009856,USD,0.0,18219,5,4.0,4.0,3.6.9,4+,Productivity,37,5,11,1
524299475,AutoRap by Smule,71257088,USD,0.0,18202,514,4.0,3.5,2.3.5,12+,Music,37,5,12,1
1080816579,Animation Throwdown: The Quest for Cards,358231040,USD,0.0,18141,255,4.5,4.5,1.0.37,17+,Games,38,5,1,1
941143328,Five Nights at Freddy's 2,37310464,USD,2.99,18107,18107,4.5,4.5,1.0,12+,Games,43,5,1,1
653967729,Charades!™,44654592,USD,0.0,18072,129,4.5,4.0,2.5.1,4+,Games,40,1,1,1
975139176,Head Basketball,133572608,USD,0.0,18037,924,4.5,4.5,1.4.3,4+,Games,38,5,1,1
470412147,Poshmark: Buy & Sell Fashion,58299392,USD,0.0,18035,156,4.5,4.5,2.70,4+,Shopping,37,5,1,1
828005193,Kitchen Scramble: Cooking Game,117025792,USD,0.0,17925,13,3.5,2.5,4.3.1,4+,Games,40,4,6,1
320029256,Whole Foods Market,137312256,USD,0.0,17906,4,3.0,3.0,8.3.17,4+,Shopping,37,5,1,1
524359189,The Amazing Spider-Man,829148559,USD,6.99,17895,10970,4.5,4.0,1.0.3,12+,Games,39,4,12,1
1055672607,Merged!,95139840,USD,0.0,17867,154,4.5,4.5,1.8.0,4+,Games,38,5,1,1
1058959277,UberEATS: Uber for Food Delivery,75443200,USD,0.0,17865,243,4.0,4.0,1.86.1,4+,Food & Drink,37,5,36,1
1070492711,Zombie Castaways,144084992,USD,0.0,17865,911,4.5,4.5,2.3,4+,Games,37,5,7,1
310303959,World Cup Table Tennis™,31387648,USD,0.99,17776,6,4.0,5.0,4.6.1,4+,Games,37,0,11,1
957764690,"Quick Reposter - Repost, Regram and Reshare Photos",16826368,USD,0.0,17694,72,4.5,4.0,15,17+,Social Networking,37,2,1,1
366626332,"Runtastic PRO Running, Jogging and Fitness Tracker",149536768,USD,4.99,17667,14,4.5,4.0,7.3,4+,Health & Fitness,37,0,15,1
360593530,Notability,122235904,USD,9.99,17594,143,4.0,4.0,6.5.2,4+,Productivity,37,5,14,1
1130829481,New Furniture Mods - Pocket Wiki & Game Tools for Minecraft PC Edition,52959232,USD,0.0,17588,17588,4.5,4.5,1.0,4+,Reference,38,3,2,1
346184215,TaxCaster – Free tax refund calculator,7111680,USD,0.0,17516,125,3.5,5.0,7.2,4+,Finance,37,5,1,1
1016673544,"ipsy - Makeup, subscription and beauty tips",35611648,USD,0.0,17489,729,5.0,5.0,2.0.0,4+,Lifestyle,37,5,1,1
908989995,Bruh-Button,52343808,USD,0.0,17487,157,5.0,4.0,2.1,17+,Entertainment,37,5,1,1
1074470421,Willy Wonka Slots: Vegas Casino Slot Machines,117741568,USD,0.0,17436,429,4.5,4.5,27.0.84,12+,Games,37,5,1,1
1061768547,MARVEL Avengers Academy,170858496,USD,0.0,17376,12,4.0,3.5,1.15.0,9+,Games,37,5,45,1
608847384,X-War: Clash of Zombies,42917888,USD,0.0,17254,237,5.0,4.5,5.4,9+,Games,40,5,3,1
731592936,Disney Magic Kingdoms,468258816,USD,0.0,17213,495,4.0,4.5,2.1.1,4+,Games,37,5,15,1
574001818,Beat the Boss 2 (17+),205250560,USD,0.99,17203,553,4.5,4.5,2.8.0,17+,Games,43,5,15,1
314864297,I Dig It,19853312,USD,0.99,17190,180,4.0,4.5,1.12,4+,Games,40,0,1,1
337402021,Harry Potter: Spells,125411328,USD,0.99,17023,916,4.0,4.5,2.2,4+,Games,40,0,1,1
1045516045,Flip Diving,189799424,USD,0.0,17012,3154,4.5,4.5,2.7.0,12+,Games,37,5,1,1
418075935,"Bleacher Report: Sports news, scores, & highlights",85283840,USD,0.0,16979,183,4.5,4.0,5.1,12+,Sports,37,0,8,1
718153412,Swamp Attack,123780096,USD,0.0,16968,4969,4.5,4.5,2.1.5,17+,Games,40,5,12,1
962993853,Shooty Skies - Endless Arcade Flyer,221495296,USD,0.0,16948,26,4.5,4.5,2.0000,4+,Games,37,5,22,1
749046891,Wallpapers for Me - Themes & Background Images,80015360,USD,0.0,16925,454,4.5,4.5,4.4,4+,Entertainment,37,5,13,1
1043640363,"Warhammer 40,000: Freeblade",1425611776,USD,0.0,16879,25,4.5,4.0,2.4.5,12+,Games,37,5,12,1
482066631,Roku,46033920,USD,0.0,16867,634,4.5,4.5,4.0.4,4+,Entertainment,37,0,1,1
580991034,The Silent Age,1522363392,USD,0.0,16852,457,4.5,4.5,2.16,12+,Games,37,5,1,1
399452287,Merriam-Webster Dictionary,155593728,USD,0.0,16849,1125,4.5,4.5,4.1,4+,Reference,38,1,12,1
527219710,Sworkit - Custom Workouts for Exercise & Fitness,143166464,USD,0.0,16819,348,5.0,5.0,5.4.1,4+,Health & Fitness,37,5,12,1
845918296,Zombie Catchers,103388160,USD,0.0,16805,1136,4.5,4.5,1.17,12+,Games,38,5,10,1
386098453,Weibo HD,104387584,USD,0.0,16772,293,4.5,3.0,4.0.0,4+,Social Networking,24,4,3,1
443354861,"Camera360 - Selfie Filter Camera, Photo Editor",161159168,USD,0.0,16729,2,4.5,4.5,8.5.6,12+,Photo & Video,37,0,12,1
353665650,"Univision Deportes: Liga MX, MLS, Fútbol En Vivo",81876992,USD,0.0,16683,21,3.5,2.5,5.5,4+,Sports,37,5,2,1
546473125,"Quizlet: Study Flashcards, Languages & Vocabulary",95381504,USD,0.0,16683,23,4.5,4.0,2.11,4+,Education,37,5,13,1
951346423,The Line Zen,28614656,USD,0.0,16674,3641,4.5,4.5,1.1.1,4+,Games,40,5,1,1
303337299,Wedding Dash Deluxe,55803904,USD,0.99,16567,1155,4.5,4.5,2.29.13,4+,Games,43,4,1,1
578979413,MyScript Calculator - Handwriting calculator,21319680,USD,0.0,16555,1776,4.5,4.0,1.3.2,4+,Productivity,38,5,11,1
919087726,Photomath - Camera Calculator,34342912,USD,0.0,16523,161,4.5,5.0,3.1.2,4+,Education,37,3,20,1
932500451,DC Legends,271538176,USD,0.0,16460,276,4.5,4.0,1.12.1,9+,Games,38,5,10,1
1085899628,FarmVille: Tropic Escape - Harvest in Paradise,204402688,USD,0.0,16457,0,4.5,0.0,1.9.763,4+,Games,37,5,15,1
306468004,Map My Run+ - GPS Running & Workout Tracker,237913088,USD,2.99,16434,3,4.5,4.5,17.5.5,4+,Health & Fitness,37,0,9,1
552764013,NASCAR MOBILE,70040576,USD,0.0,16385,6556,4.0,4.5,6.3.0,4+,Sports,37,4,1,1
454316134,Sonic CD,197306368,USD,0.0,16358,1816,4.0,3.5,2.0.1,4+,Games,37,3,1,1
1000876192,Plants vs. Zombies™ Heroes,153967616,USD,0.0,16305,1327,4.5,4.5,1.14.13,9+,Games,37,4,10,1
1058370552,"Farm Heroes Super Saga: Match, Collect and Grow!",299586560,USD,0.0,16259,52,4.5,4.5,0.57.3,4+,Games,38,5,17,1
615187629,InstaMag - Free Pic and Photo Collage Maker,95378432,USD,0.0,16221,262,4.5,5.0,3.8.7,4+,Photo & Video,38,5,4,1
535811906,"Over— Edit Photos, Add Text & Captions to Pictures",109300736,USD,0.0,16221,165,4.5,4.5,4.3.1,4+,Photo & Video,37,5,1,1
969316884,The Walking Dead: Road to Survival - Strategy Game,151109632,USD,0.0,16116,151,4.5,4.5,5.0.1,17+,Games,38,5,12,1
917554930,5miles: Buy and Sell Used Stuff Locally,54063104,USD,0.0,16105,3420,4.5,4.5,5.0.5,4+,Shopping,37,4,8,1
404593641,Cartoon Network App – Teen Titans Go! And more!,101873664,USD,0.0,15984,97,3.0,3.5,3.6,9+,Entertainment,37,5,1,1
393313223,"Printer Pro - Print photos, pdf and emails",98820096,USD,6.99,15981,440,4.5,4.5,5.4.11,4+,Productivity,37,5,9,1
766894692,Disney Movies Anywhere: Watch Your Disney Movies!,81021952,USD,0.0,15900,78,3.5,3.5,1.7.8,12+,Entertainment,37,5,1,1
1068366937,Tap Tap Fish - Abyssrium,209029120,USD,0.0,15876,477,4.5,4.5,1.4.1,4+,Games,37,5,5,1
700637744,Deemo,2219819008,USD,1.99,15855,270,5.0,5.0,3.0.5,4+,Games,38,5,1,1
458225159,"NOAA Hi-Def Radar Pro - Storm Warnings, Hurricane Tracker & Weather Forecast",27500544,USD,1.99,15809,628,5.0,4.5,2.1,4+,Weather,38,5,1,1
490217893,iTunes U,55641088,USD,0.0,15801,26,4.0,4.0,3.5,4+,Education,37,5,34,1
1020818294,ColorArt: Coloring Book For Adults,90105856,USD,0.0,15797,239,4.5,4.5,1.6.0,4+,Entertainment,37,5,1,1
365152940,Photo Transfer App - Easy backup of photos+videos,45182976,USD,0.0,15654,24,4.5,4.5,6.2.1,4+,Photo & Video,37,5,2,1
711455226,Forge of Empires,138510336,USD,0.0,15617,11,4.5,4.5,1.102.1,9+,Games,38,5,20,1
576649830,"InstaSize: Photo Editor, Picture Effects & Collage",99624960,USD,0.0,15605,1288,4.0,4.5,4.3.41,4+,Photo & Video,37,1,23,1
393328150,Sephora Makeup & Beauty App – Insider Tips & Style,147001344,USD,0.0,15593,301,4.5,5.0,17.3,4+,Shopping,37,0,1,1
465092669,NHL,160124928,USD,0.0,15554,124,3.5,5.0,8.6.1,4+,Sports,37,5,1,1
586280100,Block Fortress,343504896,USD,1.99,15430,63,4.5,4.5,1.6.3,12+,Games,37,5,1,1
668159524,Ninja Kid Run VR: Runner & Racing Games For Free,165612544,USD,0.0,15399,613,4.5,4.5,1.2.13,4+,Games,40,5,1,1
619517698,Teenage Mutant Ninja Turtles: Rooftop Run,149581824,USD,3.99,15398,2492,4.0,4.0,3.0.2,9+,Games,43,4,7,1
1094930513,FIFA Mobile Soccer,87408640,USD,0.0,15365,880,4.0,3.0,6.0.1,4+,Games,37,5,17,1
867833019,Cupcake Mania™,167641088,USD,0.0,15336,332,4.5,4.5,1.5.6,4+,Games,43,5,9,1
1081221532,Hovercraft: Takedown - Custom Combat Cars,123773952,USD,0.0,15290,523,4.5,4.5,1.4.4,9+,Games,38,5,12,1
743974925,"PDF Expert 6: Read, annotate & edit PDF documents",123600896,USD,9.99,15248,111,4.5,3.5,6.0.3,4+,Productivity,37,5,9,1
352247139,MyNetDiary PRO - Calorie Counter and Food Diary,83851264,USD,3.99,15188,272,4.5,4.0,5.30,12+,Health & Fitness,37,0,2,1
570315854,Repost for Instagram,46076928,USD,0.0,15185,407,4.5,5.0,3.2.5,12+,Social Networking,37,0,1,1
335029050,Catan,376171520,USD,1.99,15175,308,4.0,4.0,4.6.2,4+,Games,38,0,6,1
344186162,Grand Theft Auto: Chinatown Wars,878883840,USD,4.99,15142,73,4.0,4.0,4.4,17+,Games,38,5,6,1
410351918,"Sleep Pillow Sounds: white noise, rain, ocean, fan",124150784,USD,2.99,15116,2692,4.5,5.0,7.4,4+,Health & Fitness,37,5,31,1
1122649984,"Prisma: Photo Editor, Art Filters Pic Effects",76442624,USD,0.0,15060,97,4.5,4.0,3.3.1,9+,Photo & Video,37,0,2,1
354655665,STREET FIGHTER IV,581353472,USD,4.99,15056,751,4.0,4.0,1.00.12,17+,Games,40,0,3,1
642064350,Spinrilla - Mixtapes For Free,40071168,USD,0.0,15053,1032,4.5,4.0,3.2.5,12+,Music,37,0,3,1
656951157,LIMBO,135050240,USD,4.99,15030,319,4.5,4.5,1.1.15,12+,Games,37,5,13,1
833756002,Flappy Golf,98557952,USD,0.0,14995,3840,4.5,4.5,1.7,4+,Games,38,4,31,1
487127942,Calculator HD Free,68090880,USD,0.0,14986,260,4.5,4.5,3.1.0,4+,Utilities,37,4,14,1
299949744,MotionX GPS,56481792,USD,1.99,14970,24,3.5,4.5,24.2,4+,Navigation,37,0,1,1
595831580,Temple Run: Oz,218399744,USD,1.99,14912,151,4.0,4.0,1.7.0,9+,Games,40,5,10,1
373714084,BATTLE BEARS -1,227403527,USD,0.99,14910,1003,4.0,4.5,1.5.7,12+,Games,45,5,1,1
445375097,爱奇艺PPS -《欢乐颂2》电视剧热播,224617472,USD,0.0,14844,0,4.0,0.0,6.3.3,17+,Entertainment,38,5,3,1
951704333,"Filterra – Photo Editor, Effects for Pictures",99465216,USD,0.0,14744,2178,4.5,4.5,1.10,4+,Photo & Video,37,5,13,1
1089836344,Live.me – Live Video Chat & Make Friends Nearby,163832832,USD,0.0,14724,97,4.5,4.5,3.6.20,17+,Social Networking,37,0,9,1
453051448,Gangstar Rio: City of Saints,1820196864,USD,6.99,14724,1043,4.5,4.5,1.4.1,17+,Games,43,5,12,1
659563061,Cartwheel by Target,49570816,USD,0.0,14682,0,3.5,0.0,2.5.2,4+,Shopping,37,3,1,1
988476572,Arrow,128421888,USD,0.0,14673,7369,4.5,4.5,1.1.1,4+,Games,40,4,1,1
382991304,Osmos,33989632,USD,2.99,14605,23,4.5,5.0,2.4.1,4+,Games,37,0,9,1
892092770,Zombie Highway 2,154164224,USD,0.0,14593,2800,4.5,4.5,1.4.3,12+,Games,38,5,1,1
951744068,Traffic Rider,244306944,USD,0.0,14592,1085,4.5,4.5,1.4,4+,Games,40,5,18,1
1137673647,Six!,112238592,USD,0.0,14505,332,4.5,4.5,2.2.0,4+,Games,38,5,1,1
962680846,Fruit Nibblers,150988800,USD,0.0,14505,12,4.5,5.0,1.21.1,4+,Games,37,5,11,1
395627741,Age of Zombies™,53805056,USD,0.99,14493,384,4.5,4.5,1.2.81,12+,Games,40,5,1,1
397951063,Backbreaker 2: Vengeance,83214336,USD,0.99,14491,304,4.5,4.5,1.3.6,4+,Games,40,5,1,1
522626820,iTranslate Voice - Speak & Translate in Real Time,56189952,USD,6.99,14469,81,4.0,4.0,3.1.5,4+,Productivity,37,5,22,1
893372761,Deer Hunter 2017,253903872,USD,0.0,14461,422,4.0,4.0,4.1.0,17+,Games,38,5,13,1
634235735,Duet Game,87994368,USD,2.99,14407,207,5.0,4.5,3.8,4+,Games,37,5,14,1
640360962,Nextdoor,82531328,USD,0.0,14402,104,4.5,4.5,3.11,4+,Social Networking,37,0,4,1
489479624,Hatchi - A retro virtual pet,85693440,USD,0.99,14381,56,4.5,4.0,7.5.4,4+,Games,37,1,5,1
438314348,Tank Hero,16048128,USD,0.99,14361,918,4.5,4.5,1.1.4,9+,Games,43,0,1,0
333246187,Scanner911 Pro,33812480,USD,3.99,14345,100,4.0,2.5,4.0,12+,News,37,0,1,1
584557117,Napster - Top Music & Radio,184817664,USD,0.0,14268,80,4.0,3.5,5.7.5,12+,Music,37,4,11,1
1135657766,Bottle Flip 2k16,38429696,USD,0.0,14263,3,4.0,3.5,2.1,4+,Games,37,5,1,1
537773100,Bastion,1281059840,USD,4.99,14247,320,4.5,4.5,1.4,12+,Games,43,4,1,1
527358348,Fieldrunners 2,89068544,USD,2.99,14214,11,5.0,3.5,1.9.177609,9+,Games,37,0,1,1
389204861,The Sims 3 Ambitions,444821504,USD,4.99,14202,638,3.5,3.5,1.1.83,12+,Games,40,5,10,1
731629156,XFINITY Stream,136228864,USD,0.0,14198,722,3.0,4.0,4.2.1,12+,Entertainment,37,5,2,1
863844475,YouCam Makeup: Magic Makeup Selfie Cam,133124096,USD,0.0,14188,264,4.5,5.0,5.20.0,9+,Photo & Video,37,4,16,1
962144693,Hovercraft - Build Fly Retry,107164672,USD,0.0,14123,91,4.5,4.5,1.6.12,4+,Games,38,5,11,1
459035295,Top Eleven 2017 - Be a Soccer Manager,144414720,USD,0.0,14104,61,4.5,4.5,5.7,4+,Games,38,5,28,1
573116090,Afterlight,76231680,USD,0.99,14057,79,4.5,4.5,3.2,4+,Photo & Video,37,5,1,1
325683306,"MyRadar Pro NOAA Weather Radar, Forecasts & Storms",123718656,USD,1.99,13915,205,4.5,5.0,5.1.4,4+,Weather,37,2,8,1
1156192844,Followers Analytics for Instagram - InstaReport,35136512,USD,0.0,13914,493,4.5,4.0,2.3,4+,Social Networking,37,0,8,1
711074743,FOX Sports GO,99644416,USD,0.0,13898,336,3.0,4.0,3.5.0,12+,Sports,37,4,1,0
1104692136,Snakeio,76058624,USD,0.0,13870,713,4.5,4.5,1.9.4,4+,Games,38,2,1,1
775402833,WWE SuperCard,395563008,USD,0.0,13842,157,4.5,4.0,1.7.248694,9+,Games,37,5,9,1
862303071,94%,121039872,USD,0.0,13805,20,4.5,4.0,3.3.2,4+,Games,37,4,9,1
388336485,Ugly Meter™,30441472,USD,0.99,13741,58,3.5,2.5,4.6,9+,Entertainment,43,4,1,1
1025707485,VPN Proxy Master - Unlimited WiFi security VPN,27117568,USD,0.0,13674,0,5.0,0.0,2.4.2,4+,Productivity,37,1,9,1
1058526204,Transformers: Earth Wars,189870080,USD,0.0,13664,274,4.5,4.5,1.43,12+,Games,37,5,10,1
1028362533,Slots - Huuuge Casino: Slot Machines,91105280,USD,0.0,13637,115,4.5,3.0,2.4.151,12+,Games,38,5,12,1
493226494,edjing Mix:DJ turntable to remix and scratch music,144888832,USD,0.0,13580,1208,4.5,4.5,6.6.3,4+,Music,37,5,12,1
423246594,NCAA March Madness Live - Men's College Basketball,113078272,USD,0.0,13572,55,3.0,2.5,7.0.4,4+,Sports,37,5,1,1
376413870,Blackboard Mobile Learn™,51179520,USD,0.0,13567,2625,2.0,1.5,4.1.2,4+,Education,40,5,14,1
841098932,Pokémon TCG Online,629442560,USD,0.0,13559,155,3.5,4.0,2.44.2,9+,Games,24,5,1,1
474764934,N.O.V.A. 3 - Near Orbit Vanguard Alliance,1984958464,USD,6.99,13503,825,4.5,4.5,1.0.5,17+,Games,43,5,12,1
345542655,Star Chart,28616704,USD,0.0,13482,2517,4.5,4.5,3.98,4+,Education,38,5,8,1
1110273623,Free Music - MP3 Streamer & Playlist Manager Pro,10542080,USD,0.0,13443,1229,4.5,4.5,2.3,4+,Music,37,5,1,1
657189652,Clue Period Tracker: Period & Ovulation Tracker,103040000,USD,0.0,13436,39,4.5,4.5,3.5.6,12+,Health & Fitness,37,0,15,1
289084315,Period Tracker Deluxe,40216576,USD,1.99,13350,489,4.5,5.0,9.6,12+,Health & Fitness,38,0,15,1
955286870,CPlus for Craigslist app - mobile classifieds,120219648,USD,0.0,13345,2788,5.0,5.0,3.0.0,17+,Catalogs,37,5,1,1
1040172229,my KONAMI Slots - Vegas Casino Slot Machine Games,218488832,USD,0.0,13345,556,4.5,4.5,1.19.0,12+,Games,38,5,1,1
1083229791,KleptoCats,391116800,USD,0.0,13300,436,4.5,4.5,3.11,4+,Games,37,5,1,1
411430426,Carnivores: Ice Age Pro,198701056,USD,2.99,13258,62,4.5,4.0,1.71,12+,Games,37,5,4,1
502912815,Regal Cinemas,76895232,USD,0.0,13257,109,4.5,5.0,4.3.2,4+,Entertainment,37,0,1,1
791341471,Card Wars - Adventure Time Card Game,1256266752,USD,3.99,13245,1095,3.5,4.0,1.11.0,9+,Games,40,5,6,1
1030804846,Churchill Solitaire - World War Card Game,153385984,USD,0.0,13241,212,4.5,4.5,1.3.0,12+,Games,37,5,1,1
596133590,Nick,38045696,USD,0.0,13237,102,3.5,3.5,3.2,4+,Entertainment,37,4,13,1
619481402,Farm Story 2™,112607232,USD,0.0,13142,77,4.0,4.0,2.6.5,4+,Games,43,5,8,1
445791750,Phoenix HD,92713984,USD,0.0,13106,230,4.5,4.5,2.6.2,9+,Games,37,5,14,1
790203750,Block Сity Wars: game and skin export to minecraft,793368576,USD,0.0,13097,468,4.5,4.5,6.4.5,17+,Games,38,5,1,1
396837225,Cartoon Wars 2: Heroes,42482779,USD,0.99,13049,1180,4.5,4.5,111,12+,Games,43,0,1,1
890740165,Free Piano app by Yokee,73091072,USD,0.0,13016,1818,4.5,5.0,1.0.32,4+,Music,38,5,18,1
1065249424,MSQRD — Live Filters & Face Swap for Video Selfies,198906880,USD,0.0,12982,750,4.5,4.5,1.3.5,9+,Photo & Video,37,5,11,1
1137893020,Artisto – Video and Photo Editor with Art Filters,55673856,USD,0.0,12963,979,5.0,5.0,1.17,4+,Photo & Video,37,3,8,1
558433129,Modern Combat 4: Zero Hour,2169602048,USD,6.99,12916,1213,4.0,4.0,1.2.1,17+,Games,39,5,13,1
835969177,MMX Racing,836734976,USD,0.0,12854,1703,4.5,4.5,1.16.9309,4+,Games,38,4,33,1
381342267,Stack the States®,132377600,USD,2.99,12833,282,4.5,4.5,2.7,4+,Education,40,5,1,1
493145008,Headspace,121170944,USD,0.0,12819,1326,5.0,5.0,2.13.2,4+,Health & Fitness,37,0,1,1
329541503,Geocaching®,108166144,USD,0.0,12811,134,3.5,1.5,5.3,4+,Navigation,37,0,22,1
497936366,Catapult King,210625536,USD,0.99,12799,95,4.5,4.0,1.5.1,9+,Games,40,5,10,1
477537958,Microsoft OneDrive – File & photo cloud storage,207656960,USD,0.0,12797,126,4.0,4.0,8.16,4+,Productivity,37,5,30,1
380090605,Let's create! Pottery HD,175157248,USD,4.99,12787,12,4.5,4.5,1.71,4+,Entertainment,38,5,1,1
997362197,"InShot Video Editor Music, No Crop, Cut",55851008,USD,0.0,12779,3366,5.0,5.0,1.19.1,4+,Photo & Video,37,0,9,1
528919633,"Seeds Pro For Minecraft - Server, Skins, Community",29258752,USD,1.99,12770,18,4.5,3.5,8.0.5,9+,Games,40,5,1,1
703177890,Ever - Capture Your Memories,134952960,USD,0.0,12755,122,4.5,5.0,1.56.0,4+,Productivity,37,5,16,1
486947533,Airport Scanner,226961408,USD,1.99,12701,8,4.5,5.0,1.6.5,12+,Games,37,5,1,1
368494609,QR Reader for iPhone,54776832,USD,0.0,12683,108,4.0,4.0,5.9.2,12+,Utilities,38,0,29,1
491594445,BIG WIN Basketball,66056192,USD,0.0,12669,291,4.0,4.0,4.0.2,12+,Games,40,5,1,1
878577184,SHEIN Shopping - Women's Clothing & Fashion,58648576,USD,0.0,12663,102,4.5,4.5,5.2.7,12+,Shopping,37,5,7,1
723134859,"Ebates: Cash Back, Coupons & Rebate Shopping App",108079104,USD,0.0,12617,99,5.0,4.5,4.15.0,4+,Shopping,37,5,5,1
967351793,Layout from Instagram,9355264,USD,0.0,12616,2397,4.5,4.5,1.2.4,4+,Photo & Video,37,0,27,1
411206394,Scan - QR Code and Barcode Reader,10058752,USD,1.99,12590,126,4.5,3.5,2.7,4+,Utilities,38,4,14,1
836767708,"Wayfair - Shop Furniture, Home Decor, Daily Sales",165069824,USD,0.0,12578,146,5.0,5.0,4.24.2,4+,Shopping,37,5,3,1
1147002179,The Trail,542597120,USD,0.0,12573,372,4.0,4.5,1.6,9+,Games,25,5,1,1
342115564,Hipstamatic,114081792,USD,2.99,12557,6,3.5,5.0,337,4+,Photo & Video,37,5,15,1
533055738,cute icon&wallpaper dressup - CocoPPa,65789952,USD,0.0,12508,810,4.0,4.0,3.2.8,4+,Lifestyle,38,0,10,1
1094138419,Steppy Pants,166893568,USD,0.0,12506,39,4.5,4.5,1.7,9+,Games,37,5,13,1
602716057,CVS,78570496,USD,0.0,12402,338,4.5,4.0,1.13,17+,Shopping,24,5,2,1
681814050,Cut the Rope 2,141105152,USD,1.99,12376,162,4.5,4.5,1.6.9,4+,Games,40,5,10,1
349276209,Doodle Army,17879270,USD,0.99,12354,1428,4.0,4.5,3.1.0,12+,Games,47,0,1,1
396085661,Game Dev Story,191455232,USD,4.99,12331,11,4.5,4.5,2.09,4+,Games,38,5,5,1
1041631196,Football Clicker,172334080,USD,0.0,12326,1412,4.5,5.0,1.6,4+,Games,38,4,1,1
530957470,LiveCollage Pro-Photo Collage Maker&Photo Editor,88022016,USD,1.99,12319,0,4.5,0.0,5.5.0,4+,Photo & Video,37,5,4,1
911130812,SNKRS,79418368,USD,0.0,12298,813,4.5,5.0,2.7.0,4+,Shopping,37,0,1,1
525246631,Fair Food Maker Game - Make Yummy Carnival Treats,111604736,USD,0.0,12251,93,4.0,4.0,2.1,4+,Games,38,5,1,1
541517597,Tiny Wings HD,28681216,USD,2.99,12181,76,4.5,4.5,2.2,4+,Games,24,5,6,1
582486077,"ElfYourself by Office Depot, Inc.",109844480,USD,0.0,12177,184,4.0,3.5,5.2.0,4+,Entertainment,37,5,4,1
433847884,Bike Baron,183046144,USD,1.99,12162,57,4.5,4.5,3.9.1,4+,Games,40,5,1,1
992640880,Rick and Morty: Pocket Mortys,955524096,USD,0.0,12124,961,4.5,4.5,1.10,17+,Games,37,5,10,1
1035696371,CLUE Bingo,232353792,USD,0.0,12123,107,4.5,4.0,2.4.6,12+,Games,38,5,1,1
475772902,Night Sky,596499456,USD,0.0,12122,60,4.5,4.5,4.4.1,4+,Reference,37,5,29,1
720825227,Optical Inquisitor 17+,54808576,USD,0.99,12099,1922,5.0,5.0,1.5,17+,Games,43,5,16,1
471347413,YouNow: Live Stream Video Chat,91615232,USD,0.0,12079,24,3.5,3.5,13.25.0,12+,Social Networking,37,5,7,1
1154436120,Hop,119472128,USD,0.0,12079,7635,4.5,4.5,1.2,4+,Games,40,5,1,1
1066752474,Solitaire Ⓞ,68179968,USD,0.0,12077,1373,5.0,5.0,1.0.228,4+,Games,40,2,15,1
373903654,WIRED Magazine,23879680,USD,0.0,12074,43,2.5,1.5,4.6.7,17+,News,24,5,1,1
804641004,Speak & Translate - Voice and Text Translator,78640128,USD,0.0,12062,537,4.5,4.5,3.5,4+,Productivity,38,5,12,1
511841016,Extreme Fishing 2 Free,54148397,USD,0.0,12002,759,4.5,3.5,1.0.9,4+,Games,43,4,3,1
357467791,AgingBooth,31869952,USD,0.0,11999,233,4.0,4.5,3.9.5,4+,Entertainment,37,4,1,1
986073281,Face Swap App- Funny Face Changer Photo Effects,16275456,USD,0.0,11977,92,4.5,4.0,2.4,4+,Photo & Video,37,5,1,1
651309421,FollowMeter for Instagram - Followers Tracking,11819008,USD,0.0,11976,172,4.5,4.5,3.6,4+,Social Networking,37,0,1,1
991346515,Moments - private albums with friends and family,204382208,USD,0.0,11955,0,4.5,0.0,23.5,4+,Photo & Video,37,0,33,1
473596157,Haunted Halloween Escape,15481361,USD,0.0,11945,11863,4.5,4.5,1.1,12+,Games,47,5,0,1
761363261,Pakka Pets Village - Build a Cute Virtual Pet Town,205014016,USD,0.0,11933,755,4.5,5.0,2.0.11,4+,Games,37,5,1,1
632285588,Dots: A Game About Connecting,112562176,USD,0.0,11900,7,4.0,4.0,2.3.3,4+,Games,37,5,1,1
898040123,Wheel of Fortune: Game Show Word Puzzles,245901312,USD,0.0,11876,52,4.5,4.5,3.25,4+,Games,38,5,1,1
398436747,"Fooducate - Lose Weight, Eat Healthy,Get Motivated",48590848,USD,0.0,11875,73,4.5,4.5,4.981,4+,Health & Fitness,37,0,1,1
1057510303,Hair Color Changer - Styles Salon & Recolor Booth,33427456,USD,0.0,11828,0,4.5,0.0,2.4,4+,Entertainment,37,5,1,1
760645916,Skyline Skaters,155365376,USD,0.0,11785,4,4.5,4.0,2.16.1,4+,Games,38,5,30,1
697927927,Calendars 5 - Daily Planner and Task Manager,76848128,USD,6.99,11768,423,4.5,4.5,5.10.5,4+,Productivity,37,5,9,1
1034630958,Tap Tap Dash,68935680,USD,0.0,11748,1113,4.5,4.5,1.8.4,4+,Games,37,5,15,1
1040093707,Scanner App - PDF Document Scan,96234496,USD,0.0,11696,2109,4.5,4.5,3.0.1,4+,Business,37,5,13,1
334256223,CBS News - Watch Free Live Breaking News,78047232,USD,0.0,11691,44,3.5,4.5,3.5.1,12+,News,37,5,1,1
564874986,Backflip Madness,17436862,USD,0.99,11687,11687,4.5,4.5,1.1.3,9+,Games,43,5,1,1
472937654,Puffin Web Browser,66607104,USD,0.0,11677,121,4.0,4.0,5.2.2,17+,Utilities,37,5,28,1
430152294,Talking Pierre the Parrot for iPad,60313600,USD,0.0,11665,364,4.0,4.5,3.3.1,4+,Entertainment,24,5,13,1
1160056295,Mobile Legends: Bang bang,187168768,USD,0.0,11602,191,4.5,4.5,1.1.85.1581,12+,Games,38,5,9,1
550946484,Word Chums,90521600,USD,3.99,11536,171,5.0,5.0,2.2.3,4+,Games,38,5,1,1
385756768,Dictionary.com Dictionary & Thesaurus Premium,108836864,USD,3.99,11530,81,4.5,4.5,7.1.3,4+,Reference,37,0,1,1
853834250,Peggle Blast,454746112,USD,0.0,11528,1153,4.0,3.5,2.10.0,9+,Games,38,5,6,1
641900855,Tayasui Sketches,198511616,USD,0.0,11505,67,4.5,4.5,16.2,4+,Productivity,37,5,15,1
285994151,:) Sudoku +,6169600,USD,2.99,11447,781,5.0,5.0,5.2.6,4+,Games,40,5,1,1
598581619,Kingdom Rush Frontiers HD,438824960,USD,2.99,11447,726,5.0,5.0,1.9.2,9+,Games,24,5,1,1
443904275,LINE,212208640,USD,0.0,11437,11,3.5,3.0,7.5.0,4+,Social Networking,37,5,17,1
362348516,Amex Mobile,105982976,USD,0.0,11421,57,4.0,2.5,5.21.1,4+,Finance,37,4,1,1
724816878,Lep's World 3,85154816,USD,0.0,11341,582,4.5,4.5,1.8.9,4+,Games,37,5,19,1
1058528141,War Machines: 3D Multiplayer Tank Shooting Game,163080192,USD,0.0,11325,172,5.0,4.5,2.0.6,12+,Games,38,5,9,1
591840203,CARROT To-Do - Talking Task List,7669760,USD,2.99,11322,10,5.0,4.5,5.2.4,9+,Productivity,37,0,1,1
929346489,Dumb Ways to Die 2: The Games,104282112,USD,0.0,11295,270,4.0,4.0,1.7.2,12+,Games,38,5,16,1
697996579,Flick Kick Football Legends,109421568,USD,0.0,11250,105,4.5,4.5,1.9.83,12+,Games,38,5,12,1
481028647,Ice Rage,71846912,USD,1.99,11190,43,4.5,4.5,4.2,4+,Games,37,5,1,1
503190232,Bridge Constructor,145968128,USD,1.99,11187,5,4.5,5.0,5.9,4+,Games,38,5,13,1
588013838,VSCO,98576384,USD,0.0,11174,0,3.5,0.0,27.0,12+,Photo & Video,37,5,16,1
363998953,iAnnotate PDF,44099584,USD,9.99,11156,8,4.5,2.5,3.2.6,4+,Productivity,24,5,1,1
391855805,Spider Solitaire by MobilityWare,39446528,USD,4.99,11154,1862,4.5,5.0,3.2.1,4+,Games,38,5,3,1
888251661,Bee Brilliant,199310336,USD,0.0,11151,152,5.0,5.0,1.42.0,4+,Games,38,5,30,1
458272450,eHarmony™ Dating App - Meet Singles,102413312,USD,0.0,11124,15,2.5,1.0,5.5.1,17+,Social Networking,37,0,1,1
1057961675,MMX Hill Dash — Off-Road Racing,202866688,USD,0.0,11123,202,4.5,4.5,1.0.5761,4+,Games,37,5,1,1
1043589663,Rayman Adventures,437230592,USD,0.0,11100,15,4.0,4.5,2.4.0,4+,Games,37,5,16,1
367287593,PrankDial - #1 Prank Call App,112515072,USD,0.0,11091,415,3.0,4.5,4.1.11,4+,Entertainment,37,0,6,1
549105915,True Skate,66697216,USD,1.99,11065,35,4.0,3.5,1.4.24,4+,Games,37,4,1,1
1009979707,Snapimals: Discover & Snap Amazing & Cute Animals!,221279232,USD,0.0,11060,713,4.5,4.5,1.1.8,4+,Games,37,5,1,1
588358613,"Drawing Desk - Draw, Paint, Doodle & Sketch board",116443136,USD,0.0,11040,644,4.0,4.5,5.4.2,4+,Productivity,37,5,11,1
1058709520,Tap Tycoon - Country vs Country,246093824,USD,0.0,11034,3142,4.5,5.0,2.0.8,4+,Games,37,5,1,1
577423493,"Retrica - Selfie Camera with Filter, Sticker & GIF",112688128,USD,0.0,11021,9,4.5,4.5,4.1.1,4+,Photo & Video,37,0,16,1
341036067,Macy's,107816960,USD,0.0,11013,76,3.5,5.0,5.11.0,4+,Shopping,37,0,1,1
578467798,Fish Out Of Water!,72671232,USD,0.99,11000,935,4.5,4.5,1.2.8,4+,Games,38,5,13,1
586449534,Microsoft PowerPoint,336831488,USD,0.0,10939,92,4.0,4.5,2.1,4+,Productivity,37,5,33,1
943453328,Dictator: Outbreak,148776960,USD,0.0,10871,37,4.0,4.0,1.5.12,12+,Games,37,5,1,1
839210443,Sunken Secrets,180488192,USD,0.0,10849,273,4.5,4.0,1.9.7,4+,Games,38,5,10,1
375295479,Carcassonne,359192576,USD,9.99,10846,91,4.5,4.5,4.28,4+,Games,38,5,2,1
1028623510,PewDiePie: Legend of the Brofist,457690112,USD,4.99,10828,1850,5.0,5.0,1.4.0,12+,Games,38,5,17,1
922793622,Email - Fast & Secure mail for Gmail iCloud Yahoo,142936064,USD,0.0,10778,683,4.5,4.5,1.5.0,4+,Productivity,37,5,1,1
1033282601,Teenage Mutant Ninja Turtles: Legends,920238080,USD,0.0,10771,186,4.5,4.5,1.8.21,9+,Games,37,5,12,1
476312888,"Photo Lab PRO HD: frames for pictures, face sketch",101117952,USD,4.99,10754,5,4.5,5.0,2.8.24,12+,Photo & Video,37,3,10,1
549027629,Super Hexagon,33219584,USD,2.99,10748,1842,4.5,4.5,2.3,4+,Games,38,4,1,1
569185650,Pudding Monsters,35096576,USD,0.99,10703,0,4.5,0.0,1.3.0,4+,Games,40,0,11,1
1051124278,Rival Fire,892332032,USD,0.0,10701,150,4.5,4.5,1.4.0,12+,Games,38,5,7,1
1100331256,Dots & Co: A New Puzzle Adventure,180679680,USD,0.0,10693,19,4.5,4.5,2.9.3,4+,Games,37,5,1,1
436672029,AliExpress Shopping App,133053440,USD,0.0,10647,185,4.0,4.5,5.2.7,12+,Shopping,37,0,18,1
423198259,Chess Pro - with coach,43033600,USD,9.99,10619,893,5.0,5.0,2017.01,4+,Games,37,5,3,1
738897668,VivaVideo - Best Video Editor & Photo Movie Maker,136221696,USD,0.0,10618,267,4.5,4.5,5.8.2,4+,Photo & Video,37,0,19,1
602065803,Cover Orange 2: Journey,84934656,USD,0.99,10604,3488,4.5,4.5,1.2,4+,Games,43,5,11,1
1087489471,War Tortoise,407088128,USD,0.0,10555,1026,5.0,5.0,1.2.1,12+,Games,40,5,1,1
591626572,Endless Alphabet,76482560,USD,8.99,10534,20,5.0,5.0,3.4,4+,Education,37,4,1,1
606800657,RPG AVABEL ONLINE,135512064,USD,0.0,10514,86,4.5,5.0,4.0.45,9+,Games,38,5,2,1
621574163,Prime Photos from Amazon,76257280,USD,0.0,10511,2201,4.0,4.5,4.5.1,4+,Photo & Video,37,5,9,1
447791438,Sprinkle: Water splashing fire fighting fun!,34025472,USD,1.99,10509,712,4.5,4.0,1.7.2,4+,Games,43,5,1,1
598241102,Clear Vision 2,34690172,USD,0.99,10477,10477,4.5,4.5,1.0,17+,Games,43,0,1,1
325462190,PGA Championship 2016 – Baltusrol Golf Club,64147456,USD,0.0,10472,58,3.5,2.0,8.1,17+,Sports,37,5,1,0
404086528,LEGO Harry Potter: Years 1-4,475697678,USD,4.99,10463,5018,4.0,4.0,2.4,9+,Games,43,5,1,1
377342622,360 Panorama,7954432,USD,1.99,10463,193,4.5,3.5,4.4.3,4+,Photo & Video,38,5,3,1
443646748,"Fitness Buddy+ Gym Workout Exercise, Home Trainer",224675840,USD,2.99,10386,58,4.5,4.0,5.86,4+,Health & Fitness,37,0,31,1
390422167,Catan HD,812010496,USD,1.99,10382,281,4.0,3.5,4.6.2,4+,Games,24,5,6,1
1092463295,Monster Super League,163893248,USD,0.0,10368,110,5.0,4.5,1.3.7,12+,Games,38,5,11,1
439852091,5K Runner: 0 to 5K Run Trainer. Couch potato to 5K,84338688,USD,4.99,10368,1051,5.0,5.0,7.3,4+,Health & Fitness,37,5,31,1