-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupstream-lkg.json
More file actions
1102 lines (1102 loc) · 68.4 KB
/
Copy pathupstream-lkg.json
File metadata and controls
1102 lines (1102 loc) · 68.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema_version": 1,
"description": "Last two syntactically complete snapshots per upstream. Current published bundles remain the functional runtime fallback when an upstream is unavailable or corrupt.",
"sources": {
"gowaru": {
"generations": [
{
"captured_at": "2026-09-01T19:52:18+00:00",
"manifest_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/manifest.json",
"manifest_sha256": "c063207a4facc7a5ff8710c9cfd5f58723e507c09e30352b3f732177b66cbe18",
"manifest_file": "gowaru-c063207a4facc7a5.json",
"declared": 26,
"providers": {
"anime-ultime": {
"sha256": "e9ff13debcc53b73f1f0ad614c82e4577f633842c845d61de1d5790587b3b4b5",
"file": "e9ff13debcc53b73f1f0ad614c82e4577f633842c845d61de1d5790587b3b4b5.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/anime-ultime.js",
"bytes": 297129
},
"anime-sama": {
"sha256": "141ab6d530f056a751114425aad2bc2d5556e2e9bc8730dbda760bfc674546b5",
"file": "141ab6d530f056a751114425aad2bc2d5556e2e9bc8730dbda760bfc674546b5.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/anime-sama.js",
"bytes": 295691
},
"animesama-co": {
"sha256": "5b29194a13ad63967e109262a9e5e10c0346acebed8d7330c071bab14060dd75",
"file": "5b29194a13ad63967e109262a9e5e10c0346acebed8d7330c071bab14060dd75.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animesama-co.js",
"bytes": 301842
},
"animesultra": {
"sha256": "d7cde633c865815aaf8a859be5af3ea3818e222bcfe0aca165232213779c02f5",
"file": "d7cde633c865815aaf8a859be5af3ea3818e222bcfe0aca165232213779c02f5.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animesultra.js",
"bytes": 303003
},
"animevostfr": {
"sha256": "f75843cd26128bc78d31ecc641acfe155ca7a5e4046bea977fe5ab3c4f8e8c2a",
"file": "f75843cd26128bc78d31ecc641acfe155ca7a5e4046bea977fe5ab3c4f8e8c2a.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animevostfr.js",
"bytes": 300978
},
"animoflix": {
"sha256": "d4c6681f4c679215091802d5f292cd4f1419109237639bb73208005cd49b7f50",
"file": "d4c6681f4c679215091802d5f292cd4f1419109237639bb73208005cd49b7f50.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animoflix.js",
"bytes": 304076
},
"coflix": {
"sha256": "8a07544ba7287fe3a6db7e8bdf83b8c06cf8a4c98915589aca52263d8be4172d",
"file": "8a07544ba7287fe3a6db7e8bdf83b8c06cf8a4c98915589aca52263d8be4172d.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/coflix.js",
"bytes": 299728
},
"dulourd": {
"sha256": "d46f42b0d7cec586859b5f927af85fbc1c28a850308640b3ae87f55582d10bee",
"file": "d46f42b0d7cec586859b5f927af85fbc1c28a850308640b3ae87f55582d10bee.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/dulourd.js",
"bytes": 296455
},
"flemmix": {
"sha256": "bc2c52f31bcdae5c69aa2b1d9946ca5606b3b3caa5dbe140d8f4f0c76ab666f6",
"file": "bc2c52f31bcdae5c69aa2b1d9946ca5606b3b3caa5dbe140d8f4f0c76ab666f6.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/flemmix.js",
"bytes": 301089
},
"french-manga": {
"sha256": "fb23979ac0089b09eb706a4b0649ced3b76595ce04258e513b3599bc0ad60860",
"file": "fb23979ac0089b09eb706a4b0649ced3b76595ce04258e513b3599bc0ad60860.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/french-manga.js",
"bytes": 303770
},
"voiranime-homes": {
"sha256": "86c5a93352434325c1770dd8db5b9d0316a526c6836e24eebd61be8f16e4610e",
"file": "86c5a93352434325c1770dd8db5b9d0316a526c6836e24eebd61be8f16e4610e.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/voiranime-homes.js",
"bytes": 302725
},
"frenchstream": {
"sha256": "2a0287d0a686bed61d6059642f82c399233ad7bd12953566ef6cba5d788520ee",
"file": "2a0287d0a686bed61d6059642f82c399233ad7bd12953566ef6cba5d788520ee.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/frenchstream.js",
"bytes": 306686
},
"movix": {
"sha256": "4a0e890af339e9f253db259e95c6786f5a99dc535a1b2706e1a4cec5a5c106d6",
"file": "4a0e890af339e9f253db259e95c6786f5a99dc535a1b2706e1a4cec5a5c106d6.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/movix.js",
"bytes": 289356
},
"mugiwarastream": {
"sha256": "86555c3525d2a97495aba98ed9f24186e83ff933e763790955fafac580a747cc",
"file": "86555c3525d2a97495aba98ed9f24186e83ff933e763790955fafac580a747cc.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/mugiwarastream.js",
"bytes": 300642
},
"sekai": {
"sha256": "34e2f2fe9df06c7c1643ab3414d8aafa75a3a3a34018bb2c1bb90e9f4d3163ef",
"file": "34e2f2fe9df06c7c1643ab3414d8aafa75a3a3a34018bb2c1bb90e9f4d3163ef.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/sekai.js",
"bytes": 275722
},
"voiranime": {
"sha256": "16ac953f35b9ad1362a581954b6d004f3d168ceecbbfe4d93ee444c670718e6e",
"file": "16ac953f35b9ad1362a581954b6d004f3d168ceecbbfe4d93ee444c670718e6e.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/voiranime.js",
"bytes": 307303
},
"voiranime-rip": {
"sha256": "37029aa91c7d356d29bf2161fd55f8d3b4ad0e37ddd913a79a95b8286248d1ab",
"file": "37029aa91c7d356d29bf2161fd55f8d3b4ad0e37ddd913a79a95b8286248d1ab.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/voiranime-rip.js",
"bytes": 304632
},
"vostfree": {
"sha256": "03da127df87c2b809008e87d0e3bc2fb8b40cc8b15002b0ce1113a6ac5adb885",
"file": "03da127df87c2b809008e87d0e3bc2fb8b40cc8b15002b0ce1113a6ac5adb885.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/vostfree.js",
"bytes": 298203
},
"nakios": {
"sha256": "15a425be580c06f5ad5d5b2dc7747859ecc86b9dbac832e5c6357c6454c7eaa1",
"file": "15a425be580c06f5ad5d5b2dc7747859ecc86b9dbac832e5c6357c6454c7eaa1.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/nakios.js",
"bytes": 19203
},
"papadustream": {
"sha256": "3daccdbb6f1ab44740be6161ff867d81802d23c69325b47cbfa34a53ddc784ba",
"file": "3daccdbb6f1ab44740be6161ff867d81802d23c69325b47cbfa34a53ddc784ba.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/papadustream.js",
"bytes": 265909
},
"wookafr": {
"sha256": "a3390e79444177bc46684cd49eee119b3aea72f0615b58aeef3cf71b614d71e0",
"file": "a3390e79444177bc46684cd49eee119b3aea72f0615b58aeef3cf71b614d71e0.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/wookafr.js",
"bytes": 305436
},
"streamzo": {
"sha256": "548b5b6ca15e19efa7a6b0be97467b7cc77a388a8df53d94d33ba09125b927ea",
"file": "548b5b6ca15e19efa7a6b0be97467b7cc77a388a8df53d94d33ba09125b927ea.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/streamzo.js",
"bytes": 295367
},
"waveanime": {
"sha256": "9f11d1165f920b3d9951c4dcbcb65f79442e46b2113225d826abf8b739d735c4",
"file": "9f11d1165f920b3d9951c4dcbcb65f79442e46b2113225d826abf8b739d735c4.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/waveanime.js",
"bytes": 270880
},
"neko-sama": {
"sha256": "495ca8a7bf58d51cd3dbf2b1257e8cf5e1048c4f975eedc78716f70dbeab0aa6",
"file": "495ca8a7bf58d51cd3dbf2b1257e8cf5e1048c4f975eedc78716f70dbeab0aa6.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/neko-sama.js",
"bytes": 25330
},
"fullanime": {
"sha256": "de303c47d50ceecc2f8f2e7d78483f5af93927fff51d3edcf6e2dad28b11c511",
"file": "de303c47d50ceecc2f8f2e7d78483f5af93927fff51d3edcf6e2dad28b11c511.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/fullanime.js",
"bytes": 25469
},
"animevost-fr": {
"sha256": "8b76bce44a7db15035f41e355862b08f562fd529791c312a326d74f263a9c4ac",
"file": "8b76bce44a7db15035f41e355862b08f562fd529791c312a326d74f263a9c4ac.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animevost-fr.js",
"bytes": 13912
}
}
},
{
"captured_at": "2026-08-27T15:28:43+00:00",
"manifest_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/manifest.json",
"manifest_sha256": "da57ba39913ca4210f353eb601891d5d3ace79c07227c557a416f74001504ded",
"manifest_file": "gowaru-da57ba39913ca421.json",
"declared": 24,
"providers": {
"anime-ultime": {
"sha256": "568486a9eb3236937aa44fa1867f187bf74d84114217a8742e6c48093bde4628",
"file": "568486a9eb3236937aa44fa1867f187bf74d84114217a8742e6c48093bde4628.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/anime-ultime.js",
"bytes": 296792
},
"anime-sama": {
"sha256": "7e6039c140e0047c7166920657ff7f16cd2feba675ef3d28e253d3e3bef77e71",
"file": "7e6039c140e0047c7166920657ff7f16cd2feba675ef3d28e253d3e3bef77e71.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/anime-sama.js",
"bytes": 295004
},
"animesama-co": {
"sha256": "48595d6c2561acdedf6065671bf7d3495ca4c1e1b893cbcd83455861a56ffdf3",
"file": "48595d6c2561acdedf6065671bf7d3495ca4c1e1b893cbcd83455861a56ffdf3.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animesama-co.js",
"bytes": 301167
},
"animesultra": {
"sha256": "071f90a6b6f6b070f9cd5952285a3ec64e79c49b3bd740440ef6c20583e50538",
"file": "071f90a6b6f6b070f9cd5952285a3ec64e79c49b3bd740440ef6c20583e50538.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animesultra.js",
"bytes": 302432
},
"animevostfr": {
"sha256": "23c66f585ac85cd2ff747a3f6106793a77a58f69a6c06e36c93185643eeea26b",
"file": "23c66f585ac85cd2ff747a3f6106793a77a58f69a6c06e36c93185643eeea26b.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animevostfr.js",
"bytes": 300731
},
"animoflix": {
"sha256": "0778b481dbf0ced49f53b4a60e07b7de866b6a0110a9814d26dbe68199d2c365",
"file": "0778b481dbf0ced49f53b4a60e07b7de866b6a0110a9814d26dbe68199d2c365.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animoflix.js",
"bytes": 303766
},
"coflix": {
"sha256": "5b56fc2a2de7d7adc0eb76fec28048f0cc49084e4e6da34ed8735eb71920b587",
"file": "5b56fc2a2de7d7adc0eb76fec28048f0cc49084e4e6da34ed8735eb71920b587.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/coflix.js",
"bytes": 299392
},
"dulourd": {
"sha256": "d42479be8db40968f8a72a38dd4c87dd498b88ce7a479e87a342fe5ce1df63e1",
"file": "d42479be8db40968f8a72a38dd4c87dd498b88ce7a479e87a342fe5ce1df63e1.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/dulourd.js",
"bytes": 296115
},
"flemmix": {
"sha256": "72550414392c8db6f15088d6f2cee202f05812a881b8c577df75ac0caea56fe9",
"file": "72550414392c8db6f15088d6f2cee202f05812a881b8c577df75ac0caea56fe9.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/flemmix.js",
"bytes": 300749
},
"french-manga": {
"sha256": "9291109cb1a0ca9b3e4e31f201a57f17cd6e1a47d4b42e142494884921e7c9bc",
"file": "9291109cb1a0ca9b3e4e31f201a57f17cd6e1a47d4b42e142494884921e7c9bc.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/french-manga.js",
"bytes": 302819
},
"french-anime": {
"sha256": "f83498a06895cd35b7aedb9925b0a2b72601efa11d169fe5f31c3f7c520e42d8",
"file": "f83498a06895cd35b7aedb9925b0a2b72601efa11d169fe5f31c3f7c520e42d8.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/french-anime.js",
"bytes": 305055
},
"voiranime-homes": {
"sha256": "a50c6ac8c0109154419c0e06225d51446e20b3cfdf1f37c0b1273b79c950a2b0",
"file": "a50c6ac8c0109154419c0e06225d51446e20b3cfdf1f37c0b1273b79c950a2b0.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/voiranime-homes.js",
"bytes": 302389
},
"frenchstream": {
"sha256": "3f869a42ff917fee789367ed9541af18d1f2ea6fe61479cbdbc8601490413d33",
"file": "3f869a42ff917fee789367ed9541af18d1f2ea6fe61479cbdbc8601490413d33.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/frenchstream.js",
"bytes": 306309
},
"movix": {
"sha256": "d2c53f6317cd53e49534a5e62b2da4ebffc0fccb64cf8d4e8678c316bcf0637f",
"file": "d2c53f6317cd53e49534a5e62b2da4ebffc0fccb64cf8d4e8678c316bcf0637f.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/movix.js",
"bytes": 289125
},
"mugiwarastream": {
"sha256": "aa18849d8d5de6e4f0671a65ba513fd0659af36a86667a309f1a08c7e398a030",
"file": "aa18849d8d5de6e4f0671a65ba513fd0659af36a86667a309f1a08c7e398a030.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/mugiwarastream.js",
"bytes": 299727
},
"sekai": {
"sha256": "0a7a9164fecb4a9e3e92ccf9e47e78cf27c71b021164d0eeddbaccd700f40668",
"file": "0a7a9164fecb4a9e3e92ccf9e47e78cf27c71b021164d0eeddbaccd700f40668.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/sekai.js",
"bytes": 275812
},
"voiranime": {
"sha256": "9bfa5c47b20315a496e3798b5cdedde60d9b9ffbe6155cf2be2e867034e295a1",
"file": "9bfa5c47b20315a496e3798b5cdedde60d9b9ffbe6155cf2be2e867034e295a1.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/voiranime.js",
"bytes": 306897
},
"voiranime-rip": {
"sha256": "fcf0e17ce26dc259d0689e57964ceb053a433a958984f28b2f49bf07c0b87ca7",
"file": "fcf0e17ce26dc259d0689e57964ceb053a433a958984f28b2f49bf07c0b87ca7.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/voiranime-rip.js",
"bytes": 304266
},
"vostfree": {
"sha256": "2264af8acf3ec4e55f88932c851641fd477490b431f0c34930b71fc1a90a030e",
"file": "2264af8acf3ec4e55f88932c851641fd477490b431f0c34930b71fc1a90a030e.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/vostfree.js",
"bytes": 298001
},
"nakios": {
"sha256": "fa94943925f7b1cc852eeaaa29f0daaf6e3a7484749a224944f0aa2811c2a6e8",
"file": "fa94943925f7b1cc852eeaaa29f0daaf6e3a7484749a224944f0aa2811c2a6e8.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/nakios.js",
"bytes": 19197
},
"papadustream": {
"sha256": "80a3db63b4ab5cb76862ed1c323af33b298b5fae7c4b48cefc1c0fa65efa16f6",
"file": "80a3db63b4ab5cb76862ed1c323af33b298b5fae7c4b48cefc1c0fa65efa16f6.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/papadustream.js",
"bytes": 265728
},
"wookafr": {
"sha256": "37e0caf41bfec202d07eb0f59700d1c94e8c50833bfa04c27e0ae7daeef428b6",
"file": "37e0caf41bfec202d07eb0f59700d1c94e8c50833bfa04c27e0ae7daeef428b6.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/wookafr.js",
"bytes": 305097
},
"streamzo": {
"sha256": "0095018bea7408e6b1e15411dce85a98cd11791498fbda01d4deae7426a3e003",
"file": "0095018bea7408e6b1e15411dce85a98cd11791498fbda01d4deae7426a3e003.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/streamzo.js",
"bytes": 295030
},
"waveanime": {
"sha256": "5e18cb763ccd50492ab67f56b9ba54ae474d7da4c335cd857059a69c1571de40",
"file": "5e18cb763ccd50492ab67f56b9ba54ae474d7da4c335cd857059a69c1571de40.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/waveanime.js",
"bytes": 270977
}
}
}
]
},
"aio": {
"generations": [
{
"captured_at": "2026-09-01T19:53:09+00:00",
"manifest_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/manifest.json",
"manifest_sha256": "a95aedc03a62a0c8fa3eb1e37d6e21b942e7786fa52f33085f258a81cad9a68d",
"manifest_file": "aio-a95aedc03a62a0c8.json",
"declared": 61,
"providers": {
"allanime": {
"sha256": "25fb224e2ac0575055aca1dfce4263bc069780b99d86433692f770289971c3ce",
"file": "25fb224e2ac0575055aca1dfce4263bc069780b99d86433692f770289971c3ce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allanime.js",
"bytes": 19281
},
"4khdhub": {
"sha256": "e64aea603b3c3786a9f03e2a7b5dbee7e5666918a0ad606aeec87469ffafc4ec",
"file": "e64aea603b3c3786a9f03e2a7b5dbee7e5666918a0ad606aeec87469ffafc4ec.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/4khdhub.js",
"bytes": 28636
},
"1shows": {
"sha256": "9d8e329755b00a42b1c05cd06a764a2993e1874f67b3b4e2a96b25894d62ceba",
"file": "9d8e329755b00a42b1c05cd06a764a2993e1874f67b3b4e2a96b25894d62ceba.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/1shows.js",
"bytes": 53816
},
"allwish": {
"sha256": "647edc750491af2165d0d8ab9d49e799c87e5d6e7571728e63582936589562a8",
"file": "647edc750491af2165d0d8ab9d49e799c87e5d6e7571728e63582936589562a8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allwish.js",
"bytes": 28681
},
"animekai": {
"sha256": "15ea49f3f86be417b8f03e6395b8d0a6a0a1c5eedc2d133520cb627e2840be3d",
"file": "15ea49f3f86be417b8f03e6395b8d0a6a0a1c5eedc2d133520cb627e2840be3d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animekai.js",
"bytes": 24779
},
"anikototv": {
"sha256": "4b75a13ad9f3a9e7c067e8cbd18a66830cce4ad0d7e75ed28eca66cf1ed32b5d",
"file": "4b75a13ad9f3a9e7c067e8cbd18a66830cce4ad0d7e75ed28eca66cf1ed32b5d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anikototv.js",
"bytes": 20172
},
"anidb": {
"sha256": "60ec5bba1e6d0052b9fa495ddaeec23841a43dcaee18158db5f222e055c0c209",
"file": "60ec5bba1e6d0052b9fa495ddaeec23841a43dcaee18158db5f222e055c0c209.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anidb.js",
"bytes": 14671
},
"animepahe": {
"sha256": "a1f38e1819d61f9efd91648372ead67ce805c1ffd9f46acdff136d83a9e0715e",
"file": "a1f38e1819d61f9efd91648372ead67ce805c1ffd9f46acdff136d83a9e0715e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animepahe.js",
"bytes": 16707
},
"animesalt": {
"sha256": "2e732f8baa25726b09d0716455e930142527c7e7b3dce981be6a2ba115c463e5",
"file": "2e732f8baa25726b09d0716455e930142527c7e7b3dce981be6a2ba115c463e5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animesalt.js",
"bytes": 16095
},
"animetsu": {
"sha256": "243edd8c76b0995a72e02ba6ff7ca47add6063b1d471ebe378d3d6842bd8cadb",
"file": "243edd8c76b0995a72e02ba6ff7ca47add6063b1d471ebe378d3d6842bd8cadb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animetsu.js",
"bytes": 22545
},
"animeworld": {
"sha256": "bb241938cc73484976226c98bf2412cc53ab5205843627e6bb3fa7eaa73e61d4",
"file": "bb241938cc73484976226c98bf2412cc53ab5205843627e6bb3fa7eaa73e61d4.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animeworld.js",
"bytes": 11372
},
"allmovieland": {
"sha256": "0b4533ed32c82b28813b97fe9deb44d97d1f1884adf1a8208d231967347ae3ce",
"file": "0b4533ed32c82b28813b97fe9deb44d97d1f1884adf1a8208d231967347ae3ce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allmovieland.js",
"bytes": 14517
},
"animezey": {
"sha256": "46e83c8d710830679b7f17eacb03e014fc4195237cd423fe63254862549f24ff",
"file": "46e83c8d710830679b7f17eacb03e014fc4195237cd423fe63254862549f24ff.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animezey.js",
"bytes": 47785
},
"desiflix": {
"sha256": "89d80b0ac5aac7e946680f35f3fa7ba4859e2a9e9ab42ef8a811b51518e63cac",
"file": "89d80b0ac5aac7e946680f35f3fa7ba4859e2a9e9ab42ef8a811b51518e63cac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/desiflix.js",
"bytes": 14501
},
"castle": {
"sha256": "1b23fb0b7740e707fb2e3c5f6f69ca51c4bb4fc6afc8f1ae851af22e3f66bb89",
"file": "1b23fb0b7740e707fb2e3c5f6f69ca51c4bb4fc6afc8f1ae851af22e3f66bb89.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/castle.js",
"bytes": 23481
},
"Cineby": {
"sha256": "06a14293c93a83d3060684e042e7087031463c775717f8b5f1dfeaa0ba30d429",
"file": "06a14293c93a83d3060684e042e7087031463c775717f8b5f1dfeaa0ba30d429.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cineby.js",
"bytes": 19736
},
"cinefreak": {
"sha256": "422d7f2fc6c51ea3d4f77596382cd817b1d482997c46ff7509b6ce11b205404d",
"file": "422d7f2fc6c51ea3d4f77596382cd817b1d482997c46ff7509b6ce11b205404d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cinefreak.js",
"bytes": 30268
},
"moonflix": {
"sha256": "e4928ad7affd0f9d417fee3c3f90bcaf0f37ed2c577ab52dd391a6cd1635f12f",
"file": "e4928ad7affd0f9d417fee3c3f90bcaf0f37ed2c577ab52dd391a6cd1635f12f.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moonflix.js",
"bytes": 13234
},
"cinemacity": {
"sha256": "faccc37938836b50acc6a8862e14b818a086289b63ba9c6d18d654ca933d8aac",
"file": "faccc37938836b50acc6a8862e14b818a086289b63ba9c6d18d654ca933d8aac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cinemacity.js",
"bytes": 49155
},
"ctgmovies": {
"sha256": "29128d8b2dac99a3ae3ff8e771ccbe14598efab021981b02867c7f3f7fc0e6c4",
"file": "29128d8b2dac99a3ae3ff8e771ccbe14598efab021981b02867c7f3f7fc0e6c4.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/ctgmovies.js",
"bytes": 24938
},
"dooflix": {
"sha256": "2691befa44f5d8d8f30c1711021a9fb0fdfe09a90f5640dd97ede5670f3dca5a",
"file": "2691befa44f5d8d8f30c1711021a9fb0fdfe09a90f5640dd97ede5670f3dca5a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/dooflix.js",
"bytes": 6343
},
"einthusan": {
"sha256": "34adb013fbac73ba3688f9bcc93e6418e28aeda1433dd04eb50cdec9cb6a82c8",
"file": "34adb013fbac73ba3688f9bcc93e6418e28aeda1433dd04eb50cdec9cb6a82c8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/einthusan.js",
"bytes": 18635
},
"fibwatch": {
"sha256": "283284e818443cd3ef98ca58aaf0b2c594ecd61219881cb2561baf6c37e545e9",
"file": "283284e818443cd3ef98ca58aaf0b2c594ecd61219881cb2561baf6c37e545e9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/fibwatch.js",
"bytes": 13955
},
"goated": {
"sha256": "b4966c7fd78842d59085fe197bc89ddbbc6c23c9a0f9c5ba6b114eedb7673f00",
"file": "b4966c7fd78842d59085fe197bc89ddbbc6c23c9a0f9c5ba6b114eedb7673f00.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/goated.js",
"bytes": 21628
},
"gramcinema": {
"sha256": "03865cdddc4b4ae9e8155e1ccdf691b725ede65a9d86b3f4ca9b4943eed9d0bb",
"file": "03865cdddc4b4ae9e8155e1ccdf691b725ede65a9d86b3f4ca9b4943eed9d0bb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/gramcinema.js",
"bytes": 17002
},
"hdghartv": {
"sha256": "8f6931a418a437f64d697f6eafdc27b8c2408cefd9accc5c7e7d9810871ed81a",
"file": "8f6931a418a437f64d697f6eafdc27b8c2408cefd9accc5c7e7d9810871ed81a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hdghartv.js",
"bytes": 10347
},
"hdhub4u": {
"sha256": "35f3a66b3ff1e7d73fca85955920bb134d2e14f74e12a8ceb362782f06ae8c48",
"file": "35f3a66b3ff1e7d73fca85955920bb134d2e14f74e12a8ceb362782f06ae8c48.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hdhub4u.js",
"bytes": 45252
},
"hianime": {
"sha256": "11124b38985b9780ad49e040b5d30a7143bc9541e27c7e314e70d9778a227af9",
"file": "11124b38985b9780ad49e040b5d30a7143bc9541e27c7e314e70d9778a227af9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hianime.js",
"bytes": 16871
},
"hindmoviez": {
"sha256": "86b8c3a4dff3c98c05db88eb075936b2f4ec00d504b967f1150bdfbd6fa620ac",
"file": "86b8c3a4dff3c98c05db88eb075936b2f4ec00d504b967f1150bdfbd6fa620ac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hindmoviez.js",
"bytes": 30964
},
"kurage": {
"sha256": "668797edb270c5fed931b08e0c92ca6693420041838f3b8ef49e28ddb1e7e463",
"file": "668797edb270c5fed931b08e0c92ca6693420041838f3b8ef49e28ddb1e7e463.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/kurage.js",
"bytes": 16396
},
"moviebox": {
"sha256": "f19ec5a037e53220e1457e6db0cb9abee1d2f9f299c594dddefb14df7822c847",
"file": "f19ec5a037e53220e1457e6db0cb9abee1d2f9f299c594dddefb14df7822c847.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moviebox.js",
"bytes": 9668
},
"movieblast": {
"sha256": "d3b04a5ee1a13fed77192b5226d46001508fe321fa747f0c519d0c23d5b1a974",
"file": "d3b04a5ee1a13fed77192b5226d46001508fe321fa747f0c519d0c23d5b1a974.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movieblast.js",
"bytes": 13423
},
"moviesdrive": {
"sha256": "27a986268c9948edf86b5d9150493dcb8f6263fcad3c260f93403bc9348cb8fc",
"file": "27a986268c9948edf86b5d9150493dcb8f6263fcad3c260f93403bc9348cb8fc.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moviesdrive.js",
"bytes": 27011
},
"movieshunt": {
"sha256": "6796beaa02d57e69cb033eec47a14a3b74782a0d08bcfd260421f10d4041392e",
"file": "6796beaa02d57e69cb033eec47a14a3b74782a0d08bcfd260421f10d4041392e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movieshunt.js",
"bytes": 34626
},
"movies4u": {
"sha256": "bc4308578b53310c050c71b8e1835e0e0068300bd19a7826eba0e394d62bfbdd",
"file": "bc4308578b53310c050c71b8e1835e0e0068300bd19a7826eba0e394d62bfbdd.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movies4u.js",
"bytes": 30685
},
"netmirror": {
"sha256": "5cc8283a945c663ea55e049931f22c3f9afdeb3ff38e564899dc5359d40600c1",
"file": "5cc8283a945c663ea55e049931f22c3f9afdeb3ff38e564899dc5359d40600c1.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/netmirror.js",
"bytes": 18274
},
"persianstremio": {
"sha256": "04c8664fd3977a3279fc262be15e2dde88b409e79eb27cc2ae0d1c0b1056b7f9",
"file": "04c8664fd3977a3279fc262be15e2dde88b409e79eb27cc2ae0d1c0b1056b7f9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/persianstremio.js",
"bytes": 12643
},
"peachify": {
"sha256": "0f9f52a4c69bebe4c843c0b3ae06a410d3688569316446f45877ad964c316499",
"file": "0f9f52a4c69bebe4c843c0b3ae06a410d3688569316446f45877ad964c316499.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/peachify.js",
"bytes": 720713
},
"playimdb": {
"sha256": "e00e7b0d65b15622e0b6bcdce3ccc92d6226853197962348ced4af47343f07ab",
"file": "e00e7b0d65b15622e0b6bcdce3ccc92d6226853197962348ced4af47343f07ab.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/playimdb.js",
"bytes": 11841
},
"purstream": {
"sha256": "02173d75d873826f33e7bd45bb1c7973e557845548a8634b3ed1a5161c89abb8",
"file": "02173d75d873826f33e7bd45bb1c7973e557845548a8634b3ed1a5161c89abb8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/purstream.js",
"bytes": 15917
},
"showbox": {
"sha256": "b90ce3c9aceca167d9f97d57ba2487029b0dd75e61abc4d7e8ad1dd97864a1d5",
"file": "b90ce3c9aceca167d9f97d57ba2487029b0dd75e61abc4d7e8ad1dd97864a1d5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/showbox.js",
"bytes": 27232
},
"topcartoons": {
"sha256": "df33f490a73779f40b29ad612863fd4b192768567338a2171289fe5316e40ef6",
"file": "df33f490a73779f40b29ad612863fd4b192768567338a2171289fe5316e40ef6.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/topcartoons.js",
"bytes": 6234
},
"vidrock": {
"sha256": "9513cf00755eb1b6bbeb570f9524fde4c6eeffd7ea61d28ff3f7a9882a692f0a",
"file": "9513cf00755eb1b6bbeb570f9524fde4c6eeffd7ea61d28ff3f7a9882a692f0a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidrock.js",
"bytes": 21377
},
"uhdmovies": {
"sha256": "fcb661e3daad58a862e0a4d17811604a212f5c3c44c0df3756ddfbcfed272527",
"file": "fcb661e3daad58a862e0a4d17811604a212f5c3c44c0df3756ddfbcfed272527.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/uhdmovies.js",
"bytes": 23772
},
"vegamovies": {
"sha256": "0641a31d6068d8d2f3e5ca5d734494b24f69b89d6a5d027ae1a7b5eee1953d1a",
"file": "0641a31d6068d8d2f3e5ca5d734494b24f69b89d6a5d027ae1a7b5eee1953d1a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vegamovies.js",
"bytes": 50278
},
"vidlink": {
"sha256": "bedc41b8caf7e7cb371b5b96bb949970278c8a51b83847eaa64f46ca0317c521",
"file": "bedc41b8caf7e7cb371b5b96bb949970278c8a51b83847eaa64f46ca0317c521.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidlink.js",
"bytes": 14409
},
"videasy": {
"sha256": "8fb7fbc12e23d28185927a5a7f47fa65874ff0d1b1f3e01f4dbf9813c4fc7862",
"file": "8fb7fbc12e23d28185927a5a7f47fa65874ff0d1b1f3e01f4dbf9813c4fc7862.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/videasy.js",
"bytes": 23259
},
"vidsrc": {
"sha256": "c83b23943f9783f2b57008fac62f5fd2a05fea0c826f4b1ca74d53198152b286",
"file": "c83b23943f9783f2b57008fac62f5fd2a05fea0c826f4b1ca74d53198152b286.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidsrc.js",
"bytes": 21623
},
"vixsrc": {
"sha256": "b38a464f826f7ea87fee2c4e483ccbe9d5925e8a89a678a816b77873245611eb",
"file": "b38a464f826f7ea87fee2c4e483ccbe9d5925e8a89a678a816b77873245611eb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vixsrc.js",
"bytes": 1083944
},
"vidfast": {
"sha256": "9750c41a72fe7978d81eabd1b3704529cac0c13a7830a1d608afec5c892271cd",
"file": "9750c41a72fe7978d81eabd1b3704529cac0c13a7830a1d608afec5c892271cd.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidfast.js",
"bytes": 12862
},
"vidlove": {
"sha256": "a8516b7fcc81ce7013b51f3be9a905de9defe34d654e52c01d0a944dbb624a89",
"file": "a8516b7fcc81ce7013b51f3be9a905de9defe34d654e52c01d0a944dbb624a89.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidlove.js",
"bytes": 12758
},
"xpass": {
"sha256": "ad02f9faf8385c8857123ccb2931aa171f219a43c822daef32822ce1a834dbe5",
"file": "ad02f9faf8385c8857123ccb2931aa171f219a43c822daef32822ce1a834dbe5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/xpass.js",
"bytes": 8150
},
"zinkmovies": {
"sha256": "5989f97be6cce82a382e7dc29b8bc8e4c0441146fb994cf1950607fe5cae8bce",
"file": "5989f97be6cce82a382e7dc29b8bc8e4c0441146fb994cf1950607fe5cae8bce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/zinkmovies.js",
"bytes": 28416
},
"onlykdrama": {
"sha256": "f96d16c8b4e067394dd41f41a7fbc1a5bb1c3179c5198d35faaaa627e3cac02e",
"file": "f96d16c8b4e067394dd41f41a7fbc1a5bb1c3179c5198d35faaaa627e3cac02e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/onlykdrama.js",
"bytes": 19899
},
"kisskh": {
"sha256": "81b0afffb337390782cace12c5d657c6aa42765d05f5da986022284a99bafb98",
"file": "81b0afffb337390782cace12c5d657c6aa42765d05f5da986022284a99bafb98.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/kisskh.js",
"bytes": 22854
}
}
},
{
"captured_at": "2026-08-11T10:48:28+00:00",
"manifest_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/manifest.json",
"manifest_sha256": "f76bf79c0226dd8e7ce6a377c5fd823e70616d546a7ab11c70b08babe8e1c861",
"manifest_file": "aio-f76bf79c0226dd8e.json",
"declared": 61,
"providers": {
"allanime": {
"sha256": "25fb224e2ac0575055aca1dfce4263bc069780b99d86433692f770289971c3ce",
"file": "25fb224e2ac0575055aca1dfce4263bc069780b99d86433692f770289971c3ce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allanime.js",
"bytes": 19281
},
"4khdhub": {
"sha256": "e64aea603b3c3786a9f03e2a7b5dbee7e5666918a0ad606aeec87469ffafc4ec",
"file": "e64aea603b3c3786a9f03e2a7b5dbee7e5666918a0ad606aeec87469ffafc4ec.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/4khdhub.js",
"bytes": 28636
},
"1shows": {
"sha256": "9d8e329755b00a42b1c05cd06a764a2993e1874f67b3b4e2a96b25894d62ceba",
"file": "9d8e329755b00a42b1c05cd06a764a2993e1874f67b3b4e2a96b25894d62ceba.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/1shows.js",
"bytes": 53816
},
"allwish": {
"sha256": "647edc750491af2165d0d8ab9d49e799c87e5d6e7571728e63582936589562a8",
"file": "647edc750491af2165d0d8ab9d49e799c87e5d6e7571728e63582936589562a8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allwish.js",
"bytes": 28681
},
"animekai": {
"sha256": "15ea49f3f86be417b8f03e6395b8d0a6a0a1c5eedc2d133520cb627e2840be3d",
"file": "15ea49f3f86be417b8f03e6395b8d0a6a0a1c5eedc2d133520cb627e2840be3d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animekai.js",
"bytes": 24779
},
"anikototv": {
"sha256": "4b75a13ad9f3a9e7c067e8cbd18a66830cce4ad0d7e75ed28eca66cf1ed32b5d",
"file": "4b75a13ad9f3a9e7c067e8cbd18a66830cce4ad0d7e75ed28eca66cf1ed32b5d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anikototv.js",
"bytes": 20172
},
"anidb": {
"sha256": "60ec5bba1e6d0052b9fa495ddaeec23841a43dcaee18158db5f222e055c0c209",
"file": "60ec5bba1e6d0052b9fa495ddaeec23841a43dcaee18158db5f222e055c0c209.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anidb.js",
"bytes": 14671
},
"animepahe": {
"sha256": "a1f38e1819d61f9efd91648372ead67ce805c1ffd9f46acdff136d83a9e0715e",
"file": "a1f38e1819d61f9efd91648372ead67ce805c1ffd9f46acdff136d83a9e0715e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animepahe.js",
"bytes": 16707
},
"animesalt": {
"sha256": "2e732f8baa25726b09d0716455e930142527c7e7b3dce981be6a2ba115c463e5",
"file": "2e732f8baa25726b09d0716455e930142527c7e7b3dce981be6a2ba115c463e5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animesalt.js",
"bytes": 16095
},
"animetsu": {
"sha256": "243edd8c76b0995a72e02ba6ff7ca47add6063b1d471ebe378d3d6842bd8cadb",
"file": "243edd8c76b0995a72e02ba6ff7ca47add6063b1d471ebe378d3d6842bd8cadb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animetsu.js",
"bytes": 22545
},
"animeworld": {
"sha256": "bba8152dfabeba85879015ad2b313022784dcd07560d07a1b3fed152d703c4e8",
"file": "bba8152dfabeba85879015ad2b313022784dcd07560d07a1b3fed152d703c4e8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animeworld.js",
"bytes": 7620
},
"anime-sama": {
"sha256": "264b604bab0dedf5f1b50cd0b165ecb50fffb516c6cb8eca50ba07c0bcbec995",
"file": "264b604bab0dedf5f1b50cd0b165ecb50fffb516c6cb8eca50ba07c0bcbec995.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anime-sama.js",
"bytes": 274214
},
"allmovieland": {
"sha256": "0b4533ed32c82b28813b97fe9deb44d97d1f1884adf1a8208d231967347ae3ce",
"file": "0b4533ed32c82b28813b97fe9deb44d97d1f1884adf1a8208d231967347ae3ce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allmovieland.js",
"bytes": 14517
},
"animezey": {
"sha256": "46e83c8d710830679b7f17eacb03e014fc4195237cd423fe63254862549f24ff",
"file": "46e83c8d710830679b7f17eacb03e014fc4195237cd423fe63254862549f24ff.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animezey.js",
"bytes": 47785
},
"desiflix": {
"sha256": "89d80b0ac5aac7e946680f35f3fa7ba4859e2a9e9ab42ef8a811b51518e63cac",
"file": "89d80b0ac5aac7e946680f35f3fa7ba4859e2a9e9ab42ef8a811b51518e63cac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/desiflix.js",
"bytes": 14501
},
"castle": {
"sha256": "1b23fb0b7740e707fb2e3c5f6f69ca51c4bb4fc6afc8f1ae851af22e3f66bb89",
"file": "1b23fb0b7740e707fb2e3c5f6f69ca51c4bb4fc6afc8f1ae851af22e3f66bb89.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/castle.js",
"bytes": 23481
},
"Cineby": {
"sha256": "06a14293c93a83d3060684e042e7087031463c775717f8b5f1dfeaa0ba30d429",
"file": "06a14293c93a83d3060684e042e7087031463c775717f8b5f1dfeaa0ba30d429.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cineby.js",
"bytes": 19736
},
"cinefreak": {
"sha256": "422d7f2fc6c51ea3d4f77596382cd817b1d482997c46ff7509b6ce11b205404d",
"file": "422d7f2fc6c51ea3d4f77596382cd817b1d482997c46ff7509b6ce11b205404d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cinefreak.js",
"bytes": 30268
},
"moonflix": {
"sha256": "e4928ad7affd0f9d417fee3c3f90bcaf0f37ed2c577ab52dd391a6cd1635f12f",
"file": "e4928ad7affd0f9d417fee3c3f90bcaf0f37ed2c577ab52dd391a6cd1635f12f.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moonflix.js",
"bytes": 13234
},
"cinemacity": {
"sha256": "e97516075e2f0d47042ab2cfef717d615a79ff6a4f44ff4667c75b027fc1a0fc",
"file": "e97516075e2f0d47042ab2cfef717d615a79ff6a4f44ff4667c75b027fc1a0fc.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cinemacity.js",
"bytes": 44968
},
"ctgmovies": {
"sha256": "29128d8b2dac99a3ae3ff8e771ccbe14598efab021981b02867c7f3f7fc0e6c4",
"file": "29128d8b2dac99a3ae3ff8e771ccbe14598efab021981b02867c7f3f7fc0e6c4.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/ctgmovies.js",
"bytes": 24938
},
"dooflix": {
"sha256": "2691befa44f5d8d8f30c1711021a9fb0fdfe09a90f5640dd97ede5670f3dca5a",
"file": "2691befa44f5d8d8f30c1711021a9fb0fdfe09a90f5640dd97ede5670f3dca5a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/dooflix.js",
"bytes": 6343
},
"einthusan": {
"sha256": "34adb013fbac73ba3688f9bcc93e6418e28aeda1433dd04eb50cdec9cb6a82c8",
"file": "34adb013fbac73ba3688f9bcc93e6418e28aeda1433dd04eb50cdec9cb6a82c8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/einthusan.js",
"bytes": 18635
},
"fibwatch": {
"sha256": "283284e818443cd3ef98ca58aaf0b2c594ecd61219881cb2561baf6c37e545e9",
"file": "283284e818443cd3ef98ca58aaf0b2c594ecd61219881cb2561baf6c37e545e9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/fibwatch.js",
"bytes": 13955
},
"goated": {
"sha256": "b4966c7fd78842d59085fe197bc89ddbbc6c23c9a0f9c5ba6b114eedb7673f00",
"file": "b4966c7fd78842d59085fe197bc89ddbbc6c23c9a0f9c5ba6b114eedb7673f00.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/goated.js",
"bytes": 21628
},
"gramcinema": {
"sha256": "03865cdddc4b4ae9e8155e1ccdf691b725ede65a9d86b3f4ca9b4943eed9d0bb",
"file": "03865cdddc4b4ae9e8155e1ccdf691b725ede65a9d86b3f4ca9b4943eed9d0bb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/gramcinema.js",
"bytes": 17002
},
"hdghartv": {
"sha256": "8f6931a418a437f64d697f6eafdc27b8c2408cefd9accc5c7e7d9810871ed81a",
"file": "8f6931a418a437f64d697f6eafdc27b8c2408cefd9accc5c7e7d9810871ed81a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hdghartv.js",
"bytes": 10347
},
"hdhub4u": {
"sha256": "35f3a66b3ff1e7d73fca85955920bb134d2e14f74e12a8ceb362782f06ae8c48",
"file": "35f3a66b3ff1e7d73fca85955920bb134d2e14f74e12a8ceb362782f06ae8c48.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hdhub4u.js",
"bytes": 45252
},
"hianime": {
"sha256": "11124b38985b9780ad49e040b5d30a7143bc9541e27c7e314e70d9778a227af9",
"file": "11124b38985b9780ad49e040b5d30a7143bc9541e27c7e314e70d9778a227af9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hianime.js",
"bytes": 16871
},
"hindmoviez": {
"sha256": "86b8c3a4dff3c98c05db88eb075936b2f4ec00d504b967f1150bdfbd6fa620ac",
"file": "86b8c3a4dff3c98c05db88eb075936b2f4ec00d504b967f1150bdfbd6fa620ac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hindmoviez.js",
"bytes": 30964
},
"kurage": {
"sha256": "668797edb270c5fed931b08e0c92ca6693420041838f3b8ef49e28ddb1e7e463",
"file": "668797edb270c5fed931b08e0c92ca6693420041838f3b8ef49e28ddb1e7e463.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/kurage.js",
"bytes": 16396
},
"moviebox": {
"sha256": "f19ec5a037e53220e1457e6db0cb9abee1d2f9f299c594dddefb14df7822c847",
"file": "f19ec5a037e53220e1457e6db0cb9abee1d2f9f299c594dddefb14df7822c847.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moviebox.js",
"bytes": 9668
},
"movieblast": {
"sha256": "d3b04a5ee1a13fed77192b5226d46001508fe321fa747f0c519d0c23d5b1a974",
"file": "d3b04a5ee1a13fed77192b5226d46001508fe321fa747f0c519d0c23d5b1a974.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movieblast.js",
"bytes": 13423
},
"moviesdrive": {
"sha256": "27a986268c9948edf86b5d9150493dcb8f6263fcad3c260f93403bc9348cb8fc",
"file": "27a986268c9948edf86b5d9150493dcb8f6263fcad3c260f93403bc9348cb8fc.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moviesdrive.js",
"bytes": 27011
},
"movieshunt": {
"sha256": "6796beaa02d57e69cb033eec47a14a3b74782a0d08bcfd260421f10d4041392e",
"file": "6796beaa02d57e69cb033eec47a14a3b74782a0d08bcfd260421f10d4041392e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movieshunt.js",
"bytes": 34626
},
"movies4u": {
"sha256": "bc4308578b53310c050c71b8e1835e0e0068300bd19a7826eba0e394d62bfbdd",
"file": "bc4308578b53310c050c71b8e1835e0e0068300bd19a7826eba0e394d62bfbdd.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movies4u.js",
"bytes": 30685
},
"movix": {
"sha256": "7b658f1f8d1456986d235a9aadee3cad314fb9ba7ddd907978e16a14b6054e74",
"file": "7b658f1f8d1456986d235a9aadee3cad314fb9ba7ddd907978e16a14b6054e74.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movix.js",
"bytes": 13379
},
"nakios": {
"sha256": "450b43a5eaebb8b3f3710fcf393271f5d739df9e0967d1f175d36b4fae17c8da",
"file": "450b43a5eaebb8b3f3710fcf393271f5d739df9e0967d1f175d36b4fae17c8da.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/nakios.js",
"bytes": 10282
},
"netmirror": {
"sha256": "5cc8283a945c663ea55e049931f22c3f9afdeb3ff38e564899dc5359d40600c1",
"file": "5cc8283a945c663ea55e049931f22c3f9afdeb3ff38e564899dc5359d40600c1.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/netmirror.js",
"bytes": 18274
},
"persianstremio": {
"sha256": "04c8664fd3977a3279fc262be15e2dde88b409e79eb27cc2ae0d1c0b1056b7f9",
"file": "04c8664fd3977a3279fc262be15e2dde88b409e79eb27cc2ae0d1c0b1056b7f9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/persianstremio.js",
"bytes": 12643
},
"peachify": {
"sha256": "0f9f52a4c69bebe4c843c0b3ae06a410d3688569316446f45877ad964c316499",
"file": "0f9f52a4c69bebe4c843c0b3ae06a410d3688569316446f45877ad964c316499.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/peachify.js",
"bytes": 720713
},
"playimdb": {
"sha256": "e00e7b0d65b15622e0b6bcdce3ccc92d6226853197962348ced4af47343f07ab",
"file": "e00e7b0d65b15622e0b6bcdce3ccc92d6226853197962348ced4af47343f07ab.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/playimdb.js",
"bytes": 11841
},
"purstream": {
"sha256": "02173d75d873826f33e7bd45bb1c7973e557845548a8634b3ed1a5161c89abb8",
"file": "02173d75d873826f33e7bd45bb1c7973e557845548a8634b3ed1a5161c89abb8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/purstream.js",
"bytes": 15917
},
"showbox": {
"sha256": "b90ce3c9aceca167d9f97d57ba2487029b0dd75e61abc4d7e8ad1dd97864a1d5",
"file": "b90ce3c9aceca167d9f97d57ba2487029b0dd75e61abc4d7e8ad1dd97864a1d5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/showbox.js",
"bytes": 27232
},
"topcartoons": {
"sha256": "df33f490a73779f40b29ad612863fd4b192768567338a2171289fe5316e40ef6",
"file": "df33f490a73779f40b29ad612863fd4b192768567338a2171289fe5316e40ef6.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/topcartoons.js",
"bytes": 6234
},
"vidrock": {
"sha256": "f679614bf1f955dcfea633d527e9ce40b56768ec3ff32648a651f565c121b70c",
"file": "f679614bf1f955dcfea633d527e9ce40b56768ec3ff32648a651f565c121b70c.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidrock.js",
"bytes": 17622
},
"uhdmovies": {
"sha256": "69b4277574bf29bd898305b9043988f725ad30914e86a803c1d951ac4e556e6b",
"file": "69b4277574bf29bd898305b9043988f725ad30914e86a803c1d951ac4e556e6b.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/uhdmovies.js",
"bytes": 34024
},
"vegamovies": {
"sha256": "0641a31d6068d8d2f3e5ca5d734494b24f69b89d6a5d027ae1a7b5eee1953d1a",
"file": "0641a31d6068d8d2f3e5ca5d734494b24f69b89d6a5d027ae1a7b5eee1953d1a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vegamovies.js",
"bytes": 50278
},
"vidlink": {
"sha256": "bedc41b8caf7e7cb371b5b96bb949970278c8a51b83847eaa64f46ca0317c521",
"file": "bedc41b8caf7e7cb371b5b96bb949970278c8a51b83847eaa64f46ca0317c521.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidlink.js",
"bytes": 14409
},
"videasy": {
"sha256": "8fb7fbc12e23d28185927a5a7f47fa65874ff0d1b1f3e01f4dbf9813c4fc7862",
"file": "8fb7fbc12e23d28185927a5a7f47fa65874ff0d1b1f3e01f4dbf9813c4fc7862.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/videasy.js",
"bytes": 23259
},
"vidsrc": {
"sha256": "c83b23943f9783f2b57008fac62f5fd2a05fea0c826f4b1ca74d53198152b286",
"file": "c83b23943f9783f2b57008fac62f5fd2a05fea0c826f4b1ca74d53198152b286.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidsrc.js",
"bytes": 21623
},
"vixsrc": {
"sha256": "b38a464f826f7ea87fee2c4e483ccbe9d5925e8a89a678a816b77873245611eb",
"file": "b38a464f826f7ea87fee2c4e483ccbe9d5925e8a89a678a816b77873245611eb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vixsrc.js",
"bytes": 1083944
},
"vidfast": {
"sha256": "9750c41a72fe7978d81eabd1b3704529cac0c13a7830a1d608afec5c892271cd",
"file": "9750c41a72fe7978d81eabd1b3704529cac0c13a7830a1d608afec5c892271cd.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidfast.js",
"bytes": 12862
},
"vidlove": {
"sha256": "a8516b7fcc81ce7013b51f3be9a905de9defe34d654e52c01d0a944dbb624a89",
"file": "a8516b7fcc81ce7013b51f3be9a905de9defe34d654e52c01d0a944dbb624a89.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidlove.js",
"bytes": 12758
},
"xpass": {
"sha256": "ad02f9faf8385c8857123ccb2931aa171f219a43c822daef32822ce1a834dbe5",