20230904.json 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531
  1. /*
  2. 瞎操作说明:
  3. 解密链接☞ ?url=
  4. 加密链接(仅支持非图床和非pk密码接口)
  5. ?jm=1&url=
  6. 格式如下:(多个格式链接 任选一)
  7. m=0 ☞ 图床(默认可不填)
  8. img=图片链接(默认可不填 下同)
  9. ?jm=1&url=配置链接&m=0&img=图片链接
  10. ?jm=1&url=配置链接&img=图片链接
  11. ?jm=1&url=配置链接&m=0
  12. ?jm=1&url=配置链接
  13. m=1 ☞ pk密码模式 接口格式 地址;pk;密码
  14. 秘钥字串位数不能大于16 (下同)
  15. ?jm=1&url=配置链接&m=1&key=秘钥
  16. m=2 ☞ 转2423
  17. 偏移量字串位数不能大于13 (默认可不填 下同)
  18. ?jm=1&url=配置链接&m=2&key=秘钥&iv=偏移量
  19. ?jm=1&url=配置链接&m=2&key=秘钥
  20. m=3 ☞ 转2423➕图床
  21. ?jm=1&url=配置链接&m=3&key=秘钥&iv=偏移量&img=图片链接
  22. ?jm=1&url=配置链接&m=3&key=秘钥&iv=偏移量
  23. ?jm=1&url=配置链接&m=3&key=秘钥
  24. 接口合併链接(支持加密&jm=1)☞ ?sub=
  25. 影視TV版 影視手機/平板版
  26. 官方發佈頻道 https://t.me/fongmi_release
  27. 官方交流群 https://t.me/fongmi_offical
  28. 作者的18🈲交流群 https://t.me/fongmi_adult
  29. 官方開源倉庫 https://github.com/fongmi/tv
  30. 最新APP仓库下载 https://github.com/FongMi/TV/releases
  31. 官方爬虫仓库 https://github.com/FongMi/CatVodSpider
  32. 蜂蜜原裝接口
  33. (海外專用)
  34. 18+ >https://raw.githubusercontent.com/FongMi/CatVodSpider/main/json/adult.json
  35. 正规 >https://raw.githubusercontent.com/FongMi/CatVodSpider/main/json/config.json
  36. 网友自制蜂蜜接口轉發
  37. (由於蜂蜜原裝接口沒有添加加速鏈 然而生之 每30分钟同步一次 國內專用)
  38. 18+ >https://ts--ly23.repl.co/fm18
  39. http://大屌蜂蜜.eu.org
  40. 正规 >https://ts--ly23.repl.co/fmtv
  41. http://蜂蜜.eu.org
  42. 本APP是臺灣大佬蜂蜜(活雷鋒)一人始於2022.06.22基于猫影视制作而成,功能强大且完全免费无广告。更多功能与操作说明请點擊這裡查看!!!
  43. TVB/影视接口(瞎操作说明) https://api.ys66.repl.co
  44. ?url= >>加密(jm=1)&解密
  45. ?sub= >>接口合并(需规则文件直链)(支持加密)
  46. *###-----*------*------###*
  47. 接口加密/解密 https://api.ys66.repl.co?url=
  48. 接口合并(可加密) https://api.ys66.repl.co?sub=
  49. 其他参数说明在文件内,但该文件是做合并接口实例的 ,谨记!谨记!最后最好删除所有注释,以防报错。
  50. 飞机群
  51. 讨论群发
  52. https://t.me/fongmi_offical
  53. 频道
  54. https://t.me/fongmi_release
  55. 調整 viewType 改為 style
  56. type 有 4 種模式
  57. rect、oval、full、list
  58. ratio 為比例 寬/高
  59. 預設為直向 3:4 = 0.75
  60. 修改橫向 4:3 則是 1.33
  61. 範例:
  62. 直式 "style":{ "type":"rect" }
  63. 橫式 "style":{ "type":"rect", "ratio":1.33 }
  64. 正方 "style":{ "type":"rect", "ratio":1 }
  65. 正圓 "style":{ "type":"oval" }
  66. 橢圓 "style":{ "type":"oval", "ratio":1.1 }
  67. 点播栏位
  68. searchable:搜索 (0:關閉、1:啟用)
  69. changeable:換源 (0:關閉、1:啟用)
  70. playerType:播放器 (1:IJK、2:EXO)
  71. 直播栏位
  72. ua:用戶代理
  73. referer:參照位址
  74. epg:節目網址
  75. logo:台標網址
  76. pass:是否免密碼
  77. boot:是否自動開啟
  78. playerType:播放器
  79. recordable = 0 不記憶
  80. 配置范例
  81. 点播-线上
  82. https://gh-proxy.com/https://github.com/FongMi/TV/blob/dev/other/sample/vod/online.json
  83. {
  84. "spider": "https://github.com/custom_spider.jar",
  85. "sites": [
  86. {
  87. "key": "one",
  88. "name": "One",
  89. "type": 3,
  90. "api": "csp_Csp",
  91. "searchable": 1,
  92. "changeable": 1,
  93. "ext": "https://github.com/one.json"
  94. },
  95. {
  96. "key": "two",
  97. "name": "Two",
  98. "type": 3,
  99. "api": "csp_Csp",
  100. "searchable": 1,
  101. "changeable": 1,
  102. "ext": "https://github.com/two.json"
  103. },
  104. {
  105. "key": "extend",
  106. "name": "Extend",
  107. "type": 3,
  108. "api": "csp_Csp",
  109. "searchable": 1,
  110. "changeable": 1,
  111. "ext": "https://github.com/extend.json",
  112. "jar": "https://github.com/extend.jar"
  113. }
  114. ]
  115. }
  116. 点播-本地
  117. https://gh-proxy.com/https://github.com/FongMi/TV/blob/dev/other/sample/vod/offline.json
  118. {
  119. "spider": "file://Download/custom_spider.jar",
  120. "sites": [
  121. {
  122. "key": "one",
  123. "name": "One",
  124. "type": 3,
  125. "api": "csp_Csp",
  126. "searchable": 1,
  127. "changeable": 1,
  128. "ext": "file://Download/one.json"
  129. },
  130. {
  131. "key": "two",
  132. "name": "Two",
  133. "type": 3,
  134. "api": "csp_Csp",
  135. "searchable": 1,
  136. "changeable": 1,
  137. "ext": "file://Download/two.json"
  138. },
  139. {
  140. "key": "extend",
  141. "name": "Extend",
  142. "type": 3,
  143. "api": "csp_Csp",
  144. "searchable": 1,
  145. "changeable": 1,
  146. "ext": "file://Download/extend.json",
  147. "jar": "file://Download/extend.jar"
  148. }
  149. ]
  150. }
  151. 直播-线上
  152. https://gh-proxy.com/https://github.com/FongMi/TV/blob/dev/other/sample/live/online.json
  153. {
  154. "lives": [
  155. {
  156. "name": "M3U",
  157. "url": "https://github.com/live.m3u"
  158. },
  159. {
  160. "name": "TXT",
  161. "url": "https://github.com/live.txt",
  162. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  163. "logo": "https://epg.112114.xyz/logo/{name}.png"
  164. },
  165. {
  166. "name": "IJK",
  167. "url": "https://github.com/live.txt",
  168. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  169. "logo": "https://epg.112114.xyz/logo/{name}.png",
  170. "playerType": 1
  171. },
  172. {
  173. "name": "EXO",
  174. "url": "https://github.com/live.txt",
  175. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  176. "logo": "https://epg.112114.xyz/logo/{name}.png",
  177. "playerType": 2
  178. },
  179. {
  180. "name": "PRO",
  181. "boot": false,
  182. "url": "https://github.com/live.txt",
  183. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  184. "logo": "https://epg.112114.xyz/logo/{name}.png",
  185. "ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36",
  186. "referer": "https://github.com/"
  187. },
  188. {
  189. "name": "Custom",
  190. "boot": false,
  191. "pass": true,
  192. "url": "https://github.com/live.txt",
  193. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  194. "logo": "https://epg.112114.xyz/logo/{name}.png",
  195. "header": {
  196. "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36",
  197. "referer": "https://github.com/"
  198. }
  199. },
  200. {
  201. "name": "JSON",
  202. "type": 1,
  203. "url": "https://github.com/live.json"
  204. },
  205. {
  206. "name": "Proxy",
  207. "type": 2,
  208. "url": "proxy://do=live&type=today"
  209. }
  210. ]
  211. }
  212. 直播-本地
  213. https://gh-proxy.com/https://github.com/FongMi/TV/blob/dev/other/sample/live/offline.json
  214. {
  215. "lives": [
  216. {
  217. "name": "M3U",
  218. "url": "file://Download/live.m3u"
  219. },
  220. {
  221. "name": "TXT",
  222. "url": "file://Download/live.txt",
  223. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  224. "logo": "https://epg.112114.xyz/logo/{name}.png"
  225. },
  226. {
  227. "name": "IJK",
  228. "url": "file://Download/live.txt",
  229. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  230. "logo": "https://epg.112114.xyz/logo/{name}.png",
  231. "playerType": 1
  232. },
  233. {
  234. "name": "EXO",
  235. "url": "file://Download/live.txt",
  236. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  237. "logo": "https://epg.112114.xyz/logo/{name}.png",
  238. "playerType": 2
  239. },
  240. {
  241. "name": "PRO",
  242. "boot": false,
  243. "url": "file://Download/live.txt",
  244. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  245. "logo": "https://epg.112114.xyz/logo/{name}.png",
  246. "ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36",
  247. "referer": "https://github.com/"
  248. },
  249. {
  250. "name": "Custom",
  251. "boot": false,
  252. "pass": true,
  253. "url": "file://Download/live.txt",
  254. "epg": "https://epg.112114.xyz/?ch={name}&date={date}",
  255. "logo": "https://epg.112114.xyz/logo/{name}.png",
  256. "header": {
  257. "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36",
  258. "referer": "https://github.com/"
  259. }
  260. },
  261. {
  262. "name": "JSON",
  263. "type": 1,
  264. "url": "file://Download/live.json"
  265. }
  266. ]
  267. }
  268. "User-Agent"
  269. 爬蟲規則與上方一致
  270. "ua":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36"
  271. "User-Agen":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
  272. "User-Agen":"Mozilla/5.0(Macintosh; Intel Mac OS X 10_15_2)
  273. AppleWebKit/537.36 (KHTML, like Gecko) Chrome/
  274. 79.0.3945.130 Safari/537.36"
  275. "User-Agen":"Mozilla/5.0(SymbianOS/9.4;Series60/5.0
  276. NokiaN97-1/20.0.019;Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/525 (KHTML, like Gecko)BrowserNG/7.1.18124"
  277. 已更新到我倉庫
  278. 請合併 Vod.java
  279. */
  280. {
  281. "sites": [
  282. {
  283. "key": "本地",
  284. "name": "❤本地",
  285. "type": 3,
  286. "api": "csp_Local",
  287. "searchable": 0,
  288. "changeable": 0,
  289. "style":{ "type":"rect", "ratio":0.8 },
  290. "jar": "https://fongmi.cachefly.net/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;eea22614c071a32c3624ca99691f491a"
  291. },
  292. {
  293. "key": "csp_Nbys",
  294. "name": "❤蜂蜜新泥巴",
  295. "type": 3,
  296. "api": "csp_NiNi",
  297. "searchable": 1,
  298. "style":{ "type":"rect", "ratio":0.8 },
  299. "changeable": 1,
  300. "jar": "https://qu.ax/XTuU.jpg"
  301. },
  302. {
  303. "key": "蜂蜜旧泥巴",
  304. "name": "❤蜂蜜旧泥巴",
  305. "type": 3,
  306. "api": "csp_NiNi",
  307. "searchable": 1,
  308. "style":{ "type":"rect", "ratio":0.8 },
  309. "ext": 1,
  310. "jar":"https://qu.ax/bmJu.js;md5;6976f6560b0b5ff9182651d9e4c43dac"
  311. },
  312. { "key": "泥巴", "name": "泥巴", "type": 3, "api": "csp_NiNi", "searchable": 1, "style":{ "type":"rect", "ratio":0.8 },"jar": "https://fongmi.cachefly.net/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;eea22614c071a32c3624ca99691f491a", "ext": "1" },
  313. {"key": "csp_AppYsV2如意","name": "🍝如意┃4k","type": 3,"api": "csp_AppYsV2","searchable": 1,"quickSearch": 1,"filterable": 1,"style":{ "type":"rect", "ratio":0.8 },"ext": "http://cms.maoyingshi.cc/api.php/app/","jar":"https://qu.ax/zWdG.js"},
  314. /*{"key": "csp_appys_影探","name": "❤影探主接口|4K","type": 3,"api": "csp_AppYsV2","searchable": 1,"quickSearch": 1,"style":{ "type":"rect", "ratio":0.8 },"filterable": 1,"ext": "http://yt22106.lfytyl.com/api.php/app/","jar": "https://qu.ax/QdLc.jpg;md5;fd6a2cf8f31c7112731c5f90dab94847"
  315. },*/
  316. { "key": "腐宅",
  317. "name": "腐宅",
  318. "type": 3,
  319. "api": "csp_AppYsV2",
  320. "searchable": 1,
  321. "quickSearch": 1,
  322. "filterable": 1,
  323. "style":{ "type":"rect", "ratio":0.8 },
  324. "changeable": 0,
  325. "ext": "http://app.zhaifutvapp.com/ruifenglb_api.php/v1.vod"
  326. },
  327. /*磁力系列*/
  328. {"key": "py_cctv_集合","name": "🍸️央视集合","type": 3,"api": "py_cctv","searchable": 1,"quickSearch": 1,"style":{ "type":"rect", "ratio":0.8 },"filterable": 1,"ext": "https://qu.ax/WHNe.json"},
  329. {
  330. "key":"路飞直播2点播",
  331. "name":"❤电视 | 路飞[js]",
  332. "type":3,
  333. "style":{ "type":"oval" },
  334. "api":"https://qu.ax/bzoe.js",
  335. "ext":"https://qu.ax/kPgt.json"
  336. },
  337. {
  338. "key": "MV_vod",
  339. "name": "❤电视┃MTV",
  340. "type": 1,
  341. "style":{ "type":"oval" },
  342. "api": "https://tvbox-mv--leosam2048.repl.co/mv/vod"
  343. },
  344. {
  345. "key": "Youtube",
  346. "name": "❤Youtube",
  347. "type": 3,
  348. "style":{ "type":"oval" },
  349. "api": "https://qu.ax/Mud.js",
  350. /*"searchable": 1,
  351. "changeable": 1,*/
  352. "ext": "https://qu.ax/USvO.txt"
  353. },
  354. {
  355. "key":"❤𝐹𝑜𝓃𝑔𝑀𝒾",
  356. "name":"❤𝐹𝑜𝓃𝑔𝑀𝒾",
  357. "type":3,
  358. "api":"https://qu.ax/ntMk.js",
  359. "searchable":2,
  360. "quickSearch":0,
  361. "filterable":0,
  362. "ext":"https://qu.ax/GiK.json"
  363. },
  364. {
  365. "key": "MV",
  366. "name": "❤十六万MTV路飞js",
  367. "type": 3,
  368. "style":{ "type":"oval" },
  369. "api": "https://qu.ax/bzoe.js",
  370. "ext":"https://qu.ax/gxhY.txt"
  371. },
  372. {
  373. "key": "lf_js_p2p",
  374. "name": "路飞_磁力搜索 ",
  375. "type": 3,
  376. "searchable": 1,
  377. "changeable": 1,
  378. "quickSearch": 1,
  379. "filterable": 1,
  380. "style":{ "type":"rect", "ratio":0.8 },
  381. "recordable": 0,
  382. "api": "https://qu.ax/cLnn.js",
  383. "ext": "18+"
  384. },
  385. {
  386. "key": "lf_js_search",
  387. "name": "搜索 | lf_search",
  388. "type": 3,
  389. "searchable": 0,
  390. "changeable": 0,
  391. "quickSearch": 0,
  392. "filterable": 1,
  393. "style":{ "type":"rect", "ratio":0.8 },
  394. "api": "https://qu.ax/uukw.js"
  395. },
  396. {
  397. "key": "aikanbot",
  398. "name": "❤影视爱看机器人",
  399. "type": 3,
  400. "api": "https://qu.ax/CoHf.js",
  401. "searchable": 1,
  402. "filterable": 1,
  403. "style":{ "type":"rect", "ratio":0.8 },
  404. "quickSearch": 1
  405. },
  406. {"key":"4khdr","name":"4khdr", "type": 3,"searchable": 1,"quickSearch": 1,"style":{ "type":"rect", "ratio":0.8 },"changeable": 0,"api": "http://xhww.fun:63/js/drpy1.min.js","ext":"https://qu.ax/yhZO.js"},
  407. {"key":"drpy_js_爱看机器人","name":"爱看 | 机器[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/ikanbot2.js"},
  408. {"key": "csp_Mp4Mov","name": "🧲Mp4电影","jar":"https://qu.ax/qokd.jpg","type": 3,"api": "csp_Mp4Mov","searchable": 1,"style":{ "type":"rect", "ratio":0.8 },"quickSearch": 1,"filterable": 1},
  409. {"key":"csp_SeedHub","name":"🧲SeedHub","jar":"https://qu.ax/qokd.jpg","type":3,"api":"csp_SeedHub","playerType":1,"style":{ "type":"rect", "ratio":0.8 },"searchable":1,"quickSearch":1,"filterable":1},
  410. {"key":"csp_MeijuTT","name":"🧲美剧天堂","jar":"https://qu.ax/qokd.jpg","type":3,"api":"csp_MeijuTT","playerType":1,"style":{ "type":"rect", "ratio":0.8 },"searchable":1,"quickSearch":1,"filterable":1},
  411. {"key":"csp_MeijuMi","name":"🧲美剧迷","jar":"https://qu.ax/qokd.jpg","type":3,"api":"csp_MeijuMi","playerType":1,"searchable":1,"style":{ "type":"rect", "ratio":0.8 },"quickSearch":1,"filterable":1},
  412. {
  413. "key": "电影港湾磁力",
  414. "name": "pg大佬🧲电影港湾",
  415. "type": 3,
  416. "api": "https://qu.ax/rJOj.js",
  417. "searchable": 1,
  418. "style":{ "type":"rect", "ratio":0.8 },
  419. "quickSearch": 1,
  420. "filterable": 1,
  421. "ext": "https://qu.ax/owaw.js","jar":"https://raw.githubusercontent.com/lllyin/assets/master/😀.png"
  422. },
  423. {
  424. "key": "csp_XYQHikerAL_4KHDR",
  425. "name": "pg大佬🧲4KHDR(盘/磁)",
  426. "jar":"https://raw.githubusercontent.com/lllyin/assets/master/😀.png",
  427. "type": 3,
  428. "style":{ "type":"rect", "ratio":0.8 },
  429. "api": "https://qu.ax/rJOj.js",
  430. "playerType": 0,
  431. "searchable": 1,
  432. "quickSearch": 1,
  433. "filterable": 1,
  434. "ext": "https://qu.ax/hxea.js"
  435. },
  436. {"key":"csp_JavDb","name":"🧲JavDb","type":3,"api":"csp_JavDb","searchable":1,"style":{ "type":"rect", "ratio":0.8 },"quickSearch":1,"filterable":1,"jar":"https://ghproxy.net/https://raw.githubusercontent.com/lllyin/assets/master/javdb.png;md5;efecb2d08257b153c65d46055f8d87d8"
  437. },
  438. /*猫系列*/
  439. {
  440. "key": "在线之家",
  441. "name": "🐱猫在线之家",
  442. "searchable": 1,
  443. "quickSearch": 1,
  444. "filterable": 1,
  445. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  446. "style":{ "type":"rect", "ratio":0.8 },
  447. "api": "https://qu.ax/TYNk.js"
  448. },
  449. {
  450. "key": "贝乐虎",
  451. "name": "🐱猫贝乐",
  452. "searchable": 1,
  453. "quickSearch": 1,
  454. "filterable": 1,
  455. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  456. "style":{ "type":"rect", "ratio":0.8 },
  457. "api": "https://qu.ax/ZCBe.js"
  458. },
  459. {
  460. "key": "兔小贝",
  461. "name": "🐱猫兔小贝",
  462. "searchable": 1,
  463. "quickSearch": 1,
  464. "filterable": 1,
  465. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  466. "style":{ "type":"rect", "ratio":0.8 },
  467. "api": "https://qu.ax/NEvU.js"
  468. },
  469. {
  470. "key": "世纪DJ音乐网",
  471. "name": "🐱猫世纪DJ音乐网",
  472. "searchable": 1,
  473. "quickSearch": 1,
  474. "filterable": 1,
  475. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  476. "style":{ "type":"rect", "ratio":0.8 },
  477. "api": "https://qu.ax/UvyH.js"
  478. },
  479. {
  480. "key": "短视频",
  481. "name": "🐱猫短视频",
  482. "searchable": 1,
  483. "quickSearch": 1,
  484. "filterable": 1,
  485. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  486. "style":{ "type":"rect", "ratio":0.8 },
  487. "api": "https://qu.ax/vOtl.js"
  488. },
  489. {
  490. "key": "视聚场",
  491. "name": "🐱猫视聚场",
  492. "searchable": 1,
  493. "quickSearch": 1,
  494. "filterable": 1,
  495. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  496. "style":{ "type":"rect", "ratio":0.8 },
  497. "api": "https://qu.ax/chcz.js"
  498. },
  499. {
  500. "key": "童趣",
  501. "name": "🐱猫童趣",
  502. "searchable": 1,
  503. "quickSearch": 1,
  504. "filterable": 1,
  505. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  506. "style":{ "type":"rect", "ratio":0.8 },
  507. "api": "https://qu.ax/ejyJ.js"
  508. },
  509. {
  510. "key": "libo",
  511. "name": "🐱猫立波",
  512. "searchable": 1,
  513. "quickSearch": 1,
  514. "filterable": 1,
  515. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  516. "style":{ "type":"rect", "ratio":0.8 },
  517. "api": "https://qu.ax/WaKD.js"
  518. },
  519. {
  520. "key": "酷奇MV",
  521. "name": "🐱猫酷奇MV",
  522. "searchable": 1,
  523. "quickSearch": 1,
  524. "filterable": 1,
  525. "type": 3,
  526. "style":{ "type":"rect", "ratio":0.8 },
  527. "api": "https://qu.ax/mfvQ.js"
  528. },
  529. {
  530. "key": "猫泥巴",
  531. "name": "🐱猫泥巴",
  532. "searchable": 1,
  533. "quickSearch": 1,
  534. "filterable": 1,
  535. "type": 3,
  536. "style":{ "type":"rect", "ratio":0.8 },
  537. "api": "https://qu.ax/Dgma.js",
  538. "ext":"888解忧愁"
  539. },
  540. {
  541. "key": "duboku",
  542. "name": "🐱猫独播库",
  543. "searchable": 1,
  544. "quickSearch": 1,
  545. "filterable": 1,
  546. "type": 3,
  547. "style":{ "type":"rect", "ratio":0.8 },
  548. "api": "https://qu.ax/cCn.js"
  549. },
  550. {
  551. "key": "kkys",
  552. "name": "🐱猫快看高清",
  553. "searchable": 1,
  554. "quickSearch": 1,
  555. "filterable": 1,
  556. "type": 3,
  557. "style":{ "type":"rect", "ratio":0.8 },
  558. "api": "https://qu.ax/QBtV.js"
  559. },
  560. {
  561. "key": "kuyun77_open",
  562. "name": "🐱猫酷云77",
  563. "searchable": 1,
  564. "quickSearch": 1,
  565. "filterable": 1,
  566. "type": 3,
  567. "style":{ "type":"rect", "ratio":0.8 },
  568. "api": "https://qu.ax/zAuw.js"
  569. },
  570. {
  571. "key": "ikanbot_open",
  572. "name": "🐱猫爱看",
  573. "searchable": 1,
  574. "quickSearch": 1,
  575. "filterable": 1,
  576. "type": 3,
  577. "style":{ "type":"rect", "ratio":0.8 },
  578. "api": "https://qu.ax/FJzF.js"
  579. },
  580. /*mv系列*/
  581. /*
  582. {"key":"drpy_js_短视频","name":"聚合 | 短视频[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/短视频.js"},
  583. {"key":"drpy_js_A8音乐","name":"MV | A8音乐[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/A8音乐.js"},
  584. {"key":"drpy_js_MV263","name":"MV | 263[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/MV263.js"},
  585. {"key":"drpy_js_苹果DJ","name":"MV | 苹果DJ[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/苹果DJ.js"},
  586. {"key":"drpy_js_酷狗MV","name":"MV | 酷狗[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/酷狗MV.js"},
  587. {"key":"drpy_js_酷奇MV","name":"MV | 酷奇[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/酷奇MV.js"},
  588. {"key":"drpy_js_音悦网","name":"MV | 音悦网[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/音悦网.js"},
  589. {"key":"drpy_js_DJ音乐","name":"音频 | DJ音乐[js]","type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/DJ音乐.js","style":{ "type":"oval" },"playerType":"2"},
  590. {"key":"drpy_js_啦啦DJ","name":"音频 | 啦啦DJ[js]","type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/苹果DJ.js","style":{ "type":"oval" },"playerType":"2"},
  591. {"key":"drpy_js_清风DJ","name":"音频 | 清风DJ[js]","type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/清风DJ.js","style":{ "type":"oval" },"playerType":"2"},
  592. */
  593. /*直播系列*/
  594. {"key":"drpy_js_哔哩直播","name":"直播 | 哔哩[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/哔哩直播.js"},
  595. {"key":"drpy_js_斗鱼直播","name":"直播 | 斗鱼[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/斗鱼直播.js"},
  596. {"key":"drpy_js_虎牙直播","name":"直播 | 虎牙[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/虎牙直播.js"},
  597. {
  598. "key": "csp_XYQHiker_虎牙直播",
  599. "name": "❤🐯虎牙直播(XYQH)",
  600. "type": 3,
  601. "style":{ "type":"rect", "ratio":0.8 },
  602. "api": "csp_XYQHiker",
  603. "searchable": 1,
  604. "quickSearch": 0,
  605. "filterable": 0,
  606. "ext": "https://qu.ax/uNjv.json"
  607. },
  608. {
  609. "key":"csp_XYQBiu_斗鱼",
  610. "name":"❤🐟┃斗鱼┃直播",
  611. "type":3,
  612. "style":{ "type":"rect", "ratio":0.8 },
  613. "api":"csp_XYQBiu",
  614. "searchable":0,
  615. "quickSearch":0,
  616. "filterable":0,
  617. "ext":"https://qu.ax/SQqd.json"
  618. },
  619. /*哔哩哔哩系列
  620. {
  621. "key":"csp_Bili",
  622. "name":"🅱️哔哩哔哩",
  623. "type":3,
  624. "style":{ "type":"rect", "ratio":0.8 },
  625. "api":"csp_Bili",
  626. "searchable":1,
  627. "quickSearch":0,
  628. "filterable":1,
  629. "ext":"https://qu.ax/nVpb.json",
  630. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  631. },
  632. {
  633. "key":"戏 曲",
  634. "name":"🅱️戏曲",
  635. "type":3,
  636. "style":{ "type":"rect", "ratio":0.8 },
  637. "api":"csp_Bili",
  638. "searchable":0,
  639. "quickSearch":0,
  640. "filterable":1,
  641. "ext":"https://qu.ax/kjiy.txt",
  642. "jar":"https://qu.ax/GFua.png"
  643. },
  644. {"key":"drpy_js_我的哔哩","name":"B站 | 合集[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/我的哔哩.js"},
  645. {"key":"csp_哔哩全集","name":"🐞哔哩全集","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/哔哩全集.json"},
  646. {"key":"csp_音乐现场","name":"🐞音乐现场","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":0,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/音乐现场.json"},
  647. {"key":"csp_软件教程","name":"🐞软件教程","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":0,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/软件教程.json"},
  648. {"key":"csp_美食天地","name":"🐞美食天地","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":0,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/美食天地.json"},
  649. {"key":"csp_棋牌娱乐","name":"🐞棋牌娱乐","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":0,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/棋牌娱乐.json"},
  650. {"key":"csp_戏曲合集","name":"🐞戏曲合集","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":0,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/戏曲合集.json"},
  651. {"key":"csp_学习园地","name":"🐞学习园地","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":0,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/学习园地.json"},
  652. {"key":"csp_女团热舞","name":"🐞女团热舞","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":0,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/女团热舞.json"},
  653. {"key":"csp_体育赛事","name":"🐞体育赛事","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":0,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/体育赛事.json"},
  654. {"key":"csp_儿童乐园","name":"🐞儿童乐园","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_Bili","searchable":0,"quickSearch":0,"filterable":1,"ext":"http://9xi4o.tk/sub/Bili/儿童乐园.json"},
  655. {"key":"drpy_js_B站影视","name":"影视 | B站影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/B站影视.js"},
  656. {"key":"drpy_js_哔哩影视","name":"影视 | 哔哩影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/哔哩影视.js"},
  657. */
  658. /*听书系列*/
  659. /*
  660. {"key":"drpy_js_相声随身听","name":"相声 | 相声随身听[js]","type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/相声随身听.js","style":{ "type":"rect", "ratio":0.8 },"playerType":"2"},
  661. {"key":"drpy_js_六月听书","name":"听书 | 六月听书[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/六月听书.js","playerType":"2"},
  662. {"key":"drpy_js_博看听书","name":"听书 | 博看听书[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/博看听书.js","playerType":"2"},
  663. {"key":"drpy_js_海洋听书","name":"听书 | 海洋听书[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/海洋听书.js","playerType":"2"},
  664. {"key":"drpy_js_有声小说","name":"听书 | 有声小说[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/有声小说吧.js","playerType":"2"},
  665. */
  666. /*阿里系列*/
  667. {
  668. "key": "csp_woggcli",
  669. "name": "玩偶(cli)",
  670. "type": 4,
  671. "api": "http://home.jundie.top:9520/spider/csp_Wogg",
  672. "searchable": 1,
  673. "quickSearch": 1,
  674. "filterable": 1,
  675. "ext": "0bec59716cbd492796ea1d5b14f2ca67"
  676. },
  677. {
  678. "key": "csp_XYQHikerAL_阿里云盘网",
  679. "name":"❤☁️阿里云盘",
  680. "type":3,
  681. "style":{ "type":"rect", "ratio":0.8 },
  682. "api":"csp_XYQHikerAL",
  683. "playerType":1,
  684. "searchable":1,
  685. "quickSearch":1,
  686. "filterable":1,
  687. "ext":"https://qu.ax/cvU.json"
  688. },
  689. {
  690. "key": "csp_WoGG",
  691. "name": "❤🤡玩偶哥哥┃4K",
  692. "type": 3,
  693. "style":{ "type":"rect", "ratio":0.8 },
  694. "api": "csp_WoGG",
  695. "searchable": 1,
  696. "quickSearch": 1,
  697. "filterable": 1,
  698. "ext": "0bec59716cbd492796ea1d5b14f2ca67",
  699. "jar":"https://qu.ax/rski.js"
  700. },
  701. {
  702. "key": "csp_XYQHikerAL_玩偶哥哥",
  703. "name":"❤🤖玩偶弟弟4k",
  704. "type":3,
  705. "style":{ "type":"rect", "ratio":0.8 },
  706. "api":"csp_XYQHikerAL",
  707. "playerType":1,
  708. "searchable":1,
  709. "quickSearch":1,
  710. "filterable":1,
  711. "ext":"https://qu.ax/VdgO.json"
  712. },
  713. {
  714. "key": "csp_XYQHikerlg4k",
  715. "name": "❤💋玩偶姐姐4k",
  716. "type": 3,
  717. "style":{ "type":"rect", "ratio":0.8 },
  718. "api": "csp_XYQHiker",
  719. "searchable": 1,
  720. "quickSearch": 1,
  721. "filterable": 1,
  722. "ext": "https://qu.ax/wNxy.json"
  723. },
  724. {
  725. "key": "csp_XYQHiker4klg",
  726. "name": "❤💅🏻玩偶妹妹4k",
  727. "type": 3,
  728. "style":{ "type":"rect", "ratio":0.8 },
  729. "api": "csp_XYQHiker",
  730. "searchable": 1,
  731. "quickSearch": 1,
  732. "filterable": 1,
  733. "ext": "https://qu.ax/TyM.json"
  734. },
  735. {
  736. "key":"csp_yt",
  737. "name":"❤🥳玩偶表姐┃4K",
  738. "type":3,
  739. "style":{ "type":"rect", "ratio":0.8 },
  740. "api":"csp_AppYsV2",
  741. "m3u8ads": "hd.youyhn.com",
  742. "searchable":1,
  743. "quickSearch":1,
  744. "filterable":1,
  745. "ext":"https://www.lfytv.cn/api.php/app/"
  746. },
  747. {
  748. "key": "csp_饭团",
  749. "name": "❤🦄玩偶表妹┃4K",
  750. "type": 3,
  751. "style":{ "type":"rect", "ratio":0.8 },
  752. "api": "csp_XBPQ",
  753. "searchable": 1,
  754. "quickSearch": 1,
  755. "filterable": 1,
  756. "ext": "https://qu.ax/CwJC.json"
  757. },
  758. {
  759. "key": "雲搜",
  760. "name": "❤雲搜",
  761. "type": 3,
  762. "style":{ "type":"rect", "ratio":0.8 },
  763. "api": "csp_UpYun",
  764. "searchable": 1,
  765. "changeable": 0,
  766. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  767. },
  768. {
  769. "key": "盤搜",
  770. "name": "❤盤搜",
  771. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  772. "api": "csp_PanSou",
  773. "searchable": 1,
  774. "changeable": 0,
  775. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  776. },
  777. {
  778. "key": "盤搜索",
  779. "name": "❤盤搜索",
  780. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  781. "api": "csp_PanSearch",
  782. "searchable": 1,
  783. "changeable": 0,
  784. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  785. },
  786. {
  787. "key": "找資源",
  788. "name": "❤找資源",
  789. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  790. "api": "csp_Zhaozy",
  791. "searchable": 1,
  792. "changeable": 0,
  793. "ext": "影視天下第一$$$test2$$$test2",
  794. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  795. },
  796. {"key": "csp_阿里七夜","name": "阿里 ┃ 七夜[4K]","type": 3,"style":{ "type":"rect", "ratio":0.8 },"api": "csp_Dovx","searchable": 1,"quickSearch": 1,"filterable": 0,"ext": "http://127.0.0.1:9978/file/tvbox/token.txt"},
  797. {"key":"csp_TuGou","name":"阿里 ┃ 土狗[4K]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"csp_TuGou","searchable":1,"quickSearch":1,"filterable":0,"ext":"http://127.0.0.1:9978/file/tvbox/token.txt"},
  798. {"key":"PanSearch","name":"阿里 ┃ PanS[4K]","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"style":{ "type":"rect", "ratio":0.8 },"filterable":0,"ext":"http://127.0.0.1:9978/file/tvbox/token.txt"},
  799. {"key": "Upyunso","name": "阿里 ┃ 云搜[4K]","type": 3,"api": "csp_UpYun","searchable": 1,"quickSearch": 1,"style":{ "type":"rect", "ratio":0.8 },"filterable": 0,"ext": "http://127.0.0.1:9978/file/tvbox/token.txt"},
  800. {"key": "Alips","name": "阿里 ┃ 盘搜[4K]","type": 3,"api": "csp_PanSou","searchable": 1,"quickSearch": 1,"style":{ "type":"rect", "ratio":0.8 },"filterable": 0,"ext": "http://127.0.0.1:9978/file/tvbox/token.txt"},
  801. {"key": "Zhaozy","name": "阿里 ┃ 找片[4K]","type": 3,"api": "csp_Zhaozy","searchable": 1,"quickSearch": 1,"style":{ "type":"rect", "ratio":0.8 },"filterable": 0,"ext": "http://127.0.0.1:9978/file/tvbox/token.txt$$$自己去注册$$$qq112233"},
  802. {"key":"drpy_js_360影视","name":"官源 | 360[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/360影视.js"},
  803. {"key":"drpy_js_奇珍异兽","name":"官源 | 爱奇艺[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/奇珍异兽.js"},
  804. {"key":"drpy_js_优酷","name":"官源 | 优酷[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/优酷.js"},
  805. {"key":"drpy_js_百忙无果","name":"官源 | 芒果[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/百忙无果.js"},
  806. {"key":"drpy_js_低端","name":"影视 | 低端[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/ddys.js"},
  807. {"key":"drpy_js_农民","name":"影视 | 农民[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/农民影视.js"},
  808. {"key":"drpy_js_大豆","name":"影视 | 大豆[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/大豆.js"},
  809. {"key":"drpy_js_l0l","name":"影视 | l0l[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/l0l.js"},
  810. {"key":"drpy_js_网飞.TV","name":"影视 | 网飞.TV[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/网飞.TV.js"},
  811. {"key":"drpy_js_乐猪TV","name":"影视 | 乐猪TV[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/乐猪TV.js"},
  812. {"key":"drpy_js_六度TV","name":"影视 | 六度TV[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/六度TV.js"},
  813. {"key":"drpy_js_花猫TV","name":"影视 | 花猫TV[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/花猫TV.js"},
  814. {"key":"drpy_js_新片场","name":"影视 | 新片场[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/新片场.js"},
  815. {"key":"drpy_js_皮皮鸭","name":"影视 | 皮皮鸭[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/皮皮鸭.js"},
  816. {"key":"drpy_js_哔哩兔","name":"影视 | 哔哩兔[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/哔哩兔.js"},
  817. {"key":"drpy_js_柒之社","name":"影视 | 柒之社[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/柒之社.js"},
  818. {"key":"drpy_js_免费看","name":"影视 | 免费看[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/免费看.js"},
  819. {"key":"drpy_js_91free","name":"影视 | 91free[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/91free.js"},
  820. {"key":"drpy_js_HDmoli","name":"影视 | HDmoli[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/HDmoli.js"},
  821. {"key":"drpy_js_Voflix","name":"影视 | Voflix[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/voflix.js"},
  822. {"key":"drpy_js_开眼视频","name":"影视 | 开眼视频[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/开眼视频.js"},
  823. {"key":"drpy_js_米爱影视","name":"影视 | 米爱影视[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/米爱影视.js"},
  824. {"key":"drpy_js_星空影视","name":"影视 | 星空影视[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/星空影视.js"},
  825. {"key":"drpy_js_小狗影院","name":"影视 | 小狗影院[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/小狗影院.js"},
  826. {"key":"drpy_js_奇优影院","name":"影视 | 奇优影院[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/奇优影院.js"},
  827. {"key":"drpy_js_在线之家","name":"影视 | 在线之家[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/在线之家.js"},
  828. {"key":"drpy_js_酷云七七","name":"影视 | 酷云七七[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/酷云77.js"},
  829. {"key":"drpy_js_秋霞影院","name":"影视 | 秋霞影院[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/秋霞.js"},
  830. {"key":"drpy_js_零度影视","name":"影视 | 零度影视[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/零度影视.js"},
  831. {"key":"drpy_js_JustLive","name":"直播 | JustLive[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/JustLive.js"},
  832. {"key":"drpy_js_JRKAN直播","name":"体育 | JRKAN直播[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/JRKAN直播.js"},
  833. {"key":"drpy_js_310直播","name":"体育 | 310直播[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/310直播.js"},
  834. {"key":"drpy_js_爱弹幕","name":"动漫 | 爱弹幕[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/爱弹幕.js"},
  835. {"key":"drpy_js_兔小贝","name":"动漫 | 兔小贝[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/兔小贝.js"},
  836. {"key":"drpy_js_AnFuns","name":"动漫 | AnFuns[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/AnFuns.js"},
  837. {"key":"drpy_js_动漫岛","name":"动漫 | 动漫岛[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/动漫岛.js"},
  838. {"key":"drpy_js_奇米动漫","name":"动漫 | 奇米动漫[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/奇米动漫.js"},
  839. {"key":"drpy_js_妮可动漫","name":"动漫 | 妮可动漫[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/妮可动漫.js"},
  840. {"key":"drpy_js_怡萱动漫","name":"动漫 | 怡萱动漫[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/怡萱动漫.js"},
  841. {"key":"drpy_js_异世界动漫","name":"动漫 | 异世界动漫[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/异世界动漫.js"},
  842. {"key":"drpy_js_139影视","name":"影视 | 139影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/139影视.js"},
  843. {"key":"drpy_js_345看片","name":"影视 | 345看片[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/345看片.js"},
  844. {"key":"drpy_js_8号影院","name":"影视 | 8号影院[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/8号影院.js"},
  845. {"key":"drpy_js_9U电影","name":"影视 | 9U电影[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/9U电影.js"},
  846. {"key":"drpy_js_KOK影视","name":"影视 | KOK影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/KOK影院.js"},
  847. {"key":"drpy_js_NY影院","name":"影视 | NY影院[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/NY影院.js"},
  848. {"key":"drpy_js_爱迪影视","name":"影视 | 爱迪影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/爱迪影视.js"},
  849. {"key":"drpy_js_爱看电影","name":"影视 | 爱看电影[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/爱看影院.js"},
  850. {"key":"drpy_js_尘落影视","name":"影视 | 尘落影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/尘落影视.js"},
  851. {"key":"drpy_js_楚门影院","name":"影视 | 楚门影院[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/楚门影院.js"},
  852. {"key":"drpy_js_大米星球","name":"影视 | 大米星球[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/大米星球.js"},
  853. {"key":"drpy_js_大师兄影视","name":"影视 | 大师兄影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/大师兄影视.js"},
  854. {"key":"drpy_js_多瑙影视","name":"影视 | 多瑙影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/多瑙影视.js","playerType":"2"},
  855. {"key":"drpy_js_金曼影视","name":"影视 | 金曼影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/金曼影视.js"},
  856. {"key":"drpy_js_看看电影","name":"影视 | 看看电影[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/看看电影.js"},
  857. {"key":"drpy_js_看了么","name":"影视 | 看了么[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/看了么.js"},
  858. {"key":"drpy_js_蓝光影院","name":"影视 | 蓝光影院[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/蓝光影院.js"},
  859. {"key":"drpy_js_麦豆网","name":"影视 | 麦豆网[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/麦豆.js"},
  860. {"key":"drpy_js_麦豆com","name":"影视 | 麦豆com[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/麦豆com.js"},
  861. {"key":"drpy_js_美视网","name":"影视 | 美视网[js]","type":3,"style":{ "type":"rect", "ratio":0.8 },"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/美视网.js"},
  862. {"key":"drpy_js_萌蛋蛋[V2]","name":"影视 | 萌蛋蛋[V2][js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/萌蛋蛋[V2].js"},
  863. {"key":"drpy_js_胖虎影视","name":"影视 | 胖虎影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/胖虎.js"},
  864. {"key":"drpy_js_起飞影院","name":"影视 | 起飞影院[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/起飞影院.js"},
  865. {"key":"drpy_js_人人影视","name":"影视 | 人人影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/人人影视.js"},
  866. {"key":"drpy_js_首播影院","name":"影视 | 首播影院[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/首播影院.js"},
  867. {"key":"drpy_js_小白菜儿","name":"影视 | 小白菜儿[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/小白菜电影.js"},
  868. {"key":"drpy_js_星辰影院","name":"影视 | 星辰影院[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/星辰.js"},
  869. {"key":"drpy_js_子子影视","name":"影视 | 子子影视[js]","style":{ "type":"rect", "ratio":0.8 },"type":3,"api":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/drpy2.min.js","ext":"https://ghproxy.com/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/子子影视.js"},
  870. {
  871. "key": "drpy_js_DJ音乐",
  872. "name": " DJ音乐",
  873. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  874. "api": "https://m.lianyingtv.com/uploads/itvbox/lib/drpy2.min.js",
  875. "searchable": 1,
  876. "quickSearch": 1,
  877. "filterable": 0,
  878. "ext": "https://m.lianyingtv.com/uploads/itvbox/js/DJ音乐.js"
  879. },
  880. {
  881. "key": "csp_xpath_yinfans",
  882. "name": "❤💥音范丝4K",
  883. "type": 3, "style":{ "type":"rect", "ratio":0.8 },
  884. "api": "csp_XPath",
  885. "searchable": 1,
  886. "quickSearch": 1,
  887. "filterable": 1,
  888. "ext": "https://qu.ax/yWls.json"
  889. },
  890. {"key": "drpy_公版","name": "网易/公版┃影像","type": 3,"api": "https://qu.ax/NtMt.js","searchable": 1,"style":{ "type":"rect", "ratio":0.8 },"quickSearch": 1,"filterable": 1,"ext": "https://qu.ax/clow.js"},
  891. {
  892. "key": "dr_77",
  893. "name": "❤🛩️┃酷云秒播┃",
  894. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  895. "api": "https://qu.ax/Fozq.js",
  896. "searchable": 0,
  897. "quickSearch": 0,
  898. "filterable": 0,
  899. "ext": "https://qu.ax/gnDK.js"
  900. },
  901. {
  902. "key":"drpy_hh",
  903. "name":"❤🛫吼吼影视(墙外)",
  904. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  905. "api":"https://qu.ax/Fozq.js",
  906. "ext":"https://qu.ax/Rjcb.js"
  907. },
  908. {
  909. "key":"drpy_od",
  910. "name":"❤🛫欧帝影视(墙外)",
  911. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  912. "api":"https://qu.ax/Fozq.js",
  913. "ext":"https://qu.ax/UpMx.js"
  914. },
  915. {
  916. "key":"drpy_dbk",
  917. "name":"❤🛫独播影视(墙外)",
  918. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  919. "api":"https://qu.ax/Fozq.js",
  920. "ext":"https://qu.ax/raDL.js"
  921. },
  922. {
  923. "key": "drpy_js_楚门影院.js]",
  924. "name": " ❤🛫| 楚门影院.js",
  925. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  926. "api": "https://qu.ax/Fozq.js",
  927. "ext": "https://qu.ax/cltC.js"
  928. },
  929. {
  930. "key":"drpy_kb",
  931. "name":"❤🛫酷播影视(墙外)",
  932. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  933. "api":"https://qu.ax/Fozq.js",
  934. "ext":"https://qu.ax/erWZ.js"
  935. },
  936. {
  937. "key": "dr_htu",
  938. "name": "❤✈️海兔影院[飞]",
  939. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  940. "api": "https://qu.ax/Fozq.js",
  941. "searchable": 0,
  942. "quickSearch": 0,
  943. "filterable": 0,
  944. "ext": "https://qu.ax/DzuU.js"
  945. },
  946. {
  947. "key": "dr_flin",
  948. "name": "❤✈️枫林影院[飞]",
  949. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  950. "api": "https://qu.ax/Fozq.js",
  951. "searchable": 0,
  952. "quickSearch": 0,
  953. "filterable": 0,
  954. "ext": "https://qu.ax/VcQC.js"
  955. },
  956. {
  957. "key":"drpy_qy",
  958. "name":"❤🐵奇优影院",
  959. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  960. "api":"https://qu.ax/Fozq.js",
  961. "ext":"https://qu.ax/jgob.js"
  962. },
  963. {
  964. "key":"drpy_101",
  965. "name":"❤🐽来欧来蓝光",
  966. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  967. "api":"https://qu.ax/Fozq.js",
  968. "ext":"https://qu.ax/dYsz.js"
  969. },
  970. {
  971. "key": "dr_cz",
  972. "name": "❤🚚厂长蓝光",
  973. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  974. "api": "https://qu.ax/Fozq.js",
  975. "searchable": 0,
  976. "quickSearch": 0,
  977. "filterable": 0,
  978. "ext": "https://qu.ax/PTrQ.js"
  979. },
  980. {
  981. "key": "dr_qif",
  982. "name": "❤🛫起飞影院",
  983. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  984. "api": "https://qu.ax/Fozq.js",
  985. "searchable": 0,
  986. "quickSearch": 0,
  987. "filterable": 0,
  988. "ext": "https://qu.ax/UcEe.js"
  989. },
  990. {
  991. "key": "drpy_js_腾云驾雾",
  992. "name": "❤🐧|官源",
  993. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  994. "api": "https://qu.ax/Fozq.js",
  995. "ext": "https://qu.ax/yWhg.js"
  996. },
  997. {
  998. "key":"drpy_js_百忙无果",
  999. "name":"❤官源 | 🥭",
  1000. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  1001. "api":"https://qu.ax/Fozq.js",
  1002. "ext":"https://qu.ax/uUHi.js"
  1003. },
  1004. {
  1005. "key":"drpy_js_奇珍异兽",
  1006. "name":"❤官源 |🥝",
  1007. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  1008. "api":"https://qu.ax/Fozq.js",
  1009. "ext":"https://qu.ax/GkLR.js"
  1010. },
  1011. {
  1012. "key":"drpy_yh",
  1013. "name":"❤官源 | ⛽",
  1014. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  1015. "api":"https://qu.ax/Fozq.js",
  1016. "ext":"https://qu.ax/Qvlv.js"
  1017. },
  1018. {
  1019. "key":"drpy_js_菜狗",
  1020. "name":"❤官源 | 🐕",
  1021. "type":3,"style":{ "type":"rect", "ratio":0.8 },
  1022. "api":"https://qu.ax/Fozq.js",
  1023. "ext":"https://qu.ax/cYvz.js"
  1024. },
  1025. {
  1026. "key": "dr_hqu",
  1027. "name": "❤🦚️好趣直播",
  1028. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1029. "api": "https://qu.ax/Fozq.js",
  1030. "searchable": 0,
  1031. "quickSearch": 0,
  1032. "filterable": 0,
  1033. "ext": "https://qu.ax/PiFD.js"
  1034. },
  1035. {
  1036. "key": "dr_77",
  1037. "name": "❤🛩️┃酷云秒播┃",
  1038. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1039. "api": "https://qu.ax/Fozq.js",
  1040. "searchable": 0,
  1041. "quickSearch": 0,
  1042. "filterable": 0,
  1043. "ext": "https://qu.ax/gnDK.js"
  1044. },
  1045. {
  1046. "key": "獨播",
  1047. "name": "❤獨播",
  1048. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1049. "api": "csp_XPathMacFilter",
  1050. "searchable": 1,
  1051. "changeable": 1,
  1052. "ext": "https://dpaste.com/296S4NSUE.txt",
  1053. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  1054. },
  1055. {
  1056. "key": "量子",
  1057. "name": "❤量子",
  1058. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1059. "api": "https://cj.lziapi.com/api.php/provide/vod/at/xml/", "searchable": 1, "changeable": 1, "categories": [ "伦理片",
  1060. "国产动漫",
  1061. "日韩动漫",
  1062. "国产剧",
  1063. "韩国剧",
  1064. "日本剧",
  1065. "电影片",
  1066. "连续剧",
  1067. "综艺片",
  1068. "动漫片",
  1069. "动作片",
  1070. "喜剧片",
  1071. "爱情片",
  1072. "科幻片",
  1073. "恐怖片",
  1074. "剧情片",
  1075. "战争片",
  1076. "台湾剧",
  1077. "香港剧",
  1078. "欧美剧",
  1079. "记录片",
  1080. "海外剧",
  1081. "泰国剧",
  1082. "大陆综艺",
  1083. "港台综艺",
  1084. "日韩综艺",
  1085. "欧美综艺",
  1086. "欧美动漫",
  1087. "港台动漫",
  1088. "海外动漫",
  1089. "体育",
  1090. "足球",
  1091. "篮球",
  1092. "网球",
  1093. "斯诺克"
  1094. ],
  1095. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  1096. },
  1097. {
  1098. "key": "巴士",
  1099. "name": "❤巴士",
  1100. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1101. "api": "csp_Dm84",
  1102. "searchable": 1,
  1103. "changeable": 1,
  1104. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  1105. },
  1106. {
  1107. "key": "異界",
  1108. "name": "❤異界",
  1109. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1110. "api": "csp_Ysj",
  1111. "searchable": 1,
  1112. "changeable": 1,
  1113. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  1114. },
  1115. /*采集系列*/
  1116. {"key": "csp_AppYsV2_光影猫","name": "光影猫☆影视","type": 3,"api": "csp_AppYsV2","searchable": 1,"quickSearch": 1,"filterable": 1,"ext": "http://gymcms.xn--654a.cc/api.php/app/"},
  1117. {"key": "xml_火狐","name": "🚄火狐🌎资源","type": 1,"style":{ "type":"rect", "ratio":0.8 },"api": "https://hhzyapi.com/api.php/provide/vod/?ac=list","searchable": 1,"quickSearch": 0,"filterable": 1,"categories":["动作片","喜剧片","爱情片","科幻片",
  1118. "恐怖片","剧情片","战争片","悬疑片","犯罪片","奇幻片","记录片","动画片","伦理片","内地剧","香港剧","台湾剧","日剧","韩剧","欧美剧","马泰剧","大陆综艺","港台综艺","日韩综艺","欧美综艺","中国动漫","日本动漫","欧美动漫"]
  1119. },
  1120. {
  1121. "key": "MV_vod",
  1122. "name": "👀┃19┃视频",
  1123. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1124. "api": "https://sousu.popefih902.repl.co/vod/19",
  1125. "searchable": 1,
  1126. "quickSearch": 1,
  1127. "filterable": 1
  1128. },
  1129. {
  1130. "key": "路人甲影视",
  1131. "name": "❤路人甲",
  1132. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1133. "api": "csp_AppYsV2",
  1134. "searchable": 1,
  1135. "quickSearch": 1,
  1136. "filterable": 1,
  1137. "ext": "http://dytt996.com/api.php/app/"
  1138. },
  1139. {
  1140. "key": "轻简",
  1141. "name": "❤轻简",
  1142. "type": 1, "style":{ "type":"rect", "ratio":0.8 },
  1143. "api": "http://1.ahailove.cn:23456/cj/api.php/provide/vod/","categories": ["电影", "电视剧", "综艺", "动漫"]
  1144. },
  1145. {
  1146. "key": "红牛资源",
  1147. "name": "❤红牛资源(切)",
  1148. "type": 1,
  1149. "api": "https://www.hongniuzy2.com/api.php/provide/vod/",
  1150. "searchable": 0,"style":{ "type":"rect", "ratio":0.8 },
  1151. "quickSearch": 0
  1152. },
  1153. {
  1154. "key": "飞速资源",
  1155. "name": "❤飞速资源(切)",
  1156. "type": 1,
  1157. "api": "https://www.feisuzy.com/api.php/provide/vod/",
  1158. "searchable": 0,"style":{ "type":"rect", "ratio":0.8 },
  1159. "quickSearch": 0
  1160. },
  1161. {
  1162. "key": "光速资源",
  1163. "name": "❤光速资源(切)",
  1164. "type": 1,
  1165. "api": "https://api.guangsuapi.com/api.php/provide/vod/",
  1166. "searchable": 1,"style":{ "type":"rect", "ratio":0.8 },
  1167. "quickSearch": 1
  1168. },
  1169. {
  1170. "key": "新浪资源",
  1171. "name": "❤新浪资源(切)",
  1172. "type": 1,
  1173. "api": "http://api.xinlangapi.com/xinlangapi.php/provide/vod/",
  1174. "searchable": 1,"style":{ "type":"rect", "ratio":0.8 },
  1175. "quickSearch": 1
  1176. },
  1177. {
  1178. "key": "鱼乐资源",
  1179. "name": "❤鱼乐资源(切)",
  1180. "type": 1,
  1181. "api": "https://api.ylzy1.com/api.php/provide/vod/",
  1182. "searchable": 1,"style":{ "type":"rect", "ratio":0.8 },
  1183. "quickSearch": 1
  1184. },
  1185. {
  1186. "key": "八戒资源",
  1187. "name": "❤八戒资源(切)",
  1188. "type": 1,
  1189. "api": "http://cj.bajiecaiji.com/inc/apijson_vod.php",
  1190. "searchable": 0,"style":{ "type":"rect", "ratio":0.8 },
  1191. "quickSearch": 0
  1192. },
  1193. {
  1194. "key": "百度资源",
  1195. "name": "❤百度资源(切)",
  1196. "type": 1,
  1197. "api": "https://api.apibdzy.com/api.php/provide/vod/",
  1198. "searchable": 1,"style":{ "type":"rect", "ratio":0.8 },
  1199. "quickSearch": 1
  1200. },
  1201. {
  1202. "key": "天空资源",
  1203. "name": "❤天空资源(切)",
  1204. "type": 1,
  1205. "api": "https://api.tiankongapi.com/api.php/provide/vod/",
  1206. "searchable": 0,"style":{ "type":"rect", "ratio":0.8 },
  1207. "quickSearch": 0
  1208. },
  1209. {
  1210. "key": "U酷资源",
  1211. "name": "❤U酷资源(优)",
  1212. "type": 1,
  1213. "api": "https://api.ukuapi.com/api.php/provide/vod/",
  1214. "searchable": 1,"style":{ "type":"rect", "ratio":0.8 },
  1215. "quickSearch": 1
  1216. },
  1217. {
  1218. "key": "csp_xml_享看",
  1219. "name": "┃享看┃采集",
  1220. "type": 1,
  1221. "searchable": 1,"style":{ "type":"rect", "ratio":0.8 },
  1222. "quickSearch": 1,
  1223. "filterable": 1,
  1224. "api": "https://xkanzy10.com/api.php/provide/vod"
  1225. },
  1226. {"key":"艾旦影视","name":"艾旦","type":1,"style":{ "type":"rect", "ratio":0.8 },"api":"https://lovedan.net/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1,"filterable":0},
  1227. /*成人系列*/
  1228. {
  1229. "key": "AList",
  1230. "name": "❤AList",
  1231. "type": 3,
  1232. "api": "csp_AList",
  1233. "searchable": 1,"style":{ "type":"rect", "ratio":0.8 },
  1234. "changeable": 0,
  1235. "ext": {
  1236. "drives": [
  1237. {
  1238. "name": "AV",
  1239. "server": "https://a74d291e-3b91-45a5-9ec6-9f08a9178e59.id.repl.co"
  1240. }
  1241. ]
  1242. },
  1243. "jar": "https://qu.ax/tkXa.js;md5;945ad30d5255359385ba59b8fb061bb7"
  1244. },
  1245. {
  1246. "key": "csp_Alist1",
  1247. "name": "❤罗汉果",
  1248. "type": 3,
  1249. "api": "csp_AList",
  1250. "searchable": 1,
  1251. "quickSearch": 0,"style":{ "type":"rect", "ratio":0.8 },
  1252. "filterable": 0,
  1253. "changeable": 0,
  1254. "ext": "https://dpaste.com/7CML6KWYG.txt","jar":"https://qu.ax/hvUa.js"
  1255. },
  1256. {
  1257. "key": "MissAV",
  1258. "name": "MissAV",
  1259. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1260. "api": "csp_Miss",
  1261. "searchable": 1
  1262. },
  1263. {
  1264. "key": "cjmygzy.com",
  1265. "name": "🔞采集.美阅阁",
  1266. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1267. "api":"http://cjmygzy.com/inc/sapi.php?ac=videolist",
  1268. "searchable": 1
  1269. },
  1270. {
  1271. "key": "玩偶",
  1272. "name": "❤玩偶",
  1273. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1274. "api": "csp_Doll",
  1275. "searchable": 1,
  1276. "jar":"https://qu.ax/bmJu.js;md5;6976f6560b0b5ff9182651d9e4c43dac"
  1277. },
  1278. {
  1279. "key": "18AV",
  1280. "name": "❤18AV",
  1281. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1282. "api": "csp_Eighteen",
  1283. "searchable": 1,
  1284. "jar":"https://qu.ax/bmJu.js;md5;6976f6560b0b5ff9182651d9e4c43dac"
  1285. },
  1286. {
  1287. "key": "Jable",
  1288. "name": "❤Jable",
  1289. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1290. "api": "csp_Jable",
  1291. "searchable": 1,
  1292. "jar":"https://qu.ax/bmJu.js;md5;6976f6560b0b5ff9182651d9e4c43dac"
  1293. },
  1294. {
  1295. "key": "MissAV",
  1296. "name": "❤MissAV",
  1297. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1298. "api": "csp_Miss",
  1299. "searchable": 1,
  1300. "jar":"https://qu.ax/bmJu.js;md5;6976f6560b0b5ff9182651d9e4c43dac"
  1301. },
  1302. {
  1303. "key": "Supjav",
  1304. "name": "❤Supjav",
  1305. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1306. "api": "csp_Supjav",
  1307. "searchable": 1,
  1308. "jar":"https://qu.ax/bmJu.js;md5;6976f6560b0b5ff9182651d9e4c43dac"
  1309. },
  1310. {
  1311. "key": "Hanime",
  1312. "name": "❤Hanime",
  1313. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  1314. "api": "csp_Hanime",
  1315. "searchable": 1,
  1316. "jar":"https://qu.ax/bmJu.js;md5;6976f6560b0b5ff9182651d9e4c43dac"
  1317. },
  1318. {
  1319. "key": "51smt4.xyz",
  1320. "name": "❤成人01",
  1321. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1322. "api": "http://51smt4.xyz/api.php/provide/vod/",
  1323. "searchable": 1
  1324. },
  1325. {
  1326. "key": "jcspcj8.com",
  1327. "name": "❤成人02",
  1328. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1329. "api": "http://jcspcj8.com/api?ac=videolist",
  1330. "searchable": 1
  1331. },
  1332. {
  1333. "key": "bttcj.com",
  1334. "name": "❤成人03",
  1335. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1336. "api": "http://bttcj.com/inc/sapi.php",
  1337. "searchable": 1
  1338. },
  1339. {
  1340. "key": "cjmygzy.com",
  1341. "name": "❤成人04",
  1342. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1343. "api": "http://cjmygzy.com/inc/sapi.php?ac=videolist",
  1344. "searchable": 1
  1345. },
  1346. {
  1347. "key": "91md.me",
  1348. "name": "❤成人05",
  1349. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1350. "api": "http://91md.me/api.php/provide/vod/",
  1351. "searchable": 1
  1352. },
  1353. {
  1354. "key": "dadiapi.com",
  1355. "name": "❤成人06",
  1356. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1357. "api": "http://dadiapi.com/api.php",
  1358. "searchable": 1
  1359. },
  1360. {
  1361. "key": "secj8.com",
  1362. "name": "❤成人07",
  1363. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1364. "api": "http://secj8.com/inc/sapi.php?ac=videolist",
  1365. "searchable": 1
  1366. },
  1367. {
  1368. "key": "api.putaozy.net",
  1369. "name": "❤成人08",
  1370. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1371. "api": "http://api.putaozy.net/inc/apijson_vod.php",
  1372. "searchable": 1
  1373. },
  1374. {
  1375. "key": "llzxcj.com",
  1376. "name": "❤成人09",
  1377. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1378. "api": "http://llzxcj.com/inc/sck.php?ac=videolist",
  1379. "searchable": 1
  1380. },
  1381. {
  1382. "key": "apilj.com",
  1383. "name": "❤成人10",
  1384. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1385. "api": "http://apilj.com/api.php/provide/vod/at/json/",
  1386. "searchable": 1
  1387. },
  1388. {
  1389. "key": "f2dcj6.com",
  1390. "name": "❤成人11",
  1391. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1392. "api": "http://f2dcj6.com/sapi?ac=videolist",
  1393. "searchable": 1
  1394. },
  1395. {
  1396. "key": "99zy.pw",
  1397. "name": "❤成人12",
  1398. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1399. "api": "http://99zy.pw/api.php/provide/vod/",
  1400. "searchable": 1
  1401. },
  1402. {
  1403. "key": "ggmmzy.com",
  1404. "name": "❤成人13",
  1405. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1406. "api": "http://www.ggmmzy.com:9999/inc/xml",
  1407. "searchable": 1
  1408. },
  1409. {
  1410. "key": "fhapi9.com",
  1411. "name": "❤成人14",
  1412. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1413. "api": "http://fhapi9.com/api.php/provide/vod/",
  1414. "searchable": 1
  1415. },
  1416. {
  1417. "key": "feifei67.com",
  1418. "name": "❤成人15",
  1419. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1420. "api": "http://www.feifei67.com/api.php/provide/vod/",
  1421. "searchable": 1
  1422. },
  1423. {
  1424. "key": "sdszyapi.com",
  1425. "name": "❤成人16",
  1426. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1427. "api": "http://sdszyapi.com/home/cjapi/asbb/mc10/vod/xml",
  1428. "searchable": 1
  1429. },
  1430. {
  1431. "key": "madouse.la",
  1432. "name": "❤成人17",
  1433. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1434. "api": "http://madouse.la/api.php/provide/vod/",
  1435. "searchable": 1
  1436. },
  1437. {
  1438. "key": "xjjzyapi.com",
  1439. "name": "❤成人18",
  1440. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1441. "api": "http://xjjzyapi.com/home/cjapi/askl/mc10/vod/xml",
  1442. "searchable": 1
  1443. },
  1444. {
  1445. "key": "shabizy.com",
  1446. "name": "❤成人19",
  1447. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1448. "api": "http://www.shabizy.com:777/inc/sea",
  1449. "searchable": 1
  1450. },
  1451. {
  1452. "key": "caiji21.com",
  1453. "name": "❤成人20",
  1454. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1455. "api": "http://www.caiji21.com/home/cjapi/klkl/mc10/vod/xml",
  1456. "searchable": 1
  1457. },
  1458. {
  1459. "key": "caiji25.com",
  1460. "name": "❤成人21",
  1461. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1462. "api": "http://www.caiji25.com/home/cjapi/p0as/mc10/vod/xml",
  1463. "searchable": 1
  1464. },
  1465. {
  1466. "key": "caiji26.com",
  1467. "name": "❤成人22",
  1468. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1469. "api": "http://caiji26.com/home/cjapi/p0g8/mc10/vod/xml",
  1470. "searchable": 1
  1471. },
  1472. {
  1473. "key": "caiji24.com",
  1474. "name": "❤成人23",
  1475. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1476. "api": "http://www.caiji24.com/home/cjapi/p0d2/mc10/vod/xml",
  1477. "searchable": 1
  1478. },
  1479. {
  1480. "key": "lbapiby.com",
  1481. "name": "❤成人24",
  1482. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1483. "api": "http://lbapiby.com/api.php/provide/vod/at/xml",
  1484. "searchable": 1
  1485. },
  1486. {
  1487. "key": "api.maozyapi.com",
  1488. "name": "❤成人25",
  1489. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1490. "api": "https://api.maozyapi.com/inc/apijson_vod.php",
  1491. "searchable": 1
  1492. },
  1493. {
  1494. "key": "888dav.com",
  1495. "name": "❤成人26",
  1496. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1497. "api": "https://www.888dav.com/api.php/provide/vod/",
  1498. "searchable": 1
  1499. },
  1500. {
  1501. "key": "mgav1.cc",
  1502. "name": "❤成人27",
  1503. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1504. "api": "https://www.mgav1.cc/api.php/provide/vod/at/xml",
  1505. "searchable": 1
  1506. },
  1507. {
  1508. "key": "mgzyz1.com",
  1509. "name": "❤成人28",
  1510. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1511. "api": "https://mgzyz1.com/api.php/provide/vod/",
  1512. "searchable": 1
  1513. },
  1514. {
  1515. "key": "msnii.com",
  1516. "name": "❤成人29",
  1517. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1518. "api": "https://www.msnii.com/api/xml.php",
  1519. "searchable": 1
  1520. },
  1521. {
  1522. "key": "kkzy.me",
  1523. "name": "❤成人30",
  1524. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1525. "api": "https://kkzy.me/api.php/provide/vod/",
  1526. "searchable": 1
  1527. },
  1528. {
  1529. "key": "caiji.huakuiapi.com",
  1530. "name": "❤成人31",
  1531. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1532. "api": "https://caiji.huakuiapi.com/inc/apijson_vod.php",
  1533. "searchable": 1
  1534. },
  1535. {
  1536. "key": "siwazyw.cc",
  1537. "name": "❤成人32",
  1538. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1539. "api": "https://siwazyw.cc/api.php/provide/vod/",
  1540. "searchable": 1
  1541. },
  1542. {
  1543. "key": "pgxdy.com",
  1544. "name": "❤成人33",
  1545. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1546. "api": "https://www.pgxdy.com/api/xml.php",
  1547. "searchable": 1
  1548. },
  1549. {
  1550. "key": "api.sexnguon.com",
  1551. "name": "❤成人34",
  1552. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1553. "api": "https://api.sexnguon.com/api.php/provide/vod/",
  1554. "searchable": 1
  1555. },
  1556. {
  1557. "key": "dmmapi.com",
  1558. "name": "❤成人35",
  1559. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1560. "api": "https://www.dmmapi.com/home/cjapi/asd2c7/mc10/vod/xml",
  1561. "searchable": 1
  1562. },
  1563. {
  1564. "key": "xx55zyapi.com",
  1565. "name": "❤成人36",
  1566. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1567. "api": "https://xx55zyapi.com/home/cjapi/ascf/mc10/vod/xml",
  1568. "searchable": 1
  1569. },
  1570. {
  1571. "key": "kxgav.com",
  1572. "name": "❤成人37",
  1573. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1574. "api": "https://www.kxgav.com/api/xml.php",
  1575. "searchable": 1
  1576. },
  1577. {
  1578. "key": "caiji02.com",
  1579. "name": "❤成人38",
  1580. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1581. "api": "https://www.caiji02.com/home/cjapi/cfas/mc10/vod/xml",
  1582. "searchable": 1
  1583. },
  1584. {
  1585. "key": "xrbsp.com",
  1586. "name": "❤成人39",
  1587. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1588. "api": "https://www.xrbsp.com/api/xml.php",
  1589. "searchable": 1
  1590. },
  1591. {
  1592. "key": "caiji07.com",
  1593. "name": "❤成人40",
  1594. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1595. "api": "https://www.caiji07.com/home/cjapi/cfcf/mc10/vod/xml",
  1596. "searchable": 1
  1597. },
  1598. {
  1599. "key": "lbapi9.com",
  1600. "name": "❤成人41",
  1601. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1602. "api": "https://lbapi9.com/api.php/provide/vod/",
  1603. "searchable": 1
  1604. },
  1605. {
  1606. "key": "caiji03.com",
  1607. "name": "❤成人42",
  1608. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1609. "api": "https://www.caiji03.com/home/cjapi/cfg8/mc10/vod/xml",
  1610. "searchable": 1
  1611. },
  1612. {
  1613. "key": "caiji08.com",
  1614. "name": "❤成人43",
  1615. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1616. "api": "https://www.caiji08.com/home/cjapi/cfkl/mc10/vod/xml",
  1617. "searchable": 1
  1618. },
  1619. {
  1620. "key": "caiji10.com",
  1621. "name": "❤成人44",
  1622. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1623. "api": "https://www.caiji10.com/home/cjapi/cfs6/mc10/vod/xml",
  1624. "searchable": 1
  1625. },
  1626. {
  1627. "key": "52zyapi.com",
  1628. "name": "❤成人45",
  1629. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1630. "api": "https://52zyapi.com/home/cjapi/asda/mc10/vod/xml",
  1631. "searchable": 1
  1632. },
  1633. {
  1634. "key": "apittzy.com",
  1635. "name": "❤成人46",
  1636. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1637. "api": "https://apittzy.com/api.php/provide/vod/",
  1638. "searchable": 1
  1639. },
  1640. {
  1641. "key": "api.xiuseapi.com",
  1642. "name": "❤成人47",
  1643. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1644. "api": "https://api.xiuseapi.com/api.php/provide/vod/",
  1645. "searchable": 1
  1646. },
  1647. {
  1648. "key": "caiji01.com",
  1649. "name": "❤成人48",
  1650. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1651. "api": "https://www.caiji01.com/home/cjapi/cfd2/mc10/vod/xml",
  1652. "searchable": 1
  1653. },
  1654. {
  1655. "key": "caiji22.com",
  1656. "name": "❤成人49",
  1657. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1658. "api": "https://www.caiji22.com/home/cjapi/klp0/mc10/vod/xml",
  1659. "searchable": 1
  1660. },
  1661. {
  1662. "key": "caiji23.com",
  1663. "name": "❤成人50",
  1664. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1665. "api": "https://www.caiji23.com/home/cjapi/kls6/mc10/vod/xml",
  1666. "searchable": 1
  1667. },
  1668. {
  1669. "key": "afasu.com",
  1670. "name": "❤成人51",
  1671. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1672. "api": "https://www.afasu.com/api/xml.php",
  1673. "searchable": 1
  1674. },
  1675. {
  1676. "key": "hghhh.com",
  1677. "name": "❤成人52",
  1678. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1679. "api": "https://hghhh.com/api.php/provide/vod/",
  1680. "searchable": 1
  1681. },
  1682. {
  1683. "key": "sewozyapi.com",
  1684. "name": "❤成人53",
  1685. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1686. "api": "https://sewozyapi.com/api.php/provide/vod/",
  1687. "searchable": 1
  1688. },
  1689. {
  1690. "key": "gdlsp.com",
  1691. "name": "❤成人54",
  1692. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1693. "api": "https://www.gdlsp.com/api/xml.php",
  1694. "searchable": 1
  1695. },
  1696. {
  1697. "key": "caiji04.com",
  1698. "name": "❤成人55",
  1699. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1700. "api": "https://www.caiji04.com/home/cjapi/cfc7/mc10/vod/xml",
  1701. "searchable": 1
  1702. },
  1703. {
  1704. "key": "caiji09.com",
  1705. "name": "❤成人56",
  1706. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1707. "api": "https://www.caiji09.com/home/cjapi/cfp0/mc10/vod/xml",
  1708. "searchable": 1
  1709. },
  1710. {
  1711. "key": "caiji05.com",
  1712. "name": "❤成人57",
  1713. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1714. "api": "https://www.caiji05.com/home/cjapi/cfda/mc10/vod/xml",
  1715. "searchable": 1
  1716. },
  1717. {
  1718. "key": "jgczyapi.com",
  1719. "name": "❤成人58",
  1720. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  1721. "api": "https://jgczyapi.com/home/cjapi/kld2/mc10/vod/xml",
  1722. "searchable": 1
  1723. },
  1724. {
  1725. "key": "caiji.caomeiapi.com",
  1726. "name": "❤成人59",
  1727. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1728. "api": "https://caiji.caomeiapi.com/inc/apijson_vod.php",
  1729. "searchable": 1
  1730. },
  1731. {
  1732. "key": "caiji.523zyw.com",
  1733. "name": "❤成人60",
  1734. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1735. "api": "https://caiji.523zyw.com/inc/apijson_vod.php",
  1736. "searchable": 1
  1737. },
  1738. {
  1739. "key": "caiji.naichaapi.com",
  1740. "name": "❤成人61",
  1741. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1742. "api": "https://caiji.naichaapi.com/inc/apijson_vod.php",
  1743. "searchable": 1
  1744. },
  1745. {
  1746. "key": "api.apilyzy.com",
  1747. "name": "❤成人62",
  1748. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  1749. "api": "https://api.apilyzy.com/api.php/provide/vod/",
  1750. "searchable": 1
  1751. },
  1752. {"key": "麻豆村","name": "👠麻豆村","type":1,"api": "https://madoucun.com/api.php/provide/vod/?ac=list", "searchable": 1,"quickSearch": 1, "filterable": 0 },
  1753. {
  1754. "key":"❤乐播资源",
  1755. "name":"❤乐播资源",
  1756. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1757. "api":"https://lbapi9.com/api.php/provide/vod/at/xml",
  1758. "searchable":1,
  1759. "quickSearch":1,
  1760. "filterable": 1
  1761. },
  1762. {
  1763. "key":"❤色南国资源",
  1764. "name":"❤色南国资源",
  1765. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1766. "api":"https://api.sexnguon.com/api.php/provide/vod/",
  1767. "searchable":1,
  1768. "quickSearch":1,
  1769. "filterable": 1
  1770. },
  1771. {
  1772. "key":"❤皇冠资源",
  1773. "name":"❤皇冠资源",
  1774. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1775. "api":"https://hghhh.com/api.php/provide/vod/",
  1776. "searchable":1,
  1777. "quickSearch":1,
  1778. "filterable": 1
  1779. },
  1780. {
  1781. "key":"❤AIvin",
  1782. "name":"❤AIvin",
  1783. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1784. "api":"http://lbapiby.com/api.php/provide/vod/at/xml",
  1785. "searchable":1,
  1786. "quickSearch":1,
  1787. "filterable": 1
  1788. },
  1789. {
  1790. "key":"❤葡萄资源",
  1791. "name":"❤葡萄资源",
  1792. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1793. "api":"https://api.putaozy.net/inc/apijson_vod.php",
  1794. "searchable":1,
  1795. "quickSearch":1,
  1796. "filterable": 1
  1797. },
  1798. {
  1799. "key":"❤大MM资源",
  1800. "name":"❤大MM资源",
  1801. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1802. "api":"https://www.dmmapi.com/home/cjapi/asd2c7/mc10/vod/xml",
  1803. "searchable":1,
  1804. "quickSearch":1,
  1805. "filterable": 1
  1806. },
  1807. {
  1808. "key":"❤99资源",
  1809. "name":"❤99资源",
  1810. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1811. "api":"http://99zy.pw/api.php/provide/vod/",
  1812. "searchable":1,
  1813. "quickSearch":1,
  1814. "filterable": 1
  1815. },
  1816. {
  1817. "key":"❤91麻豆",
  1818. "name":"❤91麻豆",
  1819. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1820. "api":"https://91md.me/api.php/provide/vod/",
  1821. "searchable":1,
  1822. "quickSearch":1,
  1823. "filterable": 1
  1824. },
  1825. {
  1826. "key":"❤奶茶资源",
  1827. "name":"❤奶茶资源",
  1828. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1829. "api":"https://caiji.naichaapi.com/inc/apijson_vod.php",
  1830. "searchable":1,
  1831. "quickSearch":1,
  1832. "filterable": 1
  1833. },
  1834. {
  1835. "key":"❤美少女资源",
  1836. "name":"❤美少女资源",
  1837. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1838. "api":"https://www.msnii.com/api/xml.php",
  1839. "searchable":1,
  1840. "quickSearch":1,
  1841. "filterable": 1
  1842. },
  1843. {
  1844. "key":"❤淫水机资源",
  1845. "name":"❤淫水机资源",
  1846. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1847. "api":"https://www.xrbsp.com/api/xml.php",
  1848. "searchable":1,
  1849. "quickSearch":1,
  1850. "filterable": 1
  1851. },
  1852. {
  1853. "key":"❤香奶儿资源",
  1854. "name":"❤香奶儿资源",
  1855. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1856. "api":"https://www.gdlsp.com/api/xml.php",
  1857. "searchable":1,
  1858. "quickSearch":1,
  1859. "filterable": 1
  1860. },
  1861. {
  1862. "key":"❤白嫖资源",
  1863. "name":"❤白嫖资源",
  1864. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1865. "api":"https://www.kxgav.com/api/xml.php",
  1866. "searchable":1,
  1867. "quickSearch":1,
  1868. "filterable": 1
  1869. },
  1870. {
  1871. "key":"❤大地资源",
  1872. "name":"❤大地资源",
  1873. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1874. "api":"https://dadiapi.com/api.php",
  1875. "searchable":1,
  1876. "quickSearch":1,
  1877. "filterable": 1
  1878. },
  1879. {
  1880. "key":"❤环亚资源",
  1881. "name":"❤环亚资源",
  1882. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1883. "api":"http://wmcj8.com/inc/sapi.php",
  1884. "searchable":1,
  1885. "quickSearch":1,
  1886. "filterable": 1
  1887. },
  1888. {
  1889. "key":"❤afasu",
  1890. "name":"❤小湿妹资源",
  1891. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1892. "api":"https://www.afasu.com/api/xml.php",
  1893. "searchable":1,
  1894. "quickSearch":1,
  1895. "filterable": 1
  1896. },
  1897. {
  1898. "key":"❤黄AV资源",
  1899. "name":"❤黄AV资源",
  1900. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1901. "api":"https://www.pgxdy.com/api/xml.php",
  1902. "searchable":1,
  1903. "quickSearch":1,
  1904. "filterable": 1
  1905. },
  1906. {
  1907. "key":"❤色色资源",
  1908. "name":"❤色色资源",
  1909. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1910. "api":"http://secj8.com/inc/sapi.php?ac=videolist",
  1911. "searchable":1,
  1912. "quickSearch":1,
  1913. "filterable": 1
  1914. },
  1915. {
  1916. "key":"❤玖玖资源",
  1917. "name":"❤玖玖资源",
  1918. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1919. "api":"http://99zywcj.com/inc/sapi.php?ac=videolist",
  1920. "searchable":1,
  1921. "quickSearch":1,
  1922. "filterable": 1
  1923. },
  1924. {
  1925. "key":"❤狼少年",
  1926. "name":"❤狼少年",
  1927. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1928. "api":"http://cjmygzy.com/inc/sapi.php?ac=videolist",
  1929. "searchable":1,
  1930. "quickSearch":1,
  1931. "filterable": 1
  1932. },
  1933. {
  1934. "key":"❤佳丽资源",
  1935. "name":"❤佳丽资源",
  1936. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1937. "api":"http://www.jializyzapi.com/api.php/provide/vod/",
  1938. "searchable":1,
  1939. "quickSearch":1,
  1940. "filterable": 1
  1941. },
  1942. {
  1943. "key":"❤番号资源",
  1944. "name":"❤番号资源",
  1945. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1946. "api":"http://fhapi9.com/api.php/provide/vod/",
  1947. "searchable":1,
  1948. "quickSearch":1,
  1949. "filterable":0
  1950. },
  1951. {
  1952. "key":"❤鲨鱼资源",
  1953. "name":"❤鲨鱼资源",
  1954. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1955. "api":"https://shayuapi.com/api.php/provide/vod/",
  1956. "searchable":1,
  1957. "quickSearch":1,
  1958. "filterable": 1
  1959. },
  1960. {
  1961. "key":"❤哥哥妹妹",
  1962. "name":"❤哥哥妹妹",
  1963. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  1964. "api":"http://www.ggmmzy.com:9999/inc/xml",
  1965. "searchable":1,
  1966. "quickSearch":1,
  1967. "filterable": 1
  1968. },
  1969. {
  1970. "key":"❤丝袜资源",
  1971. "name":"❤丝袜资源",
  1972. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1973. "api":"https://siwazyw.cc/api.php/provide/vod/at/json/",
  1974. "searchable":1,
  1975. "quickSearch":1,
  1976. "filterable": 1
  1977. },
  1978. {
  1979. "key":"❤芒果资源",
  1980. "name":"❤芒果资源",
  1981. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1982. "api":"https://mgzyz1.com/api.php/provide/vod/",
  1983. "searchable":1,
  1984. "quickSearch":1,
  1985. "filterable": 1
  1986. },
  1987. {
  1988. "key":"❤KK写真资源",
  1989. "name":"❤KK写真资源",
  1990. "type":1,"style":{ "type":"rect", "ratio":0.8 },
  1991. "api":"https://kkzy.me/api.php/provide/vod/",
  1992. "searchable":1,
  1993. "quickSearch":1,
  1994. "filterable": 1
  1995. },
  1996. {
  1997. "key":"❤博天堂",
  1998. "name":"❤博天堂-伦理",
  1999. "type":0,"style":{ "type":"rect", "ratio":0.8 },
  2000. "api":"http://bttcj.com/inc/sapi.php",
  2001. "searchable":1,
  2002. "quickSearch":1,
  2003. "filterable": 1
  2004. },
  2005. {
  2006. "key": "❤91麻豆",
  2007. "name": "❤91麻豆源",
  2008. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2009. "api": "https://91md.me/api.php/provide/vod/",
  2010. "searchable": 0,
  2011. "quickSearch": 0,
  2012. "filterable": 0
  2013. },
  2014. {
  2015. "key": "❤丝袜资源",
  2016. "name": "❤丝袜资源",
  2017. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2018. "api": "https://siwazyw.cc/api.php/provide/vod/",
  2019. "searchable": 0,
  2020. "quickSearch": 0,
  2021. "filterable": 0
  2022. },
  2023. {
  2024. "key": "❤秀色资源",
  2025. "name": "❤秀色资源",
  2026. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2027. "api": "https://api.xiuseapi.com/api.php/provide/vod/",
  2028. "searchable": 0,
  2029. "quickSearch": 0,
  2030. "filterable": 0
  2031. },
  2032. {
  2033. "key": "❤探探资源",
  2034. "name": "❤探探资源",
  2035. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2036. "api": "https://apittzy.com/api.php/provide/vod/",
  2037. "searchable": 0,
  2038. "quickSearch": 0,
  2039. "filterable": 0
  2040. },
  2041. {
  2042. "key": "❤色猫资源",
  2043. "name": "❤色猫资源",
  2044. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2045. "api": "https://api.maozyapi.com/inc/apijson_vod.php",
  2046. "searchable": 0,
  2047. "quickSearch": 0,
  2048. "filterable": 0
  2049. },
  2050. {
  2051. "key": "❤花魁资源",
  2052. "name": "❤花魁资源",
  2053. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2054. "api": "https://caiji.huakuiapi.com/inc/apijson_vod.php",
  2055. "searchable": 0,
  2056. "quickSearch": 0,
  2057. "filterable": 0
  2058. },
  2059. {
  2060. "key": "❤葡萄资源",
  2061. "name": "❤葡萄资源",
  2062. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2063. "api": "https://api.putaozy.net/inc/apijson_vod.php",
  2064. "searchable": 0,
  2065. "quickSearch": 0,
  2066. "filterable": 0
  2067. },
  2068. {
  2069. "key": "❤色窝资源",
  2070. "name": "❤色窝资源",
  2071. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2072. "api": "https://sewozyapi.com/api.php/provide/vod/",
  2073. "searchable": 0,
  2074. "quickSearch": 0,
  2075. "filterable": 0
  2076. },
  2077. {
  2078. "key": "❤淫窝资源",
  2079. "name": "❤淫窝资源",
  2080. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2081. "api": "https://api.yinwoapi.com/api.php/provide/vod/",
  2082. "searchable": 0,
  2083. "quickSearch": 0,
  2084. "filterable": 0
  2085. },
  2086. {
  2087. "key": "❤SB资源",
  2088. "name": "❤SB资源",
  2089. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2090. "api": "http://www.shabizy.com:777/inc/sea",
  2091. "searchable": 0,
  2092. "quickSearch": 0,
  2093. "filterable": 0
  2094. },
  2095. {
  2096. "key": "❤色屌丝资源",
  2097. "name": "❤色屌丝资源",
  2098. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2099. "api": "http://sdszyapi.com/home/cjapi/asbb/mc10/vod/xml",
  2100. "searchable": 0,
  2101. "quickSearch": 0,
  2102. "filterable": 0
  2103. },
  2104. {
  2105. "key": "❤小姐姐资源",
  2106. "name": "❤小姐姐资源",
  2107. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2108. "api": "https://xjjzyapi.com/home/cjapi/askl/mc10/vod/xml",
  2109. "searchable": 0,
  2110. "quickSearch": 0,
  2111. "filterable": 0
  2112. },
  2113. {
  2114. "key": "❤52AVAV",
  2115. "name": "❤52AVAV",
  2116. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2117. "api": "https://52zyapi.com/home/cjapi/asda/mc10/vod/xml",
  2118. "searchable": 0,
  2119. "quickSearch": 0,
  2120. "filterable": 0
  2121. },
  2122. {
  2123. "key": "❤我要啪啪",
  2124. "name": "❤我要啪啪",
  2125. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2126. "api": "http://www.caiji21.com/home/cjapi/klkl/mc10/vod/xml",
  2127. "searchable": 0,
  2128. "quickSearch": 0,
  2129. "filterable": 0
  2130. },
  2131. {
  2132. "key": "❤AV集中淫",
  2133. "name": "❤AV集中淫",
  2134. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2135. "api": "https://www.caiji22.com/home/cjapi/klp0/mc10/vod/xml",
  2136. "searchable": 0,
  2137. "quickSearch": 0,
  2138. "filterable": 0
  2139. },
  2140. {
  2141. "key": "❤夜夜撸资源",
  2142. "name": "❤夜夜撸资源",
  2143. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2144. "api": "https://www.caiji23.com/home/cjapi/kls6/mc10/vod/xml",
  2145. "searchable": 0,
  2146. "quickSearch": 0,
  2147. "filterable": 0
  2148. },
  2149. {
  2150. "key": "❤大屌丝资源",
  2151. "name": "❤大屌丝资源",
  2152. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2153. "api": "http://www.caiji24.com/home/cjapi/p0d2/mc10/vod/xml",
  2154. "searchable": 0,
  2155. "quickSearch": 0,
  2156. "filterable": 0
  2157. },
  2158. {
  2159. "key": "❤咪咪资源",
  2160. "name": "❤咪咪资源",
  2161. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2162. "api": "http://www.caiji25.com/home/cjapi/p0as/mc10/vod/xml",
  2163. "searchable": 0,
  2164. "quickSearch": 0,
  2165. "filterable": 0
  2166. },
  2167. {
  2168. "key": "❤鲍鱼AV",
  2169. "name": "❤鲍鱼AV",
  2170. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2171. "api": "http://caiji26.com/home/cjapi/p0g8/mc10/vod/xml",
  2172. "searchable": 0,
  2173. "quickSearch": 0,
  2174. "filterable": 0
  2175. },
  2176. {
  2177. "key": "❤精工厂资源",
  2178. "name": "❤精工厂资源",
  2179. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2180. "api": "https://jgczyapi.com/home/cjapi/kld2/mc10/vod/xml",
  2181. "searchable": 0,
  2182. "quickSearch": 0,
  2183. "filterable": 0
  2184. },
  2185. {
  2186. "key": "❤点点娱乐",
  2187. "name": "❤点点娱乐",
  2188. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2189. "api": "https://xx55zyapi.com/home/cjapi/ascf/mc10/vod/xml",
  2190. "searchable": 0,
  2191. "quickSearch": 0,
  2192. "filterable": 0
  2193. },
  2194. {
  2195. "key": "❤大MM资源",
  2196. "name": "❤大MM资源",
  2197. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2198. "api": "https://www.dmmapi.com/home/cjapi/asd2c7/mc10/vod/xml",
  2199. "searchable": 0,
  2200. "quickSearch": 0,
  2201. "filterable": 0
  2202. },
  2203. {
  2204. "key": "❤黄瓜TV资源",
  2205. "name": "❤黄瓜TV资源",
  2206. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2207. "api": "https://www.caiji10.com/home/cjapi/cfs6/mc10/vod/xml",
  2208. "searchable": 0,
  2209. "quickSearch": 0,
  2210. "filterable": 0
  2211. },
  2212. {
  2213. "key": "❤快播盒子资源",
  2214. "name": "❤快播盒子资源",
  2215. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2216. "api": "https://www.caiji09.com/home/cjapi/cfp0/mc10/vod/xml",
  2217. "searchable": 0,
  2218. "quickSearch": 0,
  2219. "filterable": 0
  2220. },
  2221. {
  2222. "key": "❤大香蕉资源",
  2223. "name": "❤大香蕉资源",
  2224. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2225. "api": "https://www.caiji08.com/home/cjapi/cfkl/mc10/vod/xml",
  2226. "searchable": 0,
  2227. "quickSearch": 0,
  2228. "filterable": 0
  2229. },
  2230. {
  2231. "key": "❤日本AV在线",
  2232. "name": "❤日本AV在线",
  2233. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2234. "api": "https://www.caiji07.com/home/cjapi/cfcf/mc10/vod/xml",
  2235. "searchable": 0,
  2236. "quickSearch": 0,
  2237. "filterable": 0
  2238. },
  2239. {
  2240. "key": "❤久久热在线",
  2241. "name": "❤久久热在线",
  2242. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2243. "api": "https://www.caiji06.com/home/cjapi/cfbb/mc10/vod/xml",
  2244. "searchable": 0,
  2245. "quickSearch": 0,
  2246. "filterable": 0
  2247. },
  2248. {
  2249. "key": "❤青青草视频",
  2250. "name": "❤青青草视频",
  2251. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2252. "api": "https://www.caiji05.com/home/cjapi/cfda/mc10/vod/xml",
  2253. "searchable": 0,
  2254. "quickSearch": 0,
  2255. "filterable": 0
  2256. },
  2257. {
  2258. "key": "❤麻豆视频",
  2259. "name": "❤麻豆视频",
  2260. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2261. "api": "https://www.caiji04.com/home/cjapi/cfc7/mc10/vod/xml",
  2262. "searchable": 0,
  2263. "quickSearch": 0,
  2264. "filterable": 0
  2265. },
  2266. {
  2267. "key": "❤一本道资源",
  2268. "name": "❤一本道资源",
  2269. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2270. "api": "https://www.caiji03.com/home/cjapi/cfg8/mc10/vod/xml",
  2271. "searchable": 0,
  2272. "quickSearch": 0,
  2273. "filterable": 0
  2274. },
  2275. {
  2276. "key": "❤草榴视频",
  2277. "name": "❤草榴视频",
  2278. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2279. "api": "https://www.caiji02.com/home/cjapi/cfas/mc10/vod/xml",
  2280. "searchable": 0,
  2281. "quickSearch": 0,
  2282. "filterable": 0
  2283. },
  2284. {
  2285. "key": "❤亚洲成人在线",
  2286. "name": "❤亚洲成人在线",
  2287. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2288. "api": "https://www.caiji01.com/home/cjapi/cfd2/mc10/vod/xml",
  2289. "searchable": 0,
  2290. "quickSearch": 0,
  2291. "filterable": 0
  2292. },
  2293. {
  2294. "key": "❤天噜啦资源",
  2295. "name": "❤天噜啦资源",
  2296. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2297. "api": "http://www.987caiji.com/api/max.php",
  2298. "searchable": 0,
  2299. "quickSearch": 0,
  2300. "filterable": 0
  2301. },
  2302. {
  2303. "key": "❤99资源",
  2304. "name": "❤99资源",
  2305. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2306. "api": "http://99zy.pw/api.php/provide/vod/",
  2307. "searchable": 0,
  2308. "quickSearch": 0,
  2309. "filterable": 0
  2310. },
  2311. {
  2312. "key": "❤酷豆资源",
  2313. "name": "❤酷豆资源",
  2314. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2315. "api": "https://kudouzy.com/api.php/provide/vod/",
  2316. "searchable": 0,
  2317. "quickSearch": 0,
  2318. "filterable": 0
  2319. },
  2320. {
  2321. "key": "❤酷豆2",
  2322. "name": "❤酷豆2",
  2323. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2324. "api": "https://api.kdapi.info/api.php/provide/vod/",
  2325. "searchable": 0,
  2326. "quickSearch": 0,
  2327. "filterable": 0
  2328. },
  2329. {
  2330. "key": "❤酷伦理",
  2331. "name": "❤酷伦理",
  2332. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2333. "api": "https://api.kudian70.com/api.php/provide/vod/",
  2334. "searchable": 0,
  2335. "quickSearch": 0,
  2336. "filterable": 0
  2337. },
  2338. {
  2339. "key": "❤影库资源",
  2340. "name": "❤影库资源",
  2341. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2342. "api": "https://api.ykapi.net/api.php/provide/vod/",
  2343. "searchable": 0,
  2344. "quickSearch": 0,
  2345. "filterable": 0
  2346. },
  2347. {
  2348. "key": "❤爱播资源",
  2349. "name": "❤爱播资源",
  2350. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2351. "api": "https://cj.apiabzy.com/api.php/provide/vod/",
  2352. "searchable": 0,
  2353. "quickSearch": 0,
  2354. "filterable": 0
  2355. },
  2356. {
  2357. "key": "❤美少女资源",
  2358. "name": "❤美少女资源",
  2359. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2360. "api": "https://www.msnii.com/api/xml.php",
  2361. "searchable": 0,
  2362. "quickSearch": 0,
  2363. "filterable": 0
  2364. },
  2365. {
  2366. "key": "❤淫水机资源",
  2367. "name": "❤淫水机资源",
  2368. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2369. "api": "https://www.xrbsp.com/api/xml.php",
  2370. "searchable": 0,
  2371. "quickSearch": 0,
  2372. "filterable": 0
  2373. },
  2374. {
  2375. "key": "❤香奶儿资源",
  2376. "name": "❤香奶儿资源",
  2377. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2378. "api": "https://www.gdlsp.com/api/xml.php",
  2379. "searchable": 0,
  2380. "quickSearch": 0,
  2381. "filterable": 0
  2382. },
  2383. {
  2384. "key": "❤白嫖资源",
  2385. "name": "❤白嫖资源",
  2386. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2387. "api": "https://www.kxgav.com/api/xml.php",
  2388. "searchable": 0,
  2389. "quickSearch": 0,
  2390. "filterable": 0
  2391. },
  2392. {
  2393. "key": "❤小湿妹资源",
  2394. "name": "❤小湿妹资源",
  2395. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2396. "api": "https://www.afasu.com/api/xml.php",
  2397. "searchable": 0,
  2398. "quickSearch": 0,
  2399. "filterable": 0
  2400. },
  2401. {
  2402. "key": "❤大地资源",
  2403. "name": "❤大地资源",
  2404. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2405. "api": "https://dadiapi.com/api.php",
  2406. "searchable": 0,
  2407. "quickSearch": 0,
  2408. "filterable": 0
  2409. },
  2410. {
  2411. "key": "❤CK资源",
  2412. "name": "❤CK资源",
  2413. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2414. "api": "http://www.feifei67.com/api.php/provide/vod/",
  2415. "searchable": 0,
  2416. "quickSearch": 0,
  2417. "filterable": 0
  2418. },
  2419. {
  2420. "key": "❤老鸭资源",
  2421. "name": "❤老鸭资源",
  2422. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2423. "api": "https://api.apilyzy.com/api.php/provide/vod/",
  2424. "searchable": 0,
  2425. "quickSearch": 0,
  2426. "filterable": 0
  2427. },
  2428. {
  2429. "key": "❤花椒资源",
  2430. "name": "❤花椒资源",
  2431. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2432. "api": "https://apihjzy.com/api.php/provide/vod/",
  2433. "searchable": 0,
  2434. "quickSearch": 0,
  2435. "filterable": 0
  2436. },
  2437. {
  2438. "key": "❤乐播资源",
  2439. "name": "❤乐播资源",
  2440. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2441. "api": "https://lbapi9.com/api.php/provide/vod/",
  2442. "searchable": 0,
  2443. "quickSearch": 0,
  2444. "filterable": 0
  2445. },
  2446. {
  2447. "key": "❤博天堂",
  2448. "name": "❤博天堂",
  2449. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2450. "api": "http://bttcj.com/inc/sapi.php",
  2451. "searchable": 0,
  2452. "quickSearch": 0,
  2453. "filterable": 0
  2454. },
  2455. {
  2456. "key": "❤环亚资源",
  2457. "name": "❤环亚资源",
  2458. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2459. "api": "http://wmcj8.com/inc/sapi.php",
  2460. "searchable": 0,
  2461. "quickSearch": 0,
  2462. "filterable": 0
  2463. },
  2464. {
  2465. "key": "❤AVZY6888资源",
  2466. "name": "❤AVZY6888资源",
  2467. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2468. "api": "http://m.7777688.com/inc/apijson.php",
  2469. "searchable": 0,
  2470. "quickSearch": 0,
  2471. "filterable": 0
  2472. },
  2473. {
  2474. "key": "❤色色资源",
  2475. "name": "❤色色资源",
  2476. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2477. "api": "http://secj8.com/inc/sapi.php?ac=videolist",
  2478. "searchable": 0,
  2479. "quickSearch": 0,
  2480. "filterable": 0
  2481. },
  2482. {
  2483. "key": "❤玖玖资源",
  2484. "name": "❤玖玖资源",
  2485. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2486. "api": "http://99zywcj.com/inc/sapi.php?ac=videolist",
  2487. "searchable": 0,
  2488. "quickSearch": 0,
  2489. "filterable": 0
  2490. },
  2491. {
  2492. "key": "❤狼少年",
  2493. "name": "❤狼少年",
  2494. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2495. "api": "http://cjmygzy.com/inc/sapi.php?ac=videolist",
  2496. "searchable": 0,
  2497. "quickSearch": 0,
  2498. "filterable": 0
  2499. },
  2500. {
  2501. "key": "❤佳丽资源",
  2502. "name": "❤佳丽资源",
  2503. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2504. "api": "http://www.jializyzapi.com/api.php/provide/vod/",
  2505. "searchable": 0,
  2506. "quickSearch": 0,
  2507. "filterable": 0
  2508. },
  2509. {
  2510. "key": "❤番号资源",
  2511. "name": "❤番号资源",
  2512. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2513. "api": "http://fhapi9.com/api.php/provide/vod/",
  2514. "searchable": 0,
  2515. "quickSearch": 0,
  2516. "filterable": 0
  2517. },
  2518. {
  2519. "key": "❤鲨鱼资源",
  2520. "name": "❤鲨鱼资源",
  2521. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2522. "api": "https://shayuapi.com/api.php/provide/vod/",
  2523. "searchable": 0,
  2524. "quickSearch": 0,
  2525. "filterable": 0
  2526. },
  2527. {
  2528. "key": "❤速度资源",
  2529. "name": "❤速度资源",
  2530. "type": 0,"style":{ "type":"rect", "ratio":0.8 },
  2531. "api": "http://www.ggmmzy.com:9999/inc/xml",
  2532. "searchable": 0,
  2533. "quickSearch": 0,
  2534. "filterable": 0
  2535. },
  2536. {
  2537. "key": "csp_xBPQ_超清",
  2538. "name": "❤香蕉超清",
  2539. "type": 3,"style":{ "type":"rect", "ratio":0.8 },
  2540. "api": "csp_xBPQ",
  2541. "searchable": 1,
  2542. "quickSearch": 1,
  2543. "filterable": 0,
  2544. "ext": "{\"分类url\":\"https://avhh.vip/cq/{cateId}-{catePg}.html\", \"分类\":\"请勿外传$2k-yazhou#按主页切换源$2k-zipaitoupai#无分类切换VPN$2k-chaoqingchuanmei#或者其他网络$2k-3Ddongman#资源网络共享$2k-oumei#有倒卖贩卖纯属欺诈$2k-luanlunrenqi#请勿相信!$2k-siwazhifu#绝对禁止未成年人观看$2k-zhibolubo#SM另类$2k-SMlinglei#超清三级$2k-chaoqingsanji\",\"副标题\":\"duration\\\">&&</div\",\"链接\": \"href=\\\"/cq/Kplay&&.html\\\"\", \"链接前缀\": \"https://avhh.vip/cq/Kplay\", \"链接后缀\": \".html\", \"直接播放\": \"1\" }","jar":"https://qu.ax/jKoN.js"
  2545. },
  2546. {
  2547. "key": "csp_xBPQ_聚优AV解说",
  2548. "name": "❤聚优AV解说",
  2549. "type": 3,
  2550. "api": "csp_xBPQ",
  2551. "searchable": 1,
  2552. "quickSearch": 1,
  2553. "filterable": 1,"style":{ "type":"rect", "ratio":0.8 },
  2554. "ext": "https://dpaste.com/HQ4EMJ6FS.txt","jar":"https://qu.ax/jKoN.js"
  2555. },
  2556. {"key": "奶茶专场","name": "❤奶茶采集","type": 1,"api": "https://caiji.naichaapi.com/inc/apijson_vod.php","playUrl": "","searchable": 1,"style":{ "type":"rect", "ratio":0.8 },"quickSearch": 1,"filterable": 1,"categories": [
  2557. "微拍福利","精彩时刻","嫩妹福利","网拍嫩模","热门事件","91大神","国产原创","国产主播","日韩主播","欧美主播","港台剧情","日韩剧情","欧美剧情","恐怖色情","无码番号","有码番号","动漫肉番","VIP视频"]},
  2558. {"key": "辣椒专场","name": "❤辣椒采集","type": 1,"api": "https://apilj.com/api.php/provide/vod/","playUrl": "","searchable": 1,"quickSearch": 1,"style":{ "type":"rect", "ratio":0.8 },"filterable": 1,"categories": [
  2559. "国产自拍","欧美极品","日韩无码","AV明星","中文字幕","动漫精品","极骚萝莉","人妖视频","重咸口味","三级自慰","强奸乱伦","独家擂台格斗","辣椒GIGA","HEYZO","独家DMM","HEY诱惑","童颜巨乳","高潮喷吹","激情口交","绝美少女","首次亮相","AV明星1"]},
  2560. {"key": "玉兔专场","name": "❤玉兔采集","type": 1,"style":{ "type":"rect", "ratio":0.8 },"api": "https://apiyutu.com/api.php/provide/vod/","playUrl": "","searchable": 1,"quickSearch": 1,"filterable": 1,"categories": [
  2561. "精品推荐","国产精品","主播秀色","日本有码","日本无码","中文字幕","童颜巨乳","性感人妻","强奸乱伦","欧美情色","童真萝莉","三级伦理","卡通动漫","丝袜OL","口爆颜射","自拍偷拍","日本片商","Cosplay","素人自拍","台湾色情","韩国自拍","性感港姐","东南亚情色","凌辱束缚","剧情介绍","多P 3P","91系列","网红系列","野外系列","女仆系列","学生中出","性感旗袍","兽耳作品","瑜伽裤","骚货护士","及膝袜","网曝系列","麻豆传媒","女同人妖","恋腿癖"]},
  2562. {"key": "森林专场","name": "❤森林采集","type": 1,"style":{ "type":"rect", "ratio":0.8 },"api": "https://slapibf.com/api.php/provide/vod/","playUrl": "","searchable": 1,"quickSearch": 1,"filterable": 1,"categories": [
  2563. "精品推荐","国产色情","主播直播","亚洲无码","亚洲有码","中文字幕","巨乳美乳","人妻熟女","强奸乱伦","欧美精品","萝莉少女","伦理三级","成人动漫","自拍偷拍","制服丝袜","口交颜射","日本精品","Cosplay","素人自拍","台湾辣妹","韩国御姐","唯美港姐","东南亚AV","欺辱凌辱","剧情介绍","多人多P","91探花","网红流出","野外露出","古装扮演","女优系列","可爱学生","风情旗袍","兽耳系列","瑜伽裤","闷骚护士","过膝袜","网曝门","传媒出品","女同性恋","男同性恋","恋腿狂魔"]},
  2564. {"key": "大地专场","name": "❤大地采集","type": 0,"style":{ "type":"rect", "ratio":0.8 },"api": "https://dadiapi.com/api.php","playUrl": "","searchable": 1,"quickSearch": 1,"filterable": 1,"categories": [
  2565. "日韩无码","强奸乱伦","欧美精品","国产精品","人妻系列","中文字幕","动漫精品","伦理影片","日韩精品","制服诱惑","自拍偷拍","AV明星","3P合辑","巨乳系列","颜射系列","口交视频","自慰系列","SM重味","教师学生","大秀视频","AV明星1"]},
  2566. {"key": "芒果专场","name": "芒果采集","type": 1,"api": "https://mgzyz1.com/api.php/provide/vod/","playUrl": "","searchable": 1,"quickSearch": 1,"filterable": 1,"style":{ "type":"rect", "ratio":0.8 },"categories": [
  2567. "中字馆","欧美馆","无码馆","国产馆","素人馆","JAV馆","动漫馆","三级馆"]},
  2568. {"key": "523专场","name": "❤523采集","type": 1,"api": "https://523zyw.me/inc/apijson_vod.php","playUrl": "","searchable": 1,"quickSearch": 1,"filterable": 1,"style":{ "type":"rect", "ratio":0.8 },"categories": [
  2569. "国产精品","主播精选","微拍福利","日韩有码","日韩无码","欧美风情","伦理综艺","VR影院","成人动漫","VIP视频","伦理三级片"]},
  2570. {
  2571. "key": "乐播",
  2572. "name": "️❤❤乐播采集",
  2573. "type": 1,
  2574. "api": "https://lbapi9.com/api.php/provide/vod/",
  2575. "playUrl": "",
  2576. "searchable": 1,"style":{ "type":"rect", "ratio":0.8 },
  2577. "quickSearch": 1,
  2578. "filterable": 1,
  2579. "categories": [
  2580. "亚洲情色",
  2581. "国产主播",
  2582. "国产自拍",
  2583. "无码专区",
  2584. "欧美性爱",
  2585. "熟女人妻",
  2586. "强奸乱伦",
  2587. "巨乳美乳",
  2588. "中文字幕",
  2589. "制服诱惑",
  2590. "女同性恋",
  2591. "卡通动画",
  2592. "视频伦理",
  2593. "少女萝莉",
  2594. "重口色情",
  2595. "人兽性交"
  2596. ]
  2597. },
  2598. // https://apittzy.com/api.php/provide/vod/at/xml/
  2599. {
  2600. "key": "探探",
  2601. "name": "❤探探采集",
  2602. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2603. "api": "https://apittzy.com/api.php/provide/vod/",
  2604. "playUrl": "",
  2605. "searchable": 1,
  2606. "quickSearch": 1,
  2607. "filterable": 1,
  2608. "categories": [
  2609. "精品推荐","国产视频","主播直播","日本无码","日本有码","中文字幕","巨乳美乳","熟女人妻","强奸乱伦","欧美精品","少女萝莉","三级伦理","成人动漫","制服丝袜","角色扮演","口交颜射","自拍偷拍"
  2610. ]
  2611. },
  2612. {
  2613. "key": "秀色",
  2614. "name": "❤秀色采集(已被探探收购)",
  2615. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2616. "api": "https://api.xiuseapi.com/api.php/provide/vod/from/xiuse/",
  2617. "playUrl": "",
  2618. "searchable": 1,
  2619. "quickSearch": 1,
  2620. "filterable": 1,
  2621. "categories": [
  2622. "国产精品","中文字幕","欧美精品","自拍偷拍","日韩无码","日韩有码","动漫精品","三级伦理","人妻系列","SM重口味","小视频","潮吹喷射"
  2623. ]
  2624. },
  2625. {
  2626. "key": "丝袜",
  2627. "name": "❤丝袜采集",
  2628. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2629. "api": "https://siwazyw.cc/api.php/provide/vod/",
  2630. "playUrl": "",
  2631. "searchable": 1,
  2632. "quickSearch": 1,
  2633. "filterable": 1,
  2634. "categories": [
  2635. "亚洲有码",
  2636. "亚洲无码",
  2637. "欧美情色",
  2638. "中文字幕",
  2639. "动漫卡通",
  2640. "美女主播",
  2641. "人妻熟女",
  2642. "强奸乱伦",
  2643. "日韩伦理",
  2644. "国产自拍",
  2645. "精选口爆",
  2646. "同性同志",
  2647. "重口味",
  2648. "91大神",
  2649. "AV解说"
  2650. ]
  2651. },
  2652. {
  2653. "key": "老鸭",
  2654. "name": "❤老鸭采集",
  2655. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2656. "api": "https://api.apilyzy.com/api.php/provide/vod/",
  2657. "playUrl": "https://jx.bozrc.com:4433/player/?url=",
  2658. "searchable": 1,
  2659. "quickSearch": 1,
  2660. "filterable": 1,
  2661. "categories": [
  2662. "日本有码",
  2663. "日本无码",
  2664. "中文字幕",
  2665. "变态另类",
  2666. "巨乳美乳",
  2667. "动漫精品",
  2668. "熟女人妻",
  2669. "自拍偷拍",
  2670. "海外明星",
  2671. "国产传媒"
  2672. ]
  2673. },
  2674. {"key": "155专场","name": "❤155采集","type": 1,"api": "https://155api.com/api.php/provide/vod/","playUrl": "","searchable": 1,"style":{ "type":"rect", "ratio":0.8 },"quickSearch": 1,"filterable": 1,"categories": [
  2675. "无码专区","麻豆传媒","制服诱惑","三级伦理","AI换脸","中文字幕","卡通动漫","欧美系列","美女主播","国产自拍","熟女人妻","萝莉少女","女同性爱","多人群交","美乳巨乳","强奸乱伦","抖音视频","韩国主播","网红头条","网爆黑料","欧美无码","女优明星","SM调教","AV解说"]},
  2676. {
  2677. "key": "色猫",
  2678. "name": "❤色猫采集",
  2679. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2680. "api": "https://caiji.semaozy.net/inc/apijson_vod.php/",
  2681. "playUrl": "",
  2682. "searchable": 1,
  2683. "quickSearch": 1,
  2684. "filterable": 1,
  2685. "categories": [
  2686. "国产自拍","日本无码","日本有码","中文字幕","欧美精品","成人动漫","日本素人","高清名优","三级伦理","网红主播","映画传媒","人妻熟女","口爆颜射","萝莉少女","SM调教","美乳巨乳","短视频","制服诱惑","女同性爱","AI换脸","多人群交","翹臀美尻","丝袜美腿","精选独家","貧乳小奶","探花系列"
  2687. ]
  2688. },
  2689. {
  2690. "key": "番外",
  2691. "name": "❤番外采集",
  2692. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2693. "api": "http://fhapi9.com/api.php/provide/vod/",
  2694. "playUrl": "",
  2695. "searchable": 1,
  2696. "quickSearch": 1,
  2697. "filterable": 1,
  2698. "categories": [
  2699. "群交淫乱",
  2700. "偷拍自拍",
  2701. "制服丝袜",
  2702. "无码专区",
  2703. "卡通动漫",
  2704. "中文字幕",
  2705. "欧美性爱",
  2706. "巨乳美乳",
  2707. "国产裸聊",
  2708. "国产自拍",
  2709. "国产盗摄",
  2710. "伦理三级",
  2711. "女同性恋",
  2712. "少女萝莉",
  2713. "人妖系列",
  2714. "虚拟VR"
  2715. ]
  2716. },
  2717. {
  2718. "key": "色窝资源",
  2719. "name": "❤色窝资源",
  2720. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2721. "api": "https://sewozyapi.com/api.php/provide/vod/",
  2722. "playUrl": "",
  2723. "searchable": 1,
  2724. "quickSearch": 0,
  2725. "filterable": 1,
  2726. "categories": [
  2727. "制服黑丝",
  2728. "强奸乱伦",
  2729. "国产情色",
  2730. "主播直播",
  2731. "动漫里番",
  2732. "日韩综合",
  2733. "欧美性爱",
  2734. "中文字幕",
  2735. "强奸乱伦",
  2736. "巨乳美乳",
  2737. "变态调教",
  2738. "自拍偷拍",
  2739. "熟女人妻",
  2740. "日本无码",
  2741. "日本有码",
  2742. "少女萝莉",
  2743. "三级伦理",
  2744. "明星偶像",
  2745. "美女模特",
  2746. "AI换脸",
  2747. "国产传媒"
  2748. ]
  2749. },
  2750. {
  2751. "key": "花蜜",
  2752. "name": "❤花魅采集",
  2753. "type": 1,"style":{ "type":"rect", "ratio":0.8 },
  2754. "api": "https://caiji.huakuiapi.com/inc/apijson_vod.php",
  2755. "playUrl": "",
  2756. "searchable": 1,
  2757. "quickSearch": 1,
  2758. "filterable": 1,
  2759. "categories": [
  2760. "国产精品","偷拍自拍","日本无码","日本有码","人妻制服","中文字幕","欧美精品","卡通动漫","街头素人","网红主播","日本女优","传媒精品","颜射口爆","萝莉少女","SM调教","三级伦理","口爆颜射","探花系列","同性爱爱","丝袜美腿","平乳AV","美尻翹臀","av群交","推荐独家"
  2761. ]
  2762. },
  2763. {
  2764. "key": "push_agent",
  2765. "name": "❤推送 | lf_push",
  2766. "type": 3,
  2767. "searchable": 0,
  2768. "changeable": 1,
  2769. "quickSearch": 0,
  2770. "filterable": 0,
  2771. "api": "https://qu.ax/zdKQ.js",
  2772. "ext":"0bec59716cbd492796ea1d5b14f2ca67"
  2773. }
  2774. ],
  2775. "rules": [
  2776. {
  2777. "name": "火山嗅探",
  2778. "host": [
  2779. "huoshan.com"
  2780. ],
  2781. "regex": [
  2782. "item_id="
  2783. ]
  2784. },
  2785. {
  2786. "name": "抖音嗅探",
  2787. "host": [
  2788. "douyin.com"
  2789. ],
  2790. "regex": [
  2791. "is_play_url="
  2792. ]
  2793. },
  2794. {
  2795. "name": "磁力廣告",
  2796. "hosts": [
  2797. "magnet","https"
  2798. ],
  2799. "regex": [
  2800. "更多","社 區","x u u","最 新","最新","直 播","更 新","社 区","有趣","有 趣","英皇体育","全中文AV在线","澳门皇冠赌场","哥哥快来","美女荷官","裸聊","新片首发","UUE29"
  2801. ]
  2802. },
  2803. {
  2804. "name": "量子廣告",
  2805. "hosts": [
  2806. "vip.lz",
  2807. "hd.lz"
  2808. ],
  2809. "regex": [
  2810. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6.433333,[\\s\\S]*?#EXT-X-DISCONTINUITY"
  2811. ]
  2812. },
  2813. {
  2814. "name": "非凡廣告",
  2815. "hosts": [
  2816. "vip.ffzy"
  2817. ],
  2818. "regex": [
  2819. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6.666667,[\\s\\S]*?#EXT-X-DISCONTINUITY"
  2820. ]
  2821. }
  2822. ],
  2823. "doh": [
  2824. {
  2825. "name": "騰訊",
  2826. "url": "https://doh.pub/dns-query"
  2827. },
  2828. {
  2829. "name": "阿里",
  2830. "url": "https://dns.alidns.com/dns-query"
  2831. },
  2832. {
  2833. "name": "360",
  2834. "url": "https://doh.360.cn/dns-query"
  2835. },
  2836. {
  2837. "name": "Google",
  2838. "url": "https://dns.google/dns-query",
  2839. "ips": [
  2840. "8.8.4.4",
  2841. "8.8.8.8"
  2842. ]
  2843. },
  2844. {
  2845. "name": "Cloudflare",
  2846. "url": "https://cloudflare-dns.com/dns-query",
  2847. "ips": [
  2848. "1.1.1.1",
  2849. "1.0.0.1",
  2850. "2606:4700:4700::1111",
  2851. "2606:4700:4700::1001"
  2852. ]
  2853. },
  2854. {
  2855. "name": "AdGuard",
  2856. "url": "https://dns.adguard.com/dns-query",
  2857. "ips": [
  2858. "94.140.14.140",
  2859. "94.140.14.141"
  2860. ]
  2861. },
  2862. {
  2863. "name": "DNSWatch",
  2864. "url": "https://resolver2.dns.watch/dns-query",
  2865. "ips": [
  2866. "84.200.69.80",
  2867. "84.200.70.40"
  2868. ]
  2869. },
  2870. {
  2871. "name": "Quad9",
  2872. "url": "https://dns.quad9.net/dns-quer",
  2873. "ips": [
  2874. "9.9.9.9",
  2875. "149.112.112.112"
  2876. ]
  2877. }
  2878. ],
  2879. "lives": [
  2880. {
  2881. "name": "半路捡来的",
  2882. "type": 0,
  2883. "url": "https://agit.ai/Yoursmile7/TVBox/raw/branch/master/live.txt",
  2884. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2885. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2886. },
  2887. /* {
  2888. "name":"范明",
  2889. "type":0,
  2890. "url":"https://hub.gitmirror.com/https://raw.githubusercontent.com/fanmingming/live/main/tv/m3u/global.m3u",
  2891. "epg":"http://epg.112114.xyz/?ch={name}&date={date}",
  2892. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2893. },
  2894. {
  2895. "name": "道长",
  2896. "type": 0,
  2897. "url": "http://111.67.196.181/zhibo.txt",
  2898. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2899. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2900. },
  2901. */
  2902. {
  2903. "name": "肥猫",
  2904. "type": 0,
  2905. "url": "http://我不是.肥猫.love:63/TV/tvzb.txt",
  2906. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2907. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2908. },
  2909. {
  2910. "name": "BESTV",
  2911. "type": 0,
  2912. "url": "https://hub.gitmirror.com/https://raw.githubusercontent.com/Ftindy/IPTV-URL/main/bestv.m3u",
  2913. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2914. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2915. },
  2916. {
  2917. "name": "CQYX",
  2918. "type": 0,
  2919. "url": "https://hub.gitmirror.com/https://raw.githubusercontent.com/Ftindy/IPTV-URL/main/cqyx.m3u",
  2920. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2921. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2922. },
  2923. {
  2924. "name": "四千加",
  2925. "type": 0,
  2926. "url": "https://qu.ax/kBip.m3u",
  2927. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2928. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2929. },
  2930. {
  2931. "name": "AK47",
  2932. "type": 0,
  2933. "url": "https://qu.ax/HtMB.txt",
  2934. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2935. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2936. },
  2937. {
  2938. "name": "蜂蜜18+",
  2939. "type": 0,
  2940. "url": "https://hub.gitmirror.com/https://raw.githubusercontent.com/FongMi/CatVodSpider/main/txt/adult.txt",
  2941. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2942. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2943. },
  2944. {
  2945. "name": "月光宝盒",
  2946. "type": 0,
  2947. "url": "https://iptvindex.com/tv.txt",
  2948. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2949. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2950. },
  2951. {
  2952. "name": "罗汉果",
  2953. "type": 0,
  2954. "url": "https://agit.ai/138001380000/MHQTV/raw/branch/master/TV/0903zh.txt",
  2955. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2956. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2957. },
  2958. {
  2959. "name": "全球总列表",
  2960. "type": 0,
  2961. "url": "https://iptv-org.github.io/iptv/index.m3u",
  2962. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2963. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2964. },
  2965. {
  2966. "name": "MV系列",
  2967. "type": 0,
  2968. "url": "https://qu.ax/oiNH.txt",
  2969. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2970. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2971. },
  2972. {"type":0,"pass": true,"name":"影子TV","url":"https://ghproxy.com/https://raw.githubusercontent.com/lystv/short/main/影视/tvb/影子TV.txt","logo":"http://epg.51zmt.top:8000/{logo}","epg":"http://epg.51zmt.top:8000/api/diyp/?ch={epg}&date={date}","playerType":1},
  2973. {
  2974. "name": "晴天🌞TV",
  2975. "type": 0,
  2976. "header": {
  2977. "user-agent": "Mozilla/5.0(SymbianOS/9.4;Series60/5.0NokiaN97-1/20.0.019;Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/525 (KHTML, like Gecko)BrowserNG/7.1.18124",
  2978. "referer": "https://github.com/"
  2979. },
  2980. "url": "https://qu.ax/vszk.txt",
  2981. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2982. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2983. },
  2984. {
  2985. "name": "武哥直播",
  2986. "type": 0,
  2987. "url": "https://qu.ax/HjLu.txt",
  2988. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2989. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2990. },
  2991. {
  2992. "name": "武哥成人点播",
  2993. "type": 0,
  2994. "url": "https://qu.ax/CgvU.txt",
  2995. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  2996. "logo":"https://epg.112114.xyz/logo/{name}.png"
  2997. }
  2998. ],
  2999. "parses":[
  3000. {
  3001. "name": "解析聚合",
  3002. "type": 3,
  3003. "url": "Demo"
  3004. },
  3005. {
  3006. "name": "Web聚合",
  3007. "type": 3,
  3008. "url": "Web"
  3009. },
  3010. {
  3011. "name": "Json轮询",
  3012. "type": 2,
  3013. "url": "Sequence"
  3014. },
  3015. {
  3016. "name": "Json并发",
  3017. "type": 2,
  3018. "url": "Parallel"
  3019. },
  3020. {
  3021. "name": "公众号猫技解析",
  3022. "type": 1,
  3023. "url": "http://120.53.102.254/jx2/jiexi.php?type=ys&uid=230629&key=公众号【猫技】&url=",
  3024. "ext": {
  3025. "flag": [
  3026. "qq",
  3027. "腾讯",
  3028. "企鹅",
  3029. "IQiYi",
  3030. "qiyi",
  3031. "爱奇艺",
  3032. "奇艺",
  3033. "youku",
  3034. "YouKu",
  3035. "优酷",
  3036. "sohu",
  3037. "SoHu",
  3038. "搜狐",
  3039. "letv",
  3040. "LeShi",
  3041. "乐视",
  3042. "imgo",
  3043. "mgtv",
  3044. "MangGuo",
  3045. "芒果",
  3046. "SLYS4k",
  3047. "BYGA",
  3048. "luanzi",
  3049. "AliS",
  3050. "dxzy",
  3051. "bilibili",
  3052. "QEYSS",
  3053. "xigua",
  3054. "西瓜视频",
  3055. "腾讯视频",
  3056. "奇艺视频",
  3057. "优酷视频",
  3058. "芒果视频",
  3059. "乐视视频"
  3060. ]
  3061. }
  3062. },
  3063. {
  3064. "name": "刚佬",
  3065. "type": 1,
  3066. "url": "http://json.g9.pub:66/?url=",
  3067. "ext": {
  3068. "flag": [
  3069. "qq",
  3070. "腾讯",
  3071. "qiyi",
  3072. "爱奇艺",
  3073. "奇艺",
  3074. "youku",
  3075. "优酷",
  3076. "mgtv",
  3077. "imgo",
  3078. "芒果",
  3079. "letv",
  3080. "乐视",
  3081. "pptv",
  3082. "PPTV",
  3083. "sohu",
  3084. "bilibili",
  3085. "哔哩哔哩",
  3086. "哔哩"
  3087. ],
  3088. "header": {
  3089. "User-Agent": "okhttp/4.1.0"
  3090. }
  3091. }
  3092. },
  3093. {
  3094. "name": "全部",
  3095. "type": 0,
  3096. "url": "https://yun.ckmov.com/?url=",
  3097. "ext": {
  3098. "flag": [
  3099. "qq",
  3100. "腾讯",
  3101. "qiyi",
  3102. "爱奇艺",
  3103. "奇艺",
  3104. "youku",
  3105. "优酷",
  3106. "mgtv",
  3107. "imgo",
  3108. "芒果",
  3109. "letv",
  3110. "乐视",
  3111. "pptv",
  3112. "PPTV",
  3113. "sohu",
  3114. "bilibili",
  3115. "哔哩哔哩",
  3116. "哔哩"
  3117. ],
  3118. "header": {
  3119. "User-Agent": "okhttp/4.1.0"
  3120. }
  3121. }
  3122. },
  3123. {
  3124. "name": "来自",
  3125. "type": 0,
  3126. "url": "https://jx.zhanlangbu.com/?url=",
  3127. "ext": {
  3128. "flag": [
  3129. "qq",
  3130. "腾讯",
  3131. "qiyi",
  3132. "爱奇艺",
  3133. "奇艺",
  3134. "youku",
  3135. "优酷",
  3136. "sohu",
  3137. "搜狐",
  3138. "letv",
  3139. "乐视",
  3140. "mgtv",
  3141. "芒果",
  3142. "imgo",
  3143. "rx",
  3144. "ltnb",
  3145. "bilibili",
  3146. "1905",
  3147. "xigua"
  3148. ]
  3149. }
  3150. },
  3151. {
  3152. "name": "网络",
  3153. "type": 1,
  3154. "url": "https://api.cygc.xyz/analysis/?url=",
  3155. "ext": {
  3156. "flag": [
  3157. "qq",
  3158. "腾讯",
  3159. "qiyi",
  3160. "爱奇艺",
  3161. "奇艺",
  3162. "youku",
  3163. "优酷",
  3164. "sohu",
  3165. "搜狐",
  3166. "letv",
  3167. "乐视",
  3168. "imgo",
  3169. "mgtv",
  3170. "芒果",
  3171. "rx",
  3172. "ltnb",
  3173. "bilibili",
  3174. "1905",
  3175. "xigua"
  3176. ]
  3177. }
  3178. },
  3179. {
  3180. "name": "大家",
  3181. "type": 0,
  3182. "url": "https://jx.xmflv.com/?url=",
  3183. "ext": {
  3184. "flag": [
  3185. "qq",
  3186. "腾讯",
  3187. "qiyi",
  3188. "爱奇艺",
  3189. "奇艺",
  3190. "youku",
  3191. "优酷",
  3192. "mgtv",
  3193. "芒果",
  3194. "imgo",
  3195. "letv",
  3196. "乐视",
  3197. "pptv",
  3198. "PPTV",
  3199. "sohu",
  3200. "bilibili",
  3201. "哔哩哔哩",
  3202. "哔哩"
  3203. ],
  3204. "header": {
  3205. "User-Agent": "okhttp/4.1.0"
  3206. }
  3207. }
  3208. },
  3209. {
  3210. "name": "随便用",
  3211. "type": 1,
  3212. "url": "https://jx.ccabc.cc/xc/?key=5567332json&url="
  3213. },
  3214. {
  3215. "name": "坏了",
  3216. "type": 0,
  3217. "url": "http://27.124.4.42:4567/jhjson/ceshi.php?url=",
  3218. "ext": {
  3219. "flag": [
  3220. "qq",
  3221. "腾讯",
  3222. "qiyi",
  3223. "爱奇艺",
  3224. "奇艺",
  3225. "youku",
  3226. "优酷",
  3227. "mgtv",
  3228. "imgo",
  3229. "芒果",
  3230. "letv",
  3231. "乐视",
  3232. "pptv",
  3233. "PPTV",
  3234. "sohu",
  3235. "bilibili",
  3236. "哔哩哔哩",
  3237. "哔哩"
  3238. ],
  3239. "header": {
  3240. "User-Agent": "okhttp/4.1.0"
  3241. }
  3242. }
  3243. },
  3244. {
  3245. "name": "我再找来",
  3246. "type": 1,
  3247. "url": "https://b.umkan.cc/API.php?url=",
  3248. "ext": {
  3249. "flag": [
  3250. "qq",
  3251. "腾讯",
  3252. "企鹅",
  3253. "IQiYi",
  3254. "qiyi",
  3255. "imgo",
  3256. "爱奇艺",
  3257. "奇艺",
  3258. "youku",
  3259. "YouKu",
  3260. "优酷",
  3261. "sohu",
  3262. "SoHu",
  3263. "搜狐",
  3264. "letv",
  3265. "LeShi",
  3266. "乐视",
  3267. "imgo",
  3268. "mgtv",
  3269. "MangGuo",
  3270. "芒果",
  3271. "SLYS4k",
  3272. "BYGA",
  3273. "luanzi",
  3274. "AliS",
  3275. "dxzy",
  3276. "bilibili",
  3277. "QEYSS",
  3278. "xigua",
  3279. "西瓜视频",
  3280. "腾讯视频",
  3281. "奇艺视频",
  3282. "优酷视频",
  3283. "芒果视频",
  3284. "乐视视频"
  3285. ]
  3286. }
  3287. },
  3288. { "name": "影探A", "type": 1, "url": "https://epay.99xim.cn/ccc/?url=", "ext": { "flag": [ "qq", "腾讯", "qiyi", "爱奇艺", "奇艺", "youku", "优酷", "sohu", "搜狐", "letv", "乐视", "mgtv", "芒果", "rx", "ltnb", "bilibili", "1905", "xigua" ] } },
  3289. { "name": "影探B", "type": 1, "url": "http://lflong.lyyytv.cn/json.php?url=", "ext": { "flag": [ "qq", "腾讯", "qiyi", "爱奇艺", "奇艺", "youku", "优酷", "sohu", "搜狐", "letv", "乐视", "mgtv", "芒果", "rx", "ltnb", "bilibili", "1905", "xigua" ] } },
  3290. { "name": "影探C", "type": 1, "url": "https://kk.hdjh.xyz/home/api?type=ys&uid=5282164&key=cdfqstuwCFJSTWX679&url=", "ext": { "flag": [ "qq", "腾讯", "qiyi", "爱奇艺", "奇艺", "youku", "优酷", "sohu", "搜狐", "letv", "乐视", "mgtv", "芒果", "rx", "ltnb", "bilibili", "1905", "xigua" ] } },
  3291. { "name": "影探D", "type": 1, "url": "http://m3u8.lyyytv.cn/json.php?url=", "ext": { "flag": [ "qq", "腾讯", "qiyi", "爱奇艺", "奇艺", "youku", "优酷", "sohu", "搜狐", "letv", "乐视", "mgtv", "芒果", "rx", "ltnb", "bilibili", "1905", "xigua" ] } },
  3292. {"name":"自动解析","type":3,"url":"Demo"},
  3293. {"name":"Web解析聚合","type":3,"url":"Web"},
  3294. {"name":"Json并发","type":2,"url":"Parallel"},
  3295. {"name":"Json轮询","type":2,"url":"Sequence"},
  3296. {"name":"钢铁侠","url":"https://json.freejx.in/?url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3297. {"name":"绿叶","url":"https://hc.izny.cn/json.php?url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3298. {"name":"无名1","url":"http://api.ckflv.cn/?url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3299. {"name":"llq","url":"https://hc.izny.cn/json.php?url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3300. {"name":"江湖","url":"http://211.99.99.236:4567/jhjson/ceshi.php?url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3301. {"name":"左岸","url":"https://jx.bozrc.com:4433/player/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3302. {"name":"GGTV","url":"https://play.fuqizhishi.com/juhe/API.php?appkey=caijijuhe220902&url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3303. {"name":"ggtv","url":"https://play.fuqizhishi.com/jx/API.php?appkey=xiaobai888&url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3304. {"name":"ok解析","url":"https://okjx.cc/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3305. {"name":"m3u8tv","url":"https://jx.m3u8.tv/jiexi/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3306. {"name":"Fosi","url":"https://play.fositv.com/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3307. {"name":"诺讯","url":"https://www.nxflv.com/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3308. {"name":"巧技解析","type":1,"url":"http://jx.pandown.pro/home/api?type=ys&uid=2691632&key=bchmpqsDJMSTWX0568&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","sohu","搜狐","letv","乐视","mgtv","芒果","rx","ltnb","bilibili","1905","xigua"]}},
  3309. {"name":"稀饭影视","type":1,"url":"http://110.42.2.115:880/analysis/json/?uid=2351&my=abefklvwxABDINTY79&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","sohu","搜狐","letv","乐视","mgtv","芒果","rx","ltnb","bilibili","1905","xigua"]}},
  3310. {"name":"傻聊","url":"https://svip.spchat.top/api/?key=O9HGeIVUqU3REsnmQP&url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3311. {"name":"208","url":"https://v.2080kk.com/home/api?type=ys&uid=1308653&key=behnpstwxBCHJMQ029&url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3312. {"name":"8090","url":"https://www.8090.la/8090/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3313. {"name":"365","url":"https://chaxun.Truechat365.com/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3314. {"name":"爱酷","url":"https://jx.zhanlangbu.com/API.php?appkey=53df3aa2fdb66bcbc4d05730b6fbfc71&url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3315. {"name":"萝莉","url":"http://chaloli.cn/home/api?type=ys&uid=1&key=dklsuzIKNPRVW14568&url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3316. {"name":"无名1","url":"https://h5.freejson.xyz/player/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3317. {"name":"无名2","url":"https://freejx.rx88.top:1234/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3318. {"name":"无名3","url":"https://play.fositv.com/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3319. {"name":"真聊","url":"https://chaxun.Truechat365.com/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3320. {"name":"猪蹄","url":"https://jx.iztyy.com/svip/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3321. {"name":"m2090","url":"https://m2090.com/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3322. {"name":"BT5V","url":"https://rx.bt5v.com/json/jsonindex.php/?url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3323. {"name":"虾米","url":"https://dm.xmflv.com:4433/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3324. {"name":"解析15","url":"http://api.wpsseo.cn/?v=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3325. {"name":"解析16","url":"https://go.yh0523.cn/y.cy?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3326. {"name":"B站1","url":"https://jx.bozrc.com:4433/player/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3327. {"name":"爱豆","url":"https://jx.aidouer.net/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3328. {"name":"H8","url":"https://www.h8jx.com/jiexi.php?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3329. {"name":"解析","url":"https://ckmov.ccyjjd.com/ckmov/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3330. {"name":"思古3","url":"https://jsap.attakids.com/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3331. {"name":"云端1","url":"https://js.52jx.top:2525/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3332. {"name":"云端2","url":"https://sb.5gseo.net/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3333. {"name":"m3u8tv高清","url":"https://jx.m3u8.tv/jiexi/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3334. {"name":"搬运","url":"https://jx.bynote.top/API.php?url=","type":1,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3335. {"name":"解析第一","url":"http://27.124.4.42:4567/jhjson/ceshi.php?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3336. {"name":"纯净1","url":"https://z1.m1907.cn/?jx=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3337. {"name":"BL","url":"https://vip.bljiex.com/?v=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3338. {"name":"CK","url":"https://www.ckplayer.vip/jiexi/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3339. {"name":"解析","url":"https://ckmov.ccyjjd.com/ckmov/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3340. {"name":"解析la","url":"https://api.jiexi.la/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3341. {"name":"老板","url":"https://vip.laobandq.com/jiexi.php?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3342. {"name":"诺讯","url":"https://www.nxflv.com/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3343. {"name":"PM","url":"https://www.playm3u8.cn/jiexi.php?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3344. {"name":"盘古","url":"https://www.pangujiexi.cc/jiexi.php?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3345. {"name":"全民","url":"https://jx.blbo.cc:4433/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3346. {"name":"七哥","url":"https://jx.mmkv.cn/tv.php?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3347. {"name":"RDHK","url":"https://jx.rdhk.net/?v=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3348. {"name":"云析","url":"https://jx.yparse.com/index.php?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3349. {"name":"180","url":"https://jx.000180.top/jx/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3350. {"name":"七彩","url":"https://www.xymav.com/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3351. {"name":"夜幕","url":"https://www.yemu.xyz/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3352. {"name":"1717云","url":"https://www.1717yun.com/jx/ty.php?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3353. {"name":"8090","url":"https://www.8090g.cn/?url=","type":0,"ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","bilibili","哔哩哔哩","哔哩","mgtv","芒果","sohu","xigua","fun","风行"],"header":{"User-Agent":"Mozilla/5.0"}}},
  3354. {"name":"LTRX","type":1,"url":"https://svip.spchat.top/api/?type=ys&key=bKemW41JnxmQb4l67h&url=","ext": {"flag": ["rx"]}},
  3355. {"name":"1","type":1,"url":"http://27.124.4.42:4567/jhjson/ceshi.php?url=","ext":{"flag":["qiyi","qq","letv","sohu","youku","mgtv","bilibili","wasu","xigua","1905"]}},
  3356. {"name":"3","type":1,"url":"http://124.222.68.182/jiexi/4kJX.php/?url="},
  3357. {"name":"4","type":1,"url":"https://jhjx.kuanjv.com/newky/?url="},
  3358. {"name":"5","type":0,"url":"https://okjx.cc/?url="},
  3359. {"name":"6","type":1,"url":"https://svip.rongxingvr.top/api/?key=niBgMGXVdCQhsmeEBK&url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  3360. {"name":"7","type":1,"url":"https://app.iminna.com/jx/?url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  3361. {"name":"8","type":0,"url":"https://chaxun.truechat365.com/?url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","iqiyi","奇艺"]}},
  3362. {"name":"解析1","type": 1,"url": "http://newjiexi.gotka.top/keyu3.php?url=","ext": {"flag": ["qq", "腾讯", "qiyi", "爱奇艺", "奇艺","youku", "优酷", "mgtv", "芒果", "letv", "乐视", "pptv", "PPTV", "sohu", "bilibili", "哔哩哔哩", "哔哩"],"header": {"User-Agent": "okhttp/4.1.0"}}},
  3363. {"name":"解析3","type":1,"url":"https://jiexi.pengdouw.com/jiexi2/?url="},
  3364. {"name":"解析4","type":1,"url":"https://svip.bljiex.cc/?v="},
  3365. {"name":"解析5","type":1,"url":"https://jx.bozrc.com:4433/player/?url="},
  3366. {"name":"解析6","type":1,"url":"https://okjx.cc/?url="},
  3367. {"name":"解析7","type":1,"url":"https://jx.beiyan.cc:4433/?url="},
  3368. {"name":"解析8","type":1,"url":"https://go.yh0523.cn/y.cy?url="},
  3369. {"name":"解析9","type":1,"url":"https://dm.xmflv.com:4433/?url="},
  3370. {"name":"解析10","type":1,"url":"https://jx.m3u8.tv/jiexi/?url="},
  3371. {"name":"解析11","type":1,"url":"http://api.wpsseo.cn/?v="},
  3372. {"name":"解析12","type":1,"url":"https://jx.aidouer.net/?url="},
  3373. {"name":"解析13","type":1,"url":"https://jiexi.pengdouw.com/jiexi2/?url="},
  3374. {"name":"解析接口一","type":0,"url":"https://jx.777jiexi.com/player/?url="},
  3375. {"name":"解析接口二","type":0,"url":"https://jx.bozrc.com:4433/player/?url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","mgtv","芒果","letv","乐视","pptv","PPTV","sohu","bilibili","哔哩哔哩","哔哩"],"header":{"User-Agent":"okhttp/4.1.0"}}},
  3376. {"name":"解析接口三","type":0,"url":"http://www.miaoys.cc/vip/?url="},
  3377. {"name" : "13","type":0,"url":"http://www.miaoys.cc/vip/?url="}
  3378. ],
  3379. //最后一个“不用逗号”//
  3380. //----------------flags//
  3381. "flags" : ["youku",
  3382. "优酷",
  3383. "优 酷",
  3384. "优酷视频",
  3385. "qq",
  3386. "腾讯",
  3387. "腾 讯",
  3388. "腾讯视频",
  3389. "iqiyi",
  3390. "qiyi",
  3391. "奇艺",
  3392. "爱奇艺",
  3393. "爱 奇 艺",
  3394. "m1905",
  3395. "xigua",
  3396. "letv",
  3397. "leshi",
  3398. "乐视",
  3399. "乐 视",
  3400. "sohu",
  3401. "搜狐",
  3402. "搜 狐",
  3403. "搜狐视频",
  3404. "tudou",
  3405. "pptv",
  3406. "mgtv",
  3407. "芒果",
  3408. "imgo",
  3409. "芒果TV",
  3410. "芒 果 T V",
  3411. "bilibili",
  3412. "哔 哩",
  3413. "哔 哩 哔 哩","youku","qq","iqiyi","qiyi","letv","sohu","tudou","pptv","mgtv","wasu","bilibili","renrenmi","csm3u8","优酷","芒果","腾讯","爱奇艺","奇艺","ltnb","rx","CL4K","xfyun","wuduzy"],
  3414. /*-----------------------解码模式-----------------------*/
  3415. "ijk":[
  3416. {"group":"软解码","options":[
  3417. {"category":4,"name":"opensles","value":"0"},
  3418. {"category":4,"name":"overlay-format","value":"842225234"},
  3419. {"category":4,"name":"framedrop","value":"1"},
  3420. {"category":4,"name":"soundtouch","value":"1"},
  3421. {"category":4,"name":"start-on-prepared","value":"1"},
  3422. {"category":1,"name":"http-detect-range-support","value":"0"},
  3423. {"category":1,"name":"fflags","value":"fastseek"},
  3424. {"category":2,"name":"skip_loop_filter","value":"48"},
  3425. {"category":4,"name":"reconnect","value":"1"},
  3426. {"category":4,"name":"enable-accurate-seek","value":"0"},
  3427. {"category":4,"name":"mediacodec","value":"0"},
  3428. {"category":4,"name":"mediacodec-auto-rotate","value":"0"},
  3429. {"category":4,"name":"mediacodec-handle-resolution-change","value":"0"},
  3430. {"category":4,"name":"mediacodec-hevc","value":"0"},
  3431. {"category":1,"name":"dns_cache_timeout","value":"600000000"}
  3432. ]},
  3433. {"group":"硬解码","options":[
  3434. {"category":4,"name":"opensles","value":"0"},
  3435. {"category":4,"name":"overlay-format","value":"842225234"},
  3436. {"category":4,"name":"framedrop","value":"1"},
  3437. {"category":4,"name":"soundtouch","value":"1"},
  3438. {"category":4,"name":"start-on-prepared","value":"1"},
  3439. {"category":1,"name":"http-detect-range-support","value":"0"},
  3440. {"category":1,"name":"fflags","value":"fastseek"},
  3441. {"category":2,"name":"skip_loop_filter","value":"48"},
  3442. {"category":4,"name":"reconnect","value":"1"},
  3443. {"category":4,"name":"enable-accurate-seek","value":"0"},
  3444. {"category":4,"name":"mediacodec","value":"1"},
  3445. {"category":4,"name":"mediacodec-auto-rotate","value":"1"},
  3446. {"category":4,"name":"mediacodec-handle-resolution-change","value":"1"},
  3447. {"category":4,"name":"mediacodec-hevc","value":"1"},
  3448. {"category":1,"name":"dns_cache_timeout","value":"600000000"}]}],
  3449. /*-----------------------广告过滤-----------------------*/
  3450. "ads":["wan.51img1.com",
  3451. "iqiyi.hbuioo.com",
  3452. "vip.ffzyad.com",
  3453. "https://lf1-cdn-tos.bytegoofy.com/obj/tos-cn-i-dy/455ccf9e8ae744378118e4bd289288dd","mimg.0c1q0l.cn","www.googletagmanager.com","www.google-analytics.com","mc.usihnbcq.cn","mg.g1mm3d.cn","mscs.svaeuzh.cn","cnzz.hhttm.top","tp.vinuxhome.com","cnzz.mmstat.com","www.baihuillq.com","s23.cnzz.com","z3.cnzz.com","c.cnzz.com","stj.v1vo.top","z12.cnzz.com","img.mosflower.cn","tips.gamevvip.com","ehwe.yhdtns.com","xdn.cqqc3.com","www.jixunkyy.cn","sp.chemacid.cn","hm.baidu.com","s9.cnzz.com","z6.cnzz.com","um.cavuc.com","mav.mavuz.com","wofwk.aoidf3.com","z5.cnzz.com","xc.hubeijieshikj.cn","tj.tianwenhu.com","xg.gars57.cn","k.jinxiuzhilv.com","cdn.bootcss.com","ppl.xunzhuo123.com","xomk.jiangjunmh.top","img.xunzhuo123.com","z1.cnzz.com","s13.cnzz.com","xg.huataisangao.cn","z7.cnzz.com","xg.huataisangao.cn","z2.cnzz.com","s96.cnzz.com","q11.cnzz.com","thy.dacedsfa.cn","xg.whsbpw.cn","s19.cnzz.com","z8.cnzz.com","s4.cnzz.com","f5w.as12df.top","ae01.alicdn.com","www.92424.cn","k.wudejia.com","vivovip.mmszxc.top","qiu.xixiqiu.com","cdnjs.hnfenxun.com","cms.qdwght.com"
  3454. ],
  3455. "wallpaper": "https://tuapi.eees.cc/api.php?category=fengjing&type=302",
  3456. "spider":"https://qu.ax/rvNn.jpg;md5;e18bc0418a1fe5f288275132c9d719b3"
  3457. }