-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackages
4216 lines (3992 loc) · 191 KB
/
Packages
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
Package: com.sbhnkhrmn.repoico
Name: SBHNKHRMN
Version: 0.1
Essential: Yes
Architecture: iphoneos-arm
Description: SBHNKHRMN Repo Simgeleri
Depiction: https://sbhkhrmn.github/depictions/Repoico/index.html
Homepage: https://sbhnkhrmn.github.io/
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Tweaks
Filename: ./debs/com.sbhnkhrmn.repoico_0.1_iphoneos-arm.deb
Size: 19032
MD5sum: 89362da1343d2b1db7bc9dd42073fdbe
Sha1: 11dee9ada20e8f329104b6b4c523fd240edca0eb
Sha256: 86a28900dfc54b816dd13612b19c2147644dff07008b8b8e8ec0228d1740c0d1
Package: com.sbhnkhrmn.1998cam.pro
Name: 1998 Cam : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of 1998 Cam Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.1998cam.pro/index.html
Icon:https://sbhnkhrmn.github.io/ikonlar/AppleStore_1998Cam.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.1998cam.pro/index.php
Homepage : https://apps.apple.com/app/id1450480287
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.6.9
Filename: ./debs/com.sbhnkhrmn.1998cam.pro_1.6.9_iphoneos-arm.deb
Size: 4478
MD5sum: d119425a822a66f09d9216a9abe33b00
Sha1: 91475e043c69c418fe9d5cac97d32afc5d8342b9
Sha256: 174e60ffdfce468aa46bdcb77335df845cede7866d796b2d3906a5776b3e6710
Package: com.sbhnkhrmn.officesuite.pro
Name: Office Suite : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Office Suite Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.officesuite.pro/index.html
Icon:https://sbhnkhrmn.github.io/ikonlar/AppleStore_OfficeSuite.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.officesuite.pro/index.php
Homepage : https://apps.apple.com/us/app/officesuite-pdf-editor/id924005506
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 7.7
Filename: ./debs/com.sbhnkhrmn.officesuite.pro_7.7_iphoneos-arm.deb
Size: 5318
MD5sum: f5575662b661a5ddcca3e1924ec15eb0
Sha1: 5731b957255a0b47c33ee319c89c216db0938968
Sha256: d6c267f6fe59fd3b1912712430927f54dd307db7751ecb5ae276b1096a314eef
Package: com.sbhnkhrmn.officesuite.pro
Name: Office Suite : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Office Suite Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.officesuite.pro/index.html
Icon:https://sbhnkhrmn.github.io/ikonlar/AppleStore_OfficeSuite.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.officesuite.pro/index.php
Homepage : https://apps.apple.com/us/app/officesuite-pdf-editor/id924005506
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 7.7.1
Filename: ./debs/com.sbhnkhrmn.officesuite.pro_7.7.1_iphoneos-arm.deb
Size: 9938
MD5sum: 245ea9eabdedbd73f951baf912ec0c84
Sha1: 327590f83c329c93ce24dfc78119abd31457d60d
Sha256: 082655978f7119d7063b93c2cba68dba8c7a07e860434e5a8fc1bc405b82b0bb
Package: com.sbhnkhrmn.accuweather.pro
Name: AccuWeather : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of Accuweather application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.accuweather.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_AccuWeather.png
Sileodepiction:https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.accuweather.pro/index.php
Homepage : https://apps.apple.com/app/id300048137
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 13.0.5
Filename: ./debs/com.sbhnkhrmn.accuweather.pro_13.0.5_iphoneos-arm.deb
Size: 4918
MD5sum: c0db194e6f46f0813a098a9f9fdf9bc0
Sha1: ff1dff584c20fc2f32a94562aca5b5d9006fc14e
Sha256: be991722388e7f13cc8967a0f6e2299415fa613f39a72fc2ea33c75dd057b68e
Package: com.sbhnkhrmn.addmusic.pro
Name: Add Music : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Add Music Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.addmusic.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_AddMusic.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.addmusic.pro/index.php
Homepage : https://apps.apple.com/app/id947792997
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 6.1
Filename: ./debs/com.sbhnkhrmn.addmusic.pro_6.1-1_iphoneos-arm.deb
Size: 4774
MD5sum: f6573313d785d847fee84be69145576c
Sha1: 18839aeb4540f9912db2baa11a639805b7e0e956
Sha256: 6fbff30f9b37eafafca49ac51776758a202121eb4d7689ab3a1484a865defd63
Package: com.sbhnkhrmn.adguard.pro
Name: AdGuard : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of AdGuard Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.adguard.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_AdGuardFree.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.adguard.pro/index.php
Homepage : https://apps.apple.com/app/id1047223162
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 3.1.4
Filename: ./debs/com.sbhnkhrmn.adguard.pro_3.1.4-1_iphoneos-arm.deb
Size: 4510
MD5sum: 27724066b46f093cfb15ae0c6c4877a5
Sha1: 0b03a1d9277306dffcacf5221888b430fdf419aa
Sha256: 5386cf34244001e68107df8acafc8d26c029178cb757d2781f11d605c442e78a
Package: com.sbhnkhrmn.april.pro
Name: April : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of April application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.april.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_April.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.april.pro/index.php
Homepage : https://apps.apple.com/app/id1121943475
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.8.0
Filename: ./debs/com.sbhnkhrmn.april.pro_2.8.0_iphoneos-arm.deb
Size: 4878
MD5sum: ffce427c4e07c1d41764e7ec5366854d
Sha1: d82d9843d83a20d10718c34686c9d276d60c278f
Sha256: 88f4f2ed2f1187b070bfa25ecc2623c4182fce91b61c0986708405450cc1bdee
Package: com.sbhnkhrmn.assembly.pro
Name: Assembly : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Assembly Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.assembly.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Assembly.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.assembly.pro/index.php
Homepage : https://apps.apple.com/app/id1024210402
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.3
Filename: ./debs/com.sbhnkhrmn.assembly.pro_2.3_iphoneos-arm.deb
Size: 4450
MD5sum: 0eba6b4906a0b98dc9aaf1871cf91984
Sha1: 90762453775be58cb894d053b13be9b7bc785ae4
Sha256: 25d0af4f5aa807c754774b181ce1f1ef588945ec497e39c101ddb7adc38573d2
Package: com.sbhnkhrmn.audiomack.pro
Name: AudioMack : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of AudioMack Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.audiomack.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_AudioMack.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.audiomack.pro/index.php
Homepage : https://apps.apple.com/app/id921765888
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 5.3.1
Filename: ./debs/com.sbhnkhrmn.audiomack.pro_5.3.1_iphoneos-arm.deb
Size: 4790
MD5sum: dbb98a0ce327ed5112e5d76601c22239
Sha1: ba089c0126b4ee1c6c1536f384a13e38200b860a
Sha256: e38d290755222ef8430c8c6f98a86c93e98cce622315bbba120304bdf433c1b6
Package: com.sbhnkhrmn.bazaart.pro
Name: Bazaart : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Bazaart Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.bazaart.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Bazaart.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.bazaart.pro/index.php
Homepage : https://apps.apple.com/us/app/bazaart-photo-editor-design/id515094775
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 6.8.0
Filename: ./debs/com.sbhnkhrmn.bazaart.pro_6.8.0_iphoneos-arm.deb
Size: 4256
MD5sum: 5406e4ed2c3731434b5f8e3ff8ca7d3f
Sha1: 8540607798276f4e28d633c638f7e22ad821639b
Sha256: 7d72cdb1d1498ab7b65c02beee508535e8ce98ca4e1e1d48afba7dfb37865dcb
Package: com.sbhnkhrmn.bear.pro
Name: Bear : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Bear Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.bear.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Bear.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.bear.pro/index.php
Homepage : https://apps.apple.com/app/id1016366447
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.7.10
Filename: ./debs/com.sbhnkhrmn.bear.pro_1.7.10_iphoneos-arm.deb
Size: 4482
MD5sum: 672fef75ce8cd6907bff50f56f34ba22
Sha1: c7b7fd4aa687b29695772440caad78e9dcf4fff8
Sha256: 5a4236f581ace3002d4cb02672a6c2babd937537708456e02b03bf2765182b32
Package: com.sbhnkhrmn.boom.pro
Name: Boom : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Boom Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.boom.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Boom.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.boom.pro/index.php
Homepage : https://apps.apple.com/app/id1016366447
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.0.8
Filename: ./debs/com.sbhnkhrmn.boom.pro_2.0.8_iphoneos-arm.deb
Size: 4078
MD5sum: a7e80ef1a19146b930fa3e51bf249686
Sha1: e8f6fc0631caef87e37324bd79c967f73c010d17
Sha256: b876f3a490d5aee79696a2679102aaed9f6e19b900e65058a42b767f3a469e92
Package: com.sbhnkhrmn.calm.pro
Name: Calm : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of Calm application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.calm.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Calm.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.calm.pro/index.php
Homepage : https://apps.apple.com/us/app/calm/id571800810
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 4.22
Filename: ./debs/com.sbhnkhrmn.calm.pro_4.22_iphoneos-arm.deb
Size: 4058
MD5sum: 7ac674dc858245be3c3ebd432d741ff7
Sha1: a7b8028329b7f9ebdd580ed7f108e23b7befd162
Sha256: 4fcc488fecdc15b19db83caeb3dc2d08f2bf700f2a5e6c3332b0dec7db028dec
Package: com.sbhnkhrmn.cheetahkey.pro
Name: AR Emoji Custom Keyboard : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of CheetahKey application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.cheetahkey.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Cheetahkey.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.cheetahkey.pro/index.php
Homepage : https://apps.apple.com/us/app/ar-emoji-custom-keyboard/id1249925656
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.15.2
Filename: ./debs/com.sbhnkhrmn.cheetahkey.pro_1.15.2_iphoneos-arm.deb
Size: 4082
MD5sum: c4bf1f286c84de2c71de47661a551f1a
Sha1: 2644715cefb3edefad057c0ec3cf62b217abfe47
Sha256: 84c8bce73efc47441599ebf0e827cb3e3048ae7fcae6c1e2620739ad77f19369
Package: com.sbhnkhrmn.clarity.pro
Name: Clarity : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of Clarity application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.clarity.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Clarity.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.clarity.pro/index.php
Homepage : https://apps.apple.com/us/app/clarity-wallpaper/id1233738041
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 5.0.1
Filename: ./debs/com.sbhnkhrmn.clarity.pro_5.0.1_iphoneos-arm.deb
Size: 4934
MD5sum: 36c11a63d0bb336d483b916fd7cc8a59
Sha1: be3902ce9bae272aaf8d489f4f9ae1886b2d523b
Sha256: 483343c575140a5baa43d942916949d96cd2e735387e388253b28ba3fc37398f
Package: com.sbhnkhrmn.coloringbookforme.pro
Name: Coloring Book for Me : Pro
Depends: mobilesubstrate
Architecture: iphoneos-arm
Description: Activates Premium features of Coloring Book for Me Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.coloringbookforme.pro/index.html
Icon:https://sbhnkhrmn.github.io/ikonlar/AppleStore_ColoringBookforme.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.coloringbookforme.pro/index.php
Homepage : https://apps.apple.com/app/id1093108529
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 4.24.3
Filename: ./debs/com.sbhnkhrmn.coloringbookforme.pro_4.24.3_iphoneos-arm.deb
Size: 5808
MD5sum: c1fb8dac1e632f5e3b0cbd34055c7efe
Sha1: 36b49a9dba98999865921d36ab7b6ed4d73d01f0
Sha256: 82cdbfcf3b047048d0d92e7a93a6ca94eaf94fe22cd996d53f30c9ac499eee2f
Package: com.sbhnkhrmn.ddvpn.pro
Name: DD Vpn : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of DD Vpn application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.ddvpn.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_DDVpn.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.ddvpn.pro/index.php
Homepage : https://apps.apple.com/tr/app/ddvpn-fast-unlimited-vpn/id1455483945?l=tr
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.0.3
Filename: ./debs/com.sbhnkhrmn.ddvpn.pro_2.0.3_iphoneos-arm.deb
Size: 4492
MD5sum: 804883df1c99513e67491ec1c72cffee
Sha1: 999dc1009f492ee8a57743815899c7f88f6fe700
Sha256: d2b6bfbd750a3a6acd8362c82d164a93c265af8c7d37217aeeeb9670ad1bfcdd
Package: com.sbhnkhrmn.documents.pro
Name: Documents : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Documents Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.documents.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Documents.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.documents.pro/index.php
Homepage : https://apps.apple.com/app/id364901807
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 7.1.3
Filename: ./debs/com.sbhnkhrmn.documents.pro_7.1.3_iphoneos-arm.deb
Size: 4782
MD5sum: 50395c431b051ea6674668d44af28853
Sha1: 29ab4dfa7c17a94bd39769784974ac5edf33d5c2
Sha256: b2648dfbcfe9405c619f7e39a1ec41fc678db19778ab76fd604b6695ec58e0d7
Package: com.sbhnkhrmn.dualingo.pro
Name: Dualingo : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Dualingo Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.dualingo.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Dualingo.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.dualingo.pro/index.php
Homepage : https://apps.apple.com/app//id570060128
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 6.57.0
Filename: ./debs/com.sbhnkhrmn.dualingo.pro_6.57.0_iphoneos-arm.deb
Size: 5634
MD5sum: 121e1c501d47557af67dc16b3b43115b
Sha1: 17dbd398c6767f9931318f96897f8681cb20e5e5
Sha256: 3c5f5558bfb88c8ebda5d69a1600fc03854aeb0d478ab173bc034f12819c12fc
Package: com.sbhnkhrmn.facetune2.pro
Name: Facetune 2 : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Facetune 2 Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.facetune2.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Facetune2.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.facetune2.pro/index.php
Homepage : https://apps.apple.com/app/id1149994032
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.27
Filename: ./debs/com.sbhnkhrmn.facetune2.pro_1.27_iphoneos-arm.deb
Size: 4046
MD5sum: 4b1b2c82d84d6421871bf3ca699ea70f
Sha1: d45dafa222276c8da686b45e58d30d1d6d5dcd56
Sha256: a3317b672b1d602232cc4a29f2efea7b4c5e8f347afec5c6d7d183b763d18dcd
Package: com.sbhnkhrmn.firstvpn.pro
Name: First Vpn : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of First Vpn Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.firstvpn.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_FirstVpn.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.firstvpn.pro/index.php
Homepage : https://apps.apple.com/app/id1403281172
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.3.4
Filename: ./debs/com.sbhnkhrmn.firstvpn.pro_2.3.4_iphoneos-arm.deb
Size: 4916
MD5sum: 2b262f328b89c3a4ab08260750762be3
Sha1: 29c098471b93f3e16c86b2af1cb0b6e3cb47c977
Sha256: 9276d8961124fe0ce0d727d8977434e61d9bef7e8159ad6fd93c149910243319
Package: com.sbhnkhrmn.focos.pro
Name: Focos : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Focos Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.focos.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Focos.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.focos.pro/index.php
Homepage : https://apps.apple.com/app/id1274938524
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.2
Filename: ./debs/com.sbhnkhrmn.focos.pro_2.2_iphoneos-arm.deb
Size: 4566
MD5sum: 5b12d29c827ccfdb22cfbcd41c2dba54
Sha1: 3e25f7a501cacc07595a09745d72515c7764fd13
Sha256: 72f9af028823943324623028339169db6198a9306ddfd4a3d5a75ddce473a2dc
Package: com.sbhnkhrmn.habitat.pro
Name: Habitat : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of Habitat application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.habitat.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Habitat.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.habitat.pro/index.php
Homepage : https://apps.apple.com/app/id594111557
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 4.6
Filename: ./debs/com.sbhnkhrmn.habitat.pro_4.6_iphoneos-arm.deb
Size: 4020
MD5sum: 665aefb49f6d6a9bd696f1071b7c6240
Sha1: ae09299853ecdb7b9b3f3d8022c00474ac2a7944
Sha256: ccf0b8ee5520a1b417f83a3c76b078c1bf02a1df6bb373c3d47ad28fed8d149f
Package: com.sbhnkhrmn.hotspotvpn.pro
Name: HotSpot Vpn : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of HotSpot Vpn application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.hotspotvpn.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_HotspotVpn.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.hotspotvpn.pro/index.php
Homepage : https://apps.apple.com/app/id1465675505
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.2.8
Filename: ./debs/com.sbhnkhrmn.hotspotvpn.pro_1.2.8_iphoneos-arm.deb
Size: 4852
MD5sum: 23893efeb8cc7f818eaa8a5f3b80f490
Sha1: 7810e33607691a3dfc2bd6f30378d6da468bfc17
Sha256: 2cf2b771c5fac773be48ed4ea44ddc1be9269a7daeb108eb96708e8261f22edb
Package: com.sbhnkhrmn.infuse6.pro
Name: Infuse : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Infuse 6 Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.infuse6.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Infuse6.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.infuse6.pro/index.php
Homepage : https://apps.apple.com/app/id1136220934
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 6.3.3
Filename: ./debs/com.sbhnkhrmn.infuse6.pro_6.3.3_iphoneos-arm.deb
Size: 4632
MD5sum: 785546d39d3dc37f1dae1248de2cb291
Sha1: 85291ffa3cc0619316cdcf972bfeae44093cc6ab
Sha256: 5ff4434dad66076d03a7eb7fb15f76396eb3080c427427f8868375a82fbad9ec
Package: com.sbhnkhrmn.inmessage.pro
Name: InMessage : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of InMessage Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.inmessage.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_InMessage.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.inmessage.pro/index.php
Homepage : https://apps.apple.com/app/id555260595
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 3.3.5
Filename: ./debs/com.sbhnkhrmn.inmessage.pro_3.3.5_iphoneos-arm.deb
Size: 6202
MD5sum: b7e646cd071fceb00baded209a42d6ed
Sha1: fef811a190157223f6e4e3eb83978d7863717145
Sha256: bc0c80e43673161cad3e82bc64ab943ea02dad92b48d70af9ada7de601600e32
Package: com.sbhnkhrmn.inshot.pro
Name: InShot : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of InShot Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.inshot.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_InShot.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.inshot.pro/index.php
Homepage : https://apps.apple.com/app/id997362197
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.42.1
Filename: ./debs/com.sbhnkhrmn.inshot.pro_1.42.1_iphoneos-arm.deb
Size: 4552
MD5sum: 4c7b2a2ddcfe520ec4df2fdfcc36d456
Sha1: f24a3d8fcc2e2a0409eab6c401d4ca5db354a0d0
Sha256: da6316124d7997125ee0865c420b7fa183e5ac85e4d568065310b8b7d086351c
Package: com.sbhnkhrmn.mackolik.pro
Name: Mackolik : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Mackolik Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.mackolik.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Mackolik.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.mackolik.pro/index.php
Homepage : https://apps.apple.com/app/id398157427
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 3.4.7
Filename: ./debs/com.sbhnkhrmn.mackolik.pro_3.4.7_iphoneos-arm.deb
Size: 4886
MD5sum: 46cbb2a464d17a2e0ad1fb31049c475f
Sha1: 12872bf450a0829c5ab45ecbf3551ef282571df5
Sha256: 272561ab9d422e2209b0304b0c1bae2506cdffd805691d68a8765403b2bf0956
Package: com.sbhnkhrmn.magi+.pro
Name: Magi+ : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Bazaart Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.magi+.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Magi+.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.magi+.pro/index.php
Homepage : https://apps.apple.com/app/id1454351172
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.2.0
Filename: ./debs/com.sbhnkhrmn.magi+.pro_2.2.0_iphoneos-arm.deb
Size: 4934
MD5sum: 829fc0092434ab58c79a320a1c871393
Sha1: 53e16f14758924eb432259d29e4f68d5f92955a7
Sha256: 85ea3ab4052348d063e69ded89bea8ed5f1a4bff85ffb275a27cfe84ac1f36ae
Package: com.sbhnkhrmn.memrise.pro
Name: Memrise : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of MemRise Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.memrise.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Memrise.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.memrise.pro/index.php
Homepage : https://apps.apple.com/app/id635966718
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 3.1.25
Filename: ./debs/com.sbhnkhrmn.memrise.pro_3.1.25_iphoneos-arm.deb
Size: 5472
MD5sum: 55e4ab2887341fe42bb1176bc415d281
Sha1: b6f4a42e0f0f4a02c49ef4ddf3dfe5dc3f4a107e
Sha256: aeac7da719fbb27c51c8e0bf60076ac3bb60eb654afc95a872c0f98c0a1061b6
Package: com.sbhnkhrmn.peachy.pro
Name: Peachy : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of Peachy application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.peachy.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Peachy.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.peachy.pro/index.php
Homepage : https://apps.apple.com/app/id1390423469
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.12.0
Filename: ./debs/com.sbhnkhrmn.peachy.pro_1.12.0_iphoneos-arm.deb
Size: 4568
MD5sum: 76b77d00866a8f50f87d7399cade86c9
Sha1: a9deae7c96bd7c939859716da8e0658984be2704
Sha256: 5254f41910e45b443aa0d94ee211407c54a0a4cdfafbc46c130d45c2a3faa922
Package: com.sbhnkhrmn.photovault.pro
Name: Photo Vault : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Photo Vault Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.photovault.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_PhotoVault.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.photovault.pro/index.php
Homepage : https://apps.apple.com/app/id417571834
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 10.5
Filename: ./debs/com.sbhnkhrmn.photovault.pro_10.5_iphoneos-arm.deb
Size: 4510
MD5sum: f59a171373e72008149490a8b2551c0d
Sha1: 49ab0bc0a17432de10a61cf8e195656c365da3c5
Sha256: 309d80b9772e1570464c55ac168eaf64c2bd21551e1cd1df9dc783ce3b507a7a
Package: com.sbhnkhrmn.photofox.pro
Name: Photofox : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Photofox application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.photofox.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Photofox.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.photofox.pro/index.php
Homepage : https://apps.apple.com/tr/app/enlight-photofox-sanat-devi/id1191337894?l=tr
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.2.4
Filename: ./debs/com.sbhnkhrmn.photofox.pro_2.2.4_iphoneos-arm.deb
Size: 4270
MD5sum: baf99c9308eade6769cd0395a6e1f0db
Sha1: 16b643ad67dfe6584741912d48fbc5cb744cc968
Sha256: 6cc51c28f22863d8ee5147af328b38e7c834b5fb7745da7b754c541e5358be6b
Package: com.sbhnkhrmn.psexpress.pro
Name: PS Express : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of PS Express Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.psexpress.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_PsExpress.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.psexpress.pro/index.php
Homepage : https://apps.apple.com/app/id331975235
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 20.10.0
Filename: ./debs/com.sbhnkhrmn.psexpress.pro_20.10.0_iphoneos-arm.deb
Size: 5660
MD5sum: 3c18e5ee8275548933d6f9662d858c15
Sha1: 3f70528fc0f19fc7ee8b2dc5a18697dfe2ada156
Sha256: 962a36af21147a5c3b29c51141dba10a1e64ca204b6536b4bf0fa633402b3984
Package: com.sbhnkhrmn.qrscanner.pro
Name: Qr Scanner : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Qr Scanner Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.qrscanner.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_QrScanner.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.qrscanner.pro/index.php
Homepage : https://apps.apple.com/app/id1034292767
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.2
Filename: ./debs/com.sbhnkhrmn.qrscanner.pro_1.2_iphoneos-arm.deb
Size: 6336
MD5sum: 4fb36ddd23e628e2b3b8b482cb2cc40f
Sha1: a1bf94ee6fb42412a01219898b67bf2fab40f85e
Sha256: b7c15f99b90411a0c69ff3ea00167d29e9ef1cdeefe735510a398102faf8a893
Package: com.sbhnkhrmn.quickshot.pro
Name: Quickshot : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Quickshot application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.quickshot.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_QuickShot.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.quickshot.pro/index.php
Homepage : https://apps.apple.com/tr/app/enlight-quickshot/id1254875992?l=tr
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.5.6
Filename: ./debs/com.sbhnkhrmn.quickshot.pro_1.5.6_iphoneos-arm.deb
Size: 4072
MD5sum: 7bd4076b3cda3434234bb30d38abe432
Sha1: d79213a355e78a6b71691dcc032e58576044d569
Sha256: ed77a2eee705a6702bbcfb270e9e7e0ffa431eb615148e5bb6ef096f10f24e52
Package: com.sbhnkhrmn.ripl.pro
Name: Ripl : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Ripl Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.ripl.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Ripl.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.ripl.pro/index.php
Homepage : https://apps.apple.com/app/id1030906799
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 4.0.20
Filename: ./debs/com.sbhnkhrmn.ripl.pro_4.0.20_iphoneos-arm.deb
Size: 5136
MD5sum: b04e7159a38ab93bf2d58babddd03878
Sha1: b7ef71c3144bcab07900a2de4ccc67c141c1254e
Sha256: 503abde2cd01370db2bf8a8e8dd6ce8fb9e3bef820c062538e8d83c8083f00fa
Package: com.sbhnkhrmn.scannertranslator.pro
Name: ScannerTranslator : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Scanner Translator Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.scannertranslator.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_ScannerTranslator.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.scannertranslator.pro/index.php
Homepage : https://apps.apple.com/app/id845139175
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 5.0
Filename: ./debs/com.sbhnkhrmn.scannertranslator.pro_5.0_iphoneos-arm.deb
Size: 7368
MD5sum: d7058f7b62bc4c65e604e77833b81cc4
Sha1: 3fc0a1029e4389fba00910ce53091f8b421ac195
Sha256: 0be3d9bbb3aac8fd0ed67a80d40b25833015c76a05f152944b319160472a441a
Package: com.sbhnkhrmn.skecthes.pro
Name: Skecthes : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Skecthes Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.skecthes.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Skecthes.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.skecthes.pro/index.php
Homepage : https://apps.apple.com/app/id641900855
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 23.8
Filename: ./debs/com.sbhnkhrmn.skecthes.pro_23.8_iphoneos-arm.deb
Size: 4030
MD5sum: b3f649ac8eba464f9b393d86933199f1
Sha1: b1d992f70018b3923cd12eb7071dc0d5e79e4952
Sha256: 0d41c6ee5394b36cf4c7700c85273879d8390a3bc2d1d90b3f606fca0b152a0b
Package: com.sbhnkhrmn.starvpn.pro
Name: Star Vpn : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Star Vpn Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.starvpn.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_StarVpn.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.starvpn.pro/index.php
Homepage : https://apps.apple.com/app/id1115864690
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 3.1.0
Filename: ./debs/com.sbhnkhrmn.starvpn.pro_3.1.0_iphoneos-arm.deb
Size: 5172
MD5sum: 9bc8a80d9fa77b4b499f21a1c996cbd6
Sha1: a0d14f443bbfd62467f86bd4d1bddcb181370190
Sha256: a7d336b3193f8854b60af071f7937be43ee19de73b6642f50debdebe299bcbbf
Package: com.sbhnkhrmn.torvpn.pro
Name: TOR Vpn : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of TOR Vpn Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.torvpn.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_TorVpn.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.torvpn.pro/index.php
Homepage : https://apps.apple.com/app/id1227411543
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.1.1
Filename: ./debs/com.sbhnkhrmn.torvpn.pro_2.1.1_iphoneos-arm.deb
Size: 5736
MD5sum: c2aaadb93baf7c1e7fd4db86c6f15534
Sha1: c27e94fc6c458698ea706f4d343312eeeed039d7
Sha256: bdcd775f40d7b4e3b08bf790a0058b0d56ad45101119bb6ae085effd5c40dbfc
Package: com.sbhnkhrmn.translatephoto.pro
Name: Translate Photo : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Translate Photo Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.translatephoto.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_TranslatePhoto.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.translatephoto.pro/index.php
Homepage : https://apps.apple.com/app/id896187714
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 4.5
Filename: ./debs/com.sbhnkhrmn.translatephoto.pro_4.5_iphoneos-arm.deb
Size: 6364
MD5sum: 8d615233a850e6a860ae6e2959c4b9d2
Sha1: 4b8155cad74fd227ca50bd6a1b77d6ec460f3128
Sha256: 0ed939a4c6992e5515b61b86e70b556ebe8d200872cade027a4aed6501655e8d
Package: com.sbhnkhrmn.turbovpn.pro
Name: Turbo Vpn : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Turbo Vpn Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.turbovpn.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_TurboVpn.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.turbovpn.pro/index.php
Homepage : https://apps.apple.com/app/id1365309175
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 2.4.6
Filename: ./debs/com.sbhnkhrmn.turbovpn.pro_2.4.6_iphoneos-arm.deb
Size: 4774
MD5sum: f50b5bf7517215aba794af195c9daea8
Sha1: e34d223fdc181b5c6062a97360aa4ad118101eff
Sha256: 43be48fb513a9aa1d762e7b493a9caf3cb16932243c2f44d83292633879eac1a
Package: com.sbhnkhrmn.vcus.pro
Name: Vcus : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Vcus application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vcus.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Vcus.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vcus.pro/index.php
Homepage : https://apps.apple.com/app/id1445969821
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.2.020
Filename: ./debs/com.sbhnkhrmn.vcus.pro_1.2.020_iphoneos-arm.deb
Size: 5092
MD5sum: 3b4fd5af5b6d96241931ec16f791a0fa
Sha1: 889aeb1fffb889b01c1443375b72c31595ce7f22
Sha256: c93e6887028b61d281f7f7a76ab3aa909dd6418899b7e0dbf99831729829941f
Package: com.sbhnkhrmn.videoshop.pro
Name: Video Shop : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Video Shop Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.videoshop.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_VideoShop.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.videoshop.pro/index.php
Homepage : https://apps.apple.com/app/id615563599
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 7.7.0.2
Filename: ./debs/com.sbhnkhrmn.videoshop.pro_7.7.0.2_iphoneos-arm.deb
Size: 4550
MD5sum: e15d42b46e3173fcebb55ff3e98f34b3
Sha1: caf08e76db78f3f2d6b9189fb48348970b5baf17
Sha256: 7958fe6c3584852a22edb6188aae7522f8af0763826c4ec7a7f8c2d262ef2362
Package: com.sbhnkhrmn.videoleap.pro
Name: Videoleap : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Videoleap application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.videoleap.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_Videoleap.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.videoleap.pro/index.php
Homepage : https://apps.apple.com/app/id1255135442
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.12.5
Filename: ./debs/com.sbhnkhrmn.videoleap.pro_1.12.5_iphoneos-arm.deb
Size: 4212
MD5sum: 70f564fe8e8604455b303f47c4445698
Sha1: a7f9821b7663dfc3d53897e7058361be50bb2026
Sha256: 79778d55d363ca5a00c319f08d417bdccdf3a6e6333ccdb2af3aeb03c748f3a7
Package: com.sbhnkhrmn.vivavideo.pro
Name: VivaVideo : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of vivaVideo Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vivavideo.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_VivaVideo.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vivavideo.pro/index.php
Homepage : https://apps.apple.com/app/id738897668
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 7.17.3
Filename: ./debs/com.sbhnkhrmn.vivavideo.pro_7.17.3_iphoneos-arm.deb
Size: 4208
MD5sum: 3ebafa101c5655239de57c40b264a513
Sha1: 3b932a0333fda3828f7687ef312c299f3c6aa0ef
Sha256: f58ee2cfedb4f86bf4a3133bab1a966cd187e54751eea5c6b1bebd7467b0fc1e
Package: com.sbhnkhrmn.vpnalpha.pro
Name: Vpn Alpha : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Vpn Alpha application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnalpha.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_VpnAlpha.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnalpha.pro/index.php
Homepage : https://apps.apple.com/app/id1234979591
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.6
Filename: ./debs/com.sbhnkhrmn.vpnalpha.pro_1.6_iphoneos-arm.deb
Size: 4218
MD5sum: d75ea06c9afea7bcdee4e79d5dc6c0e6
Sha1: c71c650c0f3bd828f1513945bcd2777e6894cfc5
Sha256: ebc0e19b61d938692bf9241688f7030ec3a89f9d00590a54c9642f47f363c8fe
Package: com.sbhnkhrmn.vpnbubble.pro
Name: VPN Bubble : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of VPN Bubble application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnbubble.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_VpnBubble.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnbubble.pro/index.php
Homepage : https://apps.apple.com/app/id1477034811
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.2
Filename: ./debs/com.sbhnkhrmn.vpnbubble.pro_1.2_iphoneos-arm.deb
Size: 4564
MD5sum: 21f905a368da7b8f15232cf858486690
Sha1: 053634851edac3a06567c7da6875ed1fe5e1413b
Sha256: 8cc57a9bb32346a26e909886b97aa7a1b2b2bd8fd47c1dd580a0c83dd7a10f0e
Package: com.sbhnkhrmn.vpnintouch.pro
Name: VPN in Touch : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Platinum features of VPNinTouch application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnintouch.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_VpnTouch.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnintouch.pro/index.php
Homepage : https://apps.apple.com/app/id464241430
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 5.4.3
Filename: ./debs/com.sbhnkhrmn.vpnintouch.pro_5.4.3_iphoneos-arm.deb
Size: 4598
MD5sum: 99a86fc1e97ba9d27bfbd110a480e596
Sha1: 53e53506e37d29d563dd334526522343481c51d4
Sha256: 6bcc72bddde45a322576610c922686b766d21aff7766a060b83519cef1bdc298
Package: com.sbhnkhrmn.vpnprime.pro
Name: VPN Prime : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of VPNPrime application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnprime.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_VpnPrime.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnprime.pro/index.php
Homepage : https://apps.apple.com/app/id1248773446
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 1.7.0
Filename: ./debs/com.sbhnkhrmn.vpnprime.pro_1.7.0_iphoneos-arm.deb
Size: 4734
MD5sum: f63087cb7db639c45a42ed0d44f11b88
Sha1: a1c5634ee5a27a951b169d428c94d54d7692d9c3
Sha256: f25f416b97f5454e71d2b36082c8f660502b9251dc6f5a2c0621d52a729502d0
Package: com.sbhnkhrmn.vpnproxymaster.pro
Name: Vpn Proxy Master : Pro
Architecture: iphoneos-arm
Depends: mobilesubstrate
Description: Activates Premium features of Vpn Proxy Master Application.
Depiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnproxymaster.pro/index.html
Icon: https://sbhnkhrmn.github.io/ikonlar/AppleStore_VpnProxyMaster.png
Sileodepiction: https://sbhnkhrmn.github.io/depictions/com.sbhnkhrmn.vpnproxymaster.pro/index.php
Homepage : https://apps.apple.com/app/id1025707485
Maintainer: SBHNKHRMN <khrmn.sbhn@gmail.com>
Author: SBHNKHRMN <khrmn.sbhn@gmail.com>
Section: Apps PRO
Version: 5.3.1
Filename: ./debs/com.sbhnkhrmn.vpnproxymaster.pro_5.3.1_iphoneos-arm.deb