forked from Awaispirkale/funtv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPAKISTAN-LIVE-TV.html
994 lines (464 loc) · 177 KB
/
PAKISTAN-LIVE-TV.html
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
<script>
<!-- code by https://www.html-code-generator.com -->
document.write(unescape('%0A%0A%0A%0A%0A%0A%0A%3C%21DOCTYPE%20html%3E%20%3Chtml%20lang%3D%22en%22%3E%20%3Chead%3E%20%3Ccenter%3E%20%3Cmeta%20charset%3D%22UTF-8%22%3E%20%3Cmeta%20name%3D%22viewport%22%20content%3D%22width%3Ddevice-width%2C%20initial-scale%3D1.0%22%3E%20%3Ctitle%3E%u2764%uFE0F%uD835%uDCE2%uD835%uDD02%uD835%uDCEE%uD835%uDCED%20%uD835%uDCDC%uD835%uDCFE%uD835%uDD03%uD835%uDCEA%uD835%uDCF6%uD835%uDCF6%uD835%uDCF2%uD835%uDCF5%20%uD835%uDCE2%uD835%uDCF1%uD835%uDCEA%uD835%uDCF1%20%u2764%uFE0F%3C/title%3E%20%3C/head%3E%20%0A%0A%0A%3Clink%20href%3D%22https%3A//fonts.googleapis.com/css2%3Ffamily%3DPoppins%3Awght@500%3B900%26display%3Dswap%22%20rel%3D%22stylesheet%22%3E%20%0A%0A%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css%22%20/%3E%20%0A%0A%3Cscript%20src%3D%22https%3A//cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js%22%20integrity%3D%22sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW%22%20crossorigin%3D%22anonymous%22%3E%3C/script%3E%20%0A%3Clink%20href%3D%22https%3A//unpkg.com/video.js/dist/video-js.css%22%20rel%3D%22stylesheet%22%3E%20%0A%3C/script%3E%20%0A%3Cscript%20src%3D%22https%3A//code.jquery.com/jquery-3.1.1.min.js%22%3E%3C/script%3E%20%0A%3Cscript%20src%3D%22https%3A//maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js%22%3E%3C/script%3E%20%0A%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css%22%3E%20%0A%0A%0A%0A%0A%0A%3Cscript%20type%3D%27text/javascript%27%0Asrc%3D%22https%3A//cdn.jsdelivr.net/npm/afterglowplayer@1/dist/afterglow.min.js%22%3E%0A%0A%0A%3C/script%3E%20%0A%0A%0A%3Cstyle%3E%0A%20.button%7B%0Aborder-radius%3A%2020%25%20%3B%20border-color%3A%20white%3B%20padding%3A%202px%3B%20margin%3A%202px%3B%20height%3A%20145px%3B%20width%3A%20107px%3B%20%7D%0A%0A%0Abody%7B%20background-color%3A%20%23%23666666%3B%20%7D%20.footer%7B%20width%3A%20100%25%3B%20height%3A%2020px%3B%20background-color%3A%20%7D%0A%3C/style%3E%20%3Cstyle%3E%20.border%20%7B%20box-shadow%3A%200px%200px%200px%200px%20%23F2F3F4%3B%20transition%3A%20box-shadow%200.6s%0Alinear%3B%20margin%200.5em%3B%20%7D%20.border%3Ahover%20%7B%20box-shadow%3A%200px%200px%200px%203px%20%23F2F3F4%3B%20%7D%20%3C/style%3E%20%0A%0A%0A%20%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%3Cmeta%20name%3D%22viewport%22%20%0A%20%20%20%20%20%20content%3D%22width%3Ddevice-width%2C%20initial-scale%3D1.0%2C%20maximum-scale%3D1.0%2C%20user-scalable%3D0%22%3E%0A%0A%0A%0A%0A%0A%09%20%0A%09%09%20%20%20%0A%09%09%20%20%20%20%3Ch1%20style%3D%22text-align%3A%20center%3B%20padding-top%3A%2069%25%3B%22%3E%20%3C/span%3E%0A%09%09%20%20%20%0A%09%09%20%20%0A%20%0A%20%20%0A%09%09%0A%0A%09%09%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/makkah.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1649059727Artboard5-100.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/madina.smil/chunklist_w1806546133_b748000_slEng.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1649059915Artboard5-100.jpg%0A%22%20/%3E%3C/a%3E%20%20%20%0A%09%09%20%20%20%0A%09%09%20%20%20%20%0A%09%09%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/streamtensports2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/ten-sports-hd-poster.png%3Fid%3D50%0A%22%20/%3E%3C/a%3E%20%20%20%20%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/aplus1/chunklist.m3u8%27%29.play%28%29%3B%22%3E%0A%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/72534-a-plus-entertainment.jpg%20%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC0Um3pnZ2WGBEeoA3BX2sKw.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/HUM-News-poster.png%3Fid%3D89%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23humtv%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcSPHMb0SDVayOM0aTe_2p5sch2exDDzEUILCQ%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%20%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23masala%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS2A7Dp-yCGAshIP2_JzpabbgnXxPcO2V5MDg%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23ptvsp%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQXdNgcmXcPCrboLCOaKLWMmCFr7C_SZFkbIw%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCMfwlaPLGMn44BKvHv15yzA.m3u8%27%29.play%28%29%3B%22PTV%20HOME%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/a3/2a/4f/a32a4fa22565c39c2d9bf0607c662d3f.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/bolent.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/16419858521.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//6zklx4wryw9b-hls-live.5centscdn.com/arynewsweb/app.stream/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcRmy6_sXrvqrKBDOs7VEV_M08-gS4e4gPSDvQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23aryz%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/ary-zindagi-live-poster.png%3Fid%3D99%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23aryd%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/ary-digital-live-poster.png%3Fid%3D99%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23arym%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQbSsmJQEBf6JjGLF0TsMlfEABgjq_cG2aXkA%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCE2oY4S4wOu6WofU2YbfWsw.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcR44Im_QSF4JqonpdyXHZA0Z3QChxwBeJQkkA%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//jk3lz82elw79-hls-live.5centscdn.com/harPalGeo/955ad3298db330b5ee880c2c9e6f23a0.sdp/harPalGeo/Live1/chunks.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcRFBDPmYvdvt3aA8LIJctm2g7uLIlIeTjyBkg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//jk3lz82elw79-hls-live.5centscdn.com/GEONEWS/3500ba09d0538297440ca620c9dd46bf.sdp/GEONEWS/Backup1/chunks.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQbXX7vbVvxWWt4z8-9qxDYpOxZF86MkcBsDg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//jk3lz82elw79-hls-live.5centscdn.com/TEZ/955ad3298db330b5ee880c2c9e6f23a0.sdp/TEZ/Live1/chunks.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQZQg8_mou-UVVQw6eplpy_QHAI5ylc6oLisw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/aajent.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/a0d9e-65d9a-aaj-entertainment-low.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/atv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/d051f-atv.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/seetv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/d1e60-65d9a-see-tv-low.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/playmax.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e0bf4-play-ent.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23music%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/8xm-live.png%3Fid%3D57%22%20/%3E%3C/a%3E%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23jalwa%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/jalwa-tv-live.png%3Fid%3D48%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23apna%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/apna-tv-live.png%3Fid%3D35%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC6AUCvTtpNzE6n-ZHPhkNMQ.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/tv-one-live.png%3Fid%3D18%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27http%3A//124.109.47.101/hls/stream1.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQn3syrT2vI3GTkXpXmn7Hanw1dxwY6U8EwZQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/mehran.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/06b64-mehran-tv.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/kohenoor.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/0a7b4-kohenoor.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23ktn%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/ktn-entertainment-live.png%3Fid%3D73%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//cdn5.mjunoon.tv%3A8087/app/EXP-ENT-159-1/live/159-1M/chunks.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS_yHis2Xa4qfsj0Rrb7Z29gTzbl4w_HhQ-2A%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/filmworld.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/film_world.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23afghan%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//images.mjunoon.tv%3A8181/logo/Afghan.webp%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/sindhtv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/1c492-sindh-tv-4.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/jaagtv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/820ad-gnn-4.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/92news2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/3981a-65d9a-92-news-low.jpg%0A%22%20/%3E%3C/a%3E%0A%20%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/bolnews.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/16419845781.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/saamanews2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/samaa_news.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/channel24.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/24_news.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//imob.dunyanews.tv/livehd/_definst_/ngrp%3Adunyalivehd_2_all/chunklist_w272793960_b950272.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQC3oyXCOhjnHjKAK09E2LJNF8rpA6O7iak3w%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/aajnews2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1611317119324x432.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/neo.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/b8f1b-neo-news.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//live-hls-web-aje.getaj.net/AJE/index.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/80723-al-jazeera.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/stream02/streamPlaylist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/c3332-dw-tv.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/khyber.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/9e716-khyber-entertainment.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//livecdn.live247stream.com/discoverpakistan/tapmad/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1624891948324x432.jpg%0A%22%20/%3E%3C/a%3E%0A%20%20%0A%0A%0A%20%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/metro.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/b736c-metro-one.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%20%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/khybernews.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/9b2c5-khyber-new.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/dhartitv.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/5eb9a-dharti-tv.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCb3vKSPkWFWiFljsSGoeyoQ.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/waseb-live.png%3Fid%3D34%0A%22%20/%3E%3C/a%3E%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/k21.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/7d071-k21-news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/k2.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/2ae68-kay-2.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/vsh.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/61c18-vsh-news.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/awaztv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/d0b57-awaz-tv.jpg%0A%22%20/%3E%3C/a%3E%0A%20%20%0A%0A%0A%20%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/channel5.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcT4lPk1-ktnMAt64PW_btp5lEzi58iafgKthw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/sindhnews.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcRDoKrcq9ZLKIXxFuGV_rPiUJwH32k6x9hFCQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%20%20%0A%0A%0A%20%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23lhrrang%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcTdJmKbLAJUczYlI6HOUi_gkc1upvtjV78Vlw%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//stream.wpbond.com/live/ahlebait1.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcTgnnnQEfd4TTqWFHaWJfM2qAH_NkniKRfhjw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//mn-nl.mncdn.com/ihtv4/ihtv4_sd.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.ibb.co/h718TXn/Imam-Hussain-urdu.png%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//stream.wpbond.com/live/hidayat1.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//shiachannel.in/livetv/img/channels/hidayat.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//cdn.live247stream.com/hyder/tv/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//shiachannel.in/livetv/img/channels/hyder.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//live.ishiacloud.com/haditv.co.uk/haditv1.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//shiachannel.in/livetv/img/channels/haditv.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//madnitv.vdn.dstreamone.net/madnitvurdu/madniurduabr/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS1RVaa0cpQKpm_4JhiAiAM8hwYKFXF-pT4Rg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27http%3A//162.250.201.58%3A8032/pk/paighamtv/tracks-v1a1/mono.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcT1dGxnG1TL8QpX1osdyImRcIeTfQ-bLOroLw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//vcdn.dunyanews.tv/lahorelive/_definst_/ngrp%3Alnews_1_all/chunklist_w1330613772_b950272.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQ5QJoJF6lS2xQ6WqW_IA9Pqc-Ra1tMGfrHXg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//varun-iptv.netlify.app/m3u/discoverykidshindi.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS6ZAgThKKJ5qaWNbYXzM9fXOAK-mYwianVBQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/discoverykids2/chunklist.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS6ZAgThKKJ5qaWNbYXzM9fXOAK-mYwianVBQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//varun-iptv.netlify.app/m3u/discoveryhindi.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQtzusG-EYgpogF1wGpAGad7j_rw4oQskvI7A%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/animal2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/996e5-animal-planet-4.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/cartoonhindi2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/e1/a2/bc/e1a2bcd19a3ef6425a286a92a4cb111f.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/baby_360p/chunklist.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/0a156-baby-tv-4.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/bbcnews1/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/a1661-65d9a-bbc-world-news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/cnn.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e526b-cnn-4.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/outdoornew.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1589969868324%20x%20432.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/voa.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/64758-voice-of-america.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tv-trtworld.live.trt.com.tr/master.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/9d634-trt-world.jpg%20%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/euronews2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e34de-euro-news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/motorvision2/chunklist.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1611317202324x432.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/eurosports2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1669637605324x432.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC6UW8OOQQBGdwmnaYLh-qdw.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/city_41.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/city42.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e8458-city-42.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCB-8E662xOk1I3-wdhTMNiw.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQzesmsDVfoPq4lnIDuVmOilRzhe-eQnZ5SDw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCHlCp7kL8jC9HJrSVJuNJzA.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/rohi_tv.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCjHWKUbljF4hp3s5PbgK9uA.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/express-news-live.png%3Fid%3D70%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCjHWKUbljF4hp3s5PbgK9uA.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcTTsAM97jwL8BBP7JI5ppq36NGp0mIZ1TfCcw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC5mwDEzm4FzXKoHPBDnuUQQ.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/abb-takk-news-live.png%3Fid%3D38%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC_LasHwH-kf4ALZ0ZZqLLLg.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.ibb.co/024dVss/ABN-NEWS.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCLdmX2z-l54Wh7ZLG7leSQA.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcSPzU2nASGq5QnaIfF2U7KdBDieAfNEzXHMiQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCElJZvY_RVra6qjD8WSQYog.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/public_news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCmqlO4sewQO97iCeakXTdaw.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcTuScBfUeJyT-7UgeVAVwaPuRyhMI3p19eGmg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCLKiuWFYwRJ0uQlV_OHD5ig.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/8e/19/8e/8e198efe5194682b5bd34b7c869666e7.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC5RvV_LtR1dxPCVFGw6dxXA.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/c2/1f/c2/c21fc251413208b6f57d070f014798bd.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCj-e7yp2_-qE-TPritppZGQ.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/0f/88/82/0f8882fa184a639eb549077eef3f54d9.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCaxR-D8FjZ-2otbU0_Y2grg.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/dawn_news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC6XLG5YjZfK1p5oY5MJ3NMw.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/gtv-news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC-an6pHQfTVZXgrLP0p1EGA.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/capital_tv.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%0A%0A%0A%0A%0A%20%0A%0A%0A%0A%20%0A%20%0A%20%0A%20%0A%20%3Cbody%3E%20%3Cul%20id%3D%22playlist%22%3E%20%3Ch4%20class%3D%22animation%22%3E%3Chr%3E%u2764%uFE0F%uD835%uDCE2%uD835%uDD02%uD835%uDCEE%uD835%uDCED%20%uD835%uDCDC%uD835%uDCFE%uD835%uDD03%uD835%uDCEA%uD835%uDCF6%uD835%uDCF6%uD835%uDCF2%uD835%uDCF5%20%uD835%uDCE2%uD835%uDCF1%uD835%uDCEA%uD835%uDCF1%20%u2764%uFE0F%3Chr%3E%3C/h4%3E%0A%0A%0A%0A%20%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%0A%0A%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22humtv%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.youtube.com/embed/G3fXcmNLS1A%22%20width%3D%22320%22height%3D%22280%22%20allowfullscreen%3E%3C/iframe%3E%20%0A%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video3%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22masala%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.youtube.com/embed/zed-qP8Q3L0%22%20width%3D%22320%22height%3D%22280%22%20allowfullscreen%3E%3C/iframe%3E%20%0A%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video3%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22lhrrang%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.youtube.com/embed/z11ADVq5kyA%3Fautoplay%3D0%26fs%3D1%26iv_load_policy%3D3%26showinfo%3D0%26rel%3D0%26cc_load_policy%3D1%26start%3D0%26end%3D0%26origin%3Dhttp%3A//youtubeembedcode.com%22%20width%3D%22320%22height%3D%22280%22%20allowfullscreen%3E%3C/iframe%3E%20%0A%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video3%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22ptvsp%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%22123%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//stream.crichd.vip/update/ptv.php%22%20target%3D%22123%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video3%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22music%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%221%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/8xm-live.html%22%20target%3D%221%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22jalwa%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%222%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/jalwa-tv-live.html%22%20target%3D%222%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22afghan%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%223%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/afghan-tv-live.html%22%20target%3D%223%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22apna%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%224%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/apna-tv-live.html%22%20target%3D%224%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22ktn%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%225%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/ktn-entertainment-live.html%22%20target%3D%225%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22aryz%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.ica.art/media/03785.gif%22%20width%3D%22320%22height%3D%22215%22%20name%3D%226%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//rawcdn.githack.com/MuzammilShah51214/LIVE-TV-/d7581a2bd9262eeb9849a122883bf61ca4c6afe3/Ary-zindagi-live.html%22%20target%3D%226%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22aryd%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.ica.art/media/03785.gif%22%20width%3D%22320%22height%3D%22215%22%20name%3D%227%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//rawcdn.githack.com/MuzammilShah51214/LIVE-TV-/d7581a2bd9262eeb9849a122883bf61ca4c6afe3/Ary-digital-live.html%22%20target%3D%227%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22arym%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.ica.art/media/03785.gif%22%20width%3D%22320%22height%3D%22215%22%20name%3D%2210%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//rawcdn.githack.com/MuzammilShah51214/LIVE-TV-/6e3a8b426be43eb8a2ad97c200066bdb38aff213/Ary-music-live.html%22%20target%3D%2210%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%0A%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%0A%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20class%3D%22row%22%3E%20%3Cdiv%20class%3D%22col-xs-6%22%3E%3Cdiv%20style%3D%22position%3A%20fixed%3B%20top%3A%200px%3B%20left%3A%20-5%25%3B%20width%3A%20219%25%22%3E%3Ccenter%3E%20%3Cdiv%20class%3D%22col-xs-6%22%3E%0A%0A%3Cvideo%20class%3D%22afterglow%22%20poster%3D%22https%3A//i.ibb.co/3NgJ4zh/Poster.jpg%22%20id%3D%27videoplayer%27%20title%3D%27Video%2001%27%20width%3D%2716%27%20height%3D%279%27%20data-autoresize%3D%22fit%22%20src%3D%22https%3A//tapmadlive.akamaized.net/originlive/aplus1/chunklist.m3u8%22%3E%3C/video%3E%20%3C/div%3E%0A%09%09%0A%20%20%20%20%0A%0A%0A%0A%0A%3Cp%20style%3D%22display%3A%20none%22%20id%3D%22adjust%22%3E0%3C/p%3E%0A%3Cdiv%20style%3D%22font-weight%3A%20bold%3B%20border-radius%3A%2070%25%3B%20color%3A%20gold%3B%20left%3A%20-2px%3B%20position%3A%20fixed%3B%20top%3A%20203px%22%3E%0A%0A%0A%3Cimg%20src%3D%22https%3A//i.ibb.co/LrpxfgQ/Pak-Live-channels.png%22height%3D%2263%22width%3D%22365%22%3E%3C/img%3E%0A%0A%3Cbr%3E%0A%3C/div%3E%0A%0A%0A%0A%0A%3Cp%20style%3D%22display%3A%20none%22%20id%3D%22adjust%22%3E0%3C/p%3E%0A%3Cdiv%20style%3D%22font-weight%3A%20bold%3B%20border-radius%3A%2070%25%3B%20color%3A%20gold%3B%20left%3A%20125px%3B%20position%3A%20fixed%3B%20top%3A%20195px%22%3E%0A%09%0A%09%0A%0A%3Ccenter%3E%20%20%0A%0A%0A%0A%3Cbutton%20class%3D%22buttoncontrols1%22%20onclick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.play%28%29%22%20%3E%20%3Ci%20class%3D%22fas%20fa-play%22%20style%3D%27font-size%3A15px%3Bcolor%3Argb%2847%2C239%2C16%29%3B%27%3E%3C/i%3E%3C/button%3E%20%3Cbutton%20class%3D%22buttoncontrols1%22%20onclick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29%22%20%3E%20%3Ci%20class%3D%22fas%20fa-pause%22%20style%3D%27font-size%3A15px%3Bcolor%3Argb%28255%2C69%2C0%29%3B%27%3E%3C/i%3E%20%3C/button%3E%20%3C/button%3E%20%3Cbutton%20class%3D%22buttoncontrols1%22%20onclick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.requestFullscreen%28%29%22%20%3E%20%3Cfont%20color%3D%22orange%22%3E%3Ci%20class%3D%22fas%20fa-expand%22%20style%3D%27font-size%3A15px%3Bcolor%3Awhite%27%3E%3C/i%3E%3C/button%3E%20%0A%0A%0A%0A%0A%20%3C/div%3E%3Cdiv%20%3E%3C/center%3E%20%3C%21--%20%3Ccenter%3E%20%3Cdiv%20style%3D%22background-color%3Ablack%22%3E%20%3Cbutton%20class%3D%22button5%22%20data-dismiss%3D%22modal%22%20onclick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29%22%20%3E%3Cfont%20color%3D%22red%22%20size%3D%224%22%3E%20Close%20%3C/button%3E%20%3C/center%3E%20%3Cbr%3E%20%3C/div%3E%20--%3E%20%3C%21--%20Modal%20--%3E%20%3Cscript%3E%20var%20videoplayer%20%3D%20document.getElementById%28%22videoplayer%22%29%3B%20function%20playPausevideoplayer%28%29%20%7B%20if%20%28videoplayer.paused%29%20videoplayer.play%28%29%3B%20else%20videoplayer.pause%28%29%3B%20document.getElementById%28%27controls2%27%29.style.display%3D%27block%27%3B%20document.getElementById%28%27controls2%27%29.style.display%3D%27none%27%3B%20%7D%20function%20rwd5svideoplayer%28%29%20%7B%20videoplayer.currentTime%3Dvideoplayer.currentTime%20-%205%3B%20%7D%20function%20fwd5svideoplayer%28%29%20%7B%20videoplayer.currentTime%3Dvideoplayer.currentTime%20+%205%3B%20%7D%20function%20rwd15svideoplayer%28%29%20%7B%20videoplayer.currentTime%3Dvideoplayer.currentTime%20-%2015%3B%20%7D%20function%20fwd15svideoplayer%28%29%20%7B%20videoplayer.currentTime%3Dvideoplayer.currentTime%20+%2015%3B%20%7D%20function%20toggleFullScreenvideoplayer%28%29%7B%20if%28videoplayer.requestFullScreen%29%7B%20videoplayer.requestFullScreen%28%29%3B%20%7D%20else%20if%28videoplayer.webkitRequestFullScreen%29%7B%20videoplayer.webkitRequestFullScreen%28%29%3B%20%7D%20else%20if%28videoplayer.mozRequestFullScreen%29%7B%20videoplayer.mozRequestFullScreen%28%29%3B%20%7D%20%7D%20%3C/script%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C/body%3E%0A%3C/html%3E%0A%0A%0A%09%09%20%20%20%0A%09%09%20%20%20%0A%09%09%20%20%20%0A%09%09%20%20%20%20%0A%0A%0A%0A%0A%09%09%0A%20%20%20%20%0A%0A%0A%0A%0A%0A%0A%3Cul%20style%3D%22list-style-type%3Anone%22%3E%20%3Cstyle%3Eul%7Bpadding-left%3A0px%3B%20text-align%3Acenter%3B%7D%20li%7B%20display%3Ainline-block%3Bpadding%3A0px%3B%7D%20%3C/style%3E%20%3Cdiv%20class%3D%22row%22%3E%20%3Cdiv%20class%3D%22col-xs-6%22%3E%3Cdiv%20style%3D%22position%3A%20fixed%3B%20top%3A%200px%3B%20width%3A%20100%25%22%3E%20%0A%0A%20%3C/script%3E%20%3Cstyle%3E.unselectable%20%7B%20-moz-user-select%3Anone%3B%20-webkit-user-select%3Anone%3B%20cursor%3A%20default%3B%20%7D%20html%20%7B%20-webkit-touch-callout%3A%20none%3B%20-webkit-user-select%3A%20none%3B%20-khtml-user-select%3A%20none%3B%20-moz-user-select%3A%20none%3B%20-ms-user-select%3A%20none%3B%20user-select%3A%20none%3B%20-webkit-tap-highlight-color%3A%20rgb%28204%2C0%2C204%29%3B%20%7D%20%09.animation%7Bfont-family%3A%27charm%27%2C%20%3B%20margin%3A%200%3B%20padding%3A%2020px%3B%20font-size%3A%2022px%3B%20background%3A%20url%28%27https%3A//thumbs.gfycat.com/AnnualMildArchaeopteryx-size_restricted.gif%27%29%20repeat%3B%20background-clip%3A%20text%3B%20-webkit-background-clip%3A%20text%3B%20color%3A%20transparent%3B%20animation%3A%20moveBg%205s%20linear%20infinite%3B%20-webkit-animation%3A%20moveBg%205s%20linear%20infinite%3B%7D%20@keyframes%20moveBg%20%7B%200%25%20%7B%20background-position%3A90%25%3B%20%7D%20100%25%20%7B%20background-position%3A10%25%3B%7D%20%7D%20%3C/style%3E%20%0A%0A%0A%0A%0A%0A%0A%3Cstyle%3E%20%0A.active%7Bcolor%3Awhite%3Bborder-bottom%3A%202.5px%20solid%20rgb%2865%2C165%2C255%29%3Bfont-weight%3Abold%3Bfont-size%3A12px%3B%7D.deactive%7Bcolor%3A%20rgb%28160%2C160%2C160%29%3Bfont-weight%3AMedium%3Bfont-size%3A12px%3B%7D%20.buttoncontrols1%20%7B%20display%3A%20inline-block%3B%20padding%3A%206px%207px%3B%20font-size%3A%2012px%3B%20background%3A%20none%3B%20%7D%20%0A.buttoncotrols1%3Ahover%20%7B%20background-color%3A%20none%3B%20font-size%3A%205px%3B%20%7D%20button%3Aactive%20%7B%20background-color%3A%20none%3B%20box-shadow%3A%20%23666%3B%20transform%3A%20translateY%282px%29%3B%20%7D%20button%20%7B%20background-color%3A%20none%3B%20/*%20Green%20*/%20border%3A%20none%3B%20color%3A%20none%3B%20padding%3A%203px%203px%3B%20text-align%3A%20center%3B%20text-decoration%3A%20none%3B%20display%3A%20inline-block%3B%20font-size%3A%2010px%3B%20margin%3A%204px%3B%204px%3B%20cursor%3A%20pointer%3B%20%7D%20%3C/style%3E%20%3C/head%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%20%20%20%3Cbody%20style%3D%22background-color%3A%2307274e%3B%22%3E%0A%20%0A%20%20%20%20%20%20%20%0A%0A%3Cscript%20type%3D%22text/javascript%22%3E%0A%20%20%20%20function%20filterSelection%28c%29%20%7B%0A%20%20%20%20%20%20var%20x%2C%20i%3B%0A%20%20%20%20%20%20x%20%3D%20document.getElementsByClassName%28%22filterDiv%22%29%3B%0A%20%20%20%20%20%20if%20%28c%20%3D%3D%20%22all%22%29%20c%20%3D%20%22%22%3B%0A%20%20%20%20%20%20//%20Add%20the%20%22show%22%20class%20%28display%3Ablock%29%20to%20the%20filtered%20elements%2C%20and%20remove%20the%20%22show%22%20class%20from%20the%20elements%20that%20are%20not%20selected%0A%20%20%20%20%20%20for%20%28i%20%3D%200%3B%20i%20%3C%20x.length%3B%20i++%29%20%7B%0A%20%20%20%20%20%20%20%20w3RemoveClass%28x%5Bi%5D%2C%20%22show%22%29%3B%0A%0A%20%20%20%20%20%20%20%20//%20w3AddClass%28x%5Bi%5D%2C%20%22active%22%29%3B%0A%20%20%20%20%20%20%20%20if%20%28x%5Bi%5D.className.indexOf%28c%29%20%3E%20-1%29%20w3AddClass%28x%5Bi%5D%2C%20%22show%22%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20//%20Show%20filtered%20elements%0A%20%20%20%20function%20w3AddClass%28element%2C%20name%29%20%7B%0A%20%20%20%20%20%20var%20i%2C%20arr1%2C%20arr2%3B%0A%20%20%20%20%20%20arr1%20%3D%20element.className.split%28%22%20%22%29%3B%0A%20%20%20%20%20%20arr2%20%3D%20name.split%28%22%20%22%29%3B%0A%20%20%20%20%20%20for%20%28i%20%3D%200%3B%20i%20%3C%20arr2.length%3B%20i++%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28arr1.indexOf%28arr2%5Bi%5D%29%20%3D%3D%20-1%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20element.className%20+%3D%20%22%20%22%20+%20arr2%5Bi%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20//%20Hide%20elements%20that%20are%20not%20selected%0A%20%20%20%20function%20w3RemoveClass%28element%2C%20name%29%20%7B%0A%20%20%20%20%20%20var%20i%2C%20arr1%2C%20arr2%3B%0A%20%20%20%20%20%20arr1%20%3D%20element.className.split%28%22%20%22%29%3B%0A%20%20%20%20%20%20arr2%20%3D%20name.split%28%22%20%22%29%3B%0A%20%20%20%20%20%20for%20%28i%20%3D%200%3B%20i%20%3C%20arr2.length%3B%20i++%29%20%7B%0A%20%20%20%20%20%20%20%20while%20%28arr1.indexOf%28arr2%5Bi%5D%29%20%3E%20-1%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20arr1.splice%28arr1.indexOf%28arr2%5Bi%5D%29%2C%201%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20element.className%20%3D%20arr1.join%28%22%20%22%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20//%20Add%20active%20class%20to%20the%20current%20control%20button%20%28highlight%20it%29%0A%20%20%20%20var%20btnContainer%20%3D%20document.getElementById%28%22myBtnContainer%22%29%3B%0A%20%20%20%20var%20btns%20%3D%20btnContainer.getElementsByClassName%28%22btn%22%29%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20btns.length%3B%20i++%29%20%7B%0A%20%20%20%20%20%20btns%5Bi%5D.addEventListener%28%22click%22%2C%20function%28%29%20%7B%0A%20%20%20%20%20%20%20%20var%20current%20%3D%20document.getElementsByClassName%28%22active%22%29%3B%0A%20%20%20%20%20%20%20%20current%5B0%5D.className%20%3D%20current%5B0%5D.className.replace%28%22%20active%22%2C%20%22%22%29%3B%0A%20%20%20%20%20%20%20%20this.className%20+%3D%20%22%20active%22%3B%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%0A%3C/script%3E%0A%0A%0A'))
</script>
<script>
<!-- code by https://www.html-code-generator.com -->
document.write(unescape('%0A%0A%0A%0A%0A%0A%0A%3C%21DOCTYPE%20html%3E%20%3Chtml%20lang%3D%22en%22%3E%20%3Chead%3E%20%3Ccenter%3E%20%3Cmeta%20charset%3D%22UTF-8%22%3E%20%3Cmeta%20name%3D%22viewport%22%20content%3D%22width%3Ddevice-width%2C%20initial-scale%3D1.0%22%3E%20%3Ctitle%3E%u2764%uFE0F%uD835%uDCE2%uD835%uDD02%uD835%uDCEE%uD835%uDCED%20%uD835%uDCDC%uD835%uDCFE%uD835%uDD03%uD835%uDCEA%uD835%uDCF6%uD835%uDCF6%uD835%uDCF2%uD835%uDCF5%20%uD835%uDCE2%uD835%uDCF1%uD835%uDCEA%uD835%uDCF1%20%u2764%uFE0F%3C/title%3E%20%3C/head%3E%20%0A%0A%0A%3Clink%20href%3D%22https%3A//fonts.googleapis.com/css2%3Ffamily%3DPoppins%3Awght@500%3B900%26display%3Dswap%22%20rel%3D%22stylesheet%22%3E%20%0A%0A%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css%22%20/%3E%20%0A%0A%3Cscript%20src%3D%22https%3A//cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js%22%20integrity%3D%22sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW%22%20crossorigin%3D%22anonymous%22%3E%3C/script%3E%20%0A%3Clink%20href%3D%22https%3A//unpkg.com/video.js/dist/video-js.css%22%20rel%3D%22stylesheet%22%3E%20%0A%3C/script%3E%20%0A%3Cscript%20src%3D%22https%3A//code.jquery.com/jquery-3.1.1.min.js%22%3E%3C/script%3E%20%0A%3Cscript%20src%3D%22https%3A//maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js%22%3E%3C/script%3E%20%0A%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css%22%3E%20%0A%0A%0A%0A%0A%0A%3Cscript%20type%3D%27text/javascript%27%0Asrc%3D%22https%3A//cdn.jsdelivr.net/npm/afterglowplayer@1/dist/afterglow.min.js%22%3E%0A%0A%0A%3C/script%3E%20%0A%0A%0A%3Cstyle%3E%0A%20.button%7B%0Aborder-radius%3A%2020%25%20%3B%20border-color%3A%20white%3B%20padding%3A%202px%3B%20margin%3A%202px%3B%20height%3A%20145px%3B%20width%3A%20107px%3B%20%7D%0A%0A%0Abody%7B%20background-color%3A%20%23%23666666%3B%20%7D%20.footer%7B%20width%3A%20100%25%3B%20height%3A%2020px%3B%20background-color%3A%20%7D%0A%3C/style%3E%20%3Cstyle%3E%20.border%20%7B%20box-shadow%3A%200px%200px%200px%200px%20%23F2F3F4%3B%20transition%3A%20box-shadow%200.6s%0Alinear%3B%20margin%200.5em%3B%20%7D%20.border%3Ahover%20%7B%20box-shadow%3A%200px%200px%200px%203px%20%23F2F3F4%3B%20%7D%20%3C/style%3E%20%0A%0A%0A%20%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%3Cmeta%20name%3D%22viewport%22%20%0A%20%20%20%20%20%20content%3D%22width%3Ddevice-width%2C%20initial-scale%3D1.0%2C%20maximum-scale%3D1.0%2C%20user-scalable%3D0%22%3E%0A%0A%0A%0A%0A%0A%09%20%0A%09%09%20%20%20%0A%09%09%20%20%20%20%3Ch1%20style%3D%22text-align%3A%20center%3B%20padding-top%3A%2069%25%3B%22%3E%20%3C/span%3E%0A%09%09%20%20%20%0A%09%09%20%20%0A%20%0A%20%20%0A%09%09%0A%0A%09%09%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/makkah.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1649059727Artboard5-100.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/madina.smil/chunklist_w1806546133_b748000_slEng.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1649059915Artboard5-100.jpg%0A%22%20/%3E%3C/a%3E%20%20%20%0A%09%09%20%20%20%0A%09%09%20%20%20%20%0A%09%09%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/streamtensports2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/ten-sports-hd-poster.png%3Fid%3D50%0A%22%20/%3E%3C/a%3E%20%20%20%20%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/aplus1/chunklist.m3u8%27%29.play%28%29%3B%22%3E%0A%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/72534-a-plus-entertainment.jpg%20%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC0Um3pnZ2WGBEeoA3BX2sKw.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/HUM-News-poster.png%3Fid%3D89%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23humtv%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcSPHMb0SDVayOM0aTe_2p5sch2exDDzEUILCQ%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%20%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23masala%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS2A7Dp-yCGAshIP2_JzpabbgnXxPcO2V5MDg%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23ptvsp%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQXdNgcmXcPCrboLCOaKLWMmCFr7C_SZFkbIw%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCMfwlaPLGMn44BKvHv15yzA.m3u8%27%29.play%28%29%3B%22PTV%20HOME%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/a3/2a/4f/a32a4fa22565c39c2d9bf0607c662d3f.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/bolent.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/16419858521.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//6zklx4wryw9b-hls-live.5centscdn.com/arynewsweb/app.stream/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcRmy6_sXrvqrKBDOs7VEV_M08-gS4e4gPSDvQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23aryz%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/ary-zindagi-live-poster.png%3Fid%3D99%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23aryd%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/ary-digital-live-poster.png%3Fid%3D99%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23arym%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQbSsmJQEBf6JjGLF0TsMlfEABgjq_cG2aXkA%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCE2oY4S4wOu6WofU2YbfWsw.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcR44Im_QSF4JqonpdyXHZA0Z3QChxwBeJQkkA%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//jk3lz82elw79-hls-live.5centscdn.com/harPalGeo/955ad3298db330b5ee880c2c9e6f23a0.sdp/harPalGeo/Live1/chunks.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcRFBDPmYvdvt3aA8LIJctm2g7uLIlIeTjyBkg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//jk3lz82elw79-hls-live.5centscdn.com/GEONEWS/3500ba09d0538297440ca620c9dd46bf.sdp/GEONEWS/Backup1/chunks.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQbXX7vbVvxWWt4z8-9qxDYpOxZF86MkcBsDg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//jk3lz82elw79-hls-live.5centscdn.com/TEZ/955ad3298db330b5ee880c2c9e6f23a0.sdp/TEZ/Live1/chunks.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQZQg8_mou-UVVQw6eplpy_QHAI5ylc6oLisw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/aajent.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/a0d9e-65d9a-aaj-entertainment-low.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/atv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/d051f-atv.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/seetv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/d1e60-65d9a-see-tv-low.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/playmax.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e0bf4-play-ent.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23music%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/8xm-live.png%3Fid%3D57%22%20/%3E%3C/a%3E%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23jalwa%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/jalwa-tv-live.png%3Fid%3D48%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23apna%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/apna-tv-live.png%3Fid%3D35%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC6AUCvTtpNzE6n-ZHPhkNMQ.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/tv-one-live.png%3Fid%3D18%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27http%3A//124.109.47.101/hls/stream1.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQn3syrT2vI3GTkXpXmn7Hanw1dxwY6U8EwZQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/mehran.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/06b64-mehran-tv.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/kohenoor.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/0a7b4-kohenoor.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23ktn%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/ktn-entertainment-live.png%3Fid%3D73%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//cdn5.mjunoon.tv%3A8087/app/EXP-ENT-159-1/live/159-1M/chunks.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS_yHis2Xa4qfsj0Rrb7Z29gTzbl4w_HhQ-2A%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/filmworld.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/film_world.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23afghan%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//images.mjunoon.tv%3A8181/logo/Afghan.webp%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/sindhtv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/1c492-sindh-tv-4.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/jaagtv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/820ad-gnn-4.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/92news2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/3981a-65d9a-92-news-low.jpg%0A%22%20/%3E%3C/a%3E%0A%20%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/bolnews.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/16419845781.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/saamanews2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/samaa_news.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/channel24.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/24_news.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//imob.dunyanews.tv/livehd/_definst_/ngrp%3Adunyalivehd_2_all/chunklist_w272793960_b950272.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQC3oyXCOhjnHjKAK09E2LJNF8rpA6O7iak3w%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/aajnews2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1611317119324x432.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/neo.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/b8f1b-neo-news.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//live-hls-web-aje.getaj.net/AJE/index.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/80723-al-jazeera.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/stream02/streamPlaylist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/c3332-dw-tv.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/khyber.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/9e716-khyber-entertainment.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//livecdn.live247stream.com/discoverpakistan/tapmad/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1624891948324x432.jpg%0A%22%20/%3E%3C/a%3E%0A%20%20%0A%0A%0A%20%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/metro.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/b736c-metro-one.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%20%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/khybernews.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/9b2c5-khyber-new.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/dhartitv.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/5eb9a-dharti-tv.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCb3vKSPkWFWiFljsSGoeyoQ.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/waseb-live.png%3Fid%3D34%0A%22%20/%3E%3C/a%3E%0A%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%20%20%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/k21.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/7d071-k21-news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/k2.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/2ae68-kay-2.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/vsh.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/61c18-vsh-news.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/awaztv.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/d0b57-awaz-tv.jpg%0A%22%20/%3E%3C/a%3E%0A%20%20%0A%0A%0A%20%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/channel5.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcT4lPk1-ktnMAt64PW_btp5lEzi58iafgKthw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/sindhnews.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcRDoKrcq9ZLKIXxFuGV_rPiUJwH32k6x9hFCQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%20%20%0A%0A%0A%20%3Ca%20class%3D%22imgclass%22%20data-toggle%3D%22modal%22%20data-target%3D%22%23lhrrang%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcTdJmKbLAJUczYlI6HOUi_gkc1upvtjV78Vlw%26usqp%3DCAU%22%20/%3E%3C/a%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//stream.wpbond.com/live/ahlebait1.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcTgnnnQEfd4TTqWFHaWJfM2qAH_NkniKRfhjw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//mn-nl.mncdn.com/ihtv4/ihtv4_sd.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.ibb.co/h718TXn/Imam-Hussain-urdu.png%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//stream.wpbond.com/live/hidayat1.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//shiachannel.in/livetv/img/channels/hidayat.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//cdn.live247stream.com/hyder/tv/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//shiachannel.in/livetv/img/channels/hyder.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//live.ishiacloud.com/haditv.co.uk/haditv1.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//shiachannel.in/livetv/img/channels/haditv.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//madnitv.vdn.dstreamone.net/madnitvurdu/madniurduabr/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS1RVaa0cpQKpm_4JhiAiAM8hwYKFXF-pT4Rg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27http%3A//162.250.201.58%3A8032/pk/paighamtv/tracks-v1a1/mono.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcT1dGxnG1TL8QpX1osdyImRcIeTfQ-bLOroLw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//vcdn.dunyanews.tv/lahorelive/_definst_/ngrp%3Alnews_1_all/chunklist_w1330613772_b950272.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQ5QJoJF6lS2xQ6WqW_IA9Pqc-Ra1tMGfrHXg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//varun-iptv.netlify.app/m3u/discoverykidshindi.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS6ZAgThKKJ5qaWNbYXzM9fXOAK-mYwianVBQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/discoverykids2/chunklist.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcS6ZAgThKKJ5qaWNbYXzM9fXOAK-mYwianVBQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//varun-iptv.netlify.app/m3u/discoveryhindi.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQtzusG-EYgpogF1wGpAGad7j_rw4oQskvI7A%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//mhdtvworld.me/delta/discovery/api/Discovery_Science_Hindi.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/97/fe/be/97febed8af524ec27a4331e8a32dbefb.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/animal2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/996e5-animal-planet-4.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/cartoonhindi2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/e1/a2/bc/e1a2bcd19a3ef6425a286a92a4cb111f.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/baby_360p/chunklist.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/0a156-baby-tv-4.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/bbcnews1/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/a1661-65d9a-bbc-world-news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/cnn.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e526b-cnn-4.jpg%0A%22%20/%3E%3C/a%3E%0A%0A%0A%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/outdoornew.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1589969868324%20x%20432.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/voa.smil/playlist.m3u8%3F%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/64758-voice-of-america.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tv-trtworld.live.trt.com.tr/master.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/9d634-trt-world.jpg%20%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/euronews2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e34de-euro-news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/motorvision2/chunklist.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1611317202324x432.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/originlive/eurosports2/chunklist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1669637605324x432.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC6UW8OOQQBGdwmnaYLh-qdw.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/city_41.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//tapmadlive.akamaized.net/tapmadold/city42.smil/playlist.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e8458-city-42.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCB-8E662xOk1I3-wdhTMNiw.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcQzesmsDVfoPq4lnIDuVmOilRzhe-eQnZ5SDw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCHlCp7kL8jC9HJrSVJuNJzA.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/rohi_tv.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCjHWKUbljF4hp3s5PbgK9uA.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/express-news-live.png%3Fid%3D70%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCjHWKUbljF4hp3s5PbgK9uA.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcTTsAM97jwL8BBP7JI5ppq36NGp0mIZ1TfCcw%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC5mwDEzm4FzXKoHPBDnuUQQ.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//jazztv.pk/jazzlive/uploads/channels/poster/abb-takk-news-live.png%3Fid%3D38%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC_LasHwH-kf4ALZ0ZZqLLLg.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.ibb.co/024dVss/ABN-NEWS.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCLdmX2z-l54Wh7ZLG7leSQA.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcSPzU2nASGq5QnaIfF2U7KdBDieAfNEzXHMiQ%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCElJZvY_RVra6qjD8WSQYog.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/public_news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCmqlO4sewQO97iCeakXTdaw.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//encrypted-tbn0.gstatic.com/images%3Fq%3Dtbn%3AANd9GcTuScBfUeJyT-7UgeVAVwaPuRyhMI3p19eGmg%26usqp%3DCAU%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCLKiuWFYwRJ0uQlV_OHD5ig.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/8e/19/8e/8e198efe5194682b5bd34b7c869666e7.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC5RvV_LtR1dxPCVFGw6dxXA.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/c2/1f/c2/c21fc251413208b6f57d070f014798bd.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCj-e7yp2_-qE-TPritppZGQ.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//i.pinimg.com/736x/0f/88/82/0f8882fa184a639eb549077eef3f54d9.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UCaxR-D8FjZ-2otbU0_Y2grg.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/dawn_news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC6XLG5YjZfK1p5oY5MJ3NMw.m3u8%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/gtv-news.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%20%0A%20%0A%20%0A%20%3Ca%20%20%20onClick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29.currentTime%280%29.src%28%27https%3A//ythls.onrender.com/channel/UC-an6pHQfTVZXgrLP0p1EGA.m3u8%20%27%29.play%28%29%3B%22%3E%3Cimg%20id%3D%22imageField%22%20class%3D%22Button%20border%22%20name%3D%22imageField%22%0Asrc%3D%22%20https%3A//content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/capital_tv.jpg%0A%22%20/%3E%3C/a%3E%0A%20%0A%0A%0A%0A%0A%0A%20%0A%0A%0A%0A%20%0A%20%0A%20%0A%20%0A%20%3Cbody%3E%20%3Cul%20id%3D%22playlist%22%3E%20%3Ch4%20class%3D%22animation%22%3E%3Chr%3E%u2764%uFE0F%uD835%uDCE2%uD835%uDD02%uD835%uDCEE%uD835%uDCED%20%uD835%uDCDC%uD835%uDCFE%uD835%uDD03%uD835%uDCEA%uD835%uDCF6%uD835%uDCF6%uD835%uDCF2%uD835%uDCF5%20%uD835%uDCE2%uD835%uDCF1%uD835%uDCEA%uD835%uDCF1%20%u2764%uFE0F%3Chr%3E%3C/h4%3E%0A%0A%0A%0A%20%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%0A%0A%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22humtv%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.youtube.com/embed/G3fXcmNLS1A%22%20width%3D%22320%22height%3D%22280%22%20allowfullscreen%3E%3C/iframe%3E%20%0A%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video3%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22masala%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.youtube.com/embed/zed-qP8Q3L0%22%20width%3D%22320%22height%3D%22280%22%20allowfullscreen%3E%3C/iframe%3E%20%0A%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video3%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22lhrrang%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.youtube.com/embed/z11ADVq5kyA%3Fautoplay%3D0%26fs%3D1%26iv_load_policy%3D3%26showinfo%3D0%26rel%3D0%26cc_load_policy%3D1%26start%3D0%26end%3D0%26origin%3Dhttp%3A//youtubeembedcode.com%22%20width%3D%22320%22height%3D%22280%22%20allowfullscreen%3E%3C/iframe%3E%20%0A%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video3%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22ptvsp%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%22123%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//stream.crichd.vip/update/ptv.php%22%20target%3D%22123%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video3%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22music%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%221%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/8xm-live.html%22%20target%3D%221%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22jalwa%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%222%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/jalwa-tv-live.html%22%20target%3D%222%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22afghan%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%223%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/afghan-tv-live.html%22%20target%3D%223%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22apna%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%224%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/apna-tv-live.html%22%20target%3D%224%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22ktn%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22%20%22%20width%3D%22320%22height%3D%22280%22%20name%3D%225%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//www.mjunoon.tv/embedplayer/ktn-entertainment-live.html%22%20target%3D%225%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22aryz%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.ica.art/media/03785.gif%22%20width%3D%22320%22height%3D%22215%22%20name%3D%226%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//rawcdn.githack.com/MuzammilShah51214/LIVE-TV-/d7581a2bd9262eeb9849a122883bf61ca4c6afe3/Ary-zindagi-live.html%22%20target%3D%226%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22aryd%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.ica.art/media/03785.gif%22%20width%3D%22320%22height%3D%22215%22%20name%3D%227%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//rawcdn.githack.com/MuzammilShah51214/LIVE-TV-/d7581a2bd9262eeb9849a122883bf61ca4c6afe3/Ary-digital-live.html%22%20target%3D%227%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20style%3D%22width%3A%20100%25%3B%22%20class%3D%22modal%20fade%22%20id%3D%22arym%22%20role%3D%22dialog%22%3E%20%20%3Cdiv%20class%3D%22modal-dialog%22%3E%3Cdiv%20class%3D%22modal-content%22%3E%20%20%3C/i%3E%20%20%0A%20%3Cdiv%20class%3D%22modal-body%22%3E%0A%20%3Ciframe%20src%3D%22https%3A//www.ica.art/media/03785.gif%22%20width%3D%22320%22height%3D%22215%22%20name%3D%2210%22allowfullscreen%22%20style%3D%22background-color%3A%23000%22%3E%3C/iframe%3E%20%0A%20%0A%3Ca%20href%3D%22https%3A//rawcdn.githack.com/MuzammilShah51214/LIVE-TV-/6e3a8b426be43eb8a2ad97c200066bdb38aff213/Ary-music-live.html%22%20target%3D%2210%22%3E%0A%3Ccenter%3E%3Cinput%20type%3D%22button%22%20style%3D%22background-color%3Agreen%3Bcolor%3Awhite%3Bwidth%3A140px%3B%0Aheight%3A40px%3B%22%20value%3D%22PLAY%22%3E%3C/a%3E%0A%3C/div%3E%20%3Cdiv%20class%3D%22modal-footer%22%3E%0A%20%3Cbutton%20type%3D%22button%22%20class%3D%22button2%22%20data-dismiss%3D%22modal%22%20onclick%3D%22videojs%28%27my-video4%27%29.pause%28%29%22%3E%0A%3Cfont%20size%3D%22+2%22%3EBack%3C/button%3E%20%20%3C/div%3E%20%3C/div%3E%20%3C/div%3E%20%0A%3C/div%3E%20%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%0A%09%09%3Cdiv%20class%3D%22row%22%3E%20%3Cdiv%20class%3D%22col-xs-6%22%3E%3Cdiv%20style%3D%22position%3A%20fixed%3B%20top%3A%200px%3B%20left%3A%20-5%25%3B%20width%3A%20219%25%22%3E%3Ccenter%3E%20%3Cdiv%20class%3D%22col-xs-6%22%3E%0A%0A%3Cvideo%20class%3D%22afterglow%22%20poster%3D%22https%3A//i.ibb.co/3NgJ4zh/Poster.jpg%22%20id%3D%27videoplayer%27%20title%3D%27Video%2001%27%20width%3D%2716%27%20height%3D%279%27%20data-autoresize%3D%22fit%22%20src%3D%22https%3A//tapmadlive.akamaized.net/originlive/aplus1/chunklist.m3u8%22%3E%3C/video%3E%20%3C/div%3E%0A%09%09%0A%20%20%20%20%0A%0A%0A%0A%0A%3Cp%20style%3D%22display%3A%20none%22%20id%3D%22adjust%22%3E0%3C/p%3E%0A%3Cdiv%20style%3D%22font-weight%3A%20bold%3B%20border-radius%3A%2070%25%3B%20color%3A%20gold%3B%20left%3A%20-2px%3B%20position%3A%20fixed%3B%20top%3A%20203px%22%3E%0A%0A%0A%3Cimg%20src%3D%22https%3A//i.ibb.co/LrpxfgQ/Pak-Live-channels.png%22height%3D%2263%22width%3D%22365%22%3E%3C/img%3E%0A%0A%3Cbr%3E%0A%3C/div%3E%0A%0A%0A%0A%0A%3Cp%20style%3D%22display%3A%20none%22%20id%3D%22adjust%22%3E0%3C/p%3E%0A%3Cdiv%20style%3D%22font-weight%3A%20bold%3B%20border-radius%3A%2070%25%3B%20color%3A%20gold%3B%20left%3A%20125px%3B%20position%3A%20fixed%3B%20top%3A%20195px%22%3E%0A%09%0A%09%0A%0A%3Ccenter%3E%20%20%0A%0A%0A%0A%3Cbutton%20class%3D%22buttoncontrols1%22%20onclick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.play%28%29%22%20%3E%20%3Ci%20class%3D%22fas%20fa-play%22%20style%3D%27font-size%3A15px%3Bcolor%3Argb%2847%2C239%2C16%29%3B%27%3E%3C/i%3E%3C/button%3E%20%3Cbutton%20class%3D%22buttoncontrols1%22%20onclick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29%22%20%3E%20%3Ci%20class%3D%22fas%20fa-pause%22%20style%3D%27font-size%3A15px%3Bcolor%3Argb%28255%2C69%2C0%29%3B%27%3E%3C/i%3E%20%3C/button%3E%20%3C/button%3E%20%3Cbutton%20class%3D%22buttoncontrols1%22%20onclick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.requestFullscreen%28%29%22%20%3E%20%3Cfont%20color%3D%22orange%22%3E%3Ci%20class%3D%22fas%20fa-expand%22%20style%3D%27font-size%3A15px%3Bcolor%3Awhite%27%3E%3C/i%3E%3C/button%3E%20%0A%0A%0A%0A%0A%20%3C/div%3E%3Cdiv%20%3E%3C/center%3E%20%3C%21--%20%3Ccenter%3E%20%3Cdiv%20style%3D%22background-color%3Ablack%22%3E%20%3Cbutton%20class%3D%22button5%22%20data-dismiss%3D%22modal%22%20onclick%3D%22afterglow.getPlayer%28%27videoplayer%27%29.pause%28%29%22%20%3E%3Cfont%20color%3D%22red%22%20size%3D%224%22%3E%20Close%20%3C/button%3E%20%3C/center%3E%20%3Cbr%3E%20%3C/div%3E%20--%3E%20%3C%21--%20Modal%20--%3E%20%3Cscript%3E%20var%20videoplayer%20%3D%20document.getElementById%28%22videoplayer%22%29%3B%20function%20playPausevideoplayer%28%29%20%7B%20if%20%28videoplayer.paused%29%20videoplayer.play%28%29%3B%20else%20videoplayer.pause%28%29%3B%20document.getElementById%28%27controls2%27%29.style.display%3D%27block%27%3B%20document.getElementById%28%27controls2%27%29.style.display%3D%27none%27%3B%20%7D%20function%20rwd5svideoplayer%28%29%20%7B%20videoplayer.currentTime%3Dvideoplayer.currentTime%20-%205%3B%20%7D%20function%20fwd5svideoplayer%28%29%20%7B%20videoplayer.currentTime%3Dvideoplayer.currentTime%20+%205%3B%20%7D%20function%20rwd15svideoplayer%28%29%20%7B%20videoplayer.currentTime%3Dvideoplayer.currentTime%20-%2015%3B%20%7D%20function%20fwd15svideoplayer%28%29%20%7B%20videoplayer.currentTime%3Dvideoplayer.currentTime%20+%2015%3B%20%7D%20function%20toggleFullScreenvideoplayer%28%29%7B%20if%28videoplayer.requestFullScreen%29%7B%20videoplayer.requestFullScreen%28%29%3B%20%7D%20else%20if%28videoplayer.webkitRequestFullScreen%29%7B%20videoplayer.webkitRequestFullScreen%28%29%3B%20%7D%20else%20if%28videoplayer.mozRequestFullScreen%29%7B%20videoplayer.mozRequestFullScreen%28%29%3B%20%7D%20%7D%20%3C/script%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C/body%3E%0A%3C/html%3E%0A%0A%0A%09%09%20%20%20%0A%09%09%20%20%20%0A%09%09%20%20%20%0A%09%09%20%20%20%20%0A%0A%0A%0A%0A%09%09%0A%20%20%20%20%0A%0A%0A%0A%0A%0A%0A%3Cul%20style%3D%22list-style-type%3Anone%22%3E%20%3Cstyle%3Eul%7Bpadding-left%3A0px%3B%20text-align%3Acenter%3B%7D%20li%7B%20display%3Ainline-block%3Bpadding%3A0px%3B%7D%20%3C/style%3E%20%3Cdiv%20class%3D%22row%22%3E%20%3Cdiv%20class%3D%22col-xs-6%22%3E%3Cdiv%20style%3D%22position%3A%20fixed%3B%20top%3A%200px%3B%20width%3A%20100%25%22%3E%20%0A%0A%20%3C/script%3E%20%3Cstyle%3E.unselectable%20%7B%20-moz-user-select%3Anone%3B%20-webkit-user-select%3Anone%3B%20cursor%3A%20default%3B%20%7D%20html%20%7B%20-webkit-touch-callout%3A%20none%3B%20-webkit-user-select%3A%20none%3B%20-khtml-user-select%3A%20none%3B%20-moz-user-select%3A%20none%3B%20-ms-user-select%3A%20none%3B%20user-select%3A%20none%3B%20-webkit-tap-highlight-color%3A%20rgb%28204%2C0%2C204%29%3B%20%7D%20%09.animation%7Bfont-family%3A%27charm%27%2C%20%3B%20margin%3A%200%3B%20padding%3A%2020px%3B%20font-size%3A%2022px%3B%20background%3A%20url%28%27https%3A//thumbs.gfycat.com/AnnualMildArchaeopteryx-size_restricted.gif%27%29%20repeat%3B%20background-clip%3A%20text%3B%20-webkit-background-clip%3A%20text%3B%20color%3A%20transparent%3B%20animation%3A%20moveBg%205s%20linear%20infinite%3B%20-webkit-animation%3A%20moveBg%205s%20linear%20infinite%3B%7D%20@keyframes%20moveBg%20%7B%200%25%20%7B%20background-position%3A90%25%3B%20%7D%20100%25%20%7B%20background-position%3A10%25%3B%7D%20%7D%20%3C/style%3E%20%0A%0A%0A%0A%0A%0A%0A%3Cstyle%3E%20%0A.active%7Bcolor%3Awhite%3Bborder-bottom%3A%202.5px%20solid%20rgb%2865%2C165%2C255%29%3Bfont-weight%3Abold%3Bfont-size%3A12px%3B%7D.deactive%7Bcolor%3A%20rgb%28160%2C160%2C160%29%3Bfont-weight%3AMedium%3Bfont-size%3A12px%3B%7D%20.buttoncontrols1%20%7B%20display%3A%20inline-block%3B%20padding%3A%206px%207px%3B%20font-size%3A%2012px%3B%20background%3A%20none%3B%20%7D%20%0A.buttoncotrols1%3Ahover%20%7B%20background-color%3A%20none%3B%20font-size%3A%205px%3B%20%7D%20button%3Aactive%20%7B%20background-color%3A%20none%3B%20box-shadow%3A%20%23666%3B%20transform%3A%20translateY%282px%29%3B%20%7D%20button%20%7B%20background-color%3A%20none%3B%20/*%20Green%20*/%20border%3A%20none%3B%20color%3A%20none%3B%20padding%3A%203px%203px%3B%20text-align%3A%20center%3B%20text-decoration%3A%20none%3B%20display%3A%20inline-block%3B%20font-size%3A%2010px%3B%20margin%3A%204px%3B%204px%3B%20cursor%3A%20pointer%3B%20%7D%20%3C/style%3E%20%3C/head%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%20%20%20%3Cbody%20style%3D%22background-color%3A%2307274e%3B%22%3E%0A%20%0A%20%20%20%20%20%20%20%0A%0A%3Cscript%20type%3D%22text/javascript%22%3E%0A%20%20%20%20function%20filterSelection%28c%29%20%7B%0A%20%20%20%20%20%20var%20x%2C%20i%3B%0A%20%20%20%20%20%20x%20%3D%20document.getElementsByClassName%28%22filterDiv%22%29%3B%0A%20%20%20%20%20%20if%20%28c%20%3D%3D%20%22all%22%29%20c%20%3D%20%22%22%3B%0A%20%20%20%20%20%20//%20Add%20the%20%22show%22%20class%20%28display%3Ablock%29%20to%20the%20filtered%20elements%2C%20and%20remove%20the%20%22show%22%20class%20from%20the%20elements%20that%20are%20not%20selected%0A%20%20%20%20%20%20for%20%28i%20%3D%200%3B%20i%20%3C%20x.length%3B%20i++%29%20%7B%0A%20%20%20%20%20%20%20%20w3RemoveClass%28x%5Bi%5D%2C%20%22show%22%29%3B%0A%0A%20%20%20%20%20%20%20%20//%20w3AddClass%28x%5Bi%5D%2C%20%22active%22%29%3B%0A%20%20%20%20%20%20%20%20if%20%28x%5Bi%5D.className.indexOf%28c%29%20%3E%20-1%29%20w3AddClass%28x%5Bi%5D%2C%20%22show%22%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20//%20Show%20filtered%20elements%0A%20%20%20%20function%20w3AddClass%28element%2C%20name%29%20%7B%0A%20%20%20%20%20%20var%20i%2C%20arr1%2C%20arr2%3B%0A%20%20%20%20%20%20arr1%20%3D%20element.className.split%28%22%20%22%29%3B%0A%20%20%20%20%20%20arr2%20%3D%20name.split%28%22%20%22%29%3B%0A%20%20%20%20%20%20for%20%28i%20%3D%200%3B%20i%20%3C%20arr2.length%3B%20i++%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28arr1.indexOf%28arr2%5Bi%5D%29%20%3D%3D%20-1%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20element.className%20+%3D%20%22%20%22%20+%20arr2%5Bi%5D%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20//%20Hide%20elements%20that%20are%20not%20selected%0A%20%20%20%20function%20w3RemoveClass%28element%2C%20name%29%20%7B%0A%20%20%20%20%20%20var%20i%2C%20arr1%2C%20arr2%3B%0A%20%20%20%20%20%20arr1%20%3D%20element.className.split%28%22%20%22%29%3B%0A%20%20%20%20%20%20arr2%20%3D%20name.split%28%22%20%22%29%3B%0A%20%20%20%20%20%20for%20%28i%20%3D%200%3B%20i%20%3C%20arr2.length%3B%20i++%29%20%7B%0A%20%20%20%20%20%20%20%20while%20%28arr1.indexOf%28arr2%5Bi%5D%29%20%3E%20-1%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20arr1.splice%28arr1.indexOf%28arr2%5Bi%5D%29%2C%201%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20element.className%20%3D%20arr1.join%28%22%20%22%29%3B%0A%20%20%20%20%7D%0A%0A%20%20%20%20//%20Add%20active%20class%20to%20the%20current%20control%20button%20%28highlight%20it%29%0A%20%20%20%20var%20btnContainer%20%3D%20document.getElementById%28%22myBtnContainer%22%29%3B%0A%20%20%20%20var%20btns%20%3D%20btnContainer.getElementsByClassName%28%22btn%22%29%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20btns.length%3B%20i++%29%20%7B%0A%20%20%20%20%20%20btns%5Bi%5D.addEventListener%28%22click%22%2C%20function%28%29%20%7B%0A%20%20%20%20%20%20%20%20var%20current%20%3D%20document.getElementsByClassName%28%22active%22%29%3B%0A%20%20%20%20%20%20%20%20current%5B0%5D.className%20%3D%20current%5B0%5D.className.replace%28%22%20active%22%2C%20%22%22%29%3B%0A%20%20%20%20%20%20%20%20this.className%20+%3D%20%22%20active%22%3B%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%0A%3C/script%3E%0A%0A%0A'))
</script>
<!DOCTYPE html> <html lang="en"> <head> <center> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>❤️𝓢𝔂𝓮𝓭 𝓜𝓾𝔃𝓪𝓶𝓶𝓲𝓵 𝓢𝓱𝓪𝓱 ❤️</title> </head>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<link href="https://unpkg.com/video.js/dist/video-js.css" rel="stylesheet">
</script>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script type='text/javascript'
src="https://cdn.jsdelivr.net/npm/afterglowplayer@1/dist/afterglow.min.js">
</script>
<style>
.button{
border-radius: 20% ; border-color: white; padding: 2px; margin: 2px; height: 145px; width: 107px; }
body{ background-color: ##666666; } .footer{ width: 100%; height: 20px; background-color: }
</style> <style> .border { box-shadow: 0px 0px 0px 0px #F2F3F4; transition: box-shadow 0.6s
linear; margin 0.5em; } .border:hover { box-shadow: 0px 0px 0px 3px #F2F3F4; } </style>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<h1 style="text-align: center; padding-top: 69%;"> </span>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/makkah.smil/playlist.m3u8?').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1649059727Artboard5-100.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/madina.smil/chunklist_w1806546133_b748000_slEng.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1649059915Artboard5-100.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/streamtensports2/chunklist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/ten-sports-hd-poster.png?id=50
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/aplus1/chunklist.m3u8').play();">
<img id="imageField" class="Button border" name="imageField"
src="https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/72534-a-plus-entertainment.jpg " /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UC0Um3pnZ2WGBEeoA3BX2sKw.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/HUM-News-poster.png?id=89
" /></a>
<a class="imgclass" data-toggle="modal" data-target="#humtv"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSPHMb0SDVayOM0aTe_2p5sch2exDDzEUILCQ&usqp=CAU" /></a>
<a class="imgclass" data-toggle="modal" data-target="#masala"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS2A7Dp-yCGAshIP2_JzpabbgnXxPcO2V5MDg&usqp=CAU" /></a>
<a class="imgclass" data-toggle="modal" data-target="#ptvsp"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQXdNgcmXcPCrboLCOaKLWMmCFr7C_SZFkbIw&usqp=CAU" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCMfwlaPLGMn44BKvHv15yzA.m3u8').play();"PTV HOME"><img id="imageField" class="Button border" name="imageField"
src=" https://i.pinimg.com/736x/a3/2a/4f/a32a4fa22565c39c2d9bf0607c662d3f.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/bolent.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/16419858521.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://6zklx4wryw9b-hls-live.5centscdn.com/arynewsweb/app.stream/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRmy6_sXrvqrKBDOs7VEV_M08-gS4e4gPSDvQ&usqp=CAU
" /></a>
<a class="imgclass" data-toggle="modal" data-target="#aryz"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/ary-zindagi-live-poster.png?id=99" /></a>
<a class="imgclass" data-toggle="modal" data-target="#aryd"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/ary-digital-live-poster.png?id=99" /></a>
<a class="imgclass" data-toggle="modal" data-target="#arym"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQbSsmJQEBf6JjGLF0TsMlfEABgjq_cG2aXkA&usqp=CAU" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCE2oY4S4wOu6WofU2YbfWsw.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR44Im_QSF4JqonpdyXHZA0Z3QChxwBeJQkkA&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://jk3lz82elw79-hls-live.5centscdn.com/harPalGeo/955ad3298db330b5ee880c2c9e6f23a0.sdp/harPalGeo/Live1/chunks.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRFBDPmYvdvt3aA8LIJctm2g7uLIlIeTjyBkg&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://jk3lz82elw79-hls-live.5centscdn.com/GEONEWS/3500ba09d0538297440ca620c9dd46bf.sdp/GEONEWS/Backup1/chunks.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQbXX7vbVvxWWt4z8-9qxDYpOxZF86MkcBsDg&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://jk3lz82elw79-hls-live.5centscdn.com/TEZ/955ad3298db330b5ee880c2c9e6f23a0.sdp/TEZ/Live1/chunks.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZQg8_mou-UVVQw6eplpy_QHAI5ylc6oLisw&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/aajent.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/a0d9e-65d9a-aaj-entertainment-low.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/atv.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/d051f-atv.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/seetv.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/d1e60-65d9a-see-tv-low.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/playmax.smil/playlist.m3u8?').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e0bf4-play-ent.jpg
" /></a>
<a class="imgclass" data-toggle="modal" data-target="#music"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/8xm-live.png?id=57" /></a>
<a class="imgclass" data-toggle="modal" data-target="#jalwa"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/jalwa-tv-live.png?id=48" /></a>
<a class="imgclass" data-toggle="modal" data-target="#apna"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/apna-tv-live.png?id=35" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UC6AUCvTtpNzE6n-ZHPhkNMQ.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/tv-one-live.png?id=18
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('http://124.109.47.101/hls/stream1.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQn3syrT2vI3GTkXpXmn7Hanw1dxwY6U8EwZQ&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/mehran.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/06b64-mehran-tv.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/kohenoor.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/0a7b4-kohenoor.jpg
" /></a>
<a class="imgclass" data-toggle="modal" data-target="#ktn"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/ktn-entertainment-live.png?id=73" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://cdn5.mjunoon.tv:8087/app/EXP-ENT-159-1/live/159-1M/chunks.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_yHis2Xa4qfsj0Rrb7Z29gTzbl4w_HhQ-2A&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/filmworld.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/film_world.jpg
" /></a>
<a class="imgclass" data-toggle="modal" data-target="#afghan"><img id="imageField" class="Button border" name="imageField"
src=" https://images.mjunoon.tv:8181/logo/Afghan.webp" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/sindhtv.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/1c492-sindh-tv-4.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/jaagtv.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/820ad-gnn-4.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/92news2/chunklist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/3981a-65d9a-92-news-low.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/bolnews.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/16419845781.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/saamanews2/chunklist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/samaa_news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/channel24.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/24_news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://imob.dunyanews.tv/livehd/_definst_/ngrp:dunyalivehd_2_all/chunklist_w272793960_b950272.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQC3oyXCOhjnHjKAK09E2LJNF8rpA6O7iak3w&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/aajnews2/chunklist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1611317119324x432.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/neo.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/b8f1b-neo-news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://live-hls-web-aje.getaj.net/AJE/index.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/80723-al-jazeera.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/stream02/streamPlaylist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/c3332-dw-tv.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/khyber.smil/playlist.m3u8?').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/9e716-khyber-entertainment.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://livecdn.live247stream.com/discoverpakistan/tapmad/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1624891948324x432.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/metro.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/b736c-metro-one.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/khybernews.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/9b2c5-khyber-new.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/dhartitv.smil/playlist.m3u8?').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/5eb9a-dharti-tv.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCb3vKSPkWFWiFljsSGoeyoQ.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/waseb-live.png?id=34
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/k21.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/7d071-k21-news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/k2.smil/playlist.m3u8?').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/2ae68-kay-2.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/vsh.smil/playlist.m3u8?').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/61c18-vsh-news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/awaztv.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/d0b57-awaz-tv.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/channel5.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT4lPk1-ktnMAt64PW_btp5lEzi58iafgKthw&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/sindhnews.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRDoKrcq9ZLKIXxFuGV_rPiUJwH32k6x9hFCQ&usqp=CAU
" /></a>
<a class="imgclass" data-toggle="modal" data-target="#lhrrang"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTdJmKbLAJUczYlI6HOUi_gkc1upvtjV78Vlw&usqp=CAU" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://stream.wpbond.com/live/ahlebait1.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgnnnQEfd4TTqWFHaWJfM2qAH_NkniKRfhjw&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://mn-nl.mncdn.com/ihtv4/ihtv4_sd.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://i.ibb.co/h718TXn/Imam-Hussain-urdu.png
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://stream.wpbond.com/live/hidayat1.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://shiachannel.in/livetv/img/channels/hidayat.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://cdn.live247stream.com/hyder/tv/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://shiachannel.in/livetv/img/channels/hyder.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://live.ishiacloud.com/haditv.co.uk/haditv1.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://shiachannel.in/livetv/img/channels/haditv.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://madnitv.vdn.dstreamone.net/madnitvurdu/madniurduabr/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS1RVaa0cpQKpm_4JhiAiAM8hwYKFXF-pT4Rg&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('http://162.250.201.58:8032/pk/paighamtv/tracks-v1a1/mono.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT1dGxnG1TL8QpX1osdyImRcIeTfQ-bLOroLw&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://vcdn.dunyanews.tv/lahorelive/_definst_/ngrp:lnews_1_all/chunklist_w1330613772_b950272.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ5QJoJF6lS2xQ6WqW_IA9Pqc-Ra1tMGfrHXg&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://varun-iptv.netlify.app/m3u/discoverykidshindi.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS6ZAgThKKJ5qaWNbYXzM9fXOAK-mYwianVBQ&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/discoverykids2/chunklist.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS6ZAgThKKJ5qaWNbYXzM9fXOAK-mYwianVBQ&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://varun-iptv.netlify.app/m3u/discoveryhindi.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQtzusG-EYgpogF1wGpAGad7j_rw4oQskvI7A&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://mhdtvworld.me/delta/discovery/api/Discovery_Science_Hindi.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://i.pinimg.com/736x/97/fe/be/97febed8af524ec27a4331e8a32dbefb.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/animal2/chunklist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/996e5-animal-planet-4.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/cartoonhindi2/chunklist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://i.pinimg.com/736x/e1/a2/bc/e1a2bcd19a3ef6425a286a92a4cb111f.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/baby_360p/chunklist.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/0a156-baby-tv-4.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/bbcnews1/chunklist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/a1661-65d9a-bbc-world-news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/cnn.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src="https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e526b-cnn-4.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/outdoornew.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1589969868324 x 432.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/voa.smil/playlist.m3u8?').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/64758-voice-of-america.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tv-trtworld.live.trt.com.tr/master.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src="https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/9d634-trt-world.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/euronews2/chunklist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e34de-euro-news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/motorvision2/chunklist.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1611317202324x432.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/originlive/eurosports2/chunklist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/images/channels/new_thumbs/1669637605324x432.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UC6UW8OOQQBGdwmnaYLh-qdw.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/city_41.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://tapmadlive.akamaized.net/tapmadold/city42.smil/playlist.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://d34080pnh6e62j.cloudfront.net/adminpanel/assets/uploads/NewChannelThumbnailPath/e8458-city-42.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCB-8E662xOk1I3-wdhTMNiw.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQzesmsDVfoPq4lnIDuVmOilRzhe-eQnZ5SDw&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCHlCp7kL8jC9HJrSVJuNJzA.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/rohi_tv.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCjHWKUbljF4hp3s5PbgK9uA.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/express-news-live.png?id=70
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCjHWKUbljF4hp3s5PbgK9uA.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTTsAM97jwL8BBP7JI5ppq36NGp0mIZ1TfCcw&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UC5mwDEzm4FzXKoHPBDnuUQQ.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://jazztv.pk/jazzlive/uploads/channels/poster/abb-takk-news-live.png?id=38
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UC_LasHwH-kf4ALZ0ZZqLLLg.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://i.ibb.co/024dVss/ABN-NEWS.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCLdmX2z-l54Wh7ZLG7leSQA.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSPzU2nASGq5QnaIfF2U7KdBDieAfNEzXHMiQ&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCElJZvY_RVra6qjD8WSQYog.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/public_news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCmqlO4sewQO97iCeakXTdaw.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTuScBfUeJyT-7UgeVAVwaPuRyhMI3p19eGmg&usqp=CAU
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCLKiuWFYwRJ0uQlV_OHD5ig.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://i.pinimg.com/736x/8e/19/8e/8e198efe5194682b5bd34b7c869666e7.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UC5RvV_LtR1dxPCVFGw6dxXA.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://i.pinimg.com/736x/c2/1f/c2/c21fc251413208b6f57d070f014798bd.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCj-e7yp2_-qE-TPritppZGQ.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://i.pinimg.com/736x/0f/88/82/0f8882fa184a639eb549077eef3f54d9.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UCaxR-D8FjZ-2otbU0_Y2grg.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/dawn_news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UC6XLG5YjZfK1p5oY5MJ3NMw.m3u8').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/gtv-news.jpg
" /></a>
<a onClick="afterglow.getPlayer('videoplayer').pause().currentTime(0).src('https://ythls.onrender.com/channel/UC-an6pHQfTVZXgrLP0p1EGA.m3u8 ').play();"><img id="imageField" class="Button border" name="imageField"
src=" https://content-dmd.s3.eu-central-1.amazonaws.com/TP-Content/static-content/live/web-thumb/capital_tv.jpg
" /></a>
<body> <ul id="playlist"> <h4 class="animation"><hr>❤️𝓢𝔂𝓮𝓭 𝓜𝓾𝔃𝓪𝓶𝓶𝓲𝓵 𝓢𝓱𝓪𝓱 ❤️<hr></h4>
<div style="width: 100%;" class="modal fade" id="humtv" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src="https://www.youtube.com/embed/G3fXcmNLS1A" width="320"height="280" allowfullscreen></iframe>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video3').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="masala" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src="https://www.youtube.com/embed/zed-qP8Q3L0" width="320"height="280" allowfullscreen></iframe>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video3').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="lhrrang" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src="https://www.youtube.com/embed/z11ADVq5kyA?autoplay=0&fs=1&iv_load_policy=3&showinfo=0&rel=0&cc_load_policy=1&start=0&end=0&origin=http://youtubeembedcode.com" width="320"height="280" allowfullscreen></iframe>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video3').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="ptvsp" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src=" " width="320"height="280" name="123"allowfullscreen" style="background-color:#000"></iframe>
<a href="https://stream.crichd.vip/update/ptv.php" target="123">
<center><input type="button" style="background-color:green;color:white;width:140px;
height:40px;" value="PLAY"></a>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video3').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="music" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src=" " width="320"height="280" name="1"allowfullscreen" style="background-color:#000"></iframe>
<a href="https://www.mjunoon.tv/embedplayer/8xm-live.html" target="1">
<center><input type="button" style="background-color:green;color:white;width:140px;
height:40px;" value="PLAY"></a>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video4').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="jalwa" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src=" " width="320"height="280" name="2"allowfullscreen" style="background-color:#000"></iframe>
<a href="https://www.mjunoon.tv/embedplayer/jalwa-tv-live.html" target="2">
<center><input type="button" style="background-color:green;color:white;width:140px;
height:40px;" value="PLAY"></a>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video4').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="afghan" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src=" " width="320"height="280" name="3"allowfullscreen" style="background-color:#000"></iframe>
<a href="https://www.mjunoon.tv/embedplayer/afghan-tv-live.html" target="3">
<center><input type="button" style="background-color:green;color:white;width:140px;
height:40px;" value="PLAY"></a>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video4').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="apna" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src=" " width="320"height="280" name="4"allowfullscreen" style="background-color:#000"></iframe>
<a href="https://www.mjunoon.tv/embedplayer/apna-tv-live.html" target="4">
<center><input type="button" style="background-color:green;color:white;width:140px;
height:40px;" value="PLAY"></a>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video4').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="ktn" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src=" " width="320"height="280" name="5"allowfullscreen" style="background-color:#000"></iframe>
<a href="https://www.mjunoon.tv/embedplayer/ktn-entertainment-live.html" target="5">
<center><input type="button" style="background-color:green;color:white;width:140px;
height:40px;" value="PLAY"></a>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video4').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="aryz" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src="https://www.ica.art/media/03785.gif" width="320"height="215" name="6"allowfullscreen" style="background-color:#000"></iframe>
<a href="https://rawcdn.githack.com/MuzammilShah51214/LIVE-TV-/d7581a2bd9262eeb9849a122883bf61ca4c6afe3/Ary-zindagi-live.html" target="6">
<center><input type="button" style="background-color:green;color:white;width:140px;
height:40px;" value="PLAY"></a>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video4').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="aryd" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src="https://www.ica.art/media/03785.gif" width="320"height="215" name="7"allowfullscreen" style="background-color:#000"></iframe>
<a href="https://rawcdn.githack.com/MuzammilShah51214/LIVE-TV-/d7581a2bd9262eeb9849a122883bf61ca4c6afe3/Ary-digital-live.html" target="7">
<center><input type="button" style="background-color:green;color:white;width:140px;
height:40px;" value="PLAY"></a>
</div> <div class="modal-footer"> <button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video4').pause()"><font size="+2">Back</button> </div> </div> </div>
</div>
<div style="width: 100%;" class="modal fade" id="arym" role="dialog"> <div class="modal-dialog"><div class="modal-content"> </i>
<div class="modal-body">
<iframe src="https://www.ica.art/media/03785.gif" width="320"height="215" name="10"allowfullscreen" style="background-color:#000"></iframe>
<a href="https://rawcdn.githack.com/MuzammilShah51214/LIVE-TV-/6e3a8b426be43eb8a2ad97c200066bdb38aff213/Ary-music-live.html" target="10">
<center><input type="button" style="background-color:green;color:white;width:140px;
height:40px;" value="PLAY"></a>
</div> <div class="modal-footer">
<button type="button" class="button2" data-dismiss="modal" onclick="videojs('my-video4').pause()">
<font size="+2">Back</button> </div> </div> </div>
</div>
<div class="row"> <div class="col-xs-6"><div style="position: fixed; top: 0px; left: -5%; width: 219%"><center> <div class="col-xs-6">
<video class="afterglow" poster="https://i.ibb.co/3NgJ4zh/Poster.jpg" id='videoplayer' title='Video 01' width='16' height='9' data-autoresize="fit" src="https://tapmadlive.akamaized.net/originlive/aplus1/chunklist.m3u8"></video> </div>
<p style="display: none" id="adjust">0</p>
<div style="font-weight: bold; border-radius: 70%; color: gold; left: -2px; position: fixed; top: 203px">
<img src="https://i.ibb.co/LrpxfgQ/Pak-Live-channels.png"height="63"width="365"></img>
<br>
</div>
<p style="display: none" id="adjust">0</p>
<div style="font-weight: bold; border-radius: 70%; color: gold; left: 125px; position: fixed; top: 195px">
<center>
<button class="buttoncontrols1" onclick="afterglow.getPlayer('videoplayer').play()" > <i class="fas fa-play" style='font-size:15px;color:rgb(47,239,16);'></i></button> <button class="buttoncontrols1" onclick="afterglow.getPlayer('videoplayer').pause()" > <i class="fas fa-pause" style='font-size:15px;color:rgb(255,69,0);'></i> </button> </button> <button class="buttoncontrols1" onclick="afterglow.getPlayer('videoplayer').requestFullscreen()" > <font color="orange"><i class="fas fa-expand" style='font-size:15px;color:white'></i></button>
</div><div ></center> <!-- <center> <div style="background-color:black"> <button class="button5" data-dismiss="modal" onclick="afterglow.getPlayer('videoplayer').pause()" ><font color="red" size="4"> Close </button> </center> <br> </div> --> <!-- Modal --> <script> var videoplayer = document.getElementById("videoplayer"); function playPausevideoplayer() { if (videoplayer.paused) videoplayer.play(); else videoplayer.pause(); document.getElementById('controls2').style.display='block'; document.getElementById('controls2').style.display='none'; } function rwd5svideoplayer() { videoplayer.currentTime=videoplayer.currentTime - 5; } function fwd5svideoplayer() { videoplayer.currentTime=videoplayer.currentTime + 5; } function rwd15svideoplayer() { videoplayer.currentTime=videoplayer.currentTime - 15; } function fwd15svideoplayer() { videoplayer.currentTime=videoplayer.currentTime + 15; } function toggleFullScreenvideoplayer(){ if(videoplayer.requestFullScreen){ videoplayer.requestFullScreen(); } else if(videoplayer.webkitRequestFullScreen){ videoplayer.webkitRequestFullScreen(); } else if(videoplayer.mozRequestFullScreen){ videoplayer.mozRequestFullScreen(); } } </script>
</body>
</html>
<ul style="list-style-type:none"> <style>ul{padding-left:0px; text-align:center;} li{ display:inline-block;padding:0px;} </style> <div class="row"> <div class="col-xs-6"><div style="position: fixed; top: 0px; width: 100%">
</script> <style>.unselectable { -moz-user-select:none; -webkit-user-select:none; cursor: default; } html { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-tap-highlight-color: rgb(204,0,204); } .animation{font-family:'charm', ; margin: 0; padding: 20px; font-size: 22px; background: url('https://thumbs.gfycat.com/AnnualMildArchaeopteryx-size_restricted.gif') repeat; background-clip: text; -webkit-background-clip: text; color: transparent; animation: moveBg 5s linear infinite; -webkit-animation: moveBg 5s linear infinite;} @keyframes moveBg { 0% { background-position:90%; } 100% { background-position:10%;} } </style>
<style>
.active{color:white;border-bottom: 2.5px solid rgb(65,165,255);font-weight:bold;font-size:12px;}.deactive{color: rgb(160,160,160);font-weight:Medium;font-size:12px;} .buttoncontrols1 { display: inline-block; padding: 6px 7px; font-size: 12px; background: none; }
.buttoncotrols1:hover { background-color: none; font-size: 5px; } button:active { background-color: none; box-shadow: #666; transform: translateY(2px); } button { background-color: none; /* Green */ border: none; color: none; padding: 3px 3px; text-align: center; text-decoration: none; display: inline-block; font-size: 10px; margin: 4px; 4px; cursor: pointer; } </style> </head>
<body style="background-color:#07274e;">
<script type="text/javascript">
function filterSelection(c) {
var x, i;
x = document.getElementsByClassName("filterDiv");
if (c == "all") c = "";
// Add the "show" class (display:block) to the filtered elements, and remove the "show" class from the elements that are not selected
for (i = 0; i < x.length; i++) {
w3RemoveClass(x[i], "show");
// w3AddClass(x[i], "active");
if (x[i].className.indexOf(c) > -1) w3AddClass(x[i], "show");
}
}
// Show filtered elements
function w3AddClass(element, name) {
var i, arr1, arr2;
arr1 = element.className.split(" ");
arr2 = name.split(" ");
for (i = 0; i < arr2.length; i++) {
if (arr1.indexOf(arr2[i]) == -1) {
element.className += " " + arr2[i];
}
}
}
// Hide elements that are not selected
function w3RemoveClass(element, name) {
var i, arr1, arr2;
arr1 = element.className.split(" ");
arr2 = name.split(" ");
for (i = 0; i < arr2.length; i++) {
while (arr1.indexOf(arr2[i]) > -1) {
arr1.splice(arr1.indexOf(arr2[i]), 1);
}
}
element.className = arr1.join(" ");
}
// Add active class to the current control button (highlight it)
var btnContainer = document.getElementById("myBtnContainer");
var btns = btnContainer.getElementsByClassName("btn");
for (var i = 0; i < btns.length; i++) {
btns[i].addEventListener("click", function() {
var current = document.getElementsByClassName("active");
current[0].className = current[0].className.replace(" active", "");
this.className += " active";
});
}
</script>