├── .htaccess ├── assets ├── css │ └── style.css ├── imgs │ ├── vt.jpg │ └── vt.png └── js │ ├── jio.js │ └── main.js ├── chat └── index.html ├── data.json ├── gitattributes ├── index.html ├── live ├── biggboss │ ├── assets │ │ ├── KB5zFt7A.js │ │ ├── jwpsrv.js │ │ ├── style.css │ │ └── vast.js │ ├── boss.json │ ├── css │ │ └── style.css │ ├── index.html │ ├── js │ │ └── script.js │ ├── new.html │ ├── old ui .html │ └── play.html ├── discovery │ ├── Play.html │ ├── api │ │ ├── Animal_Planet.m3u8 │ │ ├── DMAX.m3u8 │ │ ├── Discovery+.m3u8 │ │ ├── Discovery_Channel.m3u8 │ │ ├── Discovery_Kids.m3u8 │ │ ├── Discovery_Science.m3u8 │ │ ├── Discovery_Turbo.m3u8 │ │ ├── Eurosport.m3u8 │ │ ├── Food Network.m3u8 │ │ ├── HGTV.m3u8 │ │ ├── Investigation_Discovery.m3u8 │ │ ├── TLC.m3u8 │ │ └── TRVL_Channel.m3u8 │ ├── assets │ │ ├── css │ │ │ ├── .techiesneh │ │ │ ├── index.php │ │ │ ├── search.css │ │ │ ├── techiesneh.min.css │ │ │ └── tslogin.css │ │ ├── data │ │ │ ├── .htaccess │ │ │ └── index.php │ │ ├── img │ │ │ ├── index.php │ │ │ └── jwplay │ │ │ │ ├── buffer.svg │ │ │ │ ├── captions-hover.svg │ │ │ │ ├── captions.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── fullscreen-off-hover.svg │ │ │ │ ├── fullscreen-off.svg │ │ │ │ ├── fullscreen-on-hover.svg │ │ │ │ ├── fullscreen-on.svg │ │ │ │ ├── next-hover.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause-hover.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play-hover.svg │ │ │ │ ├── play-idle-hover.svg │ │ │ │ ├── play-idle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playlist-hover.svg │ │ │ │ ├── playlist.svg │ │ │ │ ├── quality-hover.svg │ │ │ │ ├── quality.svg │ │ │ │ ├── replay-hover.svg │ │ │ │ ├── replay.svg │ │ │ │ ├── rewind-hover.svg │ │ │ │ ├── rewind.svg │ │ │ │ ├── settings-hover.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── volume-off-hover.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-on-hover.svg │ │ │ │ └── volume-on.svg │ │ ├── index.php │ │ └── js │ │ │ ├── details.js │ │ │ ├── index.php │ │ │ ├── jwplayer.js │ │ │ └── search.js │ ├── discovery.json │ └── index.html ├── jio │ ├── assets │ │ ├── css │ │ │ ├── .techiesneh │ │ │ ├── index.php │ │ │ ├── search.css │ │ │ ├── techiesneh.min.css │ │ │ └── tslogin.css │ │ ├── data │ │ │ ├── .htaccess │ │ │ └── index.php │ │ ├── img │ │ │ ├── index.php │ │ │ └── jwplay │ │ │ │ ├── buffer.svg │ │ │ │ ├── captions-hover.svg │ │ │ │ ├── captions.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── fullscreen-off-hover.svg │ │ │ │ ├── fullscreen-off.svg │ │ │ │ ├── fullscreen-on-hover.svg │ │ │ │ ├── fullscreen-on.svg │ │ │ │ ├── next-hover.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause-hover.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play-hover.svg │ │ │ │ ├── play-idle-hover.svg │ │ │ │ ├── play-idle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playlist-hover.svg │ │ │ │ ├── playlist.svg │ │ │ │ ├── quality-hover.svg │ │ │ │ ├── quality.svg │ │ │ │ ├── replay-hover.svg │ │ │ │ ├── replay.svg │ │ │ │ ├── rewind-hover.svg │ │ │ │ ├── rewind.svg │ │ │ │ ├── settings-hover.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── volume-off-hover.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-on-hover.svg │ │ │ │ └── volume-on.svg │ │ ├── index.php │ │ └── js │ │ │ ├── details.js │ │ │ ├── index.php │ │ │ ├── jwplayer.js │ │ │ └── search.js │ ├── iframe_Play.html │ ├── iframe_jio.json │ ├── index.html │ ├── m3u_jio.json │ ├── m3u_play.html │ ├── m3u_play.txt │ ├── other │ └── other 2 ├── ott │ └── index.html ├── play │ ├── .htaccess │ ├── TP │ │ ├── index.html │ │ ├── player.html │ │ ├── script.js │ │ ├── styles.css │ │ └── tataplay.m3u │ ├── assets │ │ ├── css │ │ │ ├── .techiesneh │ │ │ ├── index.php │ │ │ ├── search.css │ │ │ ├── techiesneh.min.css │ │ │ └── tslogin.css │ │ ├── data │ │ │ ├── .htaccess │ │ │ └── index.php │ │ ├── img │ │ │ ├── index.php │ │ │ └── jwplay │ │ │ │ ├── buffer.svg │ │ │ │ ├── captions-hover.svg │ │ │ │ ├── captions.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── fullscreen-off-hover.svg │ │ │ │ ├── fullscreen-off.svg │ │ │ │ ├── fullscreen-on-hover.svg │ │ │ │ ├── fullscreen-on.svg │ │ │ │ ├── next-hover.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause-hover.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play-hover.svg │ │ │ │ ├── play-idle-hover.svg │ │ │ │ ├── play-idle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playlist-hover.svg │ │ │ │ ├── playlist.svg │ │ │ │ ├── quality-hover.svg │ │ │ │ ├── quality.svg │ │ │ │ ├── replay-hover.svg │ │ │ │ ├── replay.svg │ │ │ │ ├── rewind-hover.svg │ │ │ │ ├── rewind.svg │ │ │ │ ├── settings-hover.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── volume-off-hover.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-on-hover.svg │ │ │ │ └── volume-on.svg │ │ ├── index.php │ │ └── js │ │ │ ├── details.js │ │ │ ├── index.php │ │ │ ├── jwplayer.js │ │ │ └── search.js │ ├── d1.html │ ├── d2.html │ ├── index.html │ ├── index123.html │ ├── main.css │ ├── main.js │ ├── new pro .html │ ├── old play.html │ ├── others.html │ ├── play.html │ └── tp.json ├── sony-liv │ ├── Play.html │ ├── assets │ │ ├── css │ │ │ ├── .techiesneh │ │ │ ├── index.php │ │ │ ├── search.css │ │ │ ├── techiesneh.min.css │ │ │ └── tslogin.css │ │ ├── data │ │ │ ├── .htaccess │ │ │ └── index.php │ │ ├── img │ │ │ ├── index.php │ │ │ └── jwplay │ │ │ │ ├── buffer.svg │ │ │ │ ├── captions-hover.svg │ │ │ │ ├── captions.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── fullscreen-off-hover.svg │ │ │ │ ├── fullscreen-off.svg │ │ │ │ ├── fullscreen-on-hover.svg │ │ │ │ ├── fullscreen-on.svg │ │ │ │ ├── next-hover.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause-hover.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play-hover.svg │ │ │ │ ├── play-idle-hover.svg │ │ │ │ ├── play-idle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playlist-hover.svg │ │ │ │ ├── playlist.svg │ │ │ │ ├── quality-hover.svg │ │ │ │ ├── quality.svg │ │ │ │ ├── replay-hover.svg │ │ │ │ ├── replay.svg │ │ │ │ ├── rewind-hover.svg │ │ │ │ ├── rewind.svg │ │ │ │ ├── settings-hover.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── volume-off-hover.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-on-hover.svg │ │ │ │ └── volume-on.svg │ │ ├── index.php │ │ └── js │ │ │ ├── details.js │ │ │ ├── index.php │ │ │ ├── jwplayer.js │ │ │ └── search.js │ ├── iframe_sony.json │ ├── index.html │ ├── m3u_sony.json │ └── rd_play.html ├── sunnxt │ ├── index │ └── index.html ├── voot │ ├── Play.html │ ├── assets │ │ ├── css │ │ │ ├── .techiesneh │ │ │ ├── index.php │ │ │ ├── search.css │ │ │ ├── techiesneh.min.css │ │ │ └── tslogin.css │ │ ├── data │ │ │ ├── .htaccess │ │ │ └── index.php │ │ ├── img │ │ │ ├── index.php │ │ │ └── jwplay │ │ │ │ ├── buffer.svg │ │ │ │ ├── captions-hover.svg │ │ │ │ ├── captions.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── fullscreen-off-hover.svg │ │ │ │ ├── fullscreen-off.svg │ │ │ │ ├── fullscreen-on-hover.svg │ │ │ │ ├── fullscreen-on.svg │ │ │ │ ├── next-hover.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause-hover.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play-hover.svg │ │ │ │ ├── play-idle-hover.svg │ │ │ │ ├── play-idle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playlist-hover.svg │ │ │ │ ├── playlist.svg │ │ │ │ ├── quality-hover.svg │ │ │ │ ├── quality.svg │ │ │ │ ├── replay-hover.svg │ │ │ │ ├── replay.svg │ │ │ │ ├── rewind-hover.svg │ │ │ │ ├── rewind.svg │ │ │ │ ├── settings-hover.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── volume-off-hover.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-on-hover.svg │ │ │ │ └── volume-on.svg │ │ ├── index.php │ │ └── js │ │ │ ├── details.js │ │ │ ├── index.php │ │ │ ├── jwplayer.js │ │ │ └── search.js │ ├── index.html │ ├── index2.html │ └── voot.json └── zee │ ├── index │ └── index.html ├── ott ├── movie │ ├── .js │ ├── index.html │ ├── movies.json │ ├── old.html │ ├── play.html │ └── test │ │ ├── du.html │ │ ├── f.html │ │ ├── new play.html │ │ ├── play new new .html │ │ ├── play.html │ │ └── t3.html ├── music.html ├── playlist.html ├── radio │ ├── data.json │ ├── index.html │ ├── index22332.html │ └── radio.html └── tvshow.html ├── play.html ├── play2.html ├── player.html ├── s.html ├── sony ├── clappr-pip.min.js ├── clappr.min.js ├── dash-shaka-playback.js ├── level-selector.min.js ├── player.js └── sony.html └── sports ├── bm.html ├── fc ├── assets │ ├── KB5zFt7A.js │ ├── jwpsrv.js │ ├── style.css │ └── vast.js ├── css │ └── style.css ├── f.php ├── fc.html ├── index.html ├── index2.html ├── js │ └── script.js ├── play.html ├── play2.html └── try.html ├── icc-test ├── error.html ├── index.html └── test.json ├── ipl old ├── m1.html ├── m1 │ ├── eng.html │ ├── hin.html │ ├── kan.html │ ├── mal.html │ ├── tam.html │ └── tel.html ├── m2.html └── m2 │ ├── eng.html │ ├── hin.html │ ├── kan.html │ ├── mal.html │ ├── tam.html │ └── tel.html ├── ipl-star sports ├── index.html ├── js │ ├── script.js │ └── view.js ├── m1.html ├── m1 │ ├── spe.html │ ├── sph.html │ ├── spt.html │ ├── sptif.html │ └── sst1.html ├── m2.html └── m2 │ ├── spe.html │ ├── sph.html │ ├── spk.html │ ├── spt.html │ ├── spte.html │ ├── sptif.html │ └── sst1.html ├── ipl ├── assets │ ├── jwplayer.js │ ├── style.css │ └── view.js ├── m1.json ├── m1_live.html ├── m2.json └── m2_live.html ├── json ├── Play.html ├── assets │ ├── KB5zFt7A.js │ ├── jwpsrv.js │ ├── style.css │ ├── v1 style.css │ └── vast.js ├── css │ └── style.css ├── jd.html ├── js │ └── script.js └── sports.json ├── keys .txt ├── main_sports.html ├── main_sports.txt ├── play ├── 18main.html ├── all_sports.html ├── astro.html ├── css │ ├── 1style.css │ ├── style.css │ └── style2.css ├── js │ ├── script.js │ └── view.js ├── skycricket.html ├── sports18_3.html ├── sptel.html ├── sse.html ├── ssh.html ├── sst.html ├── t.html ├── t20.html ├── test.html ├── test │ ├── test.html │ └── test111.html ├── tnt.html ├── video │ ├── 18hd.html │ ├── astro.html │ ├── d.html │ ├── live.htm │ ├── live_files │ │ ├── 09f1e956c711aea6a898d5abbb78d092.js │ │ ├── SAHhwvZq.js │ │ ├── jwpsrv.js │ │ └── sfp.js │ ├── sp_tamil.html │ ├── sp_telugu.html │ ├── speng.html │ ├── tntmain.html │ └── willow.html └── willow.html ├── sony ├── New Text Document.txt ├── assets │ ├── KB5zFt7A.js │ ├── jwpsrv.js │ ├── style.css │ └── vast.js ├── css │ └── style.css ├── f.php ├── index.html ├── js │ └── script.js ├── play.html ├── rd_play.html └── rd_play1.html └── t20 ├── assets ├── KB5zFt7A.js ├── jwpsrv.js ├── style.css ├── v1 style.css └── vast.js ├── cl.html ├── css └── style.css ├── js └── script.js ├── sports.json └── tamil.txt /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/.htaccess -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/imgs/vt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/assets/imgs/vt.jpg -------------------------------------------------------------------------------- /assets/imgs/vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/assets/imgs/vt.png -------------------------------------------------------------------------------- /assets/js/jio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/assets/js/jio.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/chat/index.html -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/data.json -------------------------------------------------------------------------------- /gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/gitattributes -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/index.html -------------------------------------------------------------------------------- /live/biggboss/assets/KB5zFt7A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/assets/KB5zFt7A.js -------------------------------------------------------------------------------- /live/biggboss/assets/jwpsrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/assets/jwpsrv.js -------------------------------------------------------------------------------- /live/biggboss/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/assets/style.css -------------------------------------------------------------------------------- /live/biggboss/assets/vast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/assets/vast.js -------------------------------------------------------------------------------- /live/biggboss/boss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/boss.json -------------------------------------------------------------------------------- /live/biggboss/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/css/style.css -------------------------------------------------------------------------------- /live/biggboss/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/index.html -------------------------------------------------------------------------------- /live/biggboss/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/js/script.js -------------------------------------------------------------------------------- /live/biggboss/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/new.html -------------------------------------------------------------------------------- /live/biggboss/old ui .html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/old ui .html -------------------------------------------------------------------------------- /live/biggboss/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/biggboss/play.html -------------------------------------------------------------------------------- /live/discovery/Play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/Play.html -------------------------------------------------------------------------------- /live/discovery/api/Animal_Planet.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/Animal_Planet.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/DMAX.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/DMAX.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/Discovery+.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/Discovery+.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/Discovery_Channel.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/Discovery_Channel.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/Discovery_Kids.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/Discovery_Kids.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/Discovery_Science.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/Discovery_Science.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/Discovery_Turbo.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/Discovery_Turbo.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/Eurosport.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/Eurosport.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/Food Network.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/Food Network.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/HGTV.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/HGTV.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/Investigation_Discovery.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/Investigation_Discovery.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/TLC.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/TLC.m3u8 -------------------------------------------------------------------------------- /live/discovery/api/TRVL_Channel.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/api/TRVL_Channel.m3u8 -------------------------------------------------------------------------------- /live/discovery/assets/css/.techiesneh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /live/discovery/assets/css/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/discovery/assets/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/css/search.css -------------------------------------------------------------------------------- /live/discovery/assets/css/techiesneh.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/css/techiesneh.min.css -------------------------------------------------------------------------------- /live/discovery/assets/css/tslogin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/css/tslogin.css -------------------------------------------------------------------------------- /live/discovery/assets/data/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /live/discovery/assets/data/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/discovery/assets/img/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/buffer.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/captions-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/captions-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/captions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/captions.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/close-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/close.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/fullscreen-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/fullscreen-off-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/fullscreen-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/fullscreen-off.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/fullscreen-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/fullscreen-on-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/fullscreen-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/fullscreen-on.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/next-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/next-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/next.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/pause-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/pause-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/pause.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/play-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/play-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/play-idle-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/play-idle-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/play-idle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/play-idle.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/play.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/playlist-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/playlist-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/playlist.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/quality-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/quality-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/quality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/quality.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/replay-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/replay-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/replay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/replay.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/rewind-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/rewind-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/rewind.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/settings-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/settings-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/settings.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/volume-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/volume-off-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/volume-off.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/volume-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/volume-on-hover.svg -------------------------------------------------------------------------------- /live/discovery/assets/img/jwplay/volume-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/img/jwplay/volume-on.svg -------------------------------------------------------------------------------- /live/discovery/assets/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/discovery/assets/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/js/details.js -------------------------------------------------------------------------------- /live/discovery/assets/js/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/discovery/assets/js/jwplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/js/jwplayer.js -------------------------------------------------------------------------------- /live/discovery/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/assets/js/search.js -------------------------------------------------------------------------------- /live/discovery/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/discovery.json -------------------------------------------------------------------------------- /live/discovery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/discovery/index.html -------------------------------------------------------------------------------- /live/jio/assets/css/.techiesneh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /live/jio/assets/css/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/jio/assets/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/css/search.css -------------------------------------------------------------------------------- /live/jio/assets/css/techiesneh.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/css/techiesneh.min.css -------------------------------------------------------------------------------- /live/jio/assets/css/tslogin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/css/tslogin.css -------------------------------------------------------------------------------- /live/jio/assets/data/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /live/jio/assets/data/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/jio/assets/img/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/buffer.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/captions-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/captions-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/captions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/captions.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/close-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/close.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/fullscreen-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/fullscreen-off-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/fullscreen-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/fullscreen-off.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/fullscreen-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/fullscreen-on-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/fullscreen-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/fullscreen-on.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/next-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/next-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/next.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/pause-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/pause-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/pause.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/play-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/play-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/play-idle-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/play-idle-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/play-idle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/play-idle.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/play.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/playlist-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/playlist-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/playlist.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/quality-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/quality-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/quality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/quality.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/replay-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/replay-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/replay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/replay.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/rewind-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/rewind-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/rewind.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/settings-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/settings-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/settings.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/volume-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/volume-off-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/volume-off.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/volume-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/volume-on-hover.svg -------------------------------------------------------------------------------- /live/jio/assets/img/jwplay/volume-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/img/jwplay/volume-on.svg -------------------------------------------------------------------------------- /live/jio/assets/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/jio/assets/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/js/details.js -------------------------------------------------------------------------------- /live/jio/assets/js/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/jio/assets/js/jwplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/js/jwplayer.js -------------------------------------------------------------------------------- /live/jio/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/assets/js/search.js -------------------------------------------------------------------------------- /live/jio/iframe_Play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/iframe_Play.html -------------------------------------------------------------------------------- /live/jio/iframe_jio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/iframe_jio.json -------------------------------------------------------------------------------- /live/jio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/index.html -------------------------------------------------------------------------------- /live/jio/m3u_jio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/m3u_jio.json -------------------------------------------------------------------------------- /live/jio/m3u_play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/m3u_play.html -------------------------------------------------------------------------------- /live/jio/m3u_play.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/m3u_play.txt -------------------------------------------------------------------------------- /live/jio/other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/other -------------------------------------------------------------------------------- /live/jio/other 2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/jio/other 2 -------------------------------------------------------------------------------- /live/ott/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/ott/index.html -------------------------------------------------------------------------------- /live/play/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/.htaccess -------------------------------------------------------------------------------- /live/play/TP/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/TP/index.html -------------------------------------------------------------------------------- /live/play/TP/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/TP/player.html -------------------------------------------------------------------------------- /live/play/TP/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/TP/script.js -------------------------------------------------------------------------------- /live/play/TP/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/TP/styles.css -------------------------------------------------------------------------------- /live/play/TP/tataplay.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/TP/tataplay.m3u -------------------------------------------------------------------------------- /live/play/assets/css/.techiesneh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /live/play/assets/css/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/play/assets/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/css/search.css -------------------------------------------------------------------------------- /live/play/assets/css/techiesneh.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/css/techiesneh.min.css -------------------------------------------------------------------------------- /live/play/assets/css/tslogin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/css/tslogin.css -------------------------------------------------------------------------------- /live/play/assets/data/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /live/play/assets/data/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/play/assets/img/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/buffer.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/captions-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/captions-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/captions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/captions.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/close-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/close.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/fullscreen-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/fullscreen-off-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/fullscreen-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/fullscreen-off.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/fullscreen-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/fullscreen-on-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/fullscreen-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/fullscreen-on.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/next-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/next-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/next.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/pause-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/pause-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/pause.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/play-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/play-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/play-idle-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/play-idle-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/play-idle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/play-idle.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/play.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/playlist-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/playlist-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/playlist.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/quality-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/quality-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/quality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/quality.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/replay-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/replay-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/replay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/replay.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/rewind-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/rewind-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/rewind.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/settings-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/settings-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/settings.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/volume-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/volume-off-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/volume-off.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/volume-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/volume-on-hover.svg -------------------------------------------------------------------------------- /live/play/assets/img/jwplay/volume-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/img/jwplay/volume-on.svg -------------------------------------------------------------------------------- /live/play/assets/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/play/assets/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/js/details.js -------------------------------------------------------------------------------- /live/play/assets/js/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/play/assets/js/jwplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/js/jwplayer.js -------------------------------------------------------------------------------- /live/play/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/assets/js/search.js -------------------------------------------------------------------------------- /live/play/d1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/d1.html -------------------------------------------------------------------------------- /live/play/d2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/d2.html -------------------------------------------------------------------------------- /live/play/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/index.html -------------------------------------------------------------------------------- /live/play/index123.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/index123.html -------------------------------------------------------------------------------- /live/play/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/main.css -------------------------------------------------------------------------------- /live/play/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/main.js -------------------------------------------------------------------------------- /live/play/new pro .html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/new pro .html -------------------------------------------------------------------------------- /live/play/old play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/old play.html -------------------------------------------------------------------------------- /live/play/others.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/others.html -------------------------------------------------------------------------------- /live/play/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/play.html -------------------------------------------------------------------------------- /live/play/tp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/play/tp.json -------------------------------------------------------------------------------- /live/sony-liv/Play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/Play.html -------------------------------------------------------------------------------- /live/sony-liv/assets/css/.techiesneh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /live/sony-liv/assets/css/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/sony-liv/assets/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/css/search.css -------------------------------------------------------------------------------- /live/sony-liv/assets/css/techiesneh.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/css/techiesneh.min.css -------------------------------------------------------------------------------- /live/sony-liv/assets/css/tslogin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/css/tslogin.css -------------------------------------------------------------------------------- /live/sony-liv/assets/data/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /live/sony-liv/assets/data/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/sony-liv/assets/img/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/buffer.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/captions-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/captions-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/captions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/captions.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/close-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/close.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/fullscreen-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/fullscreen-off-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/fullscreen-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/fullscreen-off.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/fullscreen-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/fullscreen-on-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/fullscreen-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/fullscreen-on.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/next-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/next-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/next.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/pause-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/pause-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/pause.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/play-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/play-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/play-idle-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/play-idle-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/play-idle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/play-idle.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/play.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/playlist-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/playlist-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/playlist.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/quality-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/quality-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/quality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/quality.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/replay-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/replay-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/replay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/replay.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/rewind-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/rewind-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/rewind.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/settings-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/settings-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/settings.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/volume-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/volume-off-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/volume-off.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/volume-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/volume-on-hover.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/img/jwplay/volume-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/img/jwplay/volume-on.svg -------------------------------------------------------------------------------- /live/sony-liv/assets/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/sony-liv/assets/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/js/details.js -------------------------------------------------------------------------------- /live/sony-liv/assets/js/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/sony-liv/assets/js/jwplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/js/jwplayer.js -------------------------------------------------------------------------------- /live/sony-liv/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/assets/js/search.js -------------------------------------------------------------------------------- /live/sony-liv/iframe_sony.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/iframe_sony.json -------------------------------------------------------------------------------- /live/sony-liv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/index.html -------------------------------------------------------------------------------- /live/sony-liv/m3u_sony.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/m3u_sony.json -------------------------------------------------------------------------------- /live/sony-liv/rd_play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sony-liv/rd_play.html -------------------------------------------------------------------------------- /live/sunnxt/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sunnxt/index -------------------------------------------------------------------------------- /live/sunnxt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/sunnxt/index.html -------------------------------------------------------------------------------- /live/voot/Play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/Play.html -------------------------------------------------------------------------------- /live/voot/assets/css/.techiesneh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /live/voot/assets/css/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/voot/assets/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/css/search.css -------------------------------------------------------------------------------- /live/voot/assets/css/techiesneh.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/css/techiesneh.min.css -------------------------------------------------------------------------------- /live/voot/assets/css/tslogin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/css/tslogin.css -------------------------------------------------------------------------------- /live/voot/assets/data/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /live/voot/assets/data/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/voot/assets/img/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/buffer.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/captions-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/captions-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/captions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/captions.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/close-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/close.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/fullscreen-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/fullscreen-off-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/fullscreen-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/fullscreen-off.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/fullscreen-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/fullscreen-on-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/fullscreen-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/fullscreen-on.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/next-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/next-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/next.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/pause-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/pause-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/pause.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/play-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/play-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/play-idle-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/play-idle-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/play-idle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/play-idle.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/play.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/playlist-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/playlist-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/playlist.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/quality-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/quality-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/quality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/quality.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/replay-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/replay-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/replay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/replay.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/rewind-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/rewind-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/rewind.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/settings-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/settings-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/settings.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/volume-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/volume-off-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/volume-off.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/volume-on-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/volume-on-hover.svg -------------------------------------------------------------------------------- /live/voot/assets/img/jwplay/volume-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/img/jwplay/volume-on.svg -------------------------------------------------------------------------------- /live/voot/assets/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/voot/assets/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/js/details.js -------------------------------------------------------------------------------- /live/voot/assets/js/index.php: -------------------------------------------------------------------------------- 1 | Forbidden Access -------------------------------------------------------------------------------- /live/voot/assets/js/jwplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/js/jwplayer.js -------------------------------------------------------------------------------- /live/voot/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/assets/js/search.js -------------------------------------------------------------------------------- /live/voot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/index.html -------------------------------------------------------------------------------- /live/voot/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/index2.html -------------------------------------------------------------------------------- /live/voot/voot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/voot/voot.json -------------------------------------------------------------------------------- /live/zee/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/zee/index -------------------------------------------------------------------------------- /live/zee/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/live/zee/index.html -------------------------------------------------------------------------------- /ott/movie/.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/.js -------------------------------------------------------------------------------- /ott/movie/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/index.html -------------------------------------------------------------------------------- /ott/movie/movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/movies.json -------------------------------------------------------------------------------- /ott/movie/old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/old.html -------------------------------------------------------------------------------- /ott/movie/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/play.html -------------------------------------------------------------------------------- /ott/movie/test/du.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/test/du.html -------------------------------------------------------------------------------- /ott/movie/test/f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/test/f.html -------------------------------------------------------------------------------- /ott/movie/test/new play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/test/new play.html -------------------------------------------------------------------------------- /ott/movie/test/play new new .html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/test/play new new .html -------------------------------------------------------------------------------- /ott/movie/test/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/test/play.html -------------------------------------------------------------------------------- /ott/movie/test/t3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/movie/test/t3.html -------------------------------------------------------------------------------- /ott/music.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/music.html -------------------------------------------------------------------------------- /ott/playlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/playlist.html -------------------------------------------------------------------------------- /ott/radio/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/radio/data.json -------------------------------------------------------------------------------- /ott/radio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/radio/index.html -------------------------------------------------------------------------------- /ott/radio/index22332.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/radio/index22332.html -------------------------------------------------------------------------------- /ott/radio/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/radio/radio.html -------------------------------------------------------------------------------- /ott/tvshow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/ott/tvshow.html -------------------------------------------------------------------------------- /play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/play.html -------------------------------------------------------------------------------- /play2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/play2.html -------------------------------------------------------------------------------- /player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/player.html -------------------------------------------------------------------------------- /s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/s.html -------------------------------------------------------------------------------- /sony/clappr-pip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sony/clappr-pip.min.js -------------------------------------------------------------------------------- /sony/clappr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sony/clappr.min.js -------------------------------------------------------------------------------- /sony/dash-shaka-playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sony/dash-shaka-playback.js -------------------------------------------------------------------------------- /sony/level-selector.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sony/level-selector.min.js -------------------------------------------------------------------------------- /sony/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sony/player.js -------------------------------------------------------------------------------- /sony/sony.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sony/sony.html -------------------------------------------------------------------------------- /sports/bm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/bm.html -------------------------------------------------------------------------------- /sports/fc/assets/KB5zFt7A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/assets/KB5zFt7A.js -------------------------------------------------------------------------------- /sports/fc/assets/jwpsrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/assets/jwpsrv.js -------------------------------------------------------------------------------- /sports/fc/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/assets/style.css -------------------------------------------------------------------------------- /sports/fc/assets/vast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/assets/vast.js -------------------------------------------------------------------------------- /sports/fc/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/css/style.css -------------------------------------------------------------------------------- /sports/fc/f.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/f.php -------------------------------------------------------------------------------- /sports/fc/fc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/fc.html -------------------------------------------------------------------------------- /sports/fc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/index.html -------------------------------------------------------------------------------- /sports/fc/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/index2.html -------------------------------------------------------------------------------- /sports/fc/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/js/script.js -------------------------------------------------------------------------------- /sports/fc/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/play.html -------------------------------------------------------------------------------- /sports/fc/play2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/play2.html -------------------------------------------------------------------------------- /sports/fc/try.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/fc/try.html -------------------------------------------------------------------------------- /sports/icc-test/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/icc-test/error.html -------------------------------------------------------------------------------- /sports/icc-test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/icc-test/index.html -------------------------------------------------------------------------------- /sports/icc-test/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/icc-test/test.json -------------------------------------------------------------------------------- /sports/ipl old/m1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m1.html -------------------------------------------------------------------------------- /sports/ipl old/m1/eng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m1/eng.html -------------------------------------------------------------------------------- /sports/ipl old/m1/hin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m1/hin.html -------------------------------------------------------------------------------- /sports/ipl old/m1/kan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m1/kan.html -------------------------------------------------------------------------------- /sports/ipl old/m1/mal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m1/mal.html -------------------------------------------------------------------------------- /sports/ipl old/m1/tam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m1/tam.html -------------------------------------------------------------------------------- /sports/ipl old/m1/tel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m1/tel.html -------------------------------------------------------------------------------- /sports/ipl old/m2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m2.html -------------------------------------------------------------------------------- /sports/ipl old/m2/eng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m2/eng.html -------------------------------------------------------------------------------- /sports/ipl old/m2/hin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m2/hin.html -------------------------------------------------------------------------------- /sports/ipl old/m2/kan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m2/kan.html -------------------------------------------------------------------------------- /sports/ipl old/m2/mal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m2/mal.html -------------------------------------------------------------------------------- /sports/ipl old/m2/tam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m2/tam.html -------------------------------------------------------------------------------- /sports/ipl old/m2/tel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl old/m2/tel.html -------------------------------------------------------------------------------- /sports/ipl-star sports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/index.html -------------------------------------------------------------------------------- /sports/ipl-star sports/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/js/script.js -------------------------------------------------------------------------------- /sports/ipl-star sports/js/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/js/view.js -------------------------------------------------------------------------------- /sports/ipl-star sports/m1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m1.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m1/spe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m1/spe.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m1/sph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m1/sph.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m1/spt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m1/spt.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m1/sptif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m1/sptif.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m1/sst1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m1/sst1.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m2.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m2/spe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m2/spe.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m2/sph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m2/sph.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m2/spk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m2/spk.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m2/spt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m2/spt.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m2/spte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m2/spte.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m2/sptif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m2/sptif.html -------------------------------------------------------------------------------- /sports/ipl-star sports/m2/sst1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl-star sports/m2/sst1.html -------------------------------------------------------------------------------- /sports/ipl/assets/jwplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl/assets/jwplayer.js -------------------------------------------------------------------------------- /sports/ipl/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl/assets/style.css -------------------------------------------------------------------------------- /sports/ipl/assets/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl/assets/view.js -------------------------------------------------------------------------------- /sports/ipl/m1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl/m1.json -------------------------------------------------------------------------------- /sports/ipl/m1_live.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl/m1_live.html -------------------------------------------------------------------------------- /sports/ipl/m2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl/m2.json -------------------------------------------------------------------------------- /sports/ipl/m2_live.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/ipl/m2_live.html -------------------------------------------------------------------------------- /sports/json/Play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/Play.html -------------------------------------------------------------------------------- /sports/json/assets/KB5zFt7A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/assets/KB5zFt7A.js -------------------------------------------------------------------------------- /sports/json/assets/jwpsrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/assets/jwpsrv.js -------------------------------------------------------------------------------- /sports/json/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/assets/style.css -------------------------------------------------------------------------------- /sports/json/assets/v1 style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/assets/v1 style.css -------------------------------------------------------------------------------- /sports/json/assets/vast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/assets/vast.js -------------------------------------------------------------------------------- /sports/json/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/css/style.css -------------------------------------------------------------------------------- /sports/json/jd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/jd.html -------------------------------------------------------------------------------- /sports/json/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/js/script.js -------------------------------------------------------------------------------- /sports/json/sports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/json/sports.json -------------------------------------------------------------------------------- /sports/keys .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/keys .txt -------------------------------------------------------------------------------- /sports/main_sports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/main_sports.html -------------------------------------------------------------------------------- /sports/main_sports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/main_sports.txt -------------------------------------------------------------------------------- /sports/play/18main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/18main.html -------------------------------------------------------------------------------- /sports/play/all_sports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/all_sports.html -------------------------------------------------------------------------------- /sports/play/astro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/astro.html -------------------------------------------------------------------------------- /sports/play/css/1style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/css/1style.css -------------------------------------------------------------------------------- /sports/play/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/css/style.css -------------------------------------------------------------------------------- /sports/play/css/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/css/style2.css -------------------------------------------------------------------------------- /sports/play/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/js/script.js -------------------------------------------------------------------------------- /sports/play/js/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/js/view.js -------------------------------------------------------------------------------- /sports/play/skycricket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/skycricket.html -------------------------------------------------------------------------------- /sports/play/sports18_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/sports18_3.html -------------------------------------------------------------------------------- /sports/play/sptel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/sptel.html -------------------------------------------------------------------------------- /sports/play/sse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/sse.html -------------------------------------------------------------------------------- /sports/play/ssh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/ssh.html -------------------------------------------------------------------------------- /sports/play/sst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/sst.html -------------------------------------------------------------------------------- /sports/play/t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/t.html -------------------------------------------------------------------------------- /sports/play/t20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/t20.html -------------------------------------------------------------------------------- /sports/play/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/test.html -------------------------------------------------------------------------------- /sports/play/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/test/test.html -------------------------------------------------------------------------------- /sports/play/test/test111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/test/test111.html -------------------------------------------------------------------------------- /sports/play/tnt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/tnt.html -------------------------------------------------------------------------------- /sports/play/video/18hd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/18hd.html -------------------------------------------------------------------------------- /sports/play/video/astro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/astro.html -------------------------------------------------------------------------------- /sports/play/video/d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/d.html -------------------------------------------------------------------------------- /sports/play/video/live.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/live.htm -------------------------------------------------------------------------------- /sports/play/video/live_files/09f1e956c711aea6a898d5abbb78d092.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/live_files/09f1e956c711aea6a898d5abbb78d092.js -------------------------------------------------------------------------------- /sports/play/video/live_files/SAHhwvZq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/live_files/SAHhwvZq.js -------------------------------------------------------------------------------- /sports/play/video/live_files/jwpsrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/live_files/jwpsrv.js -------------------------------------------------------------------------------- /sports/play/video/live_files/sfp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/live_files/sfp.js -------------------------------------------------------------------------------- /sports/play/video/sp_tamil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/sp_tamil.html -------------------------------------------------------------------------------- /sports/play/video/sp_telugu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/sp_telugu.html -------------------------------------------------------------------------------- /sports/play/video/speng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/speng.html -------------------------------------------------------------------------------- /sports/play/video/tntmain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/tntmain.html -------------------------------------------------------------------------------- /sports/play/video/willow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/video/willow.html -------------------------------------------------------------------------------- /sports/play/willow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/play/willow.html -------------------------------------------------------------------------------- /sports/sony/New Text Document.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sports/sony/assets/KB5zFt7A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/assets/KB5zFt7A.js -------------------------------------------------------------------------------- /sports/sony/assets/jwpsrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/assets/jwpsrv.js -------------------------------------------------------------------------------- /sports/sony/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/assets/style.css -------------------------------------------------------------------------------- /sports/sony/assets/vast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/assets/vast.js -------------------------------------------------------------------------------- /sports/sony/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/css/style.css -------------------------------------------------------------------------------- /sports/sony/f.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/f.php -------------------------------------------------------------------------------- /sports/sony/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/index.html -------------------------------------------------------------------------------- /sports/sony/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/js/script.js -------------------------------------------------------------------------------- /sports/sony/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/play.html -------------------------------------------------------------------------------- /sports/sony/rd_play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/rd_play.html -------------------------------------------------------------------------------- /sports/sony/rd_play1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/sony/rd_play1.html -------------------------------------------------------------------------------- /sports/t20/assets/KB5zFt7A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/assets/KB5zFt7A.js -------------------------------------------------------------------------------- /sports/t20/assets/jwpsrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/assets/jwpsrv.js -------------------------------------------------------------------------------- /sports/t20/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/assets/style.css -------------------------------------------------------------------------------- /sports/t20/assets/v1 style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/assets/v1 style.css -------------------------------------------------------------------------------- /sports/t20/assets/vast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/assets/vast.js -------------------------------------------------------------------------------- /sports/t20/cl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/cl.html -------------------------------------------------------------------------------- /sports/t20/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/css/style.css -------------------------------------------------------------------------------- /sports/t20/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/js/script.js -------------------------------------------------------------------------------- /sports/t20/sports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/sports.json -------------------------------------------------------------------------------- /sports/t20/tamil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaathala00/hotstar/HEAD/sports/t20/tamil.txt --------------------------------------------------------------------------------