xgplayer 3.0.0-next.4 → 3.0.0-next.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (252) hide show
  1. package/CHANGELOG.md +183 -0
  2. package/dist/index.min.css +1 -0
  3. package/dist/index.min.js +1 -1
  4. package/dist/index.min.js.map +1 -1
  5. package/es/_virtual/_rollupPluginBabelHelpers.js +199 -0
  6. package/es/constant.d.ts +1 -0
  7. package/es/constant.js +5 -5
  8. package/es/defaultConfig.d.ts +30 -10
  9. package/es/defaultConfig.js +23 -153
  10. package/es/error.d.ts +2 -0
  11. package/es/error.js +54 -105
  12. package/es/events.d.ts +8 -1
  13. package/es/events.js +57 -59
  14. package/es/icons.d.ts +2 -0
  15. package/es/index.css +76 -1714
  16. package/es/index.d.ts +13 -0
  17. package/es/index.js +22 -11
  18. package/es/index.scss +29 -0
  19. package/es/index.umd.d.ts +6 -3
  20. package/es/index.umd.js +20 -46
  21. package/es/lang/en.js +46 -47
  22. package/es/lang/i18n.d.ts +20 -3
  23. package/es/lang/i18n.js +93 -97
  24. package/es/lang/index.d.ts +2 -0
  25. package/es/lang/jp.js +46 -47
  26. package/es/lang/zh-cn.js +46 -47
  27. package/es/lang/zh-hk.js +46 -47
  28. package/es/player.d.ts +209 -84
  29. package/es/player.js +900 -1513
  30. package/es/plugin/basePlugin.d.ts +17 -5
  31. package/es/plugin/basePlugin.js +88 -231
  32. package/es/plugin/hooksDescriptor.d.ts +1 -0
  33. package/es/plugin/hooksDescriptor.js +47 -87
  34. package/es/plugin/plugin.d.ts +8 -2
  35. package/es/plugin/plugin.js +138 -410
  36. package/es/plugin/pluginsManager.d.ts +69 -0
  37. package/es/plugin/pluginsManager.js +161 -205
  38. package/es/plugin/preset.js +10 -28
  39. package/es/plugin/resizeObserver.js +29 -58
  40. package/es/plugins/assets/back.js +4 -0
  41. package/es/plugins/assets/download.js +4 -0
  42. package/es/plugins/assets/exitCssFull.js +4 -0
  43. package/es/plugins/assets/exitFull.js +4 -0
  44. package/es/plugins/assets/loading.js +4 -0
  45. package/es/plugins/assets/panel.js +4 -0
  46. package/es/plugins/assets/pause.js +4 -0
  47. package/es/plugins/assets/pipIcon.js +4 -0
  48. package/es/plugins/assets/pipIconExit.js +4 -0
  49. package/es/plugins/assets/play.js +4 -0
  50. package/es/plugins/assets/playNext.js +4 -0
  51. package/es/plugins/assets/replay.js +4 -0
  52. package/es/plugins/assets/requestCssFull.js +7 -0
  53. package/es/plugins/assets/requestFull.js +4 -0
  54. package/es/plugins/assets/rotate.js +4 -0
  55. package/es/plugins/assets/seekicon.js +4 -0
  56. package/es/plugins/assets/volumeLarge.js +4 -0
  57. package/es/plugins/assets/volumeMuted.js +4 -0
  58. package/es/plugins/assets/volumeSmall.js +4 -0
  59. package/es/plugins/common/iconPlugin.d.ts +5 -0
  60. package/es/plugins/common/iconPlugin.js +57 -0
  61. package/es/plugins/common/index.scss +2 -0
  62. package/es/plugins/common/optionList.js +46 -56
  63. package/es/plugins/common/optionsIcon.css +2 -21
  64. package/es/plugins/common/optionsIcon.d.ts +4 -2
  65. package/es/plugins/common/optionsIcon.js +92 -132
  66. package/es/plugins/common/optionsIcon.scss +121 -0
  67. package/es/plugins/common/thumbnail.d.ts +4 -2
  68. package/es/plugins/common/thumbnail.js +87 -129
  69. package/es/plugins/common/thumbnail.scss +27 -0
  70. package/es/plugins/controls/index.css +4 -10
  71. package/es/plugins/controls/index.d.ts +19 -1
  72. package/es/plugins/controls/index.js +74 -176
  73. package/es/plugins/controls/index.scss +199 -0
  74. package/es/plugins/cssFullScreen/index.d.ts +15 -2
  75. package/es/plugins/cssFullScreen/index.js +62 -64
  76. package/es/plugins/cssFullScreen/index.scss +19 -0
  77. package/es/plugins/danmu/danmuIcon.d.ts +11 -0
  78. package/es/plugins/danmu/danmuIcon.js +44 -46
  79. package/es/plugins/danmu/danmuPanel.d.ts +1 -0
  80. package/es/plugins/danmu/danmuPanel.js +37 -63
  81. package/es/plugins/danmu/index.d.ts +1 -0
  82. package/es/plugins/danmu/index.js +71 -165
  83. package/es/plugins/danmu/index.scss +356 -0
  84. package/es/plugins/definition/index.d.ts +2 -0
  85. package/es/plugins/definition/index.js +72 -171
  86. package/es/plugins/definition/index.scss +4 -0
  87. package/es/plugins/download/index.d.ts +6 -2
  88. package/es/plugins/download/index.js +43 -65
  89. package/es/plugins/download/index.scss +22 -0
  90. package/es/plugins/dynamicBg/index.css +1 -1
  91. package/es/plugins/dynamicBg/index.d.ts +17 -2
  92. package/es/plugins/dynamicBg/index.js +139 -253
  93. package/es/plugins/dynamicBg/index.scss +19 -0
  94. package/es/plugins/enter/index.css +13 -34
  95. package/es/plugins/enter/index.d.ts +1 -0
  96. package/es/plugins/enter/index.js +35 -51
  97. package/es/plugins/enter/index.scss +78 -0
  98. package/es/plugins/error/index.css +0 -1
  99. package/es/plugins/error/index.d.ts +2 -1
  100. package/es/plugins/error/index.js +45 -50
  101. package/es/plugins/error/index.scss +34 -0
  102. package/es/plugins/fullscreen/backicon.d.ts +8 -0
  103. package/es/plugins/fullscreen/backicon.js +34 -38
  104. package/es/plugins/fullscreen/index.css +1 -1
  105. package/es/plugins/fullscreen/index.d.ts +13 -14
  106. package/es/plugins/fullscreen/index.js +70 -212
  107. package/es/plugins/fullscreen/index.scss +35 -0
  108. package/es/plugins/gapJump/index.d.ts +21 -0
  109. package/es/plugins/gapJump/index.js +157 -0
  110. package/es/plugins/keyboard/index.d.ts +1 -0
  111. package/es/plugins/keyboard/index.js +117 -169
  112. package/es/plugins/loading/index.css +2 -32
  113. package/es/plugins/loading/index.d.ts +4 -0
  114. package/es/plugins/loading/index.js +15 -33
  115. package/es/plugins/loading/index.scss +70 -0
  116. package/es/plugins/logger/index.d.ts +26 -10
  117. package/es/plugins/logger/index.js +204 -135
  118. package/es/plugins/miniScreen/index.css +1 -4
  119. package/es/plugins/miniScreen/index.d.ts +12 -0
  120. package/es/plugins/miniScreen/index.js +69 -134
  121. package/es/plugins/miniScreen/index.scss +198 -0
  122. package/es/plugins/miniScreen/miniScreenIcon.d.ts +1 -0
  123. package/es/plugins/miniScreen/miniScreenIcon.js +32 -34
  124. package/es/plugins/mobile/index.css +24 -0
  125. package/es/plugins/mobile/index.d.ts +7 -0
  126. package/es/plugins/mobile/index.js +150 -386
  127. package/es/plugins/mobile/index.scss +180 -0
  128. package/es/plugins/mobile/touch.d.ts +1 -0
  129. package/es/plugins/mobile/touch.js +47 -85
  130. package/es/plugins/netAdaption/index.d.ts +5 -0
  131. package/es/plugins/pc/index.js +74 -124
  132. package/es/plugins/pc/index.scss +5 -0
  133. package/es/plugins/pip/index.d.ts +14 -2
  134. package/es/plugins/pip/index.js +82 -134
  135. package/es/plugins/pip/index.scss +21 -0
  136. package/es/plugins/play/index.d.ts +13 -2
  137. package/es/plugins/play/index.js +55 -60
  138. package/es/plugins/play/index.scss +18 -0
  139. package/es/plugins/playNext/index.d.ts +4 -0
  140. package/es/plugins/playNext/index.js +42 -53
  141. package/es/plugins/playNext/index.scss +35 -0
  142. package/es/plugins/playbackRate/index.d.ts +3 -0
  143. package/es/plugins/playbackRate/index.js +51 -75
  144. package/es/plugins/playbackRate/index.scss +6 -0
  145. package/es/plugins/poster/index.d.ts +3 -0
  146. package/es/plugins/poster/index.js +48 -72
  147. package/es/plugins/poster/index.scss +56 -0
  148. package/es/plugins/progress/index.css +1 -2
  149. package/es/plugins/progress/index.d.ts +16 -2
  150. package/es/plugins/progress/index.js +210 -418
  151. package/es/plugins/progress/index.scss +278 -0
  152. package/es/plugins/progress/innerList.js +72 -87
  153. package/es/plugins/progress/miniProgress.d.ts +1 -0
  154. package/es/plugins/progress/miniProgress.js +36 -40
  155. package/es/plugins/progressPreview/dotsApi.js +71 -119
  156. package/es/plugins/progressPreview/index.css +15 -7
  157. package/es/plugins/progressPreview/index.d.ts +17 -1
  158. package/es/plugins/progressPreview/index.js +285 -189
  159. package/es/plugins/progressPreview/index.scss +226 -0
  160. package/es/plugins/prompt/index.css +0 -1
  161. package/es/plugins/prompt/index.d.ts +3 -0
  162. package/es/plugins/prompt/index.js +54 -71
  163. package/es/plugins/prompt/index.scss +53 -0
  164. package/es/plugins/replay/index.d.ts +5 -0
  165. package/es/plugins/replay/index.js +44 -57
  166. package/es/plugins/replay/index.scss +41 -0
  167. package/es/plugins/rotate/index.d.ts +6 -2
  168. package/es/plugins/rotate/index.js +49 -71
  169. package/es/{style/common/svg-url.css → plugins/rotate/index.scss} +0 -0
  170. package/es/plugins/rotate/index2.js +2 -0
  171. package/es/plugins/screenShot/index.d.ts +7 -2
  172. package/es/plugins/screenShot/index.js +69 -73
  173. package/es/plugins/screenShot/index.scss +5 -0
  174. package/es/plugins/start/index.css +3 -23
  175. package/es/plugins/start/index.d.ts +13 -1
  176. package/es/plugins/start/index.js +90 -142
  177. package/es/plugins/start/index.scss +115 -0
  178. package/es/plugins/stats/index.d.ts +38 -0
  179. package/es/plugins/stats/index.js +215 -0
  180. package/es/plugins/testspeed/index.d.ts +22 -0
  181. package/es/plugins/testspeed/index.js +175 -0
  182. package/es/plugins/time/index.css +0 -1
  183. package/es/plugins/time/index.d.ts +3 -0
  184. package/es/plugins/time/index.js +78 -101
  185. package/es/plugins/time/index.scss +39 -0
  186. package/es/plugins/track/index.css +4 -0
  187. package/es/plugins/track/index.d.ts +24 -3
  188. package/es/plugins/track/index.js +209 -218
  189. package/es/plugins/track/index.scss +22 -0
  190. package/es/plugins/volume/index.css +3 -0
  191. package/es/plugins/volume/index.d.ts +31 -0
  192. package/es/plugins/volume/index.js +175 -203
  193. package/es/plugins/volume/index.scss +124 -0
  194. package/es/plugins/waitingTimeoutJump/index.d.ts +15 -0
  195. package/es/plugins/waitingTimeoutJump/index.js +103 -0
  196. package/es/presets/default-en.d.ts +4 -1
  197. package/es/presets/default-en.js +49 -58
  198. package/es/presets/default.d.ts +5 -77
  199. package/es/presets/default.js +56 -60
  200. package/es/presets/index.d.ts +4 -0
  201. package/es/presets/live.js +28 -38
  202. package/es/presets/mobile.js +32 -38
  203. package/es/proxy.d.ts +50 -9
  204. package/es/proxy.js +250 -469
  205. package/es/state.d.ts +0 -1
  206. package/es/state.js +1 -3
  207. package/es/stateClassMap.d.ts +4 -2
  208. package/es/stateClassMap.js +29 -29
  209. package/es/style/common/animation.scss +16 -0
  210. package/es/style/common/svg-url.scss +70 -0
  211. package/es/style/common.scss +400 -0
  212. package/es/style/index.scss +4 -0
  213. package/es/style/variable.scss +76 -0
  214. package/es/utils/database.js +37 -74
  215. package/es/utils/debug.js +7 -18
  216. package/es/utils/draggabilly.js +69 -194
  217. package/es/utils/sniffer.d.ts +7 -0
  218. package/es/utils/sniffer.js +88 -62
  219. package/es/utils/url.d.ts +1 -0
  220. package/es/utils/util.d.ts +31 -2
  221. package/es/utils/util.js +374 -540
  222. package/es/utils/xgplayerTimeRange.js +6 -12
  223. package/es/version.js +1 -5
  224. package/package.json +12 -21
  225. package/dist/xgplayer.min.css +0 -1
  226. package/dist/xgplayer.mobile.min.css +0 -1
  227. package/es/index.mobile.css +0 -1693
  228. package/es/plugins/assets/back.svg.js +0 -5
  229. package/es/plugins/assets/download.svg.js +0 -5
  230. package/es/plugins/assets/exitCssFull.svg.js +0 -5
  231. package/es/plugins/assets/exitFull.svg.js +0 -5
  232. package/es/plugins/assets/loading.svg.js +0 -5
  233. package/es/plugins/assets/panel.svg.js +0 -5
  234. package/es/plugins/assets/pause.svg.js +0 -5
  235. package/es/plugins/assets/pipIcon.svg.js +0 -5
  236. package/es/plugins/assets/pipIconExit.svg.js +0 -5
  237. package/es/plugins/assets/play.svg.js +0 -5
  238. package/es/plugins/assets/playNext.svg.js +0 -5
  239. package/es/plugins/assets/replay.svg.js +0 -5
  240. package/es/plugins/assets/requestCssFull.svg.js +0 -5
  241. package/es/plugins/assets/requestFull.svg.js +0 -5
  242. package/es/plugins/assets/rotate.svg.js +0 -5
  243. package/es/plugins/assets/seekicon.svg.js +0 -5
  244. package/es/plugins/assets/volumeLarge.svg.js +0 -5
  245. package/es/plugins/assets/volumeMuted.svg.js +0 -5
  246. package/es/plugins/assets/volumeSmall.svg.js +0 -5
  247. package/es/plugins/common/index.css +0 -134
  248. package/es/plugins/common/thumbnail.css +0 -3
  249. package/es/style/common/animation.css +0 -32
  250. package/es/style/common.css +0 -314
  251. package/es/style/index.css +0 -449
  252. package/es/style/variable.css +0 -0
package/dist/index.min.js CHANGED
@@ -1,2 +1,2 @@
1
- !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).Player=e()}(this,(function(){"use strict";var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},e=function(t){return t&&t.Math==Math&&t},n=e("object"==typeof globalThis&&globalThis)||e("object"==typeof window&&window)||e("object"==typeof self&&self)||e("object"==typeof t&&t)||function(){return this}()||Function("return this")(),i={},r=function(t){try{return!!t()}catch(t){return!0}},o=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),s={},a={}.propertyIsEnumerable,c=Object.getOwnPropertyDescriptor,l=c&&!a.call({1:2},1);s.f=l?function(t){var e=c(this,t);return!!e&&e.enumerable}:a;var u,h,f=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},d={}.toString,p=function(t){return d.call(t).slice(8,-1)},g=p,v="".split,y=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==g(t)?v.call(t,""):Object(t)}:Object,m=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},k=y,b=m,w=function(t){return k(b(t))},C=function(t){return"object"==typeof t?null!==t:"function"==typeof t},x=n,_=function(t){return"function"==typeof t?t:void 0},E=function(t,e){return arguments.length<2?_(x[t]):x[t]&&x[t][e]},T=E("navigator","userAgent")||"",S=n,P=T,R=S.process,O=S.Deno,I=R&&R.versions||O&&O.version,L=I&&I.v8;L?h=(u=L.split("."))[0]<4?1:u[0]+u[1]:P&&(!(u=P.match(/Edge\/(\d+)/))||u[1]>=74)&&(u=P.match(/Chrome\/(\d+)/))&&(h=u[1]);var A=h&&+h,D=A,M=r,N=!!Object.getOwnPropertySymbols&&!M((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&D&&D<41})),F=N&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,j=E,B=F?function(t){return"symbol"==typeof t}:function(t){var e=j("Symbol");return"function"==typeof e&&Object(t)instanceof e},H=C,U={exports:{}},V=n,G=function(t,e){try{Object.defineProperty(V,t,{value:e,configurable:!0,writable:!0})}catch(n){V[t]=e}return e},W=G,Y="__core-js_shared__",K=n[Y]||W(Y,{}),z=K;(U.exports=function(t,e){return z[t]||(z[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.16.2",mode:"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"});var X=m,q=function(t){return Object(X(t))},$=q,Z={}.hasOwnProperty,J=Object.hasOwn||function(t,e){return Z.call($(t),e)},Q=0,tt=Math.random(),et=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++Q+tt).toString(36)},nt=n,it=U.exports,rt=J,ot=et,st=N,at=F,ct=it("wks"),lt=nt.Symbol,ut=at?lt:lt&&lt.withoutSetter||ot,ht=function(t){return rt(ct,t)&&(st||"string"==typeof ct[t])||(st&&rt(lt,t)?ct[t]=lt[t]:ct[t]=ut("Symbol."+t)),ct[t]},ft=C,dt=B,pt=function(t,e){var n,i;if("string"===e&&"function"==typeof(n=t.toString)&&!H(i=n.call(t)))return i;if("function"==typeof(n=t.valueOf)&&!H(i=n.call(t)))return i;if("string"!==e&&"function"==typeof(n=t.toString)&&!H(i=n.call(t)))return i;throw TypeError("Can't convert object to primitive value")},gt=ht("toPrimitive"),vt=function(t,e){if(!ft(t)||dt(t))return t;var n,i=t[gt];if(void 0!==i){if(void 0===e&&(e="default"),n=i.call(t,e),!ft(n)||dt(n))return n;throw TypeError("Can't convert object to primitive value")}return void 0===e&&(e="number"),pt(t,e)},yt=vt,mt=B,kt=function(t){var e=yt(t,"string");return mt(e)?e:String(e)},bt=C,wt=n.document,Ct=bt(wt)&&bt(wt.createElement),xt=function(t){return Ct?wt.createElement(t):{}},_t=xt,Et=!o&&!r((function(){return 7!=Object.defineProperty(_t("div"),"a",{get:function(){return 7}}).a})),Tt=o,St=s,Pt=f,Rt=w,Ot=kt,It=J,Lt=Et,At=Object.getOwnPropertyDescriptor;i.f=Tt?At:function(t,e){if(t=Rt(t),e=Ot(e),Lt)try{return At(t,e)}catch(t){}if(It(t,e))return Pt(!St.f.call(t,e),t[e])};var Dt={},Mt=C,Nt=function(t){if(!Mt(t))throw TypeError(String(t)+" is not an object");return t},Ft=o,jt=Et,Bt=Nt,Ht=kt,Ut=Object.defineProperty;Dt.f=Ft?Ut:function(t,e,n){if(Bt(t),e=Ht(e),Bt(n),jt)try{return Ut(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t};var Vt=Dt,Gt=f,Wt=o?function(t,e,n){return Vt.f(t,e,Gt(1,n))}:function(t,e,n){return t[e]=n,t},Yt={exports:{}},Kt=K,zt=Function.toString;"function"!=typeof Kt.inspectSource&&(Kt.inspectSource=function(t){return zt.call(t)});var Xt,qt,$t,Zt=Kt.inspectSource,Jt=Zt,Qt=n.WeakMap,te="function"==typeof Qt&&/native code/.test(Jt(Qt)),ee=U.exports,ne=et,ie=ee("keys"),re=function(t){return ie[t]||(ie[t]=ne(t))},oe={},se=te,ae=C,ce=Wt,le=J,ue=K,he=re,fe=oe,de="Object already initialized",pe=n.WeakMap;if(se||ue.state){var ge=ue.state||(ue.state=new pe),ve=ge.get,ye=ge.has,me=ge.set;Xt=function(t,e){if(ye.call(ge,t))throw new TypeError(de);return e.facade=t,me.call(ge,t,e),e},qt=function(t){return ve.call(ge,t)||{}},$t=function(t){return ye.call(ge,t)}}else{var ke=he("state");fe[ke]=!0,Xt=function(t,e){if(le(t,ke))throw new TypeError(de);return e.facade=t,ce(t,ke,e),e},qt=function(t){return le(t,ke)?t[ke]:{}},$t=function(t){return le(t,ke)}}var be={set:Xt,get:qt,has:$t,enforce:function(t){return $t(t)?qt(t):Xt(t,{})},getterFor:function(t){return function(e){var n;if(!ae(e)||(n=qt(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}},we=n,Ce=Wt,xe=J,_e=G,Ee=Zt,Te=be.get,Se=be.enforce,Pe=String(String).split("String");(Yt.exports=function(t,e,n,i){var r,o=!!i&&!!i.unsafe,s=!!i&&!!i.enumerable,a=!!i&&!!i.noTargetGet;"function"==typeof n&&("string"!=typeof e||xe(n,"name")||Ce(n,"name",e),(r=Se(n)).source||(r.source=Pe.join("string"==typeof e?e:""))),t!==we?(o?!a&&t[e]&&(s=!0):delete t[e],s?t[e]=n:Ce(t,e,n)):s?t[e]=n:_e(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&Te(this).source||Ee(this)}));var Re={},Oe=Math.ceil,Ie=Math.floor,Le=function(t){return isNaN(t=+t)?0:(t>0?Ie:Oe)(t)},Ae=Le,De=Math.min,Me=function(t){return t>0?De(Ae(t),9007199254740991):0},Ne=Le,Fe=Math.max,je=Math.min,Be=function(t,e){var n=Ne(t);return n<0?Fe(n+e,0):je(n,e)},He=w,Ue=Me,Ve=Be,Ge=function(t){return function(e,n,i){var r,o=He(e),s=Ue(o.length),a=Ve(i,s);if(t&&n!=n){for(;s>a;)if((r=o[a++])!=r)return!0}else for(;s>a;a++)if((t||a in o)&&o[a]===n)return t||a||0;return!t&&-1}},We={includes:Ge(!0),indexOf:Ge(!1)},Ye=J,Ke=w,ze=We.indexOf,Xe=oe,qe=function(t,e){var n,i=Ke(t),r=0,o=[];for(n in i)!Ye(Xe,n)&&Ye(i,n)&&o.push(n);for(;e.length>r;)Ye(i,n=e[r++])&&(~ze(o,n)||o.push(n));return o},$e=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],Ze=qe,Je=$e.concat("length","prototype");Re.f=Object.getOwnPropertyNames||function(t){return Ze(t,Je)};var Qe={};Qe.f=Object.getOwnPropertySymbols;var tn,en=Re,nn=Qe,rn=Nt,on=E("Reflect","ownKeys")||function(t){var e=en.f(rn(t)),n=nn.f;return n?e.concat(n(t)):e},sn=J,an=on,cn=i,ln=Dt,un=r,hn=/#|\.prototype\./,fn=function(t,e){var n=pn[dn(t)];return n==vn||n!=gn&&("function"==typeof e?un(e):!!e)},dn=fn.normalize=function(t){return String(t).replace(hn,".").toLowerCase()},pn=fn.data={},gn=fn.NATIVE="N",vn=fn.POLYFILL="P",yn=fn,mn=n,kn=i.f,bn=Wt,wn=Yt.exports,Cn=G,xn=function(t,e){for(var n=an(e),i=ln.f,r=cn.f,o=0;o<n.length;o++){var s=n[o];sn(t,s)||i(t,s,r(e,s))}},_n=yn,En=function(t,e){var n,i,r,o,s,a=t.target,c=t.global,l=t.stat;if(n=c?mn:l?mn[a]||Cn(a,{}):(mn[a]||{}).prototype)for(i in e){if(o=e[i],r=t.noTargetGet?(s=kn(n,i))&&s.value:n[i],!_n(c?i:a+(l?".":"#")+i,t.forced)&&void 0!==r){if(typeof o==typeof r)continue;xn(o,r)}(t.sham||r&&r.sham)&&bn(o,"sham",!0),wn(n,i,o,t)}},Tn=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t},Sn=qe,Pn=$e,Rn=Object.keys||function(t){return Sn(t,Pn)},On=Dt,In=Nt,Ln=Rn,An=o?Object.defineProperties:function(t,e){In(t);for(var n,i=Ln(e),r=i.length,o=0;r>o;)On.f(t,n=i[o++],e[n]);return t},Dn=E("document","documentElement"),Mn=Nt,Nn=An,Fn=$e,jn=oe,Bn=Dn,Hn=xt,Un=re("IE_PROTO"),Vn=function(){},Gn=function(t){return"<script>"+t+"</"+"script>"},Wn=function(t){t.write(Gn("")),t.close();var e=t.parentWindow.Object;return t=null,e},Yn=function(){try{tn=new ActiveXObject("htmlfile")}catch(t){}var t,e;Yn="undefined"!=typeof document?document.domain&&tn?Wn(tn):((e=Hn("iframe")).style.display="none",Bn.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write(Gn("document.F=Object")),t.close(),t.F):Wn(tn);for(var n=Fn.length;n--;)delete Yn.prototype[Fn[n]];return Yn()};jn[Un]=!0;var Kn=Object.create||function(t,e){var n;return null!==t?(Vn.prototype=Mn(t),n=new Vn,Vn.prototype=null,n[Un]=t):n=Yn(),void 0===e?n:Nn(n,e)},zn=Tn,Xn=C,qn=[].slice,$n={},Zn=function(t,e,n){if(!(e in $n)){for(var i=[],r=0;r<e;r++)i[r]="a["+r+"]";$n[e]=Function("C,a","return new C("+i.join(",")+")")}return $n[e](t,n)},Jn=Function.bind||function(t){var e=zn(this),n=qn.call(arguments,1),i=function(){var r=n.concat(qn.call(arguments));return this instanceof i?Zn(e,r.length,r):e.apply(t,r)};return Xn(e.prototype)&&(i.prototype=e.prototype),i},Qn=En,ti=Tn,ei=Nt,ni=C,ii=Kn,ri=Jn,oi=r,si=E("Reflect","construct"),ai=oi((function(){function t(){}return!(si((function(){}),[],t)instanceof t)})),ci=!oi((function(){si((function(){}))})),li=ai||ci;function ui(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function hi(t,e){return(hi=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function fi(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&hi(t,e)}function di(t){return(di="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function pi(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function gi(t,e){if(e&&("object"===di(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return pi(t)}function vi(t){return(vi=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function yi(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}Qn({target:"Reflect",stat:!0,forced:li,sham:li},{construct:function(t,e){ti(t),ei(e);var n=arguments.length<3?t:ti(arguments[2]);if(ci&&!ai)return si(t,e,n);if(t==n){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var i=[null];return i.push.apply(i,e),new(ri.apply(t,i))}var r=n.prototype,o=ii(ni(r)?r:Object.prototype),s=Function.apply.call(t,o,e);return ni(s)?s:o}});var mi=p,ki=Array.isArray||function(t){return"Array"==mi(t)},bi=B,wi=function(t){if(bi(t))throw TypeError("Cannot convert a Symbol value to a string");return String(t)},Ci={},xi=w,_i=Re.f,Ei={}.toString,Ti="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Ci.f=function(t){return Ti&&"[object Window]"==Ei.call(t)?function(t){try{return _i(t)}catch(t){return Ti.slice()}}(t):_i(xi(t))};var Si={},Pi=ht;Si.f=Pi;var Ri=n,Oi=J,Ii=Si,Li=Dt.f,Ai=Dt.f,Di=J,Mi=ht("toStringTag"),Ni=function(t,e,n){t&&!Di(t=n?t:t.prototype,Mi)&&Ai(t,Mi,{configurable:!0,value:e})},Fi=Tn,ji=function(t,e,n){if(Fi(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}},Bi=C,Hi=ki,Ui=ht("species"),Vi=function(t){var e;return Hi(t)&&("function"!=typeof(e=t.constructor)||e!==Array&&!Hi(e.prototype)?Bi(e)&&null===(e=e[Ui])&&(e=void 0):e=void 0),void 0===e?Array:e},Gi=function(t,e){return new(Vi(t))(0===e?0:e)},Wi=ji,Yi=y,Ki=q,zi=Me,Xi=Gi,qi=[].push,$i=function(t){var e=1==t,n=2==t,i=3==t,r=4==t,o=6==t,s=7==t,a=5==t||o;return function(c,l,u,h){for(var f,d,p=Ki(c),g=Yi(p),v=Wi(l,u,3),y=zi(g.length),m=0,k=h||Xi,b=e?k(c,y):n||s?k(c,0):void 0;y>m;m++)if((a||m in g)&&(d=v(f=g[m],m,p),t))if(e)b[m]=d;else if(d)switch(t){case 3:return!0;case 5:return f;case 6:return m;case 2:qi.call(b,f)}else switch(t){case 4:return!1;case 7:qi.call(b,f)}return o?-1:i||r?r:b}},Zi={forEach:$i(0),map:$i(1),filter:$i(2),some:$i(3),every:$i(4),find:$i(5),findIndex:$i(6),filterReject:$i(7)},Ji=En,Qi=n,tr=E,er=o,nr=N,ir=r,rr=J,or=ki,sr=C,ar=B,cr=Nt,lr=q,ur=w,hr=kt,fr=wi,dr=f,pr=Kn,gr=Rn,vr=Re,yr=Ci,mr=Qe,kr=i,br=Dt,wr=s,Cr=Wt,xr=Yt.exports,_r=U.exports,Er=oe,Tr=et,Sr=ht,Pr=Si,Rr=function(t){var e=Ri.Symbol||(Ri.Symbol={});Oi(e,t)||Li(e,t,{value:Ii.f(t)})},Or=Ni,Ir=be,Lr=Zi.forEach,Ar=re("hidden"),Dr="Symbol",Mr=Sr("toPrimitive"),Nr=Ir.set,Fr=Ir.getterFor(Dr),jr=Object.prototype,Br=Qi.Symbol,Hr=tr("JSON","stringify"),Ur=kr.f,Vr=br.f,Gr=yr.f,Wr=wr.f,Yr=_r("symbols"),Kr=_r("op-symbols"),zr=_r("string-to-symbol-registry"),Xr=_r("symbol-to-string-registry"),qr=_r("wks"),$r=Qi.QObject,Zr=!$r||!$r.prototype||!$r.prototype.findChild,Jr=er&&ir((function(){return 7!=pr(Vr({},"a",{get:function(){return Vr(this,"a",{value:7}).a}})).a}))?function(t,e,n){var i=Ur(jr,e);i&&delete jr[e],Vr(t,e,n),i&&t!==jr&&Vr(jr,e,i)}:Vr,Qr=function(t,e){var n=Yr[t]=pr(Br.prototype);return Nr(n,{type:Dr,tag:t,description:e}),er||(n.description=e),n},to=function(t,e,n){t===jr&&to(Kr,e,n),cr(t);var i=hr(e);return cr(n),rr(Yr,i)?(n.enumerable?(rr(t,Ar)&&t[Ar][i]&&(t[Ar][i]=!1),n=pr(n,{enumerable:dr(0,!1)})):(rr(t,Ar)||Vr(t,Ar,dr(1,{})),t[Ar][i]=!0),Jr(t,i,n)):Vr(t,i,n)},eo=function(t,e){cr(t);var n=ur(e),i=gr(n).concat(oo(n));return Lr(i,(function(e){er&&!no.call(n,e)||to(t,e,n[e])})),t},no=function(t){var e=hr(t),n=Wr.call(this,e);return!(this===jr&&rr(Yr,e)&&!rr(Kr,e))&&(!(n||!rr(this,e)||!rr(Yr,e)||rr(this,Ar)&&this[Ar][e])||n)},io=function(t,e){var n=ur(t),i=hr(e);if(n!==jr||!rr(Yr,i)||rr(Kr,i)){var r=Ur(n,i);return!r||!rr(Yr,i)||rr(n,Ar)&&n[Ar][i]||(r.enumerable=!0),r}},ro=function(t){var e=Gr(ur(t)),n=[];return Lr(e,(function(t){rr(Yr,t)||rr(Er,t)||n.push(t)})),n},oo=function(t){var e=t===jr,n=Gr(e?Kr:ur(t)),i=[];return Lr(n,(function(t){!rr(Yr,t)||e&&!rr(jr,t)||i.push(Yr[t])})),i};(nr||(xr((Br=function(){if(this instanceof Br)throw TypeError("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?fr(arguments[0]):void 0,e=Tr(t),n=function(t){this===jr&&n.call(Kr,t),rr(this,Ar)&&rr(this[Ar],e)&&(this[Ar][e]=!1),Jr(this,e,dr(1,t))};return er&&Zr&&Jr(jr,e,{configurable:!0,set:n}),Qr(e,t)}).prototype,"toString",(function(){return Fr(this).tag})),xr(Br,"withoutSetter",(function(t){return Qr(Tr(t),t)})),wr.f=no,br.f=to,kr.f=io,vr.f=yr.f=ro,mr.f=oo,Pr.f=function(t){return Qr(Sr(t),t)},er&&(Vr(Br.prototype,"description",{configurable:!0,get:function(){return Fr(this).description}}),xr(jr,"propertyIsEnumerable",no,{unsafe:!0}))),Ji({global:!0,wrap:!0,forced:!nr,sham:!nr},{Symbol:Br}),Lr(gr(qr),(function(t){Rr(t)})),Ji({target:Dr,stat:!0,forced:!nr},{for:function(t){var e=fr(t);if(rr(zr,e))return zr[e];var n=Br(e);return zr[e]=n,Xr[n]=e,n},keyFor:function(t){if(!ar(t))throw TypeError(t+" is not a symbol");if(rr(Xr,t))return Xr[t]},useSetter:function(){Zr=!0},useSimple:function(){Zr=!1}}),Ji({target:"Object",stat:!0,forced:!nr,sham:!er},{create:function(t,e){return void 0===e?pr(t):eo(pr(t),e)},defineProperty:to,defineProperties:eo,getOwnPropertyDescriptor:io}),Ji({target:"Object",stat:!0,forced:!nr},{getOwnPropertyNames:ro,getOwnPropertySymbols:oo}),Ji({target:"Object",stat:!0,forced:ir((function(){mr.f(1)}))},{getOwnPropertySymbols:function(t){return mr.f(lr(t))}}),Hr)&&Ji({target:"JSON",stat:!0,forced:!nr||ir((function(){var t=Br();return"[null]"!=Hr([t])||"{}"!=Hr({a:t})||"{}"!=Hr(Object(t))}))},{stringify:function(t,e,n){for(var i,r=[t],o=1;arguments.length>o;)r.push(arguments[o++]);if(i=e,(sr(e)||void 0!==t)&&!ar(t))return or(e)||(e=function(t,e){if("function"==typeof i&&(e=i.call(this,t,e)),!ar(e))return e}),r[1]=e,Hr.apply(null,r)}});Br.prototype[Mr]||Cr(Br.prototype,Mr,Br.prototype.valueOf),Or(Br,Dr),Er[Ar]=!0;var so=En,ao=r,co=w,lo=i.f,uo=o,ho=ao((function(){lo(1)}));so({target:"Object",stat:!0,forced:!uo||ho,sham:!uo},{getOwnPropertyDescriptor:function(t,e){return lo(co(t),e)}});var fo=kt,po=Dt,go=f,vo=function(t,e,n){var i=fo(e);i in t?po.f(t,i,go(0,n)):t[i]=n},yo=on,mo=w,ko=i,bo=vo;function wo(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function Co(t,e,n){return e&&wo(t.prototype,e),n&&wo(t,n),t}function xo(t,e,n){return(xo="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var i=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=vi(t)););return t}(t,e);if(i){var r=Object.getOwnPropertyDescriptor(i,e);return r.get?r.get.call(n):r.value}})(t,e,n||t)}En({target:"Object",stat:!0,sham:!o},{getOwnPropertyDescriptors:function(t){for(var e,n,i=mo(t),r=ko.f,o=yo(i),s={},a=0;o.length>a;)void 0!==(n=r(i,e=o[a++]))&&bo(s,e,n);return s}});var _o=r,Eo=A,To=ht("species"),So=function(t){return Eo>=51||!_o((function(){var e=[];return(e.constructor={})[To]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},Po=Zi.map;En({target:"Array",proto:!0,forced:!So("map")},{map:function(t){return Po(this,t,arguments.length>1?arguments[1]:void 0)}});var Ro=En,Oo=r,Io=ki,Lo=C,Ao=q,Do=Me,Mo=vo,No=Gi,Fo=So,jo=A,Bo=ht("isConcatSpreadable"),Ho=9007199254740991,Uo="Maximum allowed index exceeded",Vo=jo>=51||!Oo((function(){var t=[];return t[Bo]=!1,t.concat()[0]!==t})),Go=Fo("concat"),Wo=function(t){if(!Lo(t))return!1;var e=t[Bo];return void 0!==e?!!e:Io(t)};Ro({target:"Array",proto:!0,forced:!Vo||!Go},{concat:function(t){var e,n,i,r,o,s=Ao(this),a=No(s,0),c=0;for(e=-1,i=arguments.length;e<i;e++)if(Wo(o=-1===e?s:arguments[e])){if(c+(r=Do(o.length))>Ho)throw TypeError(Uo);for(n=0;n<r;n++,c++)n in o&&Mo(a,c,o[n])}else{if(c>=Ho)throw TypeError(Uo);Mo(a,c++,o)}return a.length=c,a}});var Yo=q,Ko=Rn;En({target:"Object",stat:!0,forced:r((function(){Ko(1)}))},{keys:function(t){return Ko(Yo(t))}});var zo=En,Xo=C,qo=ki,$o=Be,Zo=Me,Jo=w,Qo=vo,ts=ht,es=So("slice"),ns=ts("species"),is=[].slice,rs=Math.max;zo({target:"Array",proto:!0,forced:!es},{slice:function(t,e){var n,i,r,o=Jo(this),s=Zo(o.length),a=$o(t,s),c=$o(void 0===e?s:e,s);if(qo(o)&&("function"!=typeof(n=o.constructor)||n!==Array&&!qo(n.prototype)?Xo(n)&&null===(n=n[ns])&&(n=void 0):n=void 0,n===Array||void 0===n))return is.call(o,a,c);for(i=new(void 0===n?Array:n)(rs(c-a,0)),r=0;a<c;a++,r++)a in o&&Qo(i,r,o[a]);return i.length=r,i}});var os={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},ss=r,as=function(t,e){var n=[][t];return!!n&&ss((function(){n.call(null,e||function(){throw 1},1)}))},cs=Zi.forEach,ls=n,us=os,hs=as("forEach")?[].forEach:function(t){return cs(this,t,arguments.length>1?arguments[1]:void 0)},fs=Wt;for(var ds in us){var ps=ls[ds],gs=ps&&ps.prototype;if(gs&&gs.forEach!==hs)try{fs(gs,"forEach",hs)}catch(t){gs.forEach=hs}}var vs=Nt,ys=function(){var t=vs(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e},ms={},ks=r,bs=n.RegExp;ms.UNSUPPORTED_Y=ks((function(){var t=bs("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),ms.BROKEN_CARET=ks((function(){var t=bs("^r","gy");return t.lastIndex=2,null!=t.exec("str")}));var ws=r,Cs=n.RegExp,xs=ws((function(){var t=Cs(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)})),_s=r,Es=n.RegExp,Ts=_s((function(){var t=Es("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),Ss=wi,Ps=ys,Rs=ms,Os=U.exports,Is=Kn,Ls=be.get,As=xs,Ds=Ts,Ms=RegExp.prototype.exec,Ns=Os("native-string-replace",String.prototype.replace),Fs=Ms,js=function(){var t=/a/,e=/b*/g;return Ms.call(t,"a"),Ms.call(e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),Bs=Rs.UNSUPPORTED_Y||Rs.BROKEN_CARET,Hs=void 0!==/()??/.exec("")[1];(js||Hs||Bs||As||Ds)&&(Fs=function(t){var e,n,i,r,o,s,a,c=this,l=Ls(c),u=Ss(t),h=l.raw;if(h)return h.lastIndex=c.lastIndex,e=Fs.call(h,u),c.lastIndex=h.lastIndex,e;var f=l.groups,d=Bs&&c.sticky,p=Ps.call(c),g=c.source,v=0,y=u;if(d&&(-1===(p=p.replace("y","")).indexOf("g")&&(p+="g"),y=u.slice(c.lastIndex),c.lastIndex>0&&(!c.multiline||c.multiline&&"\n"!==u.charAt(c.lastIndex-1))&&(g="(?: "+g+")",y=" "+y,v++),n=new RegExp("^(?:"+g+")",p)),Hs&&(n=new RegExp("^"+g+"$(?!\\s)",p)),js&&(i=c.lastIndex),r=Ms.call(d?n:c,y),d?r?(r.input=r.input.slice(v),r[0]=r[0].slice(v),r.index=c.lastIndex,c.lastIndex+=r[0].length):c.lastIndex=0:js&&r&&(c.lastIndex=c.global?r.index+r[0].length:i),Hs&&r&&r.length>1&&Ns.call(r[0],n,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(r[o]=void 0)})),r&&f)for(r.groups=s=Is(null),o=0;o<f.length;o++)s[(a=f[o])[0]]=r[a[1]];return r});var Us=Fs;En({target:"RegExp",proto:!0,forced:/./.exec!==Us},{exec:Us});var Vs=Yt.exports,Gs=Us,Ws=r,Ys=ht,Ks=Wt,zs=Ys("species"),Xs=RegExp.prototype,qs=function(t,e,n,i){var r=Ys(t),o=!Ws((function(){var e={};return e[r]=function(){return 7},7!=""[t](e)})),s=o&&!Ws((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[zs]=function(){return n},n.flags="",n[r]=/./[r]),n.exec=function(){return e=!0,null},n[r](""),!e}));if(!o||!s||n){var a=/./[r],c=e(r,""[t],(function(t,e,n,i,r){var s=e.exec;return s===Gs||s===Xs.exec?o&&!r?{done:!0,value:a.call(e,n,i)}:{done:!0,value:t.call(n,e,i)}:{done:!1}}));Vs(String.prototype,t,c[0]),Vs(Xs,r,c[1])}i&&Ks(Xs[r],"sham",!0)},$s=C,Zs=p,Js=ht("match"),Qs=function(t){var e;return $s(t)&&(void 0!==(e=t[Js])?!!e:"RegExp"==Zs(t))},ta=Nt,ea=Tn,na=ht("species"),ia=function(t,e){var n,i=ta(t).constructor;return void 0===i||null==(n=ta(i)[na])?e:ea(n)},ra=Le,oa=wi,sa=m,aa=function(t){return function(e,n){var i,r,o=oa(sa(e)),s=ra(n),a=o.length;return s<0||s>=a?t?"":void 0:(i=o.charCodeAt(s))<55296||i>56319||s+1===a||(r=o.charCodeAt(s+1))<56320||r>57343?t?o.charAt(s):i:t?o.slice(s,s+2):r-56320+(i-55296<<10)+65536}},ca={codeAt:aa(!1),charAt:aa(!0)},la=ca.charAt,ua=function(t,e,n){return e+(n?la(t,e).length:1)},ha=p,fa=Us,da=function(t,e){var n=t.exec;if("function"==typeof n){var i=n.call(t,e);if("object"!=typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==ha(t))throw TypeError("RegExp#exec called on incompatible receiver");return fa.call(t,e)},pa=qs,ga=Qs,va=Nt,ya=m,ma=ia,ka=ua,ba=Me,wa=wi,Ca=da,xa=Us,_a=r,Ea=ms.UNSUPPORTED_Y,Ta=[].push,Sa=Math.min,Pa=4294967295;pa("split",(function(t,e,n){var i;return i="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var i=wa(ya(this)),r=void 0===n?Pa:n>>>0;if(0===r)return[];if(void 0===t)return[i];if(!ga(t))return e.call(i,t,r);for(var o,s,a,c=[],l=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),u=0,h=new RegExp(t.source,l+"g");(o=xa.call(h,i))&&!((s=h.lastIndex)>u&&(c.push(i.slice(u,o.index)),o.length>1&&o.index<i.length&&Ta.apply(c,o.slice(1)),a=o[0].length,u=s,c.length>=r));)h.lastIndex===o.index&&h.lastIndex++;return u===i.length?!a&&h.test("")||c.push(""):c.push(i.slice(u)),c.length>r?c.slice(0,r):c}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:e.call(this,t,n)}:e,[function(e,n){var r=ya(this),o=null==e?void 0:e[t];return void 0!==o?o.call(e,r,n):i.call(wa(r),e,n)},function(t,r){var o=va(this),s=wa(t),a=n(i,o,s,r,i!==e);if(a.done)return a.value;var c=ma(o,RegExp),l=o.unicode,u=(o.ignoreCase?"i":"")+(o.multiline?"m":"")+(o.unicode?"u":"")+(Ea?"g":"y"),h=new c(Ea?"^(?:"+o.source+")":o,u),f=void 0===r?Pa:r>>>0;if(0===f)return[];if(0===s.length)return null===Ca(h,s)?[s]:[];for(var d=0,p=0,g=[];p<s.length;){h.lastIndex=Ea?0:p;var v,y=Ca(h,Ea?s.slice(p):s);if(null===y||(v=Sa(ba(h.lastIndex+(Ea?p:0)),s.length))===d)p=ka(s,p,l);else{if(g.push(s.slice(d,p)),g.length===f)return g;for(var m=1;m<=y.length-1;m++)if(g.push(y[m]),g.length===f)return g;p=d=v}}return g.push(s.slice(d)),g}]}),!!_a((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]})),Ea);var Ra=En,Oa=w,Ia=[].join,La=y!=Object,Aa=as("join",",");Ra({target:"Array",proto:!0,forced:La||!Aa},{join:function(t){return Ia.call(Oa(this),void 0===t?",":t)}});var Da=En,Ma=Be,Na=Le,Fa=Me,ja=q,Ba=Gi,Ha=vo,Ua=So("splice"),Va=Math.max,Ga=Math.min,Wa=9007199254740991,Ya="Maximum allowed length exceeded";Da({target:"Array",proto:!0,forced:!Ua},{splice:function(t,e){var n,i,r,o,s,a,c=ja(this),l=Fa(c.length),u=Ma(t,l),h=arguments.length;if(0===h?n=i=0:1===h?(n=0,i=l-u):(n=h-2,i=Ga(Va(Na(e),0),l-u)),l+n-i>Wa)throw TypeError(Ya);for(r=Ba(c,i),o=0;o<i;o++)(s=u+o)in c&&Ha(r,o,c[s]);if(r.length=i,n<i){for(o=u;o<l-i;o++)a=o+n,(s=o+i)in c?c[a]=c[s]:delete c[a];for(o=l;o>l-i+n;o--)delete c[o-1]}else if(n>i)for(o=l-i;o>u;o--)a=o+n-1,(s=o+i-1)in c?c[a]=c[s]:delete c[a];for(o=0;o<n;o++)c[o+u]=arguments[o+2];return c.length=l-i+n,r}});var Ka={};Ka[ht("toStringTag")]="z";var za="[object z]"===String(Ka),Xa=za,qa=p,$a=ht("toStringTag"),Za="Arguments"==qa(function(){return arguments}()),Ja=Xa?qa:function(t){var e,n,i;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),$a))?n:Za?qa(e):"Object"==(i=qa(e))&&"function"==typeof e.callee?"Arguments":i},Qa=Ja,tc=za?{}.toString:function(){return"[object "+Qa(this)+"]"},ec=za,nc=Yt.exports,ic=tc;ec||nc(Object.prototype,"toString",ic,{unsafe:!0});var rc=n.Promise,oc=Yt.exports,sc=C,ac=Nt,cc=function(t){if(!sc(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t},lc=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(n,[]),e=n instanceof Array}catch(t){}return function(n,i){return ac(n),cc(i),e?t.call(n,i):n.__proto__=i,n}}():void 0),uc=E,hc=Dt,fc=o,dc=ht("species"),pc=function(t){var e=uc(t),n=hc.f;fc&&e&&!e[dc]&&n(e,dc,{configurable:!0,get:function(){return this}})},gc={},vc=gc,yc=ht("iterator"),mc=Array.prototype,kc=Ja,bc=gc,wc=ht("iterator"),Cc=Nt,xc=Nt,_c=function(t){return void 0!==t&&(vc.Array===t||mc[yc]===t)},Ec=Me,Tc=ji,Sc=function(t){if(null!=t)return t[wc]||t["@@iterator"]||bc[kc(t)]},Pc=function(t){var e=t.return;if(void 0!==e)return Cc(e.call(t)).value},Rc=function(t,e){this.stopped=t,this.result=e},Oc=ht("iterator"),Ic=!1;try{var Lc=0,Ac={next:function(){return{done:!!Lc++}},return:function(){Ic=!0}};Ac[Oc]=function(){return this},Array.from(Ac,(function(){throw 2}))}catch(t){}var Dc,Mc,Nc,Fc,jc=/(?:ipad|iphone|ipod).*applewebkit/i.test(T),Bc="process"==p(n.process),Hc=n,Uc=r,Vc=ji,Gc=Dn,Wc=xt,Yc=jc,Kc=Bc,zc=Hc.setImmediate,Xc=Hc.clearImmediate,qc=Hc.process,$c=Hc.MessageChannel,Zc=Hc.Dispatch,Jc=0,Qc={},tl="onreadystatechange";try{Dc=Hc.location}catch(t){}var el=function(t){if(Qc.hasOwnProperty(t)){var e=Qc[t];delete Qc[t],e()}},nl=function(t){return function(){el(t)}},il=function(t){el(t.data)},rl=function(t){Hc.postMessage(String(t),Dc.protocol+"//"+Dc.host)};zc&&Xc||(zc=function(t){for(var e=[],n=arguments.length,i=1;n>i;)e.push(arguments[i++]);return Qc[++Jc]=function(){("function"==typeof t?t:Function(t)).apply(void 0,e)},Mc(Jc),Jc},Xc=function(t){delete Qc[t]},Kc?Mc=function(t){qc.nextTick(nl(t))}:Zc&&Zc.now?Mc=function(t){Zc.now(nl(t))}:$c&&!Yc?(Fc=(Nc=new $c).port2,Nc.port1.onmessage=il,Mc=Vc(Fc.postMessage,Fc,1)):Hc.addEventListener&&"function"==typeof postMessage&&!Hc.importScripts&&Dc&&"file:"!==Dc.protocol&&!Uc(rl)?(Mc=rl,Hc.addEventListener("message",il,!1)):Mc=tl in Wc("script")?function(t){Gc.appendChild(Wc("script")).onreadystatechange=function(){Gc.removeChild(this),el(t)}}:function(t){setTimeout(nl(t),0)});var ol,sl,al,cl,ll,ul,hl,fl,dl={set:zc,clear:Xc},pl=n,gl=/ipad|iphone|ipod/i.test(T)&&void 0!==pl.Pebble,vl=/web0s(?!.*chrome)/i.test(T),yl=n,ml=i.f,kl=dl.set,bl=jc,wl=gl,Cl=vl,xl=Bc,_l=yl.MutationObserver||yl.WebKitMutationObserver,El=yl.document,Tl=yl.process,Sl=yl.Promise,Pl=ml(yl,"queueMicrotask"),Rl=Pl&&Pl.value;Rl||(ol=function(){var t,e;for(xl&&(t=Tl.domain)&&t.exit();sl;){e=sl.fn,sl=sl.next;try{e()}catch(t){throw sl?cl():al=void 0,t}}al=void 0,t&&t.enter()},bl||xl||Cl||!_l||!El?!wl&&Sl&&Sl.resolve?((hl=Sl.resolve(void 0)).constructor=Sl,fl=hl.then,cl=function(){fl.call(hl,ol)}):cl=xl?function(){Tl.nextTick(ol)}:function(){kl.call(yl,ol)}:(ll=!0,ul=El.createTextNode(""),new _l(ol).observe(ul,{characterData:!0}),cl=function(){ul.data=ll=!ll}));var Ol=Rl||function(t){var e={fn:t,next:void 0};al&&(al.next=e),sl||(sl=e,cl()),al=e},Il={},Ll=Tn,Al=function(t){var e,n;this.promise=new t((function(t,i){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=i})),this.resolve=Ll(e),this.reject=Ll(n)};Il.f=function(t){return new Al(t)};var Dl,Ml,Nl,Fl,jl=Nt,Bl=C,Hl=Il,Ul=n,Vl="object"==typeof window,Gl=En,Wl=n,Yl=E,Kl=rc,zl=Yt.exports,Xl=function(t,e,n){for(var i in e)oc(t,i,e[i],n);return t},ql=lc,$l=Ni,Zl=pc,Jl=C,Ql=Tn,tu=function(t,e,n){if(!(t instanceof e))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return t},eu=Zt,nu=function(t,e,n){var i,r,o,s,a,c,l,u=n&&n.that,h=!(!n||!n.AS_ENTRIES),f=!(!n||!n.IS_ITERATOR),d=!(!n||!n.INTERRUPTED),p=Tc(e,u,1+h+d),g=function(t){return i&&Pc(i),new Rc(!0,t)},v=function(t){return h?(xc(t),d?p(t[0],t[1],g):p(t[0],t[1])):d?p(t,g):p(t)};if(f)i=t;else{if("function"!=typeof(r=Sc(t)))throw TypeError("Target is not iterable");if(_c(r)){for(o=0,s=Ec(t.length);s>o;o++)if((a=v(t[o]))&&a instanceof Rc)return a;return new Rc(!1)}i=r.call(t)}for(c=i.next;!(l=c.call(i)).done;){try{a=v(l.value)}catch(t){throw Pc(i),t}if("object"==typeof a&&a&&a instanceof Rc)return a}return new Rc(!1)},iu=function(t,e){if(!e&&!Ic)return!1;var n=!1;try{var i={};i[Oc]=function(){return{next:function(){return{done:n=!0}}}},t(i)}catch(t){}return n},ru=ia,ou=dl.set,su=Ol,au=function(t,e){if(jl(t),Bl(e)&&e.constructor===t)return e;var n=Hl.f(t);return(0,n.resolve)(e),n.promise},cu=function(t,e){var n=Ul.console;n&&n.error&&(1===arguments.length?n.error(t):n.error(t,e))},lu=Il,uu=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},hu=be,fu=yn,du=Vl,pu=Bc,gu=A,vu=ht("species"),yu="Promise",mu=hu.get,ku=hu.set,bu=hu.getterFor(yu),wu=Kl&&Kl.prototype,Cu=Kl,xu=wu,_u=Wl.TypeError,Eu=Wl.document,Tu=Wl.process,Su=lu.f,Pu=Su,Ru=!!(Eu&&Eu.createEvent&&Wl.dispatchEvent),Ou="function"==typeof PromiseRejectionEvent,Iu="unhandledrejection",Lu=!1,Au=fu(yu,(function(){var t=eu(Cu),e=t!==String(Cu);if(!e&&66===gu)return!0;if(gu>=51&&/native code/.test(t))return!1;var n=new Cu((function(t){t(1)})),i=function(t){t((function(){}),(function(){}))};return(n.constructor={})[vu]=i,!(Lu=n.then((function(){}))instanceof i)||!e&&du&&!Ou})),Du=Au||!iu((function(t){Cu.all(t).catch((function(){}))})),Mu=function(t){var e;return!(!Jl(t)||"function"!=typeof(e=t.then))&&e},Nu=function(t,e){if(!t.notified){t.notified=!0;var n=t.reactions;su((function(){for(var i=t.value,r=1==t.state,o=0;n.length>o;){var s,a,c,l=n[o++],u=r?l.ok:l.fail,h=l.resolve,f=l.reject,d=l.domain;try{u?(r||(2===t.rejection&&Hu(t),t.rejection=1),!0===u?s=i:(d&&d.enter(),s=u(i),d&&(d.exit(),c=!0)),s===l.promise?f(_u("Promise-chain cycle")):(a=Mu(s))?a.call(s,h,f):h(s)):f(i)}catch(t){d&&!c&&d.exit(),f(t)}}t.reactions=[],t.notified=!1,e&&!t.rejection&&ju(t)}))}},Fu=function(t,e,n){var i,r;Ru?((i=Eu.createEvent("Event")).promise=e,i.reason=n,i.initEvent(t,!1,!0),Wl.dispatchEvent(i)):i={promise:e,reason:n},!Ou&&(r=Wl["on"+t])?r(i):t===Iu&&cu("Unhandled promise rejection",n)},ju=function(t){ou.call(Wl,(function(){var e,n=t.facade,i=t.value;if(Bu(t)&&(e=uu((function(){pu?Tu.emit("unhandledRejection",i,n):Fu(Iu,n,i)})),t.rejection=pu||Bu(t)?2:1,e.error))throw e.value}))},Bu=function(t){return 1!==t.rejection&&!t.parent},Hu=function(t){ou.call(Wl,(function(){var e=t.facade;pu?Tu.emit("rejectionHandled",e):Fu("rejectionhandled",e,t.value)}))},Uu=function(t,e,n){return function(i){t(e,i,n)}},Vu=function(t,e,n){t.done||(t.done=!0,n&&(t=n),t.value=e,t.state=2,Nu(t,!0))},Gu=function(t,e,n){if(!t.done){t.done=!0,n&&(t=n);try{if(t.facade===e)throw _u("Promise can't be resolved itself");var i=Mu(e);i?su((function(){var n={done:!1};try{i.call(e,Uu(Gu,n,t),Uu(Vu,n,t))}catch(e){Vu(n,e,t)}})):(t.value=e,t.state=1,Nu(t,!1))}catch(e){Vu({done:!1},e,t)}}};if(Au&&(xu=(Cu=function(t){tu(this,Cu,yu),Ql(t),Dl.call(this);var e=mu(this);try{t(Uu(Gu,e),Uu(Vu,e))}catch(t){Vu(e,t)}}).prototype,(Dl=function(t){ku(this,{type:yu,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=Xl(xu,{then:function(t,e){var n=bu(this),i=Su(ru(this,Cu));return i.ok="function"!=typeof t||t,i.fail="function"==typeof e&&e,i.domain=pu?Tu.domain:void 0,n.parent=!0,n.reactions.push(i),0!=n.state&&Nu(n,!1),i.promise},catch:function(t){return this.then(void 0,t)}}),Ml=function(){var t=new Dl,e=mu(t);this.promise=t,this.resolve=Uu(Gu,e),this.reject=Uu(Vu,e)},lu.f=Su=function(t){return t===Cu||t===Nl?new Ml(t):Pu(t)},"function"==typeof Kl&&wu!==Object.prototype)){Fl=wu.then,Lu||(zl(wu,"then",(function(t,e){var n=this;return new Cu((function(t,e){Fl.call(n,t,e)})).then(t,e)}),{unsafe:!0}),zl(wu,"catch",xu.catch,{unsafe:!0}));try{delete wu.constructor}catch(t){}ql&&ql(wu,xu)}Gl({global:!0,wrap:!0,forced:Au},{Promise:Cu}),$l(Cu,yu,!1),Zl(yu),Nl=Yl(yu),Gl({target:yu,stat:!0,forced:Au},{reject:function(t){var e=Su(this);return e.reject.call(void 0,t),e.promise}}),Gl({target:yu,stat:!0,forced:Au},{resolve:function(t){return au(this,t)}}),Gl({target:yu,stat:!0,forced:Du},{all:function(t){var e=this,n=Su(e),i=n.resolve,r=n.reject,o=uu((function(){var n=Ql(e.resolve),o=[],s=0,a=1;nu(t,(function(t){var c=s++,l=!1;o.push(void 0),a++,n.call(e,t).then((function(t){l||(l=!0,o[c]=t,--a||i(o))}),r)})),--a||i(o)}));return o.error&&r(o.value),n.promise},race:function(t){var e=this,n=Su(e),i=n.reject,r=uu((function(){var r=Ql(e.resolve);nu(t,(function(t){r.call(e,t).then(n.resolve,i)}))}));return r.error&&i(r.value),n.promise}});var Wu=o,Yu=Dt.f,Ku=Function.prototype,zu=Ku.toString,Xu=/^\s*function ([^ (]*)/,qu="name";Wu&&!(qu in Ku)&&Yu(Ku,qu,{configurable:!0,get:function(){try{return zu.call(this).match(Xu)[1]}catch(t){return""}}});var $u=C,Zu=lc,Ju=function(t,e,n){var i,r;return Zu&&"function"==typeof(i=e.constructor)&&i!==n&&$u(r=i.prototype)&&r!==n.prototype&&Zu(t,r),t},Qu="\t\n\v\f\r                 \u2028\u2029\ufeff",th=m,eh=wi,nh="[\t\n\v\f\r                 \u2028\u2029\ufeff]",ih=RegExp("^"+nh+nh+"*"),rh=RegExp(nh+nh+"*$"),oh=function(t){return function(e){var n=eh(th(e));return 1&t&&(n=n.replace(ih,"")),2&t&&(n=n.replace(rh,"")),n}},sh={start:oh(1),end:oh(2),trim:oh(3)},ah=o,ch=n,lh=yn,uh=Yt.exports,hh=J,fh=p,dh=Ju,ph=B,gh=vt,vh=r,yh=Kn,mh=Re.f,kh=i.f,bh=Dt.f,wh=sh.trim,Ch="Number",xh=ch.Number,_h=xh.prototype,Eh=fh(yh(_h))==Ch,Th=function(t){if(ph(t))throw TypeError("Cannot convert a Symbol value to a number");var e,n,i,r,o,s,a,c,l=gh(t,"number");if("string"==typeof l&&l.length>2)if(43===(e=(l=wh(l)).charCodeAt(0))||45===e){if(88===(n=l.charCodeAt(2))||120===n)return NaN}else if(48===e){switch(l.charCodeAt(1)){case 66:case 98:i=2,r=49;break;case 79:case 111:i=8,r=55;break;default:return+l}for(s=(o=l.slice(2)).length,a=0;a<s;a++)if((c=o.charCodeAt(a))<48||c>r)return NaN;return parseInt(o,i)}return+l};if(lh(Ch,!xh(" 0o1")||!xh("0b1")||xh("+0x1"))){for(var Sh,Ph=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof Ph&&(Eh?vh((function(){_h.valueOf.call(n)})):fh(n)!=Ch)?dh(new xh(Th(e)),n,Ph):Th(e)},Rh=ah?mh(xh):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger,fromString,range".split(","),Oh=0;Rh.length>Oh;Oh++)hh(xh,Sh=Rh[Oh])&&!hh(Ph,Sh)&&bh(Ph,Sh,kh(xh,Sh));Ph.prototype=_h,_h.constructor=Ph,uh(ch,Ch,Ph)}var Ih=Zi.filter;En({target:"Array",proto:!0,forced:!So("filter")},{filter:function(t){return Ih(this,t,arguments.length>1?arguments[1]:void 0)}});var Lh=o,Ah=r,Dh=Rn,Mh=Qe,Nh=s,Fh=q,jh=y,Bh=Object.assign,Hh=Object.defineProperty,Uh=!Bh||Ah((function(){if(Lh&&1!==Bh({b:1},Bh(Hh({},"a",{enumerable:!0,get:function(){Hh(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol(),i="abcdefghijklmnopqrst";return t[n]=7,i.split("").forEach((function(t){e[t]=t})),7!=Bh({},t)[n]||Dh(Bh({},e)).join("")!=i}))?function(t,e){for(var n=Fh(t),i=arguments.length,r=1,o=Mh.f,s=Nh.f;i>r;)for(var a,c=jh(arguments[r++]),l=o?Dh(c).concat(o(c)):Dh(c),u=l.length,h=0;u>h;)a=l[h++],Lh&&!s.call(c,a)||(n[a]=c[a]);return n}:Bh;En({target:"Object",stat:!0,forced:Object.assign!==Uh},{assign:Uh});var Vh={exports:{}};!function(t){var e=Object.prototype.hasOwnProperty,n="~";function i(){}function r(t,e,n){this.fn=t,this.context=e,this.once=n||!1}function o(t,e,i,o,s){if("function"!=typeof i)throw new TypeError("The listener must be a function");var a=new r(i,o||t,s),c=n?n+e:e;return t._events[c]?t._events[c].fn?t._events[c]=[t._events[c],a]:t._events[c].push(a):(t._events[c]=a,t._eventsCount++),t}function s(t,e){0==--t._eventsCount?t._events=new i:delete t._events[e]}function a(){this._events=new i,this._eventsCount=0}Object.create&&(i.prototype=Object.create(null),(new i).__proto__||(n=!1)),a.prototype.eventNames=function(){var t,i,r=[];if(0===this._eventsCount)return r;for(i in t=this._events)e.call(t,i)&&r.push(n?i.slice(1):i);return Object.getOwnPropertySymbols?r.concat(Object.getOwnPropertySymbols(t)):r},a.prototype.listeners=function(t){var e=n?n+t:t,i=this._events[e];if(!i)return[];if(i.fn)return[i.fn];for(var r=0,o=i.length,s=new Array(o);r<o;r++)s[r]=i[r].fn;return s},a.prototype.listenerCount=function(t){var e=n?n+t:t,i=this._events[e];return i?i.fn?1:i.length:0},a.prototype.emit=function(t,e,i,r,o,s){var a=n?n+t:t;if(!this._events[a])return!1;var c,l,u=this._events[a],h=arguments.length;if(u.fn){switch(u.once&&this.removeListener(t,u.fn,void 0,!0),h){case 1:return u.fn.call(u.context),!0;case 2:return u.fn.call(u.context,e),!0;case 3:return u.fn.call(u.context,e,i),!0;case 4:return u.fn.call(u.context,e,i,r),!0;case 5:return u.fn.call(u.context,e,i,r,o),!0;case 6:return u.fn.call(u.context,e,i,r,o,s),!0}for(l=1,c=new Array(h-1);l<h;l++)c[l-1]=arguments[l];u.fn.apply(u.context,c)}else{var f,d=u.length;for(l=0;l<d;l++)switch(u[l].once&&this.removeListener(t,u[l].fn,void 0,!0),h){case 1:u[l].fn.call(u[l].context);break;case 2:u[l].fn.call(u[l].context,e);break;case 3:u[l].fn.call(u[l].context,e,i);break;case 4:u[l].fn.call(u[l].context,e,i,r);break;default:if(!c)for(f=1,c=new Array(h-1);f<h;f++)c[f-1]=arguments[f];u[l].fn.apply(u[l].context,c)}}return!0},a.prototype.on=function(t,e,n){return o(this,t,e,n,!1)},a.prototype.once=function(t,e,n){return o(this,t,e,n,!0)},a.prototype.removeListener=function(t,e,i,r){var o=n?n+t:t;if(!this._events[o])return this;if(!e)return s(this,o),this;var a=this._events[o];if(a.fn)a.fn!==e||r&&!a.once||i&&a.context!==i||s(this,o);else{for(var c=0,l=[],u=a.length;c<u;c++)(a[c].fn!==e||r&&!a[c].once||i&&a[c].context!==i)&&l.push(a[c]);l.length?this._events[o]=1===l.length?l[0]:l:s(this,o)}return this},a.prototype.removeAllListeners=function(t){var e;return t?(e=n?n+t:t,this._events[e]&&s(this,e)):(this._events=new i,this._eventsCount=0),this},a.prototype.off=a.prototype.removeListener,a.prototype.addListener=a.prototype.on,a.prefixed=n,a.EventEmitter=a,t.exports=a}(Vh);var Gh=Vh.exports;function Wh(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,i=new Array(e);n<e;n++)i[n]=t[n];return i}function Yh(t){return function(t){if(Array.isArray(t))return Wh(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return Wh(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Wh(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var Kh=Nt,zh=Me,Xh=wi,qh=m,$h=ua,Zh=da;qs("match",(function(t,e,n){return[function(e){var n=qh(this),i=null==e?void 0:e[t];return void 0!==i?i.call(e,n):new RegExp(e)[t](Xh(n))},function(t){var i=Kh(this),r=Xh(t),o=n(e,i,r);if(o.done)return o.value;if(!i.global)return Zh(i,r);var s=i.unicode;i.lastIndex=0;for(var a,c=[],l=0;null!==(a=Zh(i,r));){var u=Xh(a[0]);c[l]=u,""===u&&(i.lastIndex=$h(r,zh(i.lastIndex),s)),l++}return 0===l?null:c}]}));var Jh=o,Qh=n,tf=yn,ef=Ju,nf=Wt,rf=Dt.f,of=Re.f,sf=Qs,af=wi,cf=ys,lf=ms,uf=Yt.exports,hf=r,ff=J,df=be.enforce,pf=pc,gf=xs,vf=Ts,yf=ht("match"),mf=Qh.RegExp,kf=mf.prototype,bf=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,wf=/a/g,Cf=/a/g,xf=new mf(wf)!==wf,_f=lf.UNSUPPORTED_Y,Ef=Jh&&(!xf||_f||gf||vf||hf((function(){return Cf[yf]=!1,mf(wf)!=wf||mf(Cf)==Cf||"/a/i"!=mf(wf,"i")})));if(tf("RegExp",Ef)){for(var Tf=function(t,e){var n,i,r,o,s,a,c=this instanceof Tf,l=sf(t),u=void 0===e,h=[],f=t;if(!c&&l&&u&&t.constructor===Tf)return t;if((l||t instanceof Tf)&&(t=t.source,u&&(e="flags"in f?f.flags:cf.call(f))),t=void 0===t?"":af(t),e=void 0===e?"":af(e),f=t,gf&&"dotAll"in wf&&(i=!!e&&e.indexOf("s")>-1)&&(e=e.replace(/s/g,"")),n=e,_f&&"sticky"in wf&&(r=!!e&&e.indexOf("y")>-1)&&(e=e.replace(/y/g,"")),vf&&(t=(o=function(t){for(var e,n=t.length,i=0,r="",o=[],s={},a=!1,c=!1,l=0,u="";i<=n;i++){if("\\"===(e=t.charAt(i)))e+=t.charAt(++i);else if("]"===e)a=!1;else if(!a)switch(!0){case"["===e:a=!0;break;case"("===e:bf.test(t.slice(i+1))&&(i+=2,c=!0),r+=e,l++;continue;case">"===e&&c:if(""===u||ff(s,u))throw new SyntaxError("Invalid capture group name");s[u]=!0,o.push([u,l]),c=!1,u="";continue}c?u+=e:r+=e}return[r,o]}(t))[0],h=o[1]),s=ef(mf(t,e),c?this:kf,Tf),(i||r||h.length)&&(a=df(s),i&&(a.dotAll=!0,a.raw=Tf(function(t){for(var e,n=t.length,i=0,r="",o=!1;i<=n;i++)"\\"!==(e=t.charAt(i))?o||"."!==e?("["===e?o=!0:"]"===e&&(o=!1),r+=e):r+="[\\s\\S]":r+=e+t.charAt(++i);return r}(t),n)),r&&(a.sticky=!0),h.length&&(a.groups=h)),t!==f)try{nf(s,"source",""===f?"(?:)":f)}catch(t){}return s},Sf=function(t){t in Tf||rf(Tf,t,{configurable:!0,get:function(){return mf[t]},set:function(e){mf[t]=e}})},Pf=of(mf),Rf=0;Pf.length>Rf;)Sf(Pf[Rf++]);kf.constructor=Tf,Tf.prototype=kf,uf(Qh,"RegExp",Tf)}pf("RegExp");var Of=Yt.exports,If=Nt,Lf=wi,Af=r,Df=ys,Mf="toString",Nf=RegExp.prototype,Ff=Nf.toString,jf=Af((function(){return"/a/b"!=Ff.call({source:"a",flags:"b"})})),Bf=Ff.name!=Mf;(jf||Bf)&&Of(RegExp.prototype,Mf,(function(){var t=If(this),e=Lf(t.source),n=t.flags;return"/"+e+"/"+Lf(void 0===n&&t instanceof RegExp&&!("flags"in Nf)?Df.call(t):n)}),{unsafe:!0});var Hf=q,Uf=Math.floor,Vf="".replace,Gf=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,Wf=/\$([$&'`]|\d{1,2})/g,Yf=qs,Kf=r,zf=Nt,Xf=Le,qf=Me,$f=wi,Zf=m,Jf=ua,Qf=function(t,e,n,i,r,o){var s=n+t.length,a=i.length,c=Wf;return void 0!==r&&(r=Hf(r),c=Gf),Vf.call(o,c,(function(o,c){var l;switch(c.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,n);case"'":return e.slice(s);case"<":l=r[c.slice(1,-1)];break;default:var u=+c;if(0===u)return o;if(u>a){var h=Uf(u/10);return 0===h?o:h<=a?void 0===i[h-1]?c.charAt(1):i[h-1]+c.charAt(1):o}l=i[u-1]}return void 0===l?"":l}))},td=da,ed=ht("replace"),nd=Math.max,id=Math.min,rd="$0"==="a".replace(/./,"$0"),od=!!/./[ed]&&""===/./[ed]("a","$0");Yf("replace",(function(t,e,n){var i=od?"$":"$0";return[function(t,n){var i=Zf(this),r=null==t?void 0:t[ed];return void 0!==r?r.call(t,i,n):e.call($f(i),t,n)},function(t,r){var o=zf(this),s=$f(t);if("string"==typeof r&&-1===r.indexOf(i)&&-1===r.indexOf("$<")){var a=n(e,o,s,r);if(a.done)return a.value}var c="function"==typeof r;c||(r=$f(r));var l=o.global;if(l){var u=o.unicode;o.lastIndex=0}for(var h=[];;){var f=td(o,s);if(null===f)break;if(h.push(f),!l)break;""===$f(f[0])&&(o.lastIndex=Jf(s,qf(o.lastIndex),u))}for(var d,p="",g=0,v=0;v<h.length;v++){f=h[v];for(var y=$f(f[0]),m=nd(id(Xf(f.index),s.length),0),k=[],b=1;b<f.length;b++)k.push(void 0===(d=f[b])?d:String(d));var w=f.groups;if(c){var C=[y].concat(k,m,s);void 0!==w&&C.push(w);var x=$f(r.apply(void 0,C))}else x=Qf(y,s,m,k,w,r);m>=g&&(p+=s.slice(g,m)+x,g=m+y.length)}return p+s.slice(g)}]}),!!Kf((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!rd||od);var sd=r,ad=Qu,cd=sh.trim;En({target:"String",proto:!0,forced:function(t){return sd((function(){return!!ad[t]()||"​…᠎"!="​…᠎"[t]()||ad[t].name!==t}))}("trim")},{trim:function(){return cd(this)}});var ld=Math.floor,ud=function(t,e){var n=t.length,i=ld(n/2);return n<8?hd(t,e):fd(ud(t.slice(0,i),e),ud(t.slice(i),e),e)},hd=function(t,e){for(var n,i,r=t.length,o=1;o<r;){for(i=o,n=t[o];i&&e(t[i-1],n)>0;)t[i]=t[--i];i!==o++&&(t[i]=n)}return t},fd=function(t,e,n){for(var i=t.length,r=e.length,o=0,s=0,a=[];o<i||s<r;)o<i&&s<r?a.push(n(t[o],e[s])<=0?t[o++]:e[s++]):a.push(o<i?t[o++]:e[s++]);return a},dd=ud,pd=T.match(/firefox\/(\d+)/i),gd=!!pd&&+pd[1],vd=/MSIE|Trident/.test(T),yd=T.match(/AppleWebKit\/(\d+)\./),md=!!yd&&+yd[1],kd=En,bd=Tn,wd=q,Cd=Me,xd=wi,_d=r,Ed=dd,Td=as,Sd=gd,Pd=vd,Rd=A,Od=md,Id=[],Ld=Id.sort,Ad=_d((function(){Id.sort(void 0)})),Dd=_d((function(){Id.sort(null)})),Md=Td("sort"),Nd=!_d((function(){if(Rd)return Rd<70;if(!(Sd&&Sd>3)){if(Pd)return!0;if(Od)return Od<603;var t,e,n,i,r="";for(t=65;t<76;t++){switch(e=String.fromCharCode(t),t){case 66:case 69:case 70:case 72:n=3;break;case 68:case 71:n=4;break;default:n=2}for(i=0;i<47;i++)Id.push({k:e+i,v:n})}for(Id.sort((function(t,e){return e.v-t.v})),i=0;i<Id.length;i++)e=Id[i].k.charAt(0),r.charAt(r.length-1)!==e&&(r+=e);return"DGBEFHACIJK"!==r}}));kd({target:"Array",proto:!0,forced:Ad||!Dd||!Md||!Nd},{sort:function(t){void 0!==t&&bd(t);var e=wd(this);if(Nd)return void 0===t?Ld.call(e):Ld.call(e,t);var n,i,r=[],o=Cd(e.length);for(i=0;i<o;i++)i in e&&r.push(e[i]);for(n=(r=Ed(r,function(t){return function(e,n){return void 0===n?-1:void 0===e?1:void 0!==t?+t(e,n)||0:xd(e)>xd(n)?1:-1}}(t))).length,i=0;i<n;)e[i]=r[i++];for(;i<o;)delete e[i++];return e}});var Fd="undefined"!=typeof window&&window.location&&window.location.href.indexOf("xgplayerdebugger=1")>-1,jd={info:"color: #525252; background-color: #90ee90;",error:"color: #525252; background-color: red;",warn:"color: #525252; background-color: yellow; "},Bd="%c[xgplayer]",Hd={config:{debug:Fd?3:1},logInfo:function(t){for(var e,n=arguments.length,i=new Array(n>1?n-1:0),r=1;r<n;r++)i[r-1]=arguments[r];this.config.debug>=3&&(e=console).log.apply(e,[Bd,jd.info,t].concat(i))},logWarn:function(t){for(var e,n=arguments.length,i=new Array(n>1?n-1:0),r=1;r<n;r++)i[r-1]=arguments[r];this.config.debug>=1&&(e=console).warn.apply(e,[Bd,jd.warn,t].concat(i))},logError:function(t){var e;if(!(this.config.debug<1)){for(var n=this.config.debug>=2?"trace":"error",i=arguments.length,r=new Array(i>1?i-1:0),o=1;o<i;o++)r[o-1]=arguments[o];(e=console)[n].apply(e,[Bd,jd.error,t].concat(r))}}};var Ud=function(){function t(e){ui(this,t),this.bufferedList=e}return Co(t,[{key:"start",value:function(t){return this.bufferedList[t].start}},{key:"end",value:function(t){return this.bufferedList[t].end}},{key:"length",get:function(){return this.bufferedList.length}}]),t}(),Vd={};function Gd(t,e){for(var n=0,i=e.length;n<i;n++)if(t.indexOf(e[n])>-1)return!0;return!1}Vd.createDom=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"div",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"",r=document.createElement(t);return r.className=i,r.innerHTML=e,Object.keys(n).forEach((function(e){var i=e,o=n[e];"video"===t||"audio"===t||"live-video"===t?o&&r.setAttribute(i,o):r.setAttribute(i,o)})),r},Vd.createDomFromHtml=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";try{var i=document.createElement("div");i.innerHTML=t;var r=i.children;return i=null,r.length>0?(r=r[0],n&&Vd.addClass(r,n),e&&Object.keys(e).forEach((function(t){r.setAttribute(t,e[t])})),r):null}catch(t){return Hd.logError("util.createDomFromHtml",t),null}},Vd.hasClass=function(t,e){if(!t||!e)return!1;try{return Array.prototype.some.call(t.classList,(function(t){return t===e}))}catch(i){var n=t.className&&"object"===di(t.className)?t.getAttribute("class"):t.className;return n&&!!n.match(new RegExp("(\\s|^)"+e+"(\\s|$)"))}},Vd.addClass=function(t,e){if(t&&e)try{e.replace(/(^\s+|\s+$)/g,"").split(/\s+/g).forEach((function(e){e&&t.classList.add(e)}))}catch(n){Vd.hasClass(t,e)||(t.className&&"object"===di(t.className)?t.setAttribute("class",t.getAttribute("class")+" "+e):t.className+=" "+e)}},Vd.removeClass=function(t,e){if(t&&e)try{e.replace(/(^\s+|\s+$)/g,"").split(/\s+/g).forEach((function(e){e&&t.classList.remove(e)}))}catch(n){Vd.hasClass(t,e)&&e.split(/\s+/g).forEach((function(e){var n=new RegExp("(\\s|^)"+e+"(\\s|$)");t.className&&"object"===di(t.className)?t.setAttribute("class",t.getAttribute("class").replace(n," ")):t.className=t.className.replace(n," ")}))}},Vd.toggleClass=function(t,e){t&&e.split(/\s+/g).forEach((function(e){Vd.hasClass(t,e)?Vd.removeClass(t,e):Vd.addClass(t,e)}))},Vd.classNames=function(){for(var t=arguments,e=[],n=function(n){"String"===Vd.typeOf(t[n])?e.push(t[n]):"Object"===Vd.typeOf(t[n])&&Object.keys(t[n]).map((function(i){t[n][i]&&e.push(i)}))},i=0;i<arguments.length;i++)n(i);return e.join(" ")},Vd.findDom=function(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document,n=arguments.length>1?arguments[1]:void 0;try{t=e.querySelector(n)}catch(i){Hd.logError("util.findDom",i),0===n.indexOf("#")&&(t=e.getElementById(n.slice(1)))}return t},Vd.getCss=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,!1)[e]},Vd.padStart=function(t,e,n){for(var i=String(n),r=e>>0,o=Math.ceil(r/i.length),s=[],a=String(t);o--;)s.push(i);return s.join("").substring(0,r-a.length)+a},Vd.format=function(t){if(window.isNaN(t))return"";t=Math.round(t);var e=Vd.padStart(Math.floor(t/3600),2,0),n=Vd.padStart(Math.floor((t-3600*e)/60),2,0),i=Vd.padStart(Math.floor(t-3600*e-60*n),2,0);return("00"===e?[n,i]:[e,n,i]).join(":")},Vd.event=function(t){if(t.touches){var e=t.touches[0]||t.changedTouches[0];t.clientX=e.clientX||0,t.clientY=e.clientY||0,t.offsetX=e.pageX-e.target.offsetLeft,t.offsetY=e.pageY-e.target.offsetTop}t._target=t.target||t.srcElement},Vd.typeOf=function(t){return Object.prototype.toString.call(t).match(/([^\s.*]+)(?=]$)/g)[0]},Vd.deepCopy=function(t,e){if("Object"===Vd.typeOf(e)&&"Object"===Vd.typeOf(t))return Object.keys(e).forEach((function(n){"Object"!==Vd.typeOf(e[n])||e[n]instanceof Node?"Array"===Vd.typeOf(e[n])?t[n]="Array"===Vd.typeOf(t[n])?t[n].concat(e[n]):e[n]:t[n]=e[n]:void 0===t[n]||void 0===t[n]?t[n]=e[n]:Vd.deepCopy(t[n],e[n])})),t},Vd.deepMerge=function(t,e){return Object.keys(e).map((function(n){var i;"Array"===Vd.typeOf(e[n])&&"Array"===Vd.typeOf(t[n])?"Array"===Vd.typeOf(t[n])&&(i=t[n]).push.apply(i,Yh(e[n])):Vd.typeOf(t[n])!==Vd.typeOf(e[n])||null===t[n]||"Object"!==Vd.typeOf(t[n])||e[n]instanceof window.Node?null!==e[n]&&(t[n]=e[n]):Vd.deepMerge(t[n],e[n])})),t},Vd.getBgImage=function(t){var e=(t.currentStyle||window.getComputedStyle(t,null)).backgroundImage;if(!e||"none"===e)return"";var n=document.createElement("a");return n.href=e.replace(/url\("|"\)/g,""),n.href},Vd.copyDom=function(t){if(t&&1===t.nodeType){var e=document.createElement(t.tagName);return Array.prototype.forEach.call(t.attributes,(function(t){e.setAttribute(t.name,t.value)})),t.innerHTML&&(e.innerHTML=t.innerHTML),e}return""},Vd.setInterval=function(t,e,n,i){t._interval[e]||(t._interval[e]=setInterval(n.bind(t),i))},Vd.clearInterval=function(t,e){clearInterval(t._interval[e]),t._interval[e]=null},Vd.setTimeout=function(t,e,n){t._timers||(t._timers=[]);var i=setTimeout((function(){e(),Vd.clearTimeout(t,i)}),n);return t._timers.push(i),i},Vd.clearTimeout=function(t,e){var n=t._timers;if("Array"===Vd.typeOf(n)){for(var i=0;i<n.length;i++)if(n[i]===e){n.splice(i,1),clearTimeout(e);break}}else clearTimeout(e)},Vd.clearAllTimers=function(t){var e=t._timers;"Array"===Vd.typeOf(e)&&(e.map((function(t){clearTimeout(t)})),t._timerIds=[])},Vd.createImgBtn=function(t,e,n,i){var r,o,s,a=Vd.createDom("xg-".concat(t),"",{},"xgplayer-".concat(t,"-img"));(a.style.backgroundImage='url("'.concat(e,'")'),n&&i)&&(["px","rem","em","pt","dp","vw","vh","vm","%"].every((function(t){return!(n.indexOf(t)>-1&&i.indexOf(t)>-1)||(r=parseFloat(n.slice(0,n.indexOf(t)).trim()),o=parseFloat(i.slice(0,i.indexOf(t)).trim()),s=t,!1)})),a.style.width="".concat(r).concat(s),a.style.height="".concat(o).concat(s),a.style.backgroundSize="".concat(r).concat(s," ").concat(o).concat(s),a.style.margin="start"===t?"-".concat(o/2).concat(s," auto auto -").concat(r/2).concat(s):"auto 5px auto 5px");return a},Vd.Hex2RGBA=function(t,e){var n=[];if(/^\#[0-9A-F]{3}$/i.test(t)){var i="#";t.replace(/[0-9A-F]/gi,(function(t){i+=t+t})),t=i}return/^#[0-9A-F]{6}$/i.test(t)?(t.replace(/[0-9A-F]{2}/gi,(function(t){n.push(parseInt(t,16))})),"rgba(".concat(n.join(","),", ").concat(e,")")):"rgba(255, 255, 255, 0.1)"},Vd.getFullScreenEl=function(){return document.fullscreenElement||document.webkitFullscreenElement||document.mozFullScreenElement||document.msFullscreenElement},Vd.checkIsFunction=function(t){return t&&"function"==typeof t},Vd.checkIsObject=function(t){return null!==t&&"object"===di(t)},Vd.hide=function(t){t.style.display="none"},Vd.show=function(t,e){t.style.display=e||"block"},Vd.isUndefined=function(t){if(null==t)return!0},Vd.setStyleFromCsstext=function(t,e){e&&("String"===Vd.typeOf(e)?e.replace(/\s+/g,"").split(";").map((function(e){if(e){var n=e.split(":");n.length>1&&(t.style[n[0]]=n[1])}})):Object.keys(e).map((function(n){t.style[n]=e[n]})))},Vd.filterStyleFromText=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:["width","height","top","left","bottom","right","position","z-index","padding","margin","transform"],n=t.style.cssText;if(!n)return{};var i=n.replace(/\s+/g,"").split(";"),r={},o={};return i.map((function(t){if(t){var n=t.split(":");n.length>1&&(Gd(n[0],e)?r[n[0]]=n[1]:o[n[0]]=n[1])}})),t.setAttribute("style",""),Object.keys(o).map((function(e){t.style[e]=o[e]})),r},Vd.getStyleFromCsstext=function(t){var e=t.style.cssText;if(!e)return{};var n=e.replace(/\s+/g,"").split(";"),i={};return n.map((function(t){if(t){var e=t.split(":");e.length>1&&(i[e[0]]=e[1])}})),i},Vd.preloadImg=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},i=new window.Image;i.complete?e&&e():(i.onload=function(t){i=null,e&&e(t)},i.onerror=function(t){i=null,n&&n(t)}),i.src=t},Vd.stopPropagation=function(t){t&&(t.stopPropagation(),t.cancelable&&t.preventDefault())},Vd.scrollTop=function(){return window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0},Vd.scrollLeft=function(){return window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0},Vd.checkTouchSupport=function(){return"ontouchstart"in window},Vd.getBuffered2=function(t){for(var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:.5,n=[],i=0;i<t.length;i++)n.push({start:t.start(i)<.5?0:t.start(i),end:t.end(i)});n.sort((function(t,e){var n=t.start-e.start;return n||e.end-t.end}));var r=[];if(e)for(var o=0;o<n.length;o++){var s=r.length;if(s){var a=r[s-1].end;n[o].start-a<e?n[o].end>a&&(r[s-1].end=n[o].end):r.push(n[o])}else r.push(n[o])}else r=n;return new Ud(r)},Vd.getEventPos=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return{x:t.x/e,y:t.y/e,clientX:t.clientX/e,clientY:t.clientY/e,offsetX:t.offsetX/e,offsetY:t.offsetY/e,pageX:t.pageX/e,pageY:t.pageY/e}},Vd.requestAnimationFrame=function(t){var e=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame;if(e)return e(t)},Vd.cancelAnimationFrame=function(t){var e=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.cancelRequestAnimationFrame;e&&e(t)};var Wd=Vd,Yd=/(Android)\s([\d.]+)/,Kd=/(Version)\/([\d.]+)/,zd={get device(){return zd.os.isPc?"pc":"mobile"},get browser(){if("undefined"==typeof navigator)return"";var t=navigator.userAgent.toLowerCase(),e={ie:/rv:([\d.]+)\) like gecko/,firefox:/firefox\/([\d.]+)/,chrome:/chrome\/([\d.]+)/,opera:/opera.([\d.]+)/,safari:/version\/([\d.]+).*safari/};return[].concat(Object.keys(e).filter((function(n){return e[n].test(t)})))[0]},get os(){if("undefined"==typeof navigator)return{};var t=navigator.userAgent,e=/(?:Windows Phone)/.test(t),n=/(?:SymbianOS)/.test(t)||e,i=/(?:Android)/.test(t),r=/(?:Firefox)/.test(t),o=/(?:iPad|PlayBook)/.test(t)||i&&!/(?:Mobile)/.test(t)||r&&/(?:Tablet)/.test(t),s=/(?:iPhone)/.test(t)&&!o,a=!(s||i||n||o),c=/(?:iPad|PlayBook)/.test(t);return{isTablet:o,isPhone:s,isIpad:c,isIos:s||c,isAndroid:i,isPc:a,isSymbian:n,isWindowsPhone:e,isFireFox:r}},get osVersion(){var t=navigator.userAgent,e="",n=(e=/(?:iPhone)|(?:iPad|PlayBook)/.test(t)?Kd:Yd)?e.exec(t):[];if(n&&n.length>=3){var i=n[2].split(".");return i.length>0?parseInt(i[0]):0}return 0},get isWeixin(){if("undefined"==typeof navigator)return!1;return!!/(micromessenger)\/([\d.]+)/.exec(navigator.userAgent.toLocaleLowerCase())||void 0}},Xd=zd,qd="3.0.0-next.4",$d={1:"network",2:"network",3:"decoder",4:"format"},Zd=function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{errorType:"",errorCode:0,errorMessage:"",originError:"",ext:{}};ui(this,t);var i=e.i18n.ERROR_TYPES;if(e.video){var r=e.video.error||{},o=e.duration,s=e.currentTime,a=e.ended,c=e.src,l=e.video,u=l.readyState,h=l.networkState,f={playerVersion:qd,currentTime:s,duration:o,ended:a,readyState:u,networkState:h,src:c,errorType:n.errorType,errorCode:n.errorCode||r.code,message:n.errorMessage||r.message,mediaError:r,originError:n.originError?n.originError.stack:""};return n.ext&&Object.keys(n.ext).map((function(t){f[t]=n.ext[t]})),f}if(arguments.length>1){for(var d={playerVersion:qd,domain:document.domain},p=["errorType","currentTime","duration","networkState","readyState","src","currentSrc","ended","errd","errorCode","mediaError"],g=0;g<arguments.length;g++)d[p[g]]=arguments[g];return d.ex=(i[arguments[0]]||{}).msg,d}},Jd="play",Qd="playing",tp="ended",ep="pause",np="error",ip="seeking",rp="seeked",op="timeupdate",sp="waiting",ap="canplay",cp="durationchange",lp="volumechange",up="loadeddata",hp="ratechange",fp="progress",dp="loadstart",pp="emptied",gp="focus",vp="blur",yp="ready",mp="urlNull",kp="autoplay_started",bp="autoplay_was_prevented",wp="complete",Cp="replay",xp="destroy",_p="urlchange",Ep="fullscreen_change",Tp="cssFullscreen_change",Sp="mini_state_change",Pp="definition_change",Rp="after_definition_change",Op="video_resize",Ip="pip_change",Lp="rotate",Ap="screenShot",Dp="playnext",Mp="shortcut",Np="xglog",Fp="user_action",jp=Object.freeze({__proto__:null,PLAY:Jd,PLAYING:Qd,ENDED:tp,PAUSE:ep,ERROR:np,SEEKING:ip,SEEKED:rp,TIME_UPDATE:op,WAITING:sp,CANPLAY:ap,CANPLAY_THROUGH:"canplaythrough",DURATION_CHANGE:cp,VOLUME_CHANGE:lp,LOADED_DATA:up,RATE_CHANGE:hp,PROGRESS:fp,LOAD_START:dp,EMPTIED:pp,STALLED:"stalled",SUSPEND:"suspend",ABORT:"abort",BUFFER_CHANGE:"bufferedChange",PLAYER_FOCUS:gp,PLAYER_BLUR:vp,READY:yp,URL_NULL:mp,AUTOPLAY_STARTED:kp,AUTOPLAY_PREVENTED:bp,COMPLETE:wp,REPLAY:Cp,DESTROY:xp,URL_CHANGE:_p,FULLSCREEN_CHANGE:Ep,CSS_FULLSCREEN_CHANGE:Tp,MINI_STATE_CHANGE:Sp,DEFINITION_CHANGE:Pp,BEFORE_DEFINITION_CHANGE:"before_definition_change",AFTER_DEFINITION_CHANGE:Rp,SEI_PARSED:"SEI_PARSED",RETRY:"retry",VIDEO_RESIZE:Op,PIP_CHANGE:Ip,ROTATE:Lp,SCREEN_SHOT:Ap,PLAYNEXT:Dp,SHORTCUT:Mp,XGLOG:Np,USER_ACTION:Fp,USER_ACTION1:"user_action1"});function Bp(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Hp=["play","playing","pause","ended","error","seeking","seeked","timeupdate","waiting","canplay","canplaythrough","durationchange","volumechange","loadeddata","loadstart","emptied","ratechange","progress","stalled","suspend","abort"];function Up(t,e){this&&this.emit&&("error"===t?this.errorHandler(t):this.emit(t,e))}var Vp=function(t){fi(n,t);var e=Bp(n);function n(t){var i;ui(this,n),(i=e.call(this,t))._hasStart=!1,i._currentTime=0,i._duration=0,i.videoConfig=Object.assign({},{controls:!1,autoplay:t.autoplay,playsinline:t.playsinline,"x5-playsinline":t.playsinline,"webkit-playsinline":t.playsinline,"x5-video-player-fullscreen":t["x5-video-player-fullscreen"]||t.x5VideoPlayerFullscreen,"x5-video-orientation":t["x5-video-orientation"]||t.x5VideoOrientation,airplay:t.airplay,"webkit-airplay":t.airplay,tabindex:2,mediaType:t.mediaType||"video"},t.videoConfig,t.videoAttributes);var r=t["x5-video-player-type"]||t.x5VideoPlayerType;return Xd.isWeixin&&Xd.os.isAndroid&&r&&(i.videoConfig["x5-video-player-type"]=r,delete i.videoConfig.playsinline,delete i.videoConfig["webkit-playsinline"],delete i.videoConfig["x5-playsinline"]),t.loop&&(i.videoConfig.loop="loop"),i.video=Wd.createDom(i.videoConfig.mediaType,"",i.videoConfig,""),t.defaultPlaybackRate&&(i.video.defaultPlaybackRate=i.video.playbackRate=t.defaultPlaybackRate),"Number"===Wd.typeOf(t.volume)&&(i.volume=t.volume),t.autoplayMuted&&(i.video.muted=!0),t.autoplay&&(i.video.autoplay=!0),i._interval={},i.videoEventMiddleware={},i.attachVideoEvents(),i}return Co(n,[{key:"setEventsMiddleware",value:function(t){var e=this;Object.keys(t).map((function(n){e.videoEventMiddleware[n]=t[n]}))}},{key:"removeEventsMiddleware",value:function(t){var e=this;Object.keys(t).map((function(t){delete e.videoEventMiddleware[t]}))}},{key:"attachVideoEvents",value:function(t){var e=this;this.evHandlers||(this._evHandlers=Hp.map((function(t){return yi({},t,(i=e,r="on".concat((n=t).charAt(0).toUpperCase()).concat(n.slice(1)),i[r]&&"function"==typeof i[r]&&i.on(n,i[r]),function(t){var e=n;if(t.player=i,t.eventName=n,"timeupdate"===e&&(i._currentTime=i.video&&i.video.currentTime),"durationchange"===n&&(i._duration=i.video.duration),i.videoEventMiddleware[n]){var r=Up.bind(i);try{i.videoEventMiddleware[n].call(i,t,r)}catch(t){throw Up.call(i,e,t),t}}else Up.call(i,e,t)}));var n,i,r}))),t||(t=this.video),this._evHandlers.map((function(e){var n=Object.keys(e)[0];t.addEventListener(n,e[n],!1)}))}},{key:"detachVideoEvents",value:function(t){t||(t=this.video),this._evHandlers.map((function(e){var n=Object.keys(e)[0];t.removeEventListener(Object.keys(e)[0],e[n],!1)}))}},{key:"errorHandler",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(this.video&&(this.video.error||e)){var n=this.video.error||e,i=n.code?$d[n.code]:"other";this.emit(t,new Zd(this,{errorType:i,errorCode:n.code,errorMessage:n.message||""}))}}},{key:"destroy",value:function(){var t=this;for(var e in this.video&&(this.video.pause&&this.video.pause(),this.video.removeAttribute("src")),this._currentTime=0,this._duration=0,this.videoConfig=null,this._interval)clearInterval(this._interval[e]),this._interval[e]=null;this.emit(xp),this.detachVideoEvents(),this._evHandlers.map((function(e){var n=Object.keys(e)[0],i="on".concat(n.charAt(0).toUpperCase()).concat(n.slice(1));"function"==typeof t[i]&&t.off(n,t[i])})),this._evHandlers=null,this.video=null,this.videoEventMiddleware={},this.removeAllListeners()}},{key:"play",value:function(){return this.video?this.video.play():null}},{key:"pause",value:function(){this.video&&this.video.pause()}},{key:"canPlayType",value:function(t){return this.video.canPlayType(t)}},{key:"getBufferedRange",value:function(t){var e=[0,0];if(!this.video)return e;t||(t=this.video.buffered);var n=this.video.currentTime;if(t)for(var i=0,r=t.length;i<r&&(e[0]=t.start(i),e[1]=t.end(i),!(e[0]<=n&&n<=e[1]));i++);return e[0]-n<=0&&n-e[1]<=0?e:[0,0]}},{key:"autoplay",get:function(){return this.video.autoplay},set:function(t){this.video.autoplay=t}},{key:"buffered",get:function(){return this.video.buffered}},{key:"buffered2",get:function(){return Wd.getBuffered2(this.video.buffered)}},{key:"bufferedPoint",get:function(){var t=this.video.buffered,e={start:0,end:0};if(!t||0===t.length)return e;for(var n=0;n<t.length;n++)if((t.start(n)<=this.currentTime||t.start(n)<.1)&&t.end(n)>=this.currentTime)return{start:t.start(n),end:t.end(n)};return e}},{key:"crossOrigin",get:function(){return this.video.crossOrigin},set:function(t){this.video.crossOrigin=t}},{key:"currentSrc",get:function(){return this.video.currentSrc},set:function(t){this.video.currentSrc=t}},{key:"currentTime",get:function(){return void 0!==this.video.currentTime?this.video.currentTime:this._currentTime},set:function(t){this.video.currentTime=t}},{key:"defaultMuted",get:function(){return this.video.defaultMuted},set:function(t){this.video.defaultMuted=t}},{key:"duration",get:function(){return this._duration}},{key:"ended",get:function(){return this.video.ended}},{key:"error",get:function(){return this.video.error}},{key:"errorNote",get:function(){var t=this.video.error;if(!t)return"";return["MEDIA_ERR_ABORTED","MEDIA_ERR_NETWORK","MEDIA_ERR_DECODE","MEDIA_ERR_SRC_NOT_SUPPORTED"][t.code-1]}},{key:"loop",get:function(){return this.video.loop},set:function(t){this.video.loop=t}},{key:"muted",get:function(){return this.video.muted},set:function(t){this.video.muted=t}},{key:"networkState",get:function(){return this.video.networkState}},{key:"paused",get:function(){return this.video.paused}},{key:"playbackRate",get:function(){return this.video.playbackRate},set:function(t){this.video.defaultPlaybackRate=t,this.video.playbackRate=t}},{key:"played",get:function(){return this.video.played}},{key:"preload",get:function(){return this.video.preload},set:function(t){this.video.preload=t}},{key:"readyState",get:function(){return this.video.readyState}},{key:"seekable",get:function(){return this.video.seekable}},{key:"seeking",get:function(){return this.video.seeking}},{key:"src",get:function(){return this.video.src},set:function(t){this.emit(_p,t),this.emit(sp),this._currentTime=0,this._duration=0,/^blob/.test(this.video.currentSrc)||/^blob/.test(this.video.src)?this.onWaiting():this.video.src=t}},{key:"volume",get:function(){return this.video.volume},set:function(t){this.video.volume=t}},{key:"emit",value:function(t,e){for(var i,r=arguments.length,o=new Array(r>2?r-2:0),s=2;s<r;s++)o[s-2]=arguments[s];(i=xo(vi(n.prototype),"emit",this)).call.apply(i,[this,t,e].concat(o))}},{key:"on",value:function(t,e){for(var i,r=arguments.length,o=new Array(r>2?r-2:0),s=2;s<r;s++)o[s-2]=arguments[s];(i=xo(vi(n.prototype),"on",this)).call.apply(i,[this,t,e].concat(o))}},{key:"once",value:function(t,e){for(var i,r=arguments.length,o=new Array(r>2?r-2:0),s=2;s<r;s++)o[s-2]=arguments[s];(i=xo(vi(n.prototype),"once",this)).call.apply(i,[this,t,e].concat(o))}},{key:"off",value:function(t,e){for(var i,r=arguments.length,o=new Array(r>2?r-2:0),s=2;s<r;s++)o[s-2]=arguments[s];(i=xo(vi(n.prototype),"off",this)).call.apply(i,[this,t,e].concat(o))}},{key:"offAll",value:function(){xo(vi(n.prototype),"removeAllListeners",this).call(this)}}]),n}(Gh),Gp=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{name:"xgplayer",version:1,db:null,ojstore:{name:"xg-m4a",keypath:"vid"}};ui(this,t),this.indexedDB=window.indexedDB||window.webkitindexedDB,this.IDBKeyRange=window.IDBKeyRange||window.webkitIDBKeyRange,this.myDB=e}return Co(t,[{key:"openDB",value:function(t){var e=this,n=this,i=this.myDB.version||1,r=n.indexedDB.open(n.myDB.name,i);r.onerror=function(t){},r.onsuccess=function(i){e.myDB.db=i.target.result,t.call(n)},r.onupgradeneeded=function(t){var e=t.target.result;t.target.transaction,e.objectStoreNames.contains(n.myDB.ojstore.name)||e.createObjectStore(n.myDB.ojstore.name,{keyPath:n.myDB.ojstore.keypath})}}},{key:"deletedb",value:function(){this.indexedDB.deleteDatabase(this.myDB.name)}},{key:"closeDB",value:function(){this.myDB.db.close()}},{key:"addData",value:function(t,e){for(var n,i=this.myDB.db.transaction(t,"readwrite").objectStore(t),r=0;r<e.length;r++)(n=i.add(e[r])).onerror=function(){},n.onsuccess=function(){}}},{key:"putData",value:function(t,e){for(var n,i=this.myDB.db.transaction(t,"readwrite").objectStore(t),r=0;r<e.length;r++)(n=i.put(e[r])).onerror=function(){},n.onsuccess=function(){}}},{key:"getDataByKey",value:function(t,e,n){var i=this,r=this.myDB.db.transaction(t,"readwrite").objectStore(t).get(e);r.onerror=function(){n.call(i,null)},r.onsuccess=function(t){var e=t.target.result;n.call(i,e)}}},{key:"deleteData",value:function(t,e){this.myDB.db.transaction(t,"readwrite").objectStore(t).delete(e)}},{key:"clearData",value:function(t){this.myDB.db.transaction(t,"readwrite").objectStore(t).clear()}}]),t}(),Wp=["fullscreenchange","webkitfullscreenchange","mozfullscreenchange","MSFullscreenChange"],Yp=["requestFullscreen","webkitRequestFullscreen","mozRequestFullScreen","msRequestFullscreen"],Kp=["exitFullscreen","webkitExitFullscreen","mozCancelFullScreen","msExitFullscreen"],zp=Kn,Xp=Dt,qp=ht("unscopables"),$p=Array.prototype;null==$p[qp]&&Xp.f($p,qp,{configurable:!0,value:zp(null)});var Zp=function(t){$p[qp][t]=!0},Jp=En,Qp=Zi.find,tg=Zp,eg="find",ng=!0;function ig(t,e,n){for(var i=arguments.length,r=new Array(i>3?i-3:0),o=3;o<i;o++)r[o-3]=arguments[o];var s=e.call.apply(e,[t].concat(r));n&&"function"==typeof n&&(s&&s.then?s.then((function(){for(var e=arguments.length,i=new Array(e),r=0;r<e;r++)i[r]=arguments[r];n.call.apply(n,[t].concat(i))})):n.call.apply(n,[t].concat(r)))}function rg(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{pre:null,next:null};return this.__hooks||(this.__hooks={}),!this.__hooks[t]&&(this.__hooks[t]=null),function(){var i=arguments,r=this;if(n.pre)try{var o;(o=n.pre).call.apply(o,[this].concat(Array.prototype.slice.call(arguments)))}catch(e){throw e.message="[pluginName: ".concat(this.pluginName,":").concat(t,":pre error] >> ").concat(e.message),e}if(this.__hooks&&this.__hooks[t])try{var s,a=(s=this.__hooks[t]).call.apply(s,[this,this].concat(Array.prototype.slice.call(arguments)));a?a.then?a.then((function(t){!1!==t&&ig.apply(void 0,[r,e,n.next].concat(Yh(i)))})).catch((function(t){throw t})):ig.apply(void 0,[this,e,n.next].concat(Array.prototype.slice.call(arguments))):void 0===a&&ig.apply(void 0,[this,e,n.next].concat(Array.prototype.slice.call(arguments)))}catch(e){throw e.message="[pluginName: ".concat(this.pluginName,":").concat(t,"] >> ").concat(e.message),e}else ig.apply(void 0,[this,e,n.next].concat(Array.prototype.slice.call(arguments)))}.bind(this)}function og(t,e){var n=this.__hooks;if(n)return n.hasOwnProperty(t)?(n&&(n[t]=e),!0):(console.warn("has no supported hook which name [".concat(t,"]")),!1)}function sg(t){if(this.plugins&&this.plugins[t.toLowerCase()]){for(var e=this.plugins[t.toLowerCase()],n=arguments.length,i=new Array(n>1?n-1:0),r=1;r<n;r++)i[r-1]=arguments[r];return e.useHooks&&e.useHooks.apply(e,i)}}function ag(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];t.__hooks={},e&&e.map((function(e){t.__hooks[e]=null})),Object.defineProperty(t,"hooks",{get:function(){return t.__hooks&&Object.keys(t.__hooks).map((function(e){if(t.__hooks[e])return e}))}})}function cg(t){t.__hooks=null}function lg(t,e,n){for(var i=arguments.length,r=new Array(i>3?i-3:0),o=3;o<i;o++)r[o-3]=arguments[o];if(!t.__hooks||!t.__hooks[e])return n.call.apply(n,[t,t].concat(r));var s,a=(s=t.__hooks[e]).call.apply(s,[t,t].concat(r));if(a&&a.then)a.then((function(e){return!1===e?null:n.call.apply(n,[t,t].concat(r))})).catch((function(t){console.warn("[runHooks]".concat(e," reject"),t.message)}));else if(!1!==a)return n.call.apply(n,[t,t].concat(r))}function ug(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,i)}return n}function hg(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?ug(Object(n),!0).forEach((function(e){yi(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ug(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function fg(t,e){Hd.logError("[".concat(t,"] event or callback cant be undefined or null when call ").concat(e))}eg in[]&&Array(1).find((function(){ng=!1})),Jp({target:"Array",proto:!0,forced:ng},{find:function(t){return Qp(this,t,arguments.length>1?arguments[1]:void 0)}}),tg(eg);var dg=function(){function t(e){ui(this,t),Wd.checkIsFunction(this.beforeCreate)&&this.beforeCreate(e),ag(this),this.__args=e,this.__events={},this.config=e.config||{},this.player=null,this.playerConfig={},this.pluginName="",this.__init(e)}return Co(t,[{key:"beforeCreate",value:function(t){}},{key:"afterCreate",value:function(){}},{key:"beforePlayerInit",value:function(){}},{key:"onPluginsReady",value:function(){}},{key:"afterPlayerInit",value:function(){}},{key:"destroy",value:function(){}},{key:"__init",value:function(t){this.player=t.player,this.playerConfig=t.player&&t.player.config,this.pluginName=t.pluginName?t.pluginName.toLowerCase():this.constructor.pluginName.toLowerCase(),this.logger=t.player&&t.player.logger}},{key:"updateLang",value:function(t){}},{key:"lang",get:function(){return this.player.lang}},{key:"i18n",get:function(){return this.player.i18n}},{key:"i18nKeys",get:function(){return this.player.i18nKeys}},{key:"on",value:function(t,e){var n=this;t&&e&&this.player?"string"==typeof t?(this.__events[t]=e,this.player.on(t,e)):Array.isArray(t)&&t.forEach((function(t){n.__events[t]=e,n.player.on(t,e)})):fg(this.pluginName,"plugin.on(event, callback)")}},{key:"once",value:function(t,e){t&&e&&this.player?this.player.once(t,e):fg(this.pluginName,"plugin.once(event, callback)")}},{key:"off",value:function(t,e){var n=this;t&&e&&this.player?"string"==typeof t?(delete this.__events[t],this.player.off(t,e)):Array.isArray(t)&&t.forEach((function(i){delete n.__events[t],n.player.off(i,e)})):fg(this.pluginName,"plugin.off(event, callback)")}},{key:"offAll",value:function(){var t=this;Object.keys(this.__events).map((function(e){t.__events[e]&&t.off(e,t.__events[e]),e&&delete t.__events[e]})),this.__events={}}},{key:"emit",value:function(t,e){this.player&&this.player.emit(t,e)}},{key:"emitUserAction",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(e&&t){var r="String"===Wd.typeOf(t)?t:t.type||"";t=new Event(r),"Array"!==Wd.typeOf(n)&&(n=[n]),this.emit(Fp,hg({action:e,pluginName:this.pluginName,currentTime:this.player.currentTime,duration:this.player.duration,ended:this.player.ended,event:t,props:n},i))}}},{key:"hook",value:function(t,e){return rg.call.apply(rg,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"useHooks",value:function(t,e){for(var n=arguments.length,i=new Array(n>2?n-2:0),r=2;r<n;r++)i[r-2]=arguments[r];return og.call.apply(og,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"registerPlugin",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";if(this.player)return n&&(e.pluginName=n),this.player.registerPlugin({plugin:t,options:e})}},{key:"getPlugin",value:function(t){return this.player?this.player.getPlugin(t):null}},{key:"__destroy",value:function(){var t=this,e=this.player,n=this.pluginName;this.offAll(),Wd.clearAllTimers(this),Wd.checkIsFunction(this.destroy)&&this.destroy(),["player","playerConfig","pluginName","logger","__args","__hooks"].map((function(e){t[e]=null})),e.unRegisterPlugin(n),cg(this)}}],[{key:"defineGetterOrSetter",value:function(t,e){for(var n in e)Object.defineProperty(t,n,e[n])}},{key:"defaultConfig",get:function(){return{}}},{key:"pluginName",get:function(){return"pluginName"}}]),t}();if("undefined"!=typeof Element&&!Element.prototype.matches){var pg=Element.prototype;pg.matches=pg.matchesSelector||pg.mozMatchesSelector||pg.msMatchesSelector||pg.oMatchesSelector||pg.webkitMatchesSelector}var gg=function(t,e){for(;t&&9!==t.nodeType;){if("function"==typeof t.matches&&t.matches(e))return t;t=t.parentNode}};function vg(t,e,n,i,r){var o=yg.apply(this,arguments);return t.addEventListener(n,o,r),{destroy:function(){t.removeEventListener(n,o,r)}}}function yg(t,e,n,i){return function(n){n.delegateTarget=gg(n.target,e),n.delegateTarget&&i.call(t,n)}}var mg=function(t,e,n,i,r){return"function"==typeof t.addEventListener?vg.apply(null,arguments):"function"==typeof n?vg.bind(null,document).apply(null,arguments):("string"==typeof t&&(t=document.querySelectorAll(t)),Array.prototype.map.call(t,(function(t){return vg(t,e,n,i,r)})))};function kg(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var bg={CONTROLS:"controls",ROOT:"root"},wg={ROOT:"root",ROOT_LEFT:"rootLeft",ROOT_RIGHT:"rootRight",ROOT_TOP:"rootTop",CONTROLS_LEFT:"controlsLeft",CONTROLS_RIGTH:"controlsRight",CONTROLS_RIGHT:"controlsRight",CONTROLS_CENTER:"controlsCenter",CONTROLS:"controls"};function Cg(t){return!!t&&(t.indexOf&&/^http/.test(t))}function xg(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:"",o=null;if(t instanceof window.Element)return Wd.addClass(t,n),Object.keys(i).map((function(e){t.setAttribute(e,i[e])})),t;if(Cg(t)||Cg(t.url))return i.src=Cg(t)?t:t.url||"",o=Wd.createDom(t.tag||"img","",i,"xg-img ".concat(n));if("function"==typeof t)try{return(o=t())instanceof window.Element?(Wd.addClass(o,n),Object.keys(i).map((function(t){o.setAttribute(t,i[t])})),o):(Hd.logWarn("warn>>icons.".concat(e," in config of plugin named [").concat(r,"] is a function mast return an Element Object")),null)}catch(t){return Hd.logError("Plugin named [".concat(r,"]:createIcon"),t),null}return"string"==typeof t?Wd.createDomFromHtml(t,i,n):(Hd.logWarn("warn>>icons.".concat(e," in config of plugin named [").concat(r,"] is invalid")),null)}function _g(t,e){var n=e.config.icons||e.playerConfig.icons;Object.keys(t).map((function(i){var r=t[i],o=r&&r.class?r.class:"",s=r&&r.attr?r.attr:{},a=null;n&&n[i]&&(o=function(t,e){return"object"===di(t)&&t.class&&"string"==typeof t.class?"".concat(e," ").concat(t.class):e}(n[i],o),s=function(t,e){return"object"===di(t)&&t.attr&&"object"===di(t.attr)&&Object.keys(t.attr).map((function(n){e[n]=t.attr[n]})),e}(n[i],s),a=xg(n[i],i,o,s,e.pluginName)),!a&&r&&(a=xg(r.icon?r.icon:r,s,o,{},e.pluginName)),e.icons[i]=a}))}var Eg,Tg,Sg,Pg=function(t){fi(n,t);var e=kg(n);function n(){var t,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return ui(this,n),(t=e.call(this,i)).__delegates=[],t}return Co(n,[{key:"__init",value:function(t){if(xo(vi(n.prototype),"__init",this).call(this,t),t.root){var e=t.root,i=null;this.icons={},this.root=null,this.parent=null,_g(this.registerIcons()||{},this),this.langText={};var r,o,s=this.registerLanguageTexts()||{};r=s,o=this,Object.keys(r).map((function(t){Object.defineProperty(o.langText,t,{get:function(){var e=o.lang;return r[t][e]||r[t].zh}})}));var a="";try{a=this.render()}catch(t){throw Hd.logError("Plugin:".concat(this.pluginName,":render"),t),new Error("Plugin:".concat(this.pluginName,":render:").concat(t.message))}if(a)(i=n.insert(a,e,t.index)).setAttribute("data-index",t.index);else{if(!t.tag)return;(i=Wd.createDom(t.tag,"",t.attr,t.name)).setAttribute("data-index",t.index),e.appendChild(i)}this.root=i,this.parent=e;var c=this.config.attr||{},l=this.config.style||{};this.setAttr(c),this.setStyle(l),this.config.index&&this.root.setAttribute("data-index",this.config.index),this.__registerChildren()}}},{key:"__registerChildren",value:function(){var t=this;if(this.root){this._children=[];var e=this.children();e&&"object"===di(e)&&Object.keys(e).length>0&&Object.keys(e).map((function(n){var i,r,o=n,s=e[o],a={root:t.root};"function"==typeof s?(i=t.config[o]||{},r=s):"object"===di(s)&&"function"==typeof s.plugin&&(i=s.options?Wd.deepCopy(t.config[o]||{},s.options):t.config[o]||{},r=s.plugin),a.config=i,void 0!==i.index&&(a.index=i.index),i.root&&(a.root=i.root),t.registerPlugin(r,a,o)}))}}},{key:"updateLang",value:function(t){t||(t=this.lang);var e=this.root,n=this.i18n,i=this.langText;e&&function t(e,n){for(var i=0;i<e.children.length;i++)e.children[i].children.length>0?t(e.children[i],n):n(e.children[i])}(e,(function(e){var r=e.getAttribute&&e.getAttribute("lang-key");if(r){var o=n[r.toUpperCase()]||i[r];o&&(e.innerHTML="function"==typeof o?o(t):o)}}))}},{key:"lang",get:function(){return this.player.lang}},{key:"changeLangTextKey",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=this.i18n||{},i=this.langText;t.setAttribute&&t.setAttribute("lang-key",e);var r=n[e.toUpperCase()]||i[e];r&&(t.innerHTML=r)}},{key:"plugins",value:function(){return this._children}},{key:"children",value:function(){return{}}},{key:"registerPlugin",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";e.root=e.root||this.root;var r=xo(vi(n.prototype),"registerPlugin",this).call(this,t,e,i);return this._children.push(r),r}},{key:"registerIcons",value:function(){return{}}},{key:"registerLanguageTexts",value:function(){return{}}},{key:"find",value:function(t){if(this.root)return this.root.querySelector(t)}},{key:"bind",value:function(t,e,i){var r=this;if(arguments.length<3&&"function"==typeof e)Array.isArray(t)?t.forEach((function(t){r.bindEL(t,e)})):this.bindEL(t,e);else{var o=n.delegate.call(this,this.root,t,e,i);this.__delegates=this.__delegates.concat(o)}}},{key:"unbind",value:function(t,e){var n=this;if(arguments.length<3&&"function"==typeof e)Array.isArray(t)?t.forEach((function(t){n.unbindEL(t,e)})):this.unbindEL(t,e);else for(var i="".concat(t,"_").concat(e),r=0;r<this.__delegates.length;r++)if(this.__delegates[r].key===i){this.__delegates[r].destroy(),this.__delegates.splice(r,1);break}}},{key:"setStyle",value:function(t,e){var n=this;if(this.root)return"String"===Wd.typeOf(t)?this.root.style[t]=e:void("Object"===Wd.typeOf(t)&&Object.keys(t).map((function(e){n.root.style[e]=t[e]})))}},{key:"setAttr",value:function(t,e){var n=this;if(this.root)return"String"===Wd.typeOf(t)?this.root.setAttribute(t,e):void("Object"===Wd.typeOf(t)&&Object.keys(t).map((function(e){n.root.setAttribute(e,t[e])})))}},{key:"setHtml",value:function(t,e){this.root&&(this.root.innerHTML=t,"function"==typeof e&&e())}},{key:"bindEL",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];this.root&&"on".concat(t)in this.root&&"function"==typeof e&&this.root.addEventListener(t,e,n)}},{key:"unbindEL",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];this.root&&"on".concat(t)in this.root&&"function"==typeof e&&this.root.removeEventListener(t,e,n)}},{key:"show",value:function(t){if(this.root)return this.root.style.display=void 0!==t?t:"block","none"===window.getComputedStyle(this.root,null).getPropertyValue("display")?this.root.style.display="block":void 0}},{key:"hide",value:function(){this.root&&(this.root.style.display="none")}},{key:"appendChild",value:function(t,e){if(arguments.length<2&&arguments[0]instanceof window.Element)return this.root.appendChild(arguments[0]);if(!(e&&e instanceof window.Element))return null;try{return"string"==typeof t?this.find(t).appendChild(e):t.appendChild(e)}catch(t){return Hd.logError("Plugin:appendChild",t),null}}},{key:"render",value:function(){return""}},{key:"destroy",value:function(){}},{key:"__destroy",value:function(){var t=this,e=this.player;this.__delegates.map((function(t){t.destroy()})),this.__delegates=[],this._children instanceof Array&&(this._children.map((function(t){e.unRegisterPlugin(t.pluginName)})),this._children=null),this.root&&(this.root.hasOwnProperty("remove")?this.root.remove():this.root.parentNode&&this.root.parentNode.removeChild(this.root)),xo(vi(n.prototype),"__destroy",this).call(this),this.icons={},["root","parent"].map((function(e){t[e]=null}))}}],[{key:"insert",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,i=e.children.length,r=Number(n),o=t instanceof window.Node;if(i){for(var s=0,a=null,c="";s<i;s++){a=e.children[s];var l=Number(a.getAttribute("data-index"));if(l>=r){c="beforebegin";break}l<r&&(c="afterend")}return o?"afterend"===c?e.appendChild(t):e.insertBefore(t,a):a.insertAdjacentHTML(c,t),"afterend"===c?e.children[e.children.length-1]:e.children[s]}return o?e.appendChild(t):e.insertAdjacentHTML("beforeend",t),e.children[e.children.length-1]}},{key:"defaultConfig",get:function(){return{}}},{key:"delegate",value:function(t,e,n,i){var r=arguments.length>4&&void 0!==arguments[4]&&arguments[4],o=[];if(t instanceof window.Node&&"function"==typeof i)if(Array.isArray(n))n.forEach((function(n){var s=mg(t,e,n,i,r);s.key="".concat(e,"_").concat(n),o.push(s)}));else{var s=mg(t,e,n,i,r);s.key="".concat(e,"_").concat(n),o.push(s)}return o}},{key:"ROOT_TYPES",get:function(){return bg}},{key:"POSITIONS",get:function(){return wg}}]),n}(dg),Rg=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),Og=J,Ig=q,Lg=Rg,Ag=re("IE_PROTO"),Dg=Object.prototype,Mg=Lg?Object.getPrototypeOf:function(t){return t=Ig(t),Og(t,Ag)?t[Ag]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?Dg:null},Ng=r,Fg=Mg,jg=Wt,Bg=J,Hg=ht("iterator"),Ug=!1;[].keys&&("next"in(Sg=[].keys())?(Tg=Fg(Fg(Sg)))!==Object.prototype&&(Eg=Tg):Ug=!0),(null==Eg||Ng((function(){var t={};return Eg[Hg].call(t)!==t})))&&(Eg={}),Bg(Eg,Hg)||jg(Eg,Hg,(function(){return this}));var Vg={IteratorPrototype:Eg,BUGGY_SAFARI_ITERATORS:Ug},Gg=Vg.IteratorPrototype,Wg=Kn,Yg=f,Kg=Ni,zg=gc,Xg=function(){return this},qg=En,$g=function(t,e,n){var i=e+" Iterator";return t.prototype=Wg(Gg,{next:Yg(1,n)}),Kg(t,i,!1),zg[i]=Xg,t},Zg=Mg,Jg=lc,Qg=Ni,tv=Wt,ev=Yt.exports,nv=gc,iv=Vg.IteratorPrototype,rv=Vg.BUGGY_SAFARI_ITERATORS,ov=ht("iterator"),sv="keys",av="values",cv="entries",lv=function(){return this},uv=function(t,e,n,i,r,o,s){$g(n,e,i);var a,c,l,u=function(t){if(t===r&&g)return g;if(!rv&&t in d)return d[t];switch(t){case sv:case av:case cv:return function(){return new n(this,t)}}return function(){return new n(this)}},h=e+" Iterator",f=!1,d=t.prototype,p=d[ov]||d["@@iterator"]||r&&d[r],g=!rv&&p||u(r),v="Array"==e&&d.entries||p;if(v&&(a=Zg(v.call(new t)),iv!==Object.prototype&&a.next&&(Zg(a)!==iv&&(Jg?Jg(a,iv):"function"!=typeof a[ov]&&tv(a,ov,lv)),Qg(a,h,!0))),r==av&&p&&p.name!==av&&(f=!0,g=function(){return p.call(this)}),d[ov]!==g&&tv(d,ov,g),nv[e]=g,r)if(c={values:u(av),keys:o?g:u(sv),entries:u(cv)},s)for(l in c)(rv||f||!(l in d))&&ev(d,l,c[l]);else qg({target:e,proto:!0,forced:rv||f},c);return c},hv=w,fv=Zp,dv=gc,pv=be,gv=uv,vv="Array Iterator",yv=pv.set,mv=pv.getterFor(vv),kv=gv(Array,"Array",(function(t,e){yv(this,{type:vv,target:hv(t),index:0,kind:e})}),(function(){var t=mv(this),e=t.target,n=t.kind,i=t.index++;return!e||i>=e.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==n?{value:i,done:!1}:"values"==n?{value:e[i],done:!1}:{value:[i,e[i]],done:!1}}),"values");dv.Arguments=dv.Array,fv("keys"),fv("values"),fv("entries");var bv=ca.charAt,wv=wi,Cv=be,xv=uv,_v="String Iterator",Ev=Cv.set,Tv=Cv.getterFor(_v);xv(String,"String",(function(t){Ev(this,{type:_v,string:wv(t),index:0})}),(function(){var t,e=Tv(this),n=e.string,i=e.index;return i>=n.length?{value:void 0,done:!0}:(t=bv(n,i),e.index+=t.length,{value:t,done:!1})}));var Sv=n,Pv=os,Rv=kv,Ov=Wt,Iv=ht,Lv=Iv("iterator"),Av=Iv("toStringTag"),Dv=Rv.values;for(var Mv in Pv){var Nv=Sv[Mv],Fv=Nv&&Nv.prototype;if(Fv){if(Fv[Lv]!==Dv)try{Ov(Fv,Lv,Dv)}catch(t){Fv[Lv]=Dv}if(Fv[Av]||Ov(Fv,Av,Mv),Pv[Mv])for(var jv in Rv)if(Fv[jv]!==Rv[jv])try{Ov(Fv,jv,Rv[jv])}catch(t){Fv[jv]=Rv[jv]}}}var Bv=function(){function t(){var e=this;if(ui(this,t),this.__handlers=[],this.timeStamp=0,this.observer=null,window.ResizeObserver)try{this.observer=new window.ResizeObserver((function(t){var n=(new Date).getTime();n-e.timeStamp<100||(e.timeStamp=n,e.__trigger(t))})),this.timeStamp=(new Date).getTime()}catch(t){console.error(t)}}return Co(t,[{key:"addObserver",value:function(t,e){if(this.observer){this.observer&&this.observer.observe(t);for(var n=this.__handlers,i=-1,r=0;r<n.length;r++)n[r]&&t===n[r].target&&(i=r);i>-1?this.__handlers[i].handler=e:this.__handlers.push({target:t,handler:e})}}},{key:"unObserver",value:function(t){var e=-1;this.__handlers.map((function(n,i){t===n.target&&(e=i)}));try{this.observer&&this.observer.unobserve(t)}catch(t){}this.observer&&this.observer.unobserve(t),e>-1&&this.__handlers.splice(e,1)}},{key:"destroyObserver",value:function(){this.observer&&this.observer.disconnect(),this.observer=null,this.__handlers=null}},{key:"__runHandler",value:function(t){for(var e=this.__handlers,n=0;n<e.length;n++)if(e[n]&&t===e[n].target){try{e[n].handler(t)}catch(t){console.error(t)}return!0}return!1}},{key:"__trigger",value:function(t){for(var e=0;e<t.length;e++){if(this.__runHandler(t[e].target))break}}}]),t}(),Hv=null;function Uv(t){return"Object"===Object.prototype.toString.call(t).match(/([^\s.*]+)(?=]$)/g)[0]}function Vv(t){return"Boolean"===Object.prototype.toString.call(t).match(/([^\s.*]+)(?=]$)/g)[0]}var Gv={init:function(t){var e,n,i=t._pluginInfoId;i||(i=(new Date).getTime(),t._pluginInfoId=i),this.pluginGroup||(this.pluginGroup={}),!t.config.closeResizeObserver&&(e=t.root,n=function(){t.resize()},Hv||(Hv=new Bv),Hv.addObserver(e,n)),this.pluginGroup[i]={_player:t,_originalOptions:t.config||{}}},checkPlayerRoot:function(t){if(this.pluginGroup){for(var e=Object.keys(this.pluginGroup),n=0;n<e.length;n++){var i=this.pluginGroup[e[n]]._player;if(i.root===t)return i}return null}return null},lazyRegister:function(t,e){var n=this,i=e.timeout||1500;return Promise.race([e.loader().then((function(e){var i;i=e&&e.__esModule?e.default:e,n.register(t,i,e.options)})),new Promise((function(t,e){setTimeout((function(){e(new Error("timeout"))}),i)}))])},register:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(t&&e&&"function"==typeof e&&void 0!==e.prototype){var i=t._pluginInfoId;i&&this.pluginGroup&&this.pluginGroup[i]||(this.init(t),i=t._pluginInfoId),this.pluginGroup[i]._plugins||(this.pluginGroup[i]._plugins=[]);var r=this.pluginGroup[i]._plugins,o=this.pluginGroup[i]._originalOptions;n.player=this.pluginGroup[i]._player;var s=n.pluginName||e.pluginName;if(!s)throw new Error("The property pluginName is necessary");if(!e.isSupported||e.isSupported()){n.config||(n.config={});for(var a=Object.keys(o),c=0;c<a.length;c++)if(s.toLowerCase()===a[c].toLowerCase()){var l=o[a[c]];Uv(l)&&(n.config=Object.assign({},n.config,o[a[c]])),Vv(l)&&(n.config.disable=!l);break}e.defaultConfig&&Object.keys(e.defaultConfig).map((function(t){void 0===n.config[t]&&(n.config[t]=e.defaultConfig[t])})),n.root?"string"==typeof n.root&&(n.root=t[n.root]):n.root=t.root,n.index=n.config.index||0;try{r[s.toLowerCase()]&&(this.unRegister(i,s.toLowerCase()),console.warn("the is one plugin with same pluginName [".concat(s,"] exist, destroy the old instance")));var u=new e(n);return r[s.toLowerCase()]=u,r[s.toLowerCase()].func=e,u&&"function"==typeof u.afterCreate&&u.afterCreate(),u}catch(t){throw console.error(t),t}}else console.warn("not supported plugin [".concat(s,"]"))}},unRegister:function(t,e){t._pluginInfoId&&(t=t._pluginInfoId),e=e.toLowerCase();try{var n=this.pluginGroup[t]._plugins[e];n&&(n.pluginName&&n.__destroy(),delete this.pluginGroup[t]._plugins[e])}catch(n){console.error("[unRegister:".concat(e,"] cgid:[").concat(t,"] error"),n)}},deletePlugin:function(t,e){var n=t._pluginInfoId;n&&this.pluginGroup&&this.pluginGroup[n]&&this.pluginGroup[n]._plugins&&delete this.pluginGroup[n]._plugins[e]},getPlugins:function(t){var e=t._pluginInfoId;return e?this.pluginGroup[e]._plugins:{}},findPlugin:function(t,e){var n=t._pluginInfoId;if(!this.pluginGroup||!n)return null;var i=e.toLowerCase();return this.pluginGroup[n]._plugins[i]},beforeInit:function(t){var e=this;function n(t){return t&&t.then?t:new Promise((function(t){t()}))}return new Promise((function(i){if(e.pluginGroup)return(t._loadingPlugins&&t._loadingPlugins.length?Promise.all(t._loadingPlugins):Promise.resolve()).then((function(){var r=t._pluginInfoId;if(e.pluginGroup[r]){for(var o=e.pluginGroup[r]._plugins,s=[],a=0,c=Object.keys(o);a<c.length;a++){var l=c[a];if(o[l]&&o[l].beforePlayerInit)try{var u=o[l].beforePlayerInit();s.push(n(u))}catch(t){throw s.push(n(null)),t}}Promise.all([].concat(s)).then((function(){i()})).catch((function(t){console.error(t),i()}))}else i()}))}))},afterInit:function(t){var e=t._pluginInfoId;if(this.pluginGroup&&e)for(var n=this.pluginGroup[e]._plugins,i=0,r=Object.keys(n);i<r.length;i++){var o=r[i];n[o]&&n[o].afterPlayerInit&&n[o].afterPlayerInit()}},setLang:function(t,e){var n=e._pluginInfoId;if(this.pluginGroup&&n){var i=this.pluginGroup[n]._plugins;Object.keys(i).map((function(e){if(i[e].updateLang)i[e].updateLang(t);else try{i[e].lang=t}catch(t){console.warn("".concat(e," setLang"))}}))}},reRender:function(t){var e=t._pluginInfoId;if(e){for(var n={},i=this.pluginGroup[e]._plugins,r=0,o=Object.keys(i);r<o.length;r++){var s=o[r];n[s]={plugin:i[s].func,options:i[s]._args},this.unRegister(e,s)}for(var a=0,c=Object.keys(n);a<c.length;a++){var l=c[a];this.register(e,l,n[l].plugin,n[l].options)}}},onPluginsReady:function(t){var e=t._pluginInfoId,n=this.pluginGroup[e]._plugins;e&&n&&Object.keys(n).map((function(t){n[t].onPluginsReady&&"function"==typeof n[t].onPluginsReady&&n[t].onPluginsReady()}))},destroy:function(t){var e=t._pluginInfoId;if(this.pluginGroup[e]){var n,i;n=t.root,Hv.unObserver(n,i);for(var r=this.pluginGroup[e]._plugins,o=0,s=Object.keys(r);o<s.length;o++){var a=s[o];this.unRegister(e,a)}delete this.pluginGroup[e],delete t._pluginInfoId}}},Wv={DEFAULT:"xgplayer",DEFAULT_SKIN:"xgplayer-skin-default",ENTER:"xgplayer-is-enter",PAUSED:"xgplayer-pause",PLAYING:"xgplayer-playing",ENDED:"xgplayer-ended",CANPLAY:"xgplayer-canplay",LOADING:"xgplayer-isloading",ERROR:"xgplayer-is-error",REPLAY:"xgplayer-replay",NO_START:"xgplayer-nostart",ACTIVE:"xgplayer-inactive",FULLSCREEN:"xgplayer-is-fullscreen",CSS_FULLSCREEN:"xgplayer-is-cssfullscreen",PARENT_FULLSCREEN:"xgplayer-fullscreen-parent",ROTATE_FULLSCREEN:"xgplayer-rotate-fullscreen",PARENT_ROTATE_FULLSCREEN:"xgplayer-rotate-parent",INNER_FULLSCREEN:"xgplayer-inner-fullscreen",NO_CONTROLS:"no-controls",FLEX_CONTROLS:"flex-controls",CONTROLS_FOLLOW:"controls-follow",AUTOHIDE:"xgplayer_autohide",NOT_ALLOW_AUTOPLAY:"not-allow-autoplay",SEEKING:"seeking",PC:"xgplayer-pc",MOBILE:"xgplayer-mobile",MINI:"xgplayer-mini"};var Yv=0,Kv=1,zv=2,Xv=3,qv=4,$v=5,Zv=6,Jv=7,Qv=["ERROR","INITIAL","READY","ATTACHING","ATTACHED","NOTALLOW","RUNNING","ENDED","DESTROYED"];function ty(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var ey=function(t){fi(n,t);var e=ty(n);function n(){var t;ui(this,n);for(var i=arguments.length,r=new Array(i),o=0;o<i;o++)r[o]=arguments[o];return yi(pi(t=e.call.apply(e,[this].concat(r))),"onMouseEnter",(function(e){var n=pi(t).player;n.userTimer&&(Wd.clearTimeout(n,n.userTimer),clearTimeout(n.userTimer))})),yi(pi(t),"onMouseLeave",(function(){var e=pi(t),n=e.player,i=e.playerConfig,r=i.closeControlsBlur?200:i.inactive;n.focus({hideDelay:r})})),t}return Co(n,[{key:"beforeCreate",value:function(t){t.config.mode||"mobile"!==Xd.device||(t.config.mode="flex"),t.player.config.marginControls&&(t.config.autoHide=!1)}},{key:"afterCreate",value:function(){var t=this,e=this.config,n=e.disable,i=e.height,r=e.mode,o=e.autoHide;if(!n){"flex"===r&&this.player.addClass(Wv.FLEX_CONTROLS),o&&this.player.addClass(Wv.AUTOHIDE);var s={height:"".concat(i,"px")};Object.keys(s).map((function(e){t.root.style[e]=s[e]})),this.left=this.find("xg-left-grid"),this.center=this.find("xg-center-grid"),this.right=this.find("xg-right-grid"),this.innerRoot=this.find("xg-inner-controls"),this.on(Sp,(function(e){e?Wd.addClass(t.root,"mini-controls"):Wd.removeClass(t.root,"mini-controls")})),"mobile"!==Xd.device&&(this.bind("mouseenter",this.onMouseEnter),this.bind("mouseleave",this.onMouseLeave))}}},{key:"focus",value:function(){this.player.focus({autoHide:!1})}},{key:"unFocus",value:function(){this.player.focus({autoHide:!0})}},{key:"blur",value:function(){this.player.blur({ignorePaused:!0})}},{key:"recoverAutoHide",value:function(){this.config.autoHide&&Wd.addClass(this.root,"control_autohide")}},{key:"pauseAutoHide",value:function(){Wd.removeClass(this.root,"control_autohide")}},{key:"show",value:function(){Wd.addClass(this.root,"show")}},{key:"hide",value:function(){Wd.removeClass(this.root,"show")}},{key:"mode",get:function(){return this.config.mode}},{key:"registerPlugin",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2?arguments[2]:void 0;if(this.root){var r=t.defaultConfig||{};if(!e.root){var o=e.position?e.position:e.config&&e.config.position?e.config.position:r.position;switch(o){case wg.CONTROLS_LEFT:e.root=this.left;break;case wg.CONTROLS_RIGHT:e.root=this.right;break;case wg.CONTROLS_CENTER:e.root=this.center;break;case wg.CONTROLS:e.root=this.root;break;default:e.root=this.left}return xo(vi(n.prototype),"registerPlugin",this).call(this,t,e,i)}}}},{key:"destroy",value:function(){"mobile"!==Xd.device&&(this.unbind("mouseenter",this.onMouseEnter),this.unbind("mouseleave",this.onMouseLeave))}},{key:"render",value:function(){var t=this.config,e=t.mode,n=t.autoHide,i=t.initShow;if(!t.disable){var r=Wd.classNames({"xgplayer-controls":!0},{"flex-controls":"flex"===e},{"bottom-controls":"bottom"===e},{control_autohide:n},{controls_permanent:!n},{"xgplayer-controls-initshow":i||!n});return'<xg-controls class="'.concat(r,'" unselectable="on" onselectstart="return false">\n <xg-inner-controls class="xg-inner-controls xg-pos">\n <xg-left-grid class="xg-left-grid">\n </xg-left-grid>\n <xg-center-grid class="xg-center-grid"></xg-center-grid>\n <xg-right-grid class="xg-right-grid">\n </xg-right-grid>\n </xg-inner-controls>\n </xg-controls>')}}}],[{key:"pluginName",get:function(){return"controls"}},{key:"defaultConfig",get:function(){return{disable:!1,autoHide:!0,mode:"",initShow:!1}}}]),n}(Pg),ny={},iy={},ry=[],oy={};function sy(){Object.keys(ny.en).map((function(t){iy[t]=t.toLowerCase()}))}function ay(t){("Array"!==Wd.typeOf(t)?Object.keys(t).map((function(e){return{LANG:"zh"===e?"zh-cn":e,TEXT:t[e]}})):t).map((function(t){ny[t.LANG]?Wd.deepMerge(ny[t.LANG]||{},t.TEXT||{}):oy[t.LANG]=t.TEXT})),sy()}function cy(t){var e=t.LANG,n=t.TEXT||{};ny[e]||ry.push(e),ny[e]?Wd.deepMerge(n,ny[e]):ny[e]=n,oy[e]&&(ay([{LANG:e,TEXT:oy[e]}]),delete oy[e]),"zh-cn"===e&&(ny.zh=ny["zh-cn"]),sy()}cy({LANG:"en",TEXT:{ERROR_TYPES:{network:{code:1,msg:"video download error"},mse:{code:2,msg:"stream append error"},parse:{code:3,msg:"parsing error"},format:{code:4,msg:"wrong format"},decoder:{code:5,msg:"decoding error"},runtime:{code:6,msg:"grammatical errors"},timeout:{code:7,msg:"play timeout"},other:{code:8,msg:"other errors"}},HAVE_NOTHING:"There is no information on whether audio/video is ready",HAVE_METADATA:"Audio/video metadata is ready ",HAVE_CURRENT_DATA:"Data about the current play location is available, but there is not enough data to play the next frame/millisecond",HAVE_FUTURE_DATA:"Current and at least one frame of data is available",HAVE_ENOUGH_DATA:"The available data is sufficient to start playing",NETWORK_EMPTY:"Audio/video has not been initialized",NETWORK_IDLE:"Audio/video is active and has been selected for resources, but no network is used",NETWORK_LOADING:"The browser is downloading the data",NETWORK_NO_SOURCE:"No audio/video source was found",MEDIA_ERR_ABORTED:"The fetch process is aborted by the user",MEDIA_ERR_NETWORK:"An error occurred while downloading",MEDIA_ERR_DECODE:"An error occurred while decoding",MEDIA_ERR_SRC_NOT_SUPPORTED:"Audio/video is not supported",REPLAY:"Replay",ERROR:"Network is offline",PLAY_TIPS:"Play",PAUSE_TIPS:"Pause",PLAYNEXT_TIPS:"Play next",DOWNLOAD_TIPS:"Download",ROTATE_TIPS:"Rotate",RELOAD_TIPS:"Reload",FULLSCREEN_TIPS:"Fullscreen",EXITFULLSCREEN_TIPS:"Exit fullscreen",CSSFULLSCREEN_TIPS:"Cssfullscreen",EXITCSSFULLSCREEN_TIPS:"Exit cssfullscreen",TEXTTRACK:"Caption",PIP:"PIP",SCREENSHOT:"Screenshot",LIVE:"LIVE",OFF:"Off",OPEN:"Open",MINI_DRAG:"Click and hold to drag",MINISCREEN:"Miniscreen",REFRESH_TIPS:"Please Try",REFRESH:"Refresh",FORWARD:"forward",LIVE_TIP:"Live"}});var ly={get textKeys(){return iy},get langKeys(){return ry},get lang(){var t={};return ry.map((function(e){t[e]=ny[e]})),t.zh=ny["zh-cn"],t},extend:ay,use:cy};function uy(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,i)}return n}function hy(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?uy(Object(n),!0).forEach((function(e){yi(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):uy(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function fy(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var dy=["play","pause","replay","retry"],py=function(t){fi(n,t);var e=fy(n);function n(t){var i;ui(this,n);var r,o=Wd.deepMerge({id:"",el:null,url:"",nullUrlStart:!1,width:600,height:337.5,fluid:!1,fitVideoSize:"fixed",videoFillMode:"auto",volume:.6,autoplay:!1,autoplayMuted:!1,loop:!1,isLive:!1,zoom:1,videoInit:!0,poster:"",isMobileSimulateMode:!1,defaultPlaybackRate:1,execBeforePluginsCall:null,allowSeekAfterEnded:!0,enableContextmenu:!1,closeVideoClick:!1,closeVideoDblclick:!1,closePlayerBlur:!1,closeDelayBlur:!1,leavePlayerTime:3e3,closePlayVideoFocus:!1,closePauseVideoFocus:!1,closeFocusVideoFocus:!1,closeControlsBlur:!1,videoAttributes:{},startTime:0,seekedStatus:"play",miniprogress:!1,disableSwipeHandler:function(){},enableSwipeHandler:function(){},ignores:[],whitelist:[],inactive:3e3,lang:(document.documentElement.getAttribute("lang")||navigator.language||"zh-cn").toLocaleLowerCase(),controls:!0,marginControls:!1,fullscreenTarget:null,controlsList:[],screenShot:!1,rotate:!1,pip:!1,download:!1,mini:!1,cssFullscreen:!0,keyShortcut:!0,presets:[],plugins:[],playbackRate:1,definition:{list:[]},playsinline:!0,customDuration:0,timeOffset:0,icons:{},i18n:[],thumbnail:null,commonStyle:{progressColor:"",playedColor:"",cachedColor:"",sliderBtnStyle:{},volumeColor:""}},t);ag(pi(i=e.call(this,o)),dy),i.config=o,(r=pi(i)).logInfo=Hd.logInfo.bind(r),r.logWarn=Hd.logWarn.bind(r),r.logError=Hd.logError.bind(r);var s=i.constructor.defaultPreset;if(i.config.presets.length){var a=i.config.presets.indexOf("default");a>=0&&s&&(i.config.presets[a]=s)}else s&&i.config.presets.push(s);if(i.userTimer=null,i.waitTimer=null,i._state=Kv,i._hasStart=!1,i.isSeeking=!1,i.isCanplay=!1,i._runPending=!1,i.rotateDeg=0,i.isActive=!1,i.isCssfullScreen=!1,i.fullscreen=!1,i._fullscreenEl=null,i._cssfullscreenEl=null,i.curDefinition=null,i._orgCss="",i._fullScreenOffset=null,i._videoHeight=0,i._videoWidth=0,i._played={begin:-1,end:-1,acc:0},i.innerContainer=null,i.controls=null,i.topBar=null,i.topBar=null,i.root=null,Xd.os.isAndroid&&Xd.osVersion>0&&Xd.osVersion<6&&(i.config.autoplay=!1),i.database=new Gp,!i._initDOM())return console.error(new Error("can't find the dom which id is ".concat(i.config.id," or this.config.el does not exist"))),gi(i);i._bindEvents(),i._registerPresets(),i._registerPlugins(),Gv.onPluginsReady(pi(i)),i.setState(zv),i.emit(yp),i.onReady&&i.onReady();var c=i.config,l=c.definition;return!c.url&&l&&l.list&&l.list.length>0&&l.defaultDefinition&&l.list.map((function(t){t.definition===l.defaultDefinition&&(i.config.url=t.url,i.curDefinition=t.definition)})),(i.config.videoInit||i.config.autoplay)&&(!i.hasStart||i.state<qv)&&i.start(),i}return Co(n,[{key:"_initDOM",value:function(){var t=this;if(this.root=this.config.id?document.getElementById(this.config.id):null,!this.root){var e=this.config.el;if(!e||1!==e.nodeType)return this.emit(np,new Zd("use",this.config.vid,{line:32,handle:"Constructor",msg:"container id can't be empty"})),console.error("this.confg.id or this.config.el can't be empty"),!1;this.root=e}var n=Gv.checkPlayerRoot(this.root);n&&(Hd.logWarn("The is an Player instance already exists in this.root, destroy it and reinitialize"),n.destroy()),this._initBaseDoms();var i=this.constructor.XgVideoProxy;if(i&&this.videoConfig.mediaType===i.mediaType){var r=this.innerContainer||this.root;this.detachVideoEvents(this.video);var o=new i(r,this.config,this.videoConfig);this.attachVideoEvents(o),this.video=o}if(this.config.controls){var s=Gv.register(this,ey);this.controls=s}var a=this.config.isMobileSimulateMode?"mobile":Xd.device;if(this.addClass("".concat(Wv.DEFAULT," ").concat(Wv.ACTIVE," xgplayer-").concat(a," ").concat(this.config.controls?"":Wv.NO_CONTROLS)),this.config.autoplay?this.addClass(Wv.ENTER):this.addClass(Wv.NO_START),this.config.fluid){var c={"max-width":"100%",width:"100%",height:"0","padding-top":"".concat(100*this.config.height/this.config.width,"%"),position:"position",top:"0",left:"0"};Object.keys(c).map((function(e){t.root.style[e]=c[e]}))}else["width","height"].map((function(e){t.config[e]&&("number"!=typeof t.config[e]?t.root.style[e]=t.config[e]:t.root.style[e]="".concat(t.config[e],"px"))}));return!0}},{key:"_initBaseDoms",value:function(){this.topBar=Wd.createDom("xg-bar","",{"data-index":-1},"xg-top-bar"),this.leftBar=Wd.createDom("xg-bar","",{"data-index":-1},"xg-left-bar"),this.rightBar=Wd.createDom("xg-bar","",{"data-index":-1},"xg-right-bar"),this.config.marginControls&&(this.innerContainer=Wd.createDom("xg-video-container","",{"data-index":-1},"xg-video-container"),this.root.appendChild(this.innerContainer)),this.root.appendChild(this.topBar),this.root.appendChild(this.leftBar),this.root.appendChild(this.rightBar)}},{key:"_bindEvents",value:function(){var t=this;["focus","blur"].forEach((function(e){t.on(e,t["on"+e.charAt(0).toUpperCase()+e.slice(1)])}));var e=function(){t.fullscreen=!1,t._fullScreenOffset=null};this.onFullscreenChange=function(n,i){var r=Wd.getFullScreenEl();if(t._fullActionFrom?t._fullActionFrom="":t.emit(Fp,{eventType:"system",action:"switch_fullscreen",pluginName:"player",currentTime:t.currentTime,duration:t.duration,props:[{prop:"fullscreen",from:!0,to:!1}]}),i||r&&(r===t._fullscreenEl||"VIDEO"===r.tagName))Wd.setTimeout(t,(function(){t.resize()}),100),t.video.focus(),t.fullscreen=!0,t.changeFullStyle(t.root,r,Wv.FULLSCREEN),t.emit(Ep,!0,t._fullScreenOffset),t.isCssfullScreen&&t.exitCssFullscreen();else if(t.fullscreen){Wd.setTimeout(t,(function(){t.resize()}),100);var o=t._fullScreenOffset;if(t.config.needFullscreenScroll)try{window.scrollTo(o.left,o.top),Wd.setTimeout(t,(function(){e()}),50)}catch(t){Hd.logError(t),e()}else t.video.focus(),e();t.isCssfullScreen?t.removeClass(Wv.FULLSCREEN):t.recoverFullStyle(t.root,t._fullscreenEl,Wv.FULLSCREEN),t._fullscreenEl=null,t.emit(Ep,!1)}},Wp.forEach((function(e){document&&document.addEventListener(e,t.onFullscreenChange)})),this.__webkitbeginfullscreen=function(e){t._fullscreenEl=t.video,t.onFullscreenChange(e,!0)},this.__webkitendfullscreen=function(e){t.onFullscreenChange(e,!1)},Xd.os.isIos&&(this.video.addEventListener("webkitbeginfullscreen",this.__webkitbeginfullscreen),this.video.addEventListener("webkitendfullscreen",this.__webkitendfullscreen)),this.once("loadeddata",this.resize),this.playFunc=function(){t.config.closeFocusVideoFocus||t.video.focus()},this.once("play",this.playFunc)}},{key:"_unbindEvents",value:function(){var t=this;this.root.removeEventListener("mousemove",this.mousemoveFunc),Wp.forEach((function(e){document.removeEventListener(e,t.onFullscreenChange)})),this.playFunc&&this.off("play",this.playFunc),this.canPlayFunc&&this.off("canplay",this.canPlayFunc),this.video.removeEventListener("webkitbeginfullscreen",this.__webkitbeginfullscreen),this.video.removeEventListener("webkitendfullscreen",this.__webkitendfullscreen)}},{key:"_startInit",value:function(t){var e=this;if(this.video&&(t&&""!==t||(this.emit(mp),Hd.logWarn("config.url is null, please get url and run player._startInit(url)"),!this.config.nullUrlStart))){this.canPlayFunc=function(){if(e.config){var t=e.config,n=t.autoplay,i=t.startTime,r=t.defaultPlaybackRate;Hd.logInfo("player","canPlayFunc",i),i&&(e.currentTime=i>e.duration?e.duration:i,e.config.startTime=0),1!==r&&(e.playbackRate=r),n&&e.videoPlay(),e.off(ap,e.canPlayFunc),e.removeClass(Wv.ENTER)}},"Array"===Wd.typeOf(t)?(t.forEach((function(t){e.video.appendChild(Wd.createDom("source","",{src:"".concat(t.src),type:"".concat(t.type||"")}))})),this._attachSourceEvents(this.video)):this.video.src=t,"Number"===Wd.typeOf(this.config.volume)&&(this.volume=this.config.volume),this.loadeddataFunc&&this.once("loadeddata",this.loadeddataFunc);var n=this.innerContainer?this.innerContainer:this.root;this.video instanceof window.Element&&!n.contains(this.video)&&n.insertBefore(this.video,n.firstChild),this.video.readyState>=2?this.canPlayFunc():this.once(ap,this.canPlayFunc),Hd.logInfo("_startInit"),this.config.autoplay&&(this.load(),(Xd.os.isIpad||Xd.os.isPhone)&&this.videoPlay()),Wd.setTimeout(this,(function(){e.emit(wp)}),1),(!this.hasStart||this.state<qv)&&Gv.afterInit(this),this.hasStart=!0,this.setState(qv)}}},{key:"_attachSourceEvents",value:function(t){var e=this,n=t.children;this._videoSourceCount=n.length,!this._sourceError&&(this._sourceError=function(t){e._videoSourceCount--,0===e._videoSourceCount&&(e.videoEventMiddleware.error?e.videoEventMiddleware.error.call(e,t,(function(){e.errorHandler("error")})):e.errorHandler("error",{code:4,message:"sources load error"}))});for(var i=0;i<n.length;i++)n[i].addEventListener("error",this._sourceError)}},{key:"_detachSourceEvents",value:function(t){var e=t.children;if(0!==e.length&&this._sourceError)for(var n=0;n<e.length;n++)e[n].removeEventListener("error",this._sourceError)}},{key:"_registerPlugins",value:function(){var t=this;this._loadingPlugins=[];var e=this.config.ignores||[],n=this.config.plugins||[];(this.config.i18n||[]).map((function(t){ly.use(t)}));var i=e.join("||").toLowerCase().split("||");n.map((function(e){try{var n=e.plugin?e.plugin.pluginName:e.pluginName;if(n&&i.indexOf(n.toLowerCase())>-1)return null;if(e.lazy&&e.loader){var r=Gv.lazyRegister(t,e);return void(e.forceBeforeInit&&(r.then((function(){t._loadingPlugins.splice(t._loadingPlugins.indexOf(r),1)})).catch((function(e){Hd.logError("_registerPlugins:loadingPlugin",e),t._loadingPlugins.splice(t._loadingPlugins.indexOf(r),1)})),t._loadingPlugins.push(r)))}return t.registerPlugin(e)}catch(t){return Hd.logError("_registerPlugins:",t),null}}))}},{key:"_registerPresets",value:function(){var t=this;this.config.presets.forEach((function(e){var n,i,r,o,s,a,c,l,u,h,f,d,p,g;n=t,a=(i=e).preset&&i.options?new i.preset(i.options,n.config):new i({},n.config),c=a.plugins,l=void 0===c?[]:c,u=a.ignores,h=void 0===u?[]:u,f=a.icons,d=void 0===f?{}:f,p=a.i18n,g=void 0===p?[]:p,n.config.plugins||(n.config.plugins=[]),n.config.ignores||(n.config.ignores=[]),(r=n.config.plugins).push.apply(r,Yh(l)),(o=n.config.ignores).push.apply(o,Yh(h)),Object.keys(d).map((function(t){n.config.icons[t]||(n.config.icons[t]=d[t])})),(s=n.config.i18n).push.apply(s,Yh(g))}))}},{key:"registerPlugin",value:function(t,e){var n=null,i=null;t.plugin&&"function"==typeof t.plugin?(n=t.plugin,i=t.options):(n=t,i={}),e&&(i.config=e);for(var r=Object.keys(this.config),o=0;o<r.length;o++)if(n.pluginName.toLowerCase()===r[o].toLowerCase()){var s=this.config[r[o]];"Object"===Wd.typeOf(s)&&(s.root&&(i.root=s.root),s.position&&(i.position=s.position));break}var a=i.position?i.position:i.config&&i.config.position||n.defaultConfig&&n.defaultConfig.position,c=Pg.POSITIONS;if(!i.root&&"string"==typeof a&&a.indexOf("controls")>-1)return this.controls&&this.controls.registerPlugin(n,i,n.pluginName);if(!i.root)switch(a){case c.ROOT_RIGHT:i.root=this.rightBar;break;case c.ROOT_LEFT:i.root=this.leftBar;break;case c.ROOT_TOP:i.root=this.topBar;break;default:i.root=this.innerContainer||this.root}return Gv.register(this,n,i)}},{key:"deregister",value:function(t){"string"==typeof t?Gv.unRegister(this,t):t instanceof dg&&Gv.unRegister(this,t.pluginName)}},{key:"unRegisterPlugin",value:function(t){this.deregister(t)}},{key:"plugins",get:function(){return Gv.getPlugins(this)}},{key:"getPlugin",value:function(t){var e=Gv.findPlugin(this,t);return e&&e.pluginName?e:null}},{key:"addClass",value:function(t){this.root&&(Wd.hasClass(this.root,t)||Wd.addClass(this.root,t))}},{key:"removeClass",value:function(t){this.root&&Wd.removeClass(this.root,t)}},{key:"hasClass",value:function(t){if(this.root)return Wd.hasClass(this.root,t)}},{key:"setAttribute",value:function(t,e){this.root&&this.root.setAttribute(t,e)}},{key:"removeAttribute",value:function(t,e){this.root&&this.root.removeAttribute(t,e)}},{key:"start",value:function(t){var e=this;return this.hasStart||this.state>=Xv?Promise.resolve():(this.hasStart=!0,this.setState(Xv),Gv.beforeInit(this).then((function(){if(e.config)return t||(t=e.url||e.config.url),e._startInit(t)})).catch((function(t){throw t.fileName="player",t.lineNumber="236",Hd.logError("start:beforeInit:",t),t})))}},{key:"switchURL",value:function(t,e){this.src=t}},{key:"load",value:function(){this.video&&this.video.load()}},{key:"videoPlay",value:function(){var t=this;if(this.hasStart||!(this.state<qv)){this.state<Zv&&(this.removeClass(Wv.NO_START),!this.isCanplay&&this.addClass(Wv.ENTER));var e=xo(vi(n.prototype),"play",this).call(this);return void 0!==e&&e&&e.then?e.then((function(){t.removeClass(Wv.NOT_ALLOW_AUTOPLAY),t.addClass(Wv.PLAYING),t.state<Zv&&(Hd.logInfo(">>>>playPromise.then"),t.setState(Zv),t.emit(kp))})).catch((function(e){if(Hd.logWarn(">>>>playPromise.catch",e.name),t.video&&t.video.error)return t.onError(),t.removeClass(Wv.ENTER),void t.setState(Yv);"NotAllowedError"===e.name&&(t._errorTimer=Wd.setTimeout(t,(function(){t._errorTimer=null,t.emit(bp),t.addClass(Wv.NOT_ALLOW_AUTOPLAY),t.removeClass(Wv.ENTER),t.pause(),t.setState($v)}),0))})):(Hd.logWarn("video.play not return promise"),this.state<Zv&&(this.setState(Zv),this.removeClass(Wv.NOT_ALLOW_AUTOPLAY),this.removeClass(Wv.NO_START),this.removeClass(Wv.ENTER),this.addClass(Wv.PLAYING),this.emit(kp))),e}this.removeClass(Wv.NO_START),this.addClass(Wv.ENTER);var i=this.start();i&&i.then((function(e){!t.config.autoplay&&t.videoPlay()}))}},{key:"videoPause",value:function(){xo(vi(n.prototype),"pause",this).call(this)}},{key:"play",value:function(){var t=this;this.removeClass(Wv.PAUSED),lg(this,"play",(function(){t.videoPlay()}))}},{key:"pause",value:function(){var t=this;lg(this,"pause",(function(){xo(vi(n.prototype),"pause",t).call(t)}))}},{key:"seek",value:function(t){var e=this;if(this.video&&!isNaN(Number(t))){var n=this.config,i=n.isSeekedPlay,r=n.seekedStatus,o=i?"play":r;t=t<0?0:t>this.duration?parseInt(this.duration,10):t,this.once(ap,(function(){switch(e.removeClass(Wv.ENTER),e.isSeeking=!1,o){case"play":e.play();break;case"pause":e.pause();break;default:!e.paused&&e.play()}})),this.state<Zv?(this.removeClass(Wv.NO_START),this.addClass(Wv.ENTER),this.currentTime=t,"play"===o&&this.play()):this.currentTime=t}}},{key:"changeDefinition",value:function(t,e){var n=this;this.emit(Pp,{from:e,to:t});var i=this.currentTime,r=this.paused;if(this.curDefinition=t.definition,this.hasStart){this.src=t.url;var o=function(){if(n.currentTime=i,r)n.pause();else{var o=n.play();void 0!==o&&o&&o.catch((function(t){}))}n.emit(Rp,{from:e,to:t})};Xd.os.isAndroid?this.once("timeupdate",(function(){o()})):this.once("canplay",(function(){o()}))}else this.config.url=t.url}},{key:"reload",value:function(){this.load(),this.reloadFunc=function(){this.play().catch((function(t){console.log(t)}))},this.once("loadeddata",this.reloadFunc)}},{key:"resetState",value:function(){var t=this,e=[Wv.NOT_ALLOW_AUTOPLAY,Wv.PLAYING,Wv.NO_START,Wv.PAUSED,Wv.REPLAY,Wv.ENTER,Wv.ENDED,Wv.ERROR,Wv.LOADING];this.hasStart=!1,this.videoPause(),e.forEach((function(e){t.removeClass(e)})),this.addClass(Wv.ENTER),this.emit(pp)}},{key:"destroy",value:function(){var t=this,e=this.innerContainer,i=this.root,r=this.video;if(i){if(this._hasStart=!1,this._unbindEvents(),this._detachSourceEvents(this.video),Wd.clearAllTimers(this),Gv.destroy(this),cg(this),xo(vi(n.prototype),"destroy",this).call(this),this.fullscreen&&this._fullscreenEl===this.root)try{this.exitFullscreen()}catch(t){}if(e)for(var o=e.children,s=0;s<o.length;s++)e.removeChild(o[s]);i.contains(r)&&i.removeChild(r),["topBar","leftBar","rightBar","innerContainer"].map((function(e){t[e]&&i.removeChild(t[e]),t[e]=null}));var a=i.className.split(" ");a.length>0?i.className=a.filter((function(t){return t.indexOf("xgplayer")<0})).join(" "):i.className="",this.removeAttribute("data-xgfill"),["isSeeking","isCanplay","isActive","isCssfullScreen","fullscreen"].map((function(e){t[e]=!1}))}}},{key:"replay",value:function(){var t=this;this.removeClass(Wv.ENDED),this.currentTime=0,this.isSeeking=!1,lg(this,"replay",(function(){t.once(ap,(function(){var e=t.videoPlay();e&&e.catch&&e.catch((function(t){console.log(t)}))})),t.play(),t.emit(Cp),t.onPlay()}))}},{key:"retry",value:function(){var t=this;this.removeClass(Wv.ERROR),this.addClass(Wv.LOADING),lg(this,"retry",(function(){var e=t.currentTime;t.videoPause(),t.src=t.config.url,!t.config.isLive&&(t.currentTime=e),t.once(ap,(function(){t.videoPlay()}))}))}},{key:"changeFullStyle",value:function(t,e,n,i){t&&(i||(i=Wv.PARENT_FULLSCREEN),this._orgCss||(this._orgCss=Wd.filterStyleFromText(t)),Wd.addClass(t,n),e&&e!==t&&!this._orgPCss&&(this._orgPCss=Wd.filterStyleFromText(e),Wd.addClass(e,i)))}},{key:"recoverFullStyle",value:function(t,e,n,i){i||(i=Wv.PARENT_FULLSCREEN),this._orgCss&&(Wd.setStyleFromCsstext(t,this._orgCss),this._orgCss=""),Wd.removeClass(t,n),e&&e!==t&&this._orgPCss&&(Wd.setStyleFromCsstext(e,this._orgPCss),this._orgPCss="",Wd.removeClass(e,i))}},{key:"getFullscreen",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.config.fullscreenTarget,e=this.root,n=this.video;t||(t=e),this._fullScreenOffset={top:Wd.scrollTop(),left:Wd.scrollLeft()},this._fullscreenEl=t,this._fullActionFrom="get";var i=Wd.getFullScreenEl();if(i!==this._fullscreenEl)try{for(var r=0;r<Yp.length;r++){var o=Yp[r];if(t[o]){var s="webkitRequestFullscreen"===o?t.webkitRequestFullscreen(window.Element.ALLOW_KEYBOARD_INPUT):t[o]();return s&&s.then?s:Promise.resolve()}}return n.fullscreenEnabled||n.webkitSupportsFullscreen?(n.webkitEnterFullscreen(),Promise.resolve()):Promise.reject(new Error("call getFullscreen fail"))}catch(t){return Promise.reject(new Error("call getFullscreen fail"))}else this.onFullscreenChange()}},{key:"exitFullscreen",value:function(t){if(this._fullscreenEl&&Wd.getFullScreenEl()){this.root;var e=this.video;this._fullActionFrom="exit";for(var n=0;n<Kp.length;n++){var i=Kp[n];if(document[i]){var r=document[i]();return r&&r.then?r:Promise.resolve()}}return e&&e.webkitSupportsFullscreen?(e.webkitExitFullScreen(),Promise.resolve()):Promise.reject(new Error("call exitFullscreen fail"))}}},{key:"getCssFullscreen",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.config.fullscreenTarget;this.fullscreen&&this.exitFullscreen(),this._cssfullscreenEl=t,this.changeFullStyle(this.root,t,t?Wv.INNER_FULLSCREEN:Wv.CSS_FULLSCREEN),this.isCssfullScreen=!0,this.emit(Tp,!0)}},{key:"exitCssFullscreen",value:function(){var t=this._cssfullscreenEl?Wv.INNER_FULLSCREEN:Wv.CSS_FULLSCREEN;this.fullscreen?this.removeClass(t):this.recoverFullStyle(this.root,this._cssfullscreenEl,t),this._cssfullscreenEl=null,this.isCssfullScreen=!1,this.emit(Tp,!1)}},{key:"focus",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{autoHide:!this.config.closePlayerBlur,delay:this.config.inactive};this.isActive?this.onFocus(t):this.emit(gp,hy({paused:this.paused,ended:this.ended},t))}},{key:"blur",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{ignorePaused:!1};this.isActive?this.emit(vp,hy({paused:this.paused,ended:this.ended},t)):this.onBlur(t)}},{key:"onFocus",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{autoHide:!0,delay:3e3};if(this.isActive=!0,this.removeClass(Wv.ACTIVE),this.userTimer&&Wd.clearTimeout(this,this.userTimer),!1!==e.autoHide){var n=e&&e.delay?e.delay:this.config.inactive;this.userTimer=Wd.setTimeout(this,(function(){t.blur()}),n)}}},{key:"onBlur",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{ignorePaused:!1};if(this.isActive){var e=this.config.closePauseVideoFocus;this.isActive=!1,(t.ignorePaused||e||!this.paused&&!this.ended)&&this.addClass(Wv.ACTIVE)}}},{key:"onCanplay",value:function(){this.state>=Zv&&this.removeClass(Wv.ENTER),this.removeClass(Wv.LOADING),this.isCanplay=!0}},{key:"onPlay",value:function(){this.state===Jv&&this.setState(Zv),this.removeClass(Wv.PAUSED),this.ended&&this.removeClass(Wv.ENDED),!this.config.closePlayVideoFocus&&this.focus()}},{key:"onPause",value:function(){this.addClass(Wv.PAUSED),this.config.closePauseVideoFocus||(this.userTimer&&Wd.clearTimeout(this,this.userTimer),this.focus())}},{key:"onEnded",value:function(){this.addClass(Wv.ENDED),this.setState(Jv)}},{key:"onError",value:function(){this.setState(Yv),this.removeClass(Wv.NOT_ALLOW_AUTOPLAY),this.removeClass(Wv.NO_START),this.removeClass(Wv.ENTER),this.removeClass(Wv.LOADING),this.addClass(Wv.ERROR)}},{key:"onSeeking",value:function(){if(!this.isSeeking){var t=this._played;t.acc+=t.begin<t.end&&t.end>-1?t.end-t.begin:0,t.begin=parseInt(1e3*this.video.currentTime,10),t.end=-1}this.isSeeking=!0,this.addClass(Wv.SEEKING)}},{key:"onSeeked",value:function(){this.isSeeking=!1,this.waitTimer&&Wd.clearTimeout(this,this.waitTimer),this.removeClass(Wv.LOADING),this.removeClass(Wv.SEEKING)}},{key:"onWaiting",value:function(){var t=this;this.waitTimer&&Wd.clearTimeout(this,this.waitTimer),this.waitTimer=Wd.setTimeout(this,(function(){t.addClass(Wv.LOADING),Wd.clearTimeout(t,t.waitTimer),t.waitTimer=null}),200)}},{key:"onPlaying",value:function(){var t=this;[Wv.NO_START,Wv.PAUSED,Wv.ENDED,Wv.ERROR,Wv.REPLAY,Wv.LOADING].forEach((function(e){t.removeClass(e)}))}},{key:"onTimeupdate",value:function(){!this._videoHeight&&this.resize(),(this.waitTimer||this.hasClass(Wv.LOADING))&&this.video.readyState>2&&(this.removeClass(Wv.LOADING),Wd.clearTimeout(this,this.waitTimer),this.waitTimer=null),this._played.begin<0&&(this._played.begin=parseInt(1e3*this.video.currentTime,10)),this._played.end=parseInt(1e3*this.video.currentTime,10)}},{key:"onVolumechange",value:function(){"Number"===Wd.typeOf(this.config.volume)&&(this.config.volume=this.volume)}},{key:"onRatechange",value:function(){this.config.defaultPlaybackRate=this.playbackRate}},{key:"checkBuffer",value:function(t){var e=this.video.buffered;if(!e||0===e.length||!this.duration)return!0;for(var n=t||this.video.currentTime||.2,i=e.length,r=0;r<i;r++)if(e.start(r)<=n&&e.end(r)>n)return!0;return!1}},{key:"position",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{h:0,y:0,x:0,w:0};if(t&&t.h){var e=1/t.h,n=1!==e?"scale(".concat(e,")"):"",i=0,r=0;t.y&&(r=(100-100*t.h)/2-100*t.y),t.w&&t.x&&(i=(100-100*t.w)/2-100*t.x),n+=" translate(".concat(i,"%, ").concat(r,"%)"),this.video.style.transform=n,this.video.style.webkitTransform=n}}},{key:"resize",value:function(){var t=this,e=this.video,n=e.videoWidth,i=e.videoHeight,r=this.config,o=r.fitVideoSize,s=r.videoFillMode;if("fill"!==s&&"cover"!==s||this.setAttribute("data-xgfill",s),i&&n){this._videoHeight=i,this._videoWidth=n;var a=this.root.getBoundingClientRect(),c=this.controls&&this.innerContainer?this.controls.root.getBoundingClientRect().height:0,l=a.width,u=a.height-c,h=parseInt(n/i*1e3,10),f=parseInt(l/u*1e3,10),d=l,p=u,g={};"auto"===o&&f>h||"fixWidth"===o?(p=l/h*1e3,this.config.fluid?g.paddingTop="".concat(100*p/d,"%"):g.height="".concat(p+c,"px")):("auto"===o&&f<h||"fixHeight"===o)&&(d=h*u/1e3,g.width="".concat(d,"px")),this.fullscreen||this.isCssfullScreen||Object.keys(g).map((function(e){t.root.style[e]=g[e]})),("fillHeight"===s&&f<h||"fillWidth"===s&&f>h)&&this.setAttribute("data-xgfill","cover");var v={videoScale:h,vWidth:d,vHeight:p,cWidth:d,cHeight:p+c};this.emit(Op,v)}}},{key:"updateObjectPosition",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this.video.updateObjectPosition?this.video.updateObjectPosition(t,e):this.video.style.objectPosition="".concat(100*t,"% ").concat(100*e,"%")}},{key:"setState",value:function(t){Hd.logInfo("setState","state from:".concat(Qv[this.state]," to:").concat(Qv[t])),this._state=t}},{key:"state",get:function(){return this._state}},{key:"hasStart",get:function(){return this._hasStart},set:function(t){"boolean"==typeof t&&(this._hasStart=t,!1===t&&(this._state=zv),this.emit("hasstart"))}},{key:"definitionList",get:function(){return this.config.definition.list||[]},set:function(t){var e=this,n=this.config.definition;n.list=t,this.emit("resourceReady",t);var i=null,r=null;t.map((function(t){e.curDefinition===t.definition&&(i=t),n.defaultDefinition===t.definition&&(r=t)})),!r&&t.length>0&&(r=t[0]),i?this.changeDefinition(i):r&&this.changeDefinition(r)}},{key:"lang",get:function(){return this.config.lang},set:function(t){0!==ly.langKeys.filter((function(e){return e===t})).length||"zh"===t?(this.config.lang=t,Gv.setLang(t,this)):console.error("Sorry, set lang fail, because the language [".concat(t,"] is not supported now, list of all supported languages is [").concat(ly.langKeys.join(),"] "))}},{key:"i18n",get:function(){var t=this.config.lang;return ly.lang[t]||ly.lang.en}},{key:"i18nKeys",get:function(){return ly.textKeys||{}}},{key:"version",get:function(){return qd}},{key:"url",get:function(){return this.__url||this.config.url},set:function(t){this.__url=t}},{key:"poster",get:function(){return this.plugins.poster?this.plugins.poster.config.poster:this.config.poster},set:function(t){this.plugins.poster&&this.plugins.poster.update(t)}},{key:"readyState",get:function(){var t=xo(vi(n.prototype),"readyState",this);return this.i18n[t]||t}},{key:"error",get:function(){var t=xo(vi(n.prototype),"error",this);return this.i18n[t]||t}},{key:"networkState",get:function(){var t=xo(vi(n.prototype),"networkState",this);return this.i18n[t]||t}},{key:"fullscreenChanging",get:function(){return!(null===this._fullScreenOffset)}},{key:"cumulateTime",get:function(){var t=this._played,e=t.acc,n=t.end,i=t.begin;return i>-1&&n>i?(e+n-i)/1e3:e/1e3}},{key:"zoom",get:function(){return this.config.zoom},set:function(t){this.config.zoom=t}},{key:"hook",value:function(t,e){return rg.call.apply(rg,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"useHooks",value:function(t,e){return og.call.apply(og,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"usePluginHooks",value:function(t,e,n){for(var i=arguments.length,r=new Array(i>3?i-3:0),o=3;o<i;o++)r[o-3]=arguments[o];return sg.call.apply(sg,[this].concat(Array.prototype.slice.call(arguments)))}}],[{key:"debugger",get:function(){return Hd.config.debug},set:function(t){Hd.config.debug=t}},{key:"install",value:function(t,e){n.plugins||(n.plugins={}),n.plugins[t]||(n.plugins[t]=e)}},{key:"use",value:function(t,e){n.plugins||(n.plugins={}),n.plugins[t]=e}}]),n}(Vp);function gy(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,i)}return n}function vy(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}function yy(){return(new Date).getTime()}yi(py,"defaultPreset",null),yi(py,"XgVideoProxy",null);var my=function(t){fi(n,t);var e=vy(n);function n(){var t;ui(this,n);for(var i=arguments.length,r=new Array(i),o=0;o<i;o++)r[o]=arguments[o];return yi(pi(t=e.call.apply(e,[this].concat(r))),"_onReset",(function(){t.vt=0,t.pt=0,t.fvt=0,t._isSeeking=!1,t.seekingStart=0,t.waitingStart=0,t._isWaiting=!1,t._waitTimer&&Wd.clearTimeout(pi(t),t._waitTimer),t._waittTimer&&Wd.clearTimeout(pi(t),t._waittTimer),t._waitTimer=null,t._waittTimer=null,t.stall={costTime:0,currentTime:0},t.seekData={costTime:0,currentTime:0}})),yi(pi(t),"_onSeeking",(function(){t.seekingStart||(t.seekingStart=yy(),t.emitLog("seekStart",{start:yy()}))})),yi(pi(t),"_onSeeked",(function(){t.suspendSeekingStatus("seeked")})),yi(pi(t),"_onWaiting",(function(){t._isWaiting||t.seekingStart||(t._isWaiting=!0,t._waitTimer=Wd.setTimeout(pi(t),(function(){t._isWaiting&&(t.waitingStart=yy(),Wd.clearTimeout(pi(t),t._waitTimer),t._waitTimer=null,t.emitLog("waitingStart",{start:t.waitingStart}))}),200))})),yi(pi(t),"_onError",(function(){t.suspendSeekingStatus("error"),t.suspendWaitingStatus("error")})),yi(pi(t),"_onPlaying",(function(){t.suspendWaitingStatus("playing")})),t}return Co(n,[{key:"afterCreate",value:function(){var t=this;this._onReset(),this.on(dp,(function(){t.vt=t.pt=yy()})),this.on(up,(function(){t.vt=yy(),t.fvt=t.vt-t.pt,t.emitLog("firstFrame",{fvt:t.fvt})})),this.on(sp,this._onWaiting),this.on(ip,this._onSeeking),this.on(rp,this._onSeeked),this.on(Qd,this._onPlaying),this.on(np,this._onError),this.on(pp,this._onReset)}},{key:"_startWaitTimeout",value:function(){var t=this;this._waittTimer=Wd.setTimeout(this,(function(){t.suspendWaitingStatus("timeout"),Wd.clearTimeout(t,t._waittTimer),t._waittTimer=null}),2e4)}},{key:"suspendSeekingStatus",value:function(t){if(this.seekingStart){var e=yy(),n=e-this.seekingStart;this.seekingStart=0,this.emitLog("seekEnd",{end:e,costTime:n})}}},{key:"suspendWaitingStatus",value:function(t){if(this._waitTimer&&(Wd.clearTimeout(this,this._waitTimer),this._waitTimer=null),this.waitingStart){var e=yy()-this.waitingStart;this._isWaiting=!1,this.waitingStart=0,this.emitLog("waitingEnd",{endType:t,costTime:e})}}},{key:"emitLog",value:function(t,e){var n=this.player;this.emit(Np,function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?gy(Object(n),!0).forEach((function(e){yi(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):gy(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({eventType:t,currentTime:this.player.currentTime,readyState:n.video.readyState,networkState:n.video.networkState},e))}}],[{key:"pluginName",get:function(){return"xgLogger"}},{key:"defaultConfig",get:function(){return{}}}]),n}(Pg);function ky(){return(new DOMParser).parseFromString('<svg class="xgplayer-replay-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 78 78" width="78" height="78">\n <path fill="#fff" transform="translate(20, 20)" d="M8.22708362,13.8757234 L11.2677371,12.6472196 C11.7798067,12.4403301 12.3626381,12.6877273 12.5695276,13.1997969 L12.9441342,14.1269807 C13.1510237,14.6390502 12.9036264,15.2218816 12.3915569,15.4287712 L6.8284538,17.6764107 L5.90126995,18.0510173 C5.38920044,18.2579068 4.80636901,18.0105096 4.5994795,17.49844 L1.97723335,11.0081531 C1.77034384,10.4960836 2.0177411,9.91325213 2.52981061,9.70636262 L3.45699446,9.33175602 C3.96906396,9.12486652 4.5518954,9.37226378 4.75878491,9.88433329 L5.67885163,12.1615783 C7.99551726,6.6766934 13.3983951,3 19.5,3 C27.7842712,3 34.5,9.71572875 34.5,18 C34.5,26.2842712 27.7842712,33 19.5,33 C15.4573596,33 11.6658607,31.3912946 8.87004692,28.5831991 C8.28554571,27.9961303 8.28762719,27.0463851 8.87469603,26.4618839 C9.46176488,25.8773827 10.4115101,25.8794641 10.9960113,26.466533 C13.2344327,28.7147875 16.263503,30 19.5,30 C26.127417,30 31.5,24.627417 31.5,18 C31.5,11.372583 26.127417,6 19.5,6 C14.4183772,6 9.94214483,9.18783811 8.22708362,13.8757234 Z"></path>\n</svg>\n',"image/svg+xml").firstChild}function by(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var wy=function(t){fi(n,t);var e=by(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"registerIcons",value:function(){return{replay:ky}}},{key:"afterCreate",value:function(){var t=this;Pg.insert(this.icons.replay,this.root,0),this.__handleReplay=this.hook("replayClick",(function(){t.player.replay()}),{pre:function(t){t.preventDefault(),t.stopPropagation()}}),this.bind("svg",["click","touchend"],this.__handleReplay),this.bind(".xgplayer-replay-txt",["click","touchend"],this.__handleReplay),this.on(tp,(function(){if(t.playerConfig.loop||Wd.addClass(t.player.root,"replay"),!t.config.disable){t.show();var e=t.root.querySelector("path");if(e){var n=window.getComputedStyle(e).getPropertyValue("transform");if("string"==typeof n&&n.indexOf("none")>-1)return null;e.setAttribute("transform",n)}}})),this.on(Jd,(function(){t.hide()}))}},{key:"handleReplay",value:function(t){t.preventDefault(),t.stopPropagation(),this.player.replay(),Wd.removeClass(this.player.root,"replay")}},{key:"show",value:function(){this.config.disable||(this.root.style.display="flex")}},{key:"enable",value:function(){this.config.disable=!1}},{key:"disable",value:function(){this.config.disable=!0,this.hide()}},{key:"destroy",value:function(){this.unbind("svg",["click","touchend"],this.__handleReplay),this.unbind(".xgplayer-replay-txt",["click","touchend"],this.__handleReplay)}},{key:"render",value:function(){return'<xg-replay class="xgplayer-replay">\n <xg-replay-txt class="xgplayer-replay-txt" lang-key="'.concat(this.i18nKeys.REPLAY,'">').concat(this.i18n.REPLAY,"</xg-replay-txt>\n </xg-replay>")}}],[{key:"pluginName",get:function(){return"replay"}},{key:"defaultConfig",get:function(){return{disable:!1}}}]),n}(Pg);function Cy(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var xy=function(t){fi(n,t);var e=Cy(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"isEndedShow",get:function(){return this.config.isEndedShow},set:function(t){this.config.isEndedShow=t}},{key:"hide",value:function(){Wd.addClass(this.root,"hide")}},{key:"show",value:function(){Wd.removeClass(this.root,"hide")}},{key:"beforeCreate",value:function(t){"string"==typeof t.player.config.poster&&(t.config.poster=t.player.config.poster)}},{key:"afterCreate",value:function(){var t=this;this.on(tp,(function(){t.isEndedShow||Wd.addClass(t.root,"hide")})),this.config.hideCanplay?(this.once(op,(function(){t.onTimeUpdate()})),this.on(_p,(function(){Wd.removeClass(t.root,"hide"),Wd.addClass(t.root,"xg-showplay"),t.once(op,(function(){t.onTimeUpdate()}))}))):this.on(Jd,(function(){Wd.addClass(t.root,"hide")}))}},{key:"onTimeUpdate",value:function(){var t=this;this.player.currentTime?Wd.removeClass(this.root,"xg-showplay"):this.once(op,(function(){t.onTimeUpdate()}))}},{key:"update",value:function(t){t&&(this.config.poster=t,this.root.style.backgroundImage="url(".concat(t,")"))}},{key:"render",value:function(){var t=this.config,e=t.poster,n=t.hideCanplay,i=e?"background-image:url(".concat(e,");"):"";return'<xg-poster class="xgplayer-poster '.concat(n?"xg-showplay":"",'" style="').concat(i,'">\n </xg-poster>')}}],[{key:"pluginName",get:function(){return"poster"}},{key:"defaultConfig",get:function(){return{isEndedShow:!0,hideCanplay:!1,poster:""}}}]),n}(Pg);function _y(){return(new DOMParser).parseFromString('<svg class="play" xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="3 -4 28 40">\n <path fill="#fff" transform="scale(0.0320625 0.0320625)" d="M576,363L810,512L576,661zM342,214L576,363L576,661L342,810z"></path>\n</svg>\n',"image/svg+xml").firstChild}function Ey(){return(new DOMParser).parseFromString('<svg class="pause" xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="3 -4 28 40">\n <path fill="#fff" transform="scale(0.0320625 0.0320625)" d="M598,214h170v596h-170v-596zM256 810v-596h170v596h-170z"></path>\n</svg>\n',"image/svg+xml").firstChild}function Ty(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Sy={};var Py=function(t){fi(n,t);var e=Ty(n);function n(t){var i;return ui(this,n),(i=e.call(this,t)).autoPlayStart=!1,i}return Co(n,[{key:"afterCreate",value:function(){var t=this,e=this.player,n=this.playerConfig;this.initIcons(),this.once(yp,(function(){n&&(n.lang&&"en"===n.lang?Wd.addClass(e.root,"lang-is-en"):"jp"===n.lang&&Wd.addClass(e.root,"lang-is-jp"))})),this.on(kp,(function(){var e="auto"===t.config.mode?"auto-hide":"hide";Wd.addClass(t.root,e),t.autoPlayStart=!0,t.onPlayPause("play")})),n.autoplay||this.show(),this.on(bp,(function(){var e="auto"===t.config.mode?"auto-hide":"hide";t.setAttr("data-state","play"),Wd.removeClass(t.root,e),t.show()})),this.on(Jd,(function(){t.onPlayPause("play")})),this.on(ep,(function(){t.onPlayPause("pause")})),this.clickHandler=this.hook("startClick",this.switchPausePlay,{pre:function(e){e.preventDefault(),e.stopPropagation();var n=t.player.paused;t.emitUserAction(e,"switch_play_pause",{props:"paused",from:n,to:!n})}}),this.bind(["click","touchend"],this.clickHandler)}},{key:"preventDefault",value:function(t){}},{key:"registerIcons",value:function(){return{startPlay:{icon:_y,class:"xg-icon-play"},startPause:{icon:Ey,class:"xg-icon-pause"}}}},{key:"initIcons",value:function(){var t=this.icons;this.appendChild("xg-start-inner",t.startPlay),this.appendChild("xg-start-inner",t.startPause)}},{key:"hide",value:function(){Wd.addClass(this.root,"hide")}},{key:"show",value:function(){Wd.removeClass(this.root,"hide")}},{key:"focusHide",value:function(){Wd.addClass(this.root,"focus-hide")}},{key:"recover",value:function(){Wd.removeClass(this.root,"focus-hide")}},{key:"switchStatus",value:function(t){t?this.setAttr("data-state",this.player.paused?"pause":"play"):this.setAttr("data-state",this.player.paused?"play":"pause")}},{key:"animate",value:function(t){var e=this;!function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{start:null,end:null};Sy[t]&&window.clearTimeout(Sy[t].id),Sy[t]={},n.start&&n.start(),Sy[t].id=window.setTimeout((function(){n.end&&n.end(),window.clearTimeout(Sy[t].id),delete Sy[t]}),e)}("pauseplay",400,{start:function(){Wd.addClass(e.root,"interact"),e.show(),e.switchStatus(!0)},end:function(){Wd.removeClass(e.root,"interact"),!t&&e.hide()}})}},{key:"switchPausePlay",value:function(t){var e=this.player;(t.preventDefault(),t.stopPropagation(),e.state<zv)||(this.player.paused||e.state!==Zv?e.play():e.pause())}},{key:"onPlayPause",value:function(t){var e=this.config,n=this.player;if(!(n.state<Zv)&&this.autoPlayStart){if("show"===e.mode)return this.switchStatus(),void this.show();if("auto"!==e.mode){if(e.isShowPause&&n.paused&&!n.ended||e.isShowEnd&&n.ended)return this.switchStatus(),void this.show();if(e.disableAnimate)return this.switchStatus(),void this.hide();if("play"===t)this.autoPlayStart?this.animate():this.hide();else{if(!this.autoPlayStart)return;this.animate()}}else this.switchStatus()}}},{key:"destroy",value:function(){this.unbind(["click","touchend"],this.clickHandler),Object.keys(Sy).map((function(t){window.clearTimeout(Sy[t].id),delete Sy[t]}))}},{key:"render",value:function(){var t=this.playerConfig.autoplay?"auto"===this.config.mode?"auto-hide":"hide":"";return'\n <xg-start class="xgplayer-start '.concat(t,'">\n <xg-start-inner></xg-start-inner>\n </xg-start>')}}],[{key:"pluginName",get:function(){return"start"}},{key:"defaultConfig",get:function(){return{isShowPause:!1,isShowEnd:!1,disableAnimate:!1,mode:"hide"}}}]),n}(Pg);function Ry(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Oy=function(t){fi(n,t);var e=Ry(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"render",value:function(){var t=this.config.innerHtml,e=Wd.createDom("xg-enter","",{},"xgplayer-enter");if(t&&t instanceof window.HTMLElement)e.appendChild(t);else if(t&&"string"==typeof t)e.innerHTML=t;else{for(var n="",i=1;i<=12;i++)n+='<div class="xgplayer-enter-bar'.concat(i,'"></div>');e.innerHTML='<div class="xgplayer-enter-spinner">'.concat(n,"</div>")}return e}}],[{key:"pluginName",get:function(){return"enter"}},{key:"defaultConfig",get:function(){return{innerHtml:"",logo:""}}}]),n}(Pg);function Iy(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Ly=function(t){fi(n,t);var e=Iy(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"afterCreate",value:function(){this.getMini=this.getMini.bind(this),this.exitMini=this.exitMini.bind(this),this.bind("click",this.getMini)}},{key:"getMini",value:function(){this.config.onClick&&this.config.onClick()}},{key:"exitMini",value:function(){this.config.onClick&&this.config.onClick()}},{key:"destroy",value:function(){this.unbind(["click","touchend"],this.getMini)}},{key:"render",value:function(){var t="MINISCREEN";return'\n <xg-icon class="xgplayer-miniicon">\n <div class="xgplayer-icon btn-text"><span class="icon-text" lang-key="'.concat(this.i18nKeys[t],'">').concat(this.i18n[t],"</span></div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"miniscreenIcon"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:10}}}]),n}(Pg);function Ay(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}function Dy(t){var e=parseFloat(t);return-1===t.indexOf("%")&&!isNaN(e)&&e}var My=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],Ny=My.length;function Fy(t){if("string"==typeof t&&(t=document.querySelector(t)),t&&"object"===di(t)&&t.nodeType){var e=function(t){return window.getComputedStyle(t)}(t);if("none"===e.display)return function(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<Ny;e++)t[My[e]]=0;return t}();var n={};n.width=t.offsetWidth,n.height=t.offsetHeight;for(var i=n.isBorderBox="border-box"===e.boxSizing,r=0;r<Ny;r++){var o=My[r],s=e[o],a=parseFloat(s);n[o]=isNaN(a)?0:a}var c=n.paddingLeft+n.paddingRight,l=n.paddingTop+n.paddingBottom,u=n.marginLeft+n.marginRight,h=n.marginTop+n.marginBottom,f=n.borderLeftWidth+n.borderRightWidth,d=n.borderTopWidth+n.borderBottomWidth,p=i,g=Dy(e.width);!1!==g&&(n.width=g+(p?0:c+f));var v=Dy(e.height);return!1!==v&&(n.height=v+(p?0:l+d)),n.innerWidth=n.width-(c+f),n.innerHeight=n.height-(l+d),n.outerWidth=n.width+u,n.outerHeight=n.height+h,n}}function jy(t,e){for(var n=0;n<t.length;n++){var i=t[n];if(i.identifier===e)return i}}var By="dragStart",Hy="dragMove",Uy="dragEnded",Vy={mousedown:["mousemove","mouseup"],touchstart:["touchmove","touchend","touchcancel"],pointerdown:["pointermove","pointerup","pointercancel"]},Gy=function(t){fi(n,t);var e=Ay(n);function n(t){var i,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return ui(this,n),(i=e.call(this)).isEnabled=!0,i.isDragging=!1,i.isDown=!1,i.position={},i.downPoint={},i.dragPoint={x:0,y:0},i.startPos={x:0,y:0},i._root=t instanceof Element?t:document.querySelector(t),i._handlerDom=r.handle instanceof Element?r.handle:document.querySelector(r.handle),i._root&&i._handlerDom?(i._bindStartEvent(),i):gi(i)}return Co(n,[{key:"_bindStartEvent",value:function(){var t=this;"ontouchstart"in window?this._startKey="touchstart":this._startKey="mousedown",this["on".concat(this._startKey)]=this["on".concat(this._startKey)].bind(this),this._handlerDom.addEventListener(this._startKey,this["on".concat(this._startKey)]),Vy[this._startKey].map((function(e){t["on".concat(e)]=t["on".concat(e)].bind(t)}))}},{key:"_unbindStartEvent",value:function(){this._handlerDom.removeEventListener(this._startKey,this["on".concat(this._startKey)])}},{key:"_bindPostStartEvents",value:function(t){var e=this;if(t){var n=Vy[this._startKey];n.map((function(t){window.addEventListener(t,e["on".concat(t)])})),this._boundPointerEvents=n}}},{key:"_unbindPostStartEvents",value:function(){var t=this;this._boundPointerEvents&&(this._boundPointerEvents.map((function(e){window.removeEventListener(e,t["on".concat(e)])})),delete this._boundPointerEvents)}},{key:"enable",value:function(){this.isEnabled=!0}},{key:"disable",value:function(){this.isEnabled=!1,this.isDragging&&this.onUp()}},{key:"onDocUp",value:function(t){this.onUp()}},{key:"animate",value:function(){var t=this;this.isDragging&&(this.positionDrag(),window.requestAnimationFrame((function(){t.animate()})))}},{key:"positionDrag",value:function(){var t="translate3d(".concat(this.dragPoint.x,"px, ").concat(this.dragPoint.y,"px, 0)");this._root.style.transform=t,this._root.style.webKitTransform=t}},{key:"setLeftTop",value:function(){this._root.style.left=this.position.x+"px",this._root.style.top=this.position.y+"px"}},{key:"onmousedown",value:function(t){this.dragStart(t,t)}},{key:"onmousemove",value:function(t){this.dragMove(t,t)}},{key:"onmouseup",value:function(t){this.dragEnd(t,t)}},{key:"ontouchstart",value:function(t){var e=t.changedTouches[0];this.dragStart(t,e),this.touchIdentifier=void 0!==e.pointerId?e.pointerId:e.identifier,t.preventDefault()}},{key:"ontouchmove",value:function(t){var e=jy(t.changedTouches,this.touchIdentifier);e&&this.dragMove(t,e)}},{key:"ontouchend",value:function(t){var e=jy(t.changedTouches,this.touchIdentifier);e&&this.dragEnd(t,e),t.preventDefault()}},{key:"ontouchcancel",value:function(t){var e=jy(t.changedTouches,this.touchIdentifier);e&&this.dragCancel(t,e)}},{key:"dragStart",value:function(t,e){if(this._root&&!this.isDown&&this.isEnabled){this.downPoint=e,this.dragPoint.x=0,this.dragPoint.y=0,this._getPosition();var n=Fy(this._root);this.startPos.x=this.position.x,this.startPos.y=this.position.y,this.startPos.maxY=window.innerHeight-n.height,this.startPos.maxX=window.innerWidth-n.width,this.setLeftTop(),this.isDown=!0,this._bindPostStartEvents(t)}}},{key:"dragRealStart",value:function(t,e){this.isDragging=!0,this.animate(),this.emit(By,this.startPos)}},{key:"dragEnd",value:function(t,e){this._root&&(this._unbindPostStartEvents(),this.isDragging&&(this._root.style.transform="",this.setLeftTop(),this.emit(Uy)),this.presetInfo())}},{key:"_dragPointerMove",value:function(t,e){var n={x:e.pageX-this.downPoint.pageX,y:e.pageY-this.downPoint.pageY};return!this.isDragging&&this.hasDragStarted(n)&&this.dragRealStart(t,e),n}},{key:"dragMove",value:function(t,e){if(t=t||window.event,this.isDown){var n=this.startPos,i=n.x,r=n.y,o=this._dragPointerMove(t,e),s=o.x,a=o.y;s=this.checkContain("x",s,i),a=this.checkContain("y",a,r),this.position.x=i+s,this.position.y=r+a,this.dragPoint.x=s,this.dragPoint.y=a,this.emit(Hy,this.position)}}},{key:"dragCancel",value:function(t,e){this.dragEnd(t,e)}},{key:"presetInfo",value:function(){this.isDragging=!1,this.startPos={x:0,y:0},this.dragPoint={x:0,y:0},this.isDown=!1}},{key:"destroy",value:function(){this._unbindStartEvent(),this._unbindPostStartEvents(),this.isDragging&&this.dragEnd(),this.removeAllListeners(),this._handlerDom=null}},{key:"hasDragStarted",value:function(t){return Math.abs(t.x)>3||Math.abs(t.y)>3}},{key:"checkContain",value:function(t,e,n){return e+n<0?0-n:"x"===t&&e+n>this.startPos.maxX?this.startPos.maxX-n:"y"===t&&e+n>this.startPos.maxY?this.startPos.maxY-n:e}},{key:"_getPosition",value:function(){var t=window.getComputedStyle(this._root),e=this._getPositionCoord(t.left,"width"),n=this._getPositionCoord(t.top,"height");this.position.x=isNaN(e)?0:e,this.position.y=isNaN(n)?0:n,this._addTransformPosition(t)}},{key:"_addTransformPosition",value:function(t){var e=t.transform;if(0===e.indexOf("matrix")){var n=e.split(","),i=0===e.indexOf("matrix3d")?12:4,r=parseInt(n[i],10),o=parseInt(n[i+1],10);this.position.x+=r,this.position.y+=o}}},{key:"_getPositionCoord",value:function(t,e){if(-1!==t.indexOf("%")){var n=Fy(this._root.parentNode);return n?parseFloat(t)/100*n[e]:0}return parseInt(t,10)}}]),n}(Gh);function Wy(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Yy=function(t){fi(n,t);var e=Wy(n);function n(t){var i;ui(this,n),yi(pi(i=e.call(this,t)),"onCancelClick",(function(t){i.exitMini(),i.isClose=!0})),yi(pi(i),"onCenterClick",(function(t){var e=pi(i).player;e.paused?e.play():e.pause()})),yi(pi(i),"onScroll",(function(t){if(!(!window.scrollY&&0!==window.scrollY||Math.abs(window.scrollY-i.pos.scrollY)<50)){var e=parseInt(Wd.getCss(i.player.root,"height"));e+=i.config.scrollTop,i.pos.scrollY=window.scrollY,window.scrollY>e+5?!i.isMini&&!i.isClose&&i.getMini():window.scrollY<=e&&(i.isMini&&i.exitMini(),i.isClose=!1)}})),i.isMini=!1,i.isClose=!1;var r=pi(i).config;return i.pos={left:r.left<0?window.innerWidth-r.width-20:r.left,top:r.top<0?window.innerHeight-r.height-20:r.top,height:i.config.height,width:i.config.width,scrollY:window.scrollY||0},i.lastStyle=null,i}return Co(n,[{key:"beforeCreate",value:function(t){"boolean"==typeof t.player.config.mini&&(t.config.isShowIcon=t.player.config.mini)}},{key:"afterCreate",value:function(){var t=this;this.initIcons(),this.on(ep,(function(){t.setAttr("data-state","pause")})),this.on(Jd,(function(){t.setAttr("data-state","play")}))}},{key:"onPluginsReady",value:function(){var t=this,e=this.player;if(!this.config.disable){if(this.config.isShowIcon){var n={config:{onClick:function(){t.getMini()}}};e.controls.registerPlugin(Ly,n,Ly.pluginName)}var i=Wd.checkTouchSupport()?"touchend":"click";this.bind(".mini-cancel-btn",i,this.onCancelClick),this.bind(".play-icon",i,this.onCenterClick),this.config.disableDrag||(this._draggabilly=new Gy(this.player.root,{handle:this.root})),this.config.isScrollSwitch&&window.addEventListener("scroll",this.onScroll)}}},{key:"registerIcons",value:function(){return{play:{icon:_y,class:"xg-icon-play"},pause:{icon:Ey,class:"xg-icon-pause"}}}},{key:"initIcons",value:function(){var t=this.icons;this.appendChild(".play-icon",t.play),this.appendChild(".play-icon",t.pause)}},{key:"getMini",value:function(){var t=this;if(!this.isMini){var e=this.player,n=this.playerConfig,i=this.config.target||this.player.root;this.lastStyle={},Wd.addClass(e.root,"xgplayer-mini"),["width","height","top","left"].map((function(e){t.lastStyle[e]=i.style[e],i.style[e]="".concat(t.pos[e],"px")})),n.fluid&&(i.style["padding-top"]=""),this.emit(Sp,!0),e.isMini=this.isMini=!0}}},{key:"exitMini",value:function(){var t=this;if(!this.isMini)return!1;var e=this.player,n=this.playerConfig,i=this.config.target||this.player.root;Wd.removeClass(e.root,"xgplayer-mini"),this.lastStyle&&Object.keys(this.lastStyle).map((function(e){i.style[e]=t.lastStyle[e]})),this.lastStyle=null,n.fluid&&(e.root.style.width="100%",e.root.style.height="0",e.root.style["padding-top"]="".concat(100*n.height/n.width,"%")),this.emit(Sp,!1),this.isMini=e.isMini=!1}},{key:"destroy",value:function(){window.removeEventListener("scroll",this.onScroll);var t=Wd.checkTouchSupport()?"touchend":"click";this.unbind(".mini-cancel-btn",t,this.onCancelClick),this.unbind(".play-icon",t,this.onCenterClick),this._draggabilly&&this._draggabilly.destroy(),this._draggabilly=null,this.exitMini()}},{key:"render",value:function(){if(!this.config.disable)return'\n <xg-mini-layer class="xg-mini-layer">\n <xg-mini-header class="xgplayer-mini-header">\n <div lang-key="'.concat(this.i18nKeys.MINI_DRAG,'">').concat(this.i18n.MINI_DRAG,'</div>\n </xg-mini-header>\n <div class="mini-cancel-btn">\n <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">\n <path fill="#fff" fill-rule="evenodd" d="M3.99 3.49a1 1 0 0 1 1.414 0L10 8.085l4.596-4.595a1 1 0 1 1 1.414 1.414L11.414 9.5l4.596 4.596a1 1 0 0 1 .084 1.32l-.084.094a1 1 0 0 1-1.414 0L10 10.914 5.404 15.51a1 1 0 0 1-1.414-1.414L8.585 9.5 3.99 4.904a1 1 0 0 1-.084-1.32z"></path>\n </svg>\n </div>\n <div class="play-icon">\n </div>\n </xg-mini-layer>')}}],[{key:"pluginName",get:function(){return"miniscreen"}},{key:"defaultConfig",get:function(){return{index:10,disable:!1,width:320,height:180,left:-1,top:-1,isShowIcon:!1,isScrollSwitch:!1,scrollTop:0,disableDrag:!1}}}]),n}(Pg);function Ky(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var zy={mouseenter:"onMouseEnter",mouseleave:"onMouseLeave",mousemove:"onMouseMove"},Xy=["videoClick","videoDbClick"],qy=function(t){fi(n,t);var e=Ky(n);function n(){var t;ui(this,n);for(var i=arguments.length,r=new Array(i),o=0;o<i;o++)r[o]=arguments[o];return yi(pi(t=e.call.apply(e,[this].concat(r))),"onMouseMove",(function(e){var n=pi(t),i=n.player,r=n.playerConfig;i.isActive||(i.focus({autoHide:!r.closeDelayBlur}),!r.closeFocusVideoFocus&&i.video.focus())})),yi(pi(t),"onMouseEnter",(function(e){var n=pi(t),i=n.playerConfig,r=n.player;!i.closeFocusVideoFocus&&r.video.focus(),i.closeDelayBlur?r.focus({autoHide:!1}):r.focus()})),yi(pi(t),"onMouseLeave",(function(e){var n=t.playerConfig,i=n.closePlayerBlur,r=n.leavePlayerTime;i||(r?t.player.focus({autoHide:!0,hideDelay:r}):t.player.blur())})),yi(pi(t),"onVideoClick",(function(e){var n=pi(t),i=n.player,r=n.playerConfig;e.target&&r.closeVideoClick||e.target!==i.root&&e.target!==i.video&&e.target!==i.innerContainer&&e.target!==i.video.__canvas||(e.preventDefault(),r.closeVideoStopPropagation||e.stopPropagation(),t._clickCount++,t.clickTimer&&(clearTimeout(t.clickTimer),t.clickTimer=null),t.clickTimer=setTimeout((function(){t._clickCount&&(t._clickCount--,lg(pi(t),Xy[0],(function(e,n){t.switchPlayPause(n.e)}),{e:e,paused:i.paused}),clearTimeout(t.clickTimer),t.clickTimer=null)}),300))})),yi(pi(t),"onVideoDblClick",(function(e){var n=pi(t),i=n.player,r=n.playerConfig;!e.target||e.target!==i.video&&e.target!==i.video.__canvas||r.closeVideoDblclick||(t._clickCount<2?t._clickCount=0:(t._clickCount=0,t.clickTimer&&(clearTimeout(t.clickTimer),t.clickTimer=null),e.preventDefault(),e.stopPropagation(),lg(pi(t),Xy[1],(function(e,n){t.emitUserAction(n.e,"switch_fullscreen",{props:"fullscreen",from:i.fullscreen,to:!i.fullscreen}),i.fullscreen?i.exitFullscreen():i.getFullscreen()}),{e:e,fullscreen:i.fullscreen})))})),t}return Co(n,[{key:"afterCreate",value:function(){var t=this;this._clickCount=0,Xy.map((function(e){t.__hooks[e]=null}));var e=this.playerConfig,n=e.enableContextmenu;e.isMobileSimulateMode||"mobile"===Xd.device||(this.config.disableContextmenu=!n,this.initEvents())}},{key:"initEvents",value:function(){var t=this,e=this.player,n=e.video,i=e.root;i.addEventListener("click",this.onVideoClick,!1),n.addEventListener("dblclick",this.onVideoDblClick,!1),Object.keys(zy).map((function(e){i.addEventListener(e,t[zy[e]],!1)})),this.config.disableContextmenu&&n.addEventListener("contextmenu",this.onContextmenu,!1)}},{key:"switchPlayPause",value:function(t){var e=this.player;this.emitUserAction(t,"switch_play_pause",{props:"paused",from:e.paused,to:!e.paused}),e.ended?e.duration!==1/0&&e.duration>0&&e.replay():e.paused?e.play():e.pause()}},{key:"onContextmenu",value:function(t){(t=t||window.event).preventDefault&&t.preventDefault(),t.stopPropagation?t.stopPropagation():(t.returnValue=!1,t.cancelBubble=!0)}},{key:"destroy",value:function(){var t=this,e=this.player,n=e.video,i=e.root;this.clickTimer&&clearTimeout(this.clickTimer),i.removeEventListener("click",this.onVideoClick,!1),n.removeEventListener("dblclick",this.onVideoDblClick,!1),n.removeEventListener("contextmenu",this.onContextmenu,!1),Object.keys(zy).map((function(e){i.removeEventListener(e,t[zy[e]],!1)}))}}],[{key:"pluginName",get:function(){return"pc"}},{key:"defaultConfig",get:function(){return{disableContextmenu:!0}}}]),n}(dg),$y=p,Zy=Le,Jy=wi,Qy=m,tm=En,em=Le,nm=function(t){if("number"!=typeof t&&"Number"!=$y(t))throw TypeError("Incorrect invocation");return+t},im=function(t){var e=Jy(Qy(this)),n="",i=Zy(t);if(i<0||i==1/0)throw RangeError("Wrong number of repetitions");for(;i>0;(i>>>=1)&&(e+=e))1&i&&(n+=e);return n},rm=r,om=1..toFixed,sm=Math.floor,am=function(t,e,n){return 0===e?n:e%2==1?am(t,e-1,n*t):am(t*t,e/2,n)},cm=function(t,e,n){for(var i=-1,r=n;++i<6;)r+=e*t[i],t[i]=r%1e7,r=sm(r/1e7)},lm=function(t,e){for(var n=6,i=0;--n>=0;)i+=t[n],t[n]=sm(i/e),i=i%e*1e7},um=function(t){for(var e=6,n="";--e>=0;)if(""!==n||0===e||0!==t[e]){var i=String(t[e]);n=""===n?i:n+im.call("0",7-i.length)+i}return n};tm({target:"Number",proto:!0,forced:om&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!rm((function(){om.call({})}))},{toFixed:function(t){var e,n,i,r,o=nm(this),s=em(t),a=[0,0,0,0,0,0],c="",l="0";if(s<0||s>20)throw RangeError("Incorrect fraction digits");if(o!=o)return"NaN";if(o<=-1e21||o>=1e21)return String(o);if(o<0&&(c="-",o=-o),o>1e-21)if(n=(e=function(t){for(var e=0,n=t;n>=4096;)e+=12,n/=4096;for(;n>=2;)e+=1,n/=2;return e}(o*am(2,69,1))-69)<0?o*am(2,-e,1):o/am(2,e,1),n*=4503599627370496,(e=52-e)>0){for(cm(a,0,n),i=s;i>=7;)cm(a,1e7,0),i-=7;for(cm(a,am(10,i,1),0),i=e-1;i>=23;)lm(a,1<<23),i-=23;lm(a,1<<i),cm(a,1,1),lm(a,2),l=um(a)}else cm(a,0,n),cm(a,1<<-e,0),l=um(a)+im.call("0",s);return l=s>0?c+((r=l.length)<=s?"0."+im.call("0",s-r)+l:l.slice(0,r-s)+"."+l.slice(r-s)):c+l}});var hm="press",fm="pressend",dm="doubleclick",pm="click",gm="touchmove",vm="touchstart",ym="touchend",mm={start:"touchstart",end:"touchend",move:"touchmove",cancel:"touchcancel"},km={start:"mousedown",end:"mouseup",move:"mousemove",cancel:"mouseleave"};function bm(t){return t&&t.length>0?t[t.length-1]:null}function wm(t){var e=navigator.userAgent;/(?:iPhone|iPad)/.test(e)&&t.cancelable&&t.preventDefault()}var Cm=function(){function t(e){var n=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{eventType:"touch"};ui(this,t),this._pos={moving:!1,start:!1,x:0,y:0},this.config={pressDelay:600,dbClickDelay:300,disablePress:!1,disableDbClick:!1,miniStep:2},Object.keys(i).map((function(t){n.config[t]=i[t]})),this.root=e,this.events="mouse"===i.eventType?km:mm,this.pressIntrvalId=null,this.dbIntrvalId=null,this.__handlers={},this._initEvent()}return Co(t,[{key:"_initEvent",value:function(){this.onTouchStart=this.onTouchStart.bind(this),this.onTouchMove=this.onTouchMove.bind(this),this.onTouchEnd=this.onTouchEnd.bind(this),this.onTouchCancel=this.onTouchCancel.bind(this),this.root.addEventListener(this.events.start,this.onTouchStart)}},{key:"__setPress",value:function(t){var e=this,n=this.config;this.pressIntrvalId&&this.__clearPress(),this.pressIntrvalId=setTimeout((function(){e.trigger(hm,t),e._pos.press=!0,e.__clearPress()}),n.pressDelay)}},{key:"__clearPress",value:function(){window.clearTimeout(this.pressIntrvalId),this.pressIntrvalId=null}},{key:"__setDb",value:function(t){var e=this,n=this.config;if(this.dbIntrvalId)return this.__clearDb(),void this.trigger(dm,t);this.dbIntrvalId=setTimeout((function(){e.__clearDb(),e._pos.start||e._pos.press||e._pos.moving||e.trigger(pm,t)}),n.dbClickDelay)}},{key:"__clearDb",value:function(){clearTimeout(this.dbIntrvalId),this.dbIntrvalId=null}},{key:"on",value:function(t,e){this.__handlers[t]||(this.__handlers[t]=[]),this.__handlers[t].push(e)}},{key:"off",value:function(t,e){if(this.__handlers[t]){for(var n=this.__handlers[t],i=-1,r=0;r<n.length;r++)if(n[r]===e){i=r;break}i>=0&&this.__handlers[t].splice(i,1)}}},{key:"trigger",value:function(t,e){this.__handlers[t]&&this.__handlers[t].map((function(n){try{n(e)}catch(e){console.error("trigger>>:".concat(t),e)}}))}},{key:"onTouchStart",value:function(t){var e=this._pos,n=this.root;wm(t);var i=bm(t.touches);e.x=i?parseInt(i.pageX,10):t.pageX,e.y=i?parseInt(i.pageX,10):t.pageX,e.start=!0,this.__setPress(t),n.addEventListener(this.events.end,this.onTouchEnd),n.addEventListener(this.events.cancel,this.onTouchCancel),n.addEventListener(this.events.move,this.onTouchMove),this.trigger(vm,t)}},{key:"onTouchCancel",value:function(t){this.onTouchEnd(t)}},{key:"onTouchEnd",value:function(t){var e=this._pos,n=this.root;wm(t),this.__clearPress(),n.removeEventListener(this.events.cancel,this.onTouchCancel),n.removeEventListener(this.events.end,this.onTouchEnd),n.removeEventListener(this.events.move,this.onTouchMove),t.moving=e.moving,t.press=e.press,e.press&&this.trigger(fm,t),this.trigger(ym,t),!e.press&&!e.moving&&this.__setDb(t),e.press=!1,e.start=!1,e.moving=!1}},{key:"onTouchMove",value:function(t){var e=this._pos,n=this.config,i=bm(t.touches),r=i?parseInt(i.pageX,10):t.pageX,o=i?parseInt(i.pageY,10):t.pageX,s=r-e.x,a=o-e.y;Math.abs(a)<n.miniStep&&Math.abs(s)<n.miniStep||(this.__clearPress(),e.press&&this.trigger(fm,t),e.press=!1,e.moving=!0,this.trigger(gm,t))}},{key:"destroy",value:function(){var t=this,e={touchend:"onTouchEnd",touchmove:"onTouchMove",touchstart:"onTouchStart"};Object.keys(e).map((function(n){t.root.removeEventListener("touchend",t[e[n]])}))}}]),t}();function xm(){return(new DOMParser).parseFromString('<svg width="20" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"\n xmlns:xlink="http://www.w3.org/1999/xlink">\n <path opacity="0.54"\n d="M7.5 3.63397C8.16667 4.01887 8.16667 4.98113 7.5 5.36603L1.5 8.83013C0.833334 9.21503 0 8.7339 0 7.9641L0 1.0359C0 0.266098 0.833333 -0.215027 1.5 0.169873L7.5 3.63397Z"\n fill="white" />\n <path transform="translate(5 0)" d="M7.5 3.63397C8.16667 4.01887 8.16667 4.98113 7.5 5.36603L1.5 8.83013C0.833334 9.21503 0 8.7339 0 7.9641L0 1.0359C0 0.266098 0.833333 -0.215027 1.5 0.169873L7.5 3.63397Z" fill="white"/>\n</svg>',"image/svg+xml").firstChild}function _m(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Em="auto",Tm="seeking",Sm="playbackrate",Pm=function(t){fi(n,t);var e=_m(n);function n(t){var i;return ui(this,n),yi(pi(i=e.call(this,t)),"onTouchStart",(function(t){var e=pi(i),n=e.player,r=e.config,o=e.pos,s=e.playerConfig,a=i.getTouche(t);if(a&&!r.disableGesture&&i.duration>0&&!n.ended){o.isStart=!0,Wd.checkIsFunction(s.disableSwipeHandler)&&s.disableSwipeHandler(),i.find(".xg-dur").innerHTML=Wd.format(i.duration);var c=i.root.getBoundingClientRect();90===n.rotateDeg?(o.top=c.left,o.left=c.top,o.width=c.height,o.height=c.width):(o.top=c.top,o.left=c.left,o.width=c.width,o.height=c.height),o.x=parseInt(a.pageX-o.left,10),o.y=parseInt(a.pageY-o.top,10),o.scopeL=r.scopeL*o.width,o.scopeR=(1-r.scopeR)*o.width,o.scopeM1=o.width*(1-r.scopeM)/2,o.scopeM2=o.width-o.scopeM1}})),yi(pi(i),"onTouchMove",(function(t){var e=i.getTouche(t),n=pi(i),r=n.pos,o=n.config,s=n.player;if(e&&!o.disableGesture&&i.duration&&r.isStart){var a=o.miniMoveStep,c=o.hideControlsActive,l=parseInt(e.pageX-r.left,10),u=parseInt(e.pageY-r.top,10);if(Math.abs(l-r.x)>a||Math.abs(u-r.y)>a){var h=l-r.x,f=u-r.y,d=r.scope;if(-1===d&&(0===(d=i.checkScope(l,u,h,f,r))&&(c?s.blur():s.focus({autoHide:!1}),!r.time&&(r.time=parseInt(1e3*s.currentTime,10)+1e3*i.timeOffset)),r.scope=d),-1===d||d>0&&!o.gestureY||0===d&&!o.gestureX)return;t.cancelable&&t.preventDefault(),i.executeMove(h,f,d,r.width,r.height),r.x=l,r.y=u}}})),yi(pi(i),"onTouchEnd",(function(t){var e=pi(i),n=e.player,r=e.pos,o=e.playerConfig;r.isStart&&(r.scope>-1&&t.cancelable&&t.preventDefault(),i.endLastMove(r.scope),setTimeout((function(){n.getPlugin("progress")&&n.getPlugin("progress").resetSeekState()}),10),r.scope=-1,i.resetPos(),Wd.checkIsFunction(o.enableSwipeHandler)&&o.enableSwipeHandler(),i.changeAction(Em))})),yi(pi(i),"onRootTouchMove",(function(t){!i.config.disableGesture&&i.config.gestureX&&i.checkIsRootTarget(t)&&(t.stopPropagation(),i.pos.isStart?i.onTouchMove(t):i.onTouchStart(t))})),yi(pi(i),"onRootTouchEnd",(function(t){if(i.pos.isStart&&i.checkIsRootTarget(t)){t.stopPropagation(),i.onTouchEnd(t);var e=i.player.controls;e&&e.recoverAutoHide()}})),i.pos={isStart:!1,x:0,y:0,time:0,volume:0,rate:1,light:0,width:0,height:0,scopeL:0,scopeR:0,scopeM1:0,scopeM2:0,scope:-1},i.timer=null,i}return Co(n,[{key:"duration",get:function(){return this.playerConfig.customDuration||this.player.duration}},{key:"timeOffset",get:function(){return this.playerConfig.timeOffset||0}},{key:"registerIcons",value:function(){return{seekTipIcon:{icon:xm,class:"xg-seek-pre"}}}},{key:"afterCreate",value:function(){var t=this,e=this.playerConfig,n=this.config,i=this.player;!0===e.closeVideoDblclick&&(n.closedbClick=!0),this.resetPos(),Wd.isUndefined(e.disableGesture)||(n.disableGesture=!!e.disableGesture),this.appendChild(".xg-seek-icon",this.icons.seekTipIcon),this.xgMask=Wd.createDom("xg-mask","",{},"xgmask"),i.root.appendChild(this.xgMask),this.initCustomStyle(),this.registerThumbnail();var r="mobile"!==Xd.device?"mouse":"touch";this.touch=new Cm(this.root,{eventType:r}),this.root.addEventListener("contextmenu",(function(t){t.preventDefault()})),i.root.addEventListener("touchmove",this.onRootTouchMove,!0),i.root.addEventListener("touchend",this.onRootTouchEnd,!0),this.on(cp,(function(){var e=t.player,n=t.config;1e3*e.duration<n.moveDuration&&(n.moveDuration=1e3*e.duration)})),this.on([ap,tp],(function(){var e=t.pos,n=e.time;!e.isStart&&n>0&&(t.pos.time=0)}));var o={touchstart:"onTouchStart",touchmove:"onTouchMove",touchend:"onTouchEnd",press:"onPress",pressend:"onPressEnd",click:"onClick",doubleclick:"onDbClick"};if(Object.keys(o).map((function(e){t.touch.on(e,(function(n){t[o[e]](n)}))})),!n.disableActive){var s=i.plugins.progress;s&&(s.addCallBack("dragmove",(function(e){t.activeSeekNote(e.currentTime,e.forward)})),s.addCallBack("dragend",(function(){t.changeAction(Em)})))}}},{key:"registerThumbnail",value:function(){var t=this.player.plugins.thumbnail;if(t&&t.usable){this.thumbnail=t.createThumbnail(null,"mobile-thumbnail");var e=this.find(".time-preview");e.insertBefore(this.thumbnail,e.children[0])}}},{key:"initCustomStyle",value:function(){var t=(this.playerConfig||{}).commonStyle,e=t.playedColor,n=t.progressColor;e&&(this.find(".xg-curbar").style.backgroundColor=e,this.find(".xg-cur").style.color=e),n&&(this.find(".xg-bar").style.backgroundColor=n,this.find(".time-preview").style.color=n),this.config.disableTimeProgress&&Wd.addClass(this.find(".xg-timebar"),"hide")}},{key:"resetPos",value:function(){var t=this;this.pos?(this.pos.isStart=!1,this.pos.scope=-1,["x","y","width","height","scopeL","scopeR","scopeM1","scopeM2"].map((function(e){t.pos[e]=0}))):this.pos={isStart:!1,x:0,y:0,volume:0,rate:1,light:0,width:0,height:0,scopeL:0,scopeR:0,scopeM1:0,scopeM2:0,scope:-1,time:0}}},{key:"changeAction",value:function(t){var e=this.player;this.root.setAttribute("data-xg-action",t);var n=e.plugins.start;n&&n.recover()}},{key:"getTouche",value:function(t){this.player.rotateDeg;var e=t.touches&&t.touches.length>0?t.touches[t.touches.length-1]:t;return{pageX:e.pageX,pageY:e.pageY}}},{key:"checkScope",value:function(t,e,n,i,r){var o=r.width,s=-1;if(t<0||t>o)return s;var a=0===i?Math.abs(n):Math.abs(n/i);return Math.abs(n)>0&&a>=1.73&&t>r.scopeM1&&t<r.scopeM2?s=0:(0===Math.abs(n)||a<=.57)&&(s=t<r.scopeL?1:t>r.scopeR?2:3),s}},{key:"executeMove",value:function(t,e,n,i,r){switch(n){case 0:this.updateTime(t/i*this.config.scopeM);break;case 1:this.updateBrightness(e/r);break;case 2:Xd.os.isIos||this.updateVolume(e/r)}}},{key:"endLastMove",value:function(t){var e=this,n=this.pos,i=this.player,r=this.config,o=(n.time-this.timeOffset)/1e3;switch(t){case 0:i.seek(Number(o).toFixed(1)),r.hideControlsEnd?i.blur():i.focus(),this.timer=setTimeout((function(){e.pos.time=0}),500)}this.changeAction(Em)}},{key:"checkIsRootTarget",value:function(t){var e=this.player.plugins||{};return(!e.progress||!e.progress.root.contains(t.target))&&(e.start&&e.start.root.contains(t.target)||e.controls&&e.controls.root.contains(t.target))}},{key:"sendUseAction",value:function(t){var e=this.player.paused;this.emitUserAction(t,"switch_play_pause",{prop:"paused",from:e,to:!e})}},{key:"onClick",value:function(t){var e=this.player,n=this.config,i=this.playerConfig;e.state<Zv?i.closeVideoClick||(this.sendUseAction(new Event("click")),e.play()):!n.closedbClick||i.closeVideoClick?e.isActive?e.blur():e.focus():i.closeVideoClick||(e.isActive&&(this.sendUseAction(new Event("click")),this.switchPlayPause()),e.focus())}},{key:"onDbClick",value:function(t){var e=this.config,n=this.player;!e.closedbClick&&n.state>=Zv&&(this.sendUseAction(new Event("dblclick")),this.switchPlayPause())}},{key:"onPress",value:function(t){var e=this.pos,n=this.config,i=this.player;n.disablePress||(e.rate=this.player.playbackRate,this.emitUserAction("press","change_rate",{prop:"playbackRate",from:i.playbackRate,to:n.pressRate}),i.playbackRate=n.pressRate,this.changeAction(Sm))}},{key:"onPressEnd",value:function(t){var e=this.pos,n=this.config,i=this.player;n.disablePress||(this.emitUserAction("pressend","change_rate",{prop:"playbackRate",from:i.playbackRate,to:e.rate}),i.playbackRate=e.rate,e.rate=1,this.changeAction(Em))}},{key:"updateTime",value:function(t){var e=this.player,n=this.config,i=this.player.duration;t=Number(t.toFixed(4));var r=parseInt(t*n.moveDuration,10)+this.timeOffset;r=(r+=this.pos.time)<0?0:r>1e3*i?1e3*i-200:r,e.getPlugin("time")&&e.getPlugin("time").updateTime(r/1e3),e.getPlugin("progress")&&e.getPlugin("progress").updatePercent(r/1e3/this.duration,!0),this.activeSeekNote(r/1e3,t>0),n.isTouchingSeek&&e.seek(Number((r-this.timeOffset)/1e3).toFixed(1)),this.pos.time=r}},{key:"updateVolume",value:function(t){this.player.rotateDeg&&(t=-t);var e=this.player,n=this.pos;if(t=parseInt(100*t,10),n.volume+=t,!(Math.abs(n.volume)<10)){var i=parseInt(10*e.volume,10)-parseInt(n.volume/10,10);i=i>10?10:i<1?0:i,e.volume=i/10,n.volume=0}}},{key:"updateBrightness",value:function(t){this.player.rotateDeg&&(t=-t);var e=this.pos,n=this.config,i=this.xgMask,r=e.light+.8*t;r=r>n.maxDarkness?n.maxDarkness:r<0?0:r,i&&(i.style.backgroundColor="rgba(0,0,0,".concat(r,")")),e.light=r}},{key:"activeSeekNote",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=this.player,i=this.config,r=!(this.duration!==1/0&&this.duration>0);if(t&&"number"==typeof t&&!r&&!i.disableActive){t<0?t=0:t>n.duration&&(t=n.duration-.2),this.changeAction(Tm);var o=n.plugins.start;o&&o.focusHide(),this.find(".xg-dur").innerHTML=Wd.format(this.duration),this.find(".xg-cur").innerHTML=Wd.format(t),this.find(".xg-curbar").style.width="".concat(t/this.duration*100,"%"),e?Wd.removeClass(this.find(".xg-seek-show"),"xg-back"):Wd.addClass(this.find(".xg-seek-show"),"xg-back"),this.updateThumbnails(t)}}},{key:"updateThumbnails",value:function(t){var e=this.player.plugins.thumbnail;e&&e.usable&&this.thumbnail&&e.update(this.thumbnail,t,160,90)}},{key:"switchPlayPause",value:function(){var t=this.player;if(!t.state<qv)return!1;t.ended||(t.paused?t.play():t.pause())}},{key:"disableGesture",value:function(){this.config.disableGesture=!1}},{key:"enableGesture",value:function(){this.config.disableGesture=!0}},{key:"destroy",value:function(){var t=this.player;this.timer&&clearTimeout(this.timer),this.thumbnail=null,t.root.removeChild(this.xgMask),this.xgMask=null,this.touch&&this.touch.destroy(),this.touch=null,t.root.removeEventListener("touchmove",this.onRootTouchMove,!0),t.root.removeEventListener("touchend",this.onRootTouchEnd,!0)}},{key:"render",value:function(){var t="normal"!==this.config.gradient?"gradient ".concat(this.config.gradient):"gradient";return'\n <xg-trigger class="trigger">\n <div class="'.concat(t,'"></div>\n <div class="time-preview">\n <div class="xg-seek-show ').concat(this.config.disableSeekIcon?" hide-seek-icon":"",'">\n <i class="xg-seek-icon"></i>\n <span class="xg-cur">00:00</span>\n <span>/</span>\n <span class="xg-dur">00:00</span>\n </div>\n <div class="xg-bar xg-timebar">\n <div class="xg-curbar"></div>\n </div>\n </div>\n <div class="xg-playbackrate xg-top-note">\n <span><i>').concat(this.config.pressRate,"X</i>").concat(this.i18n.FORWARD,"</span>\n </div>\n </xg-trigger>\n ")}}],[{key:"pluginName",get:function(){return"mobile"}},{key:"defaultConfig",get:function(){return{index:0,disableGesture:!1,gestureX:!0,gestureY:!0,gradient:"normal",isTouchingSeek:!1,miniMoveStep:5,miniYPer:5,scopeL:.25,scopeR:.25,scopeM:.9,pressRate:2,darkness:!0,maxDarkness:.8,disableActive:!1,disableTimeProgress:!1,hideControlsActive:!1,hideControlsEnd:!1,moveDuration:36e4,closedbClick:!1,disablePress:!0,disableSeekIcon:!1}}}]),n}(Pg);function Rm(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,i)}return n}function Om(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}function Im(t){t.preventDefault(),t.returnValue=!1}function Lm(t){var e=t.tagName;return!("INPUT"!==e&&"TEXTAREA"!==e&&!t.isContentEditable)}var Am=function(t){fi(n,t);var e=Om(n);function n(){var t;ui(this,n);for(var i=arguments.length,r=new Array(i),o=0;o<i;o++)r[o]=arguments[o];return yi(pi(t=e.call.apply(e,[this].concat(r))),"onBodyKeyDown",(function(e){var n=e||window.event;if(!(t.config.disable||t.config.disableBodyTrigger||!t.checkIsVisible()||n.metaKey||n.altKey||n.ctrlKey)){var i=n.keyCode;return!(n.target!==document.body&&(!t.config.isGlobalTrigger||Lm(n.target))||!t.checkCode(i,!0))&&(Im(n),t.handleKeyCode(i,e),!1)}})),yi(pi(t),"onKeydown",(function(e){var n=e||window.event;if(!(t.config.disable||n.metaKey||n.altKey||n.ctrlKey)){if(!n||37!==n.keyCode&&!t.checkCode(n.keyCode)||n.target!==t.player.root&&n.target!==t.player.video&&n.target!==t.player.controls.el)return!0;Im(n),t.handleKeyCode(n.keyCode,e)}})),t}return Co(n,[{key:"mergekeyCodeMap",value:function(){var t=this,e=this.config.keyCodeMap;e&&Object.keys(e).map((function(n){t.keyCodeMap[n]?["keyCode","action","disable","isBodyTarget"].map((function(i){e[n][i]&&(t.keyCodeMap[n][i]=e[n][i])})):t.keyCodeMap[n]=e[n]}))}},{key:"afterCreate",value:function(){this.config.disable=!this.playerConfig.keyShortcut;var t="function"==typeof this.config.seekStep?this.config.seekStep(this.player):this.config.seekStep;t&&"number"==typeof t&&(this.seekStep=t),this.keyCodeMap={space:{keyCode:32,action:"playPause",disable:!1,noBodyTarget:!1},up:{keyCode:38,action:"upVolume",disable:!1,noBodyTarget:!0},down:{keyCode:40,action:"downVolume",disable:!1,noBodyTarget:!0},left:{keyCode:37,action:"seekBack",disable:!1},right:{keyCode:39,action:"seek",disable:!1},esc:{keyCode:27,action:"exitFullscreen",disable:!1}},this.mergekeyCodeMap(),this.player.root.addEventListener("keydown",this.onKeydown),document.addEventListener("keydown",this.onBodyKeyDown)}},{key:"checkIsVisible",value:function(){if(!this.config.checkVisible)return!0;var t=this.player.root.getBoundingClientRect(),e=t.height,n=t.top,i=t.bottom,r=window.innerHeight;return!(n<0&&n<0-.9*e||i>0&&i-r>.9*e)}},{key:"checkCode",value:function(t,e){var n=this,i=!1;return Object.keys(this.keyCodeMap).map((function(r){n.keyCodeMap[r]&&t===n.keyCodeMap[r].keyCode&&!n.keyCodeMap[r].disable&&(i=!e||e&&!n.keyCodeMap[r].noBodyTarget)})),i}},{key:"downVolume",value:function(t){var e=this.player,n=parseFloat((e.volume-.1).toFixed(1));this.emitUserAction(t,"change_volume",{prop:"volume",from:e.volume,to:n}),e.volume=n>=0?n:0}},{key:"upVolume",value:function(t){var e=this.player,n=parseFloat((e.volume+.1).toFixed(1));this.emitUserAction(t,"change_volume",{prop:"volume",from:e.volume,to:n}),e.volume=n<=1?n:1}},{key:"seek",value:function(t){var e=this.player,n=e.currentTime,i=e.duration,r=n;r=n+this.seekStep<=i?n+this.seekStep:i-1,this.emitUserAction(t,"seek",{prop:"currentTime",from:n,to:r}),this.player.currentTime=r}},{key:"seekBack",value:function(t){var e=this.player.currentTime,n=0;e-this.seekStep>=0&&(n=e-this.seekStep),this.emitUserAction(t,"seek",{prop:"currentTime",from:e,to:n}),this.player.currentTime=n}},{key:"playPause",value:function(t){var e=this.player;this.emitUserAction(t,"switch_play_pause",{prop:"paused",from:e.paused,to:!e.paused}),e.paused?e.play():e.pause()}},{key:"exitFullscreen",value:function(t){console.log("exitFullscreen",t);var e=this.player,n=e.isCssfullScreen,i=e.fullscreen;i&&(this.emitUserAction("keyup","switch_fullscreen",{prop:"fullscreen",from:i,to:!i}),e.exitFullscreen()),n&&(this.emitUserAction("keyup","switch_css_fullscreen",{prop:"cssfullscreen",from:n,to:!n}),e.exitCssFullscreen())}},{key:"handleKeyCode",value:function(t,e){var n=this;Object.keys(this.keyCodeMap).map((function(i){var r=n.keyCodeMap[i],o=r.action,s=r.keyCode,a=r.disable;s!==t||a||("function"==typeof o?o(e,n.player):"string"==typeof o&&"function"==typeof n[o]&&n[o](e,n.player),n.emit(Mp,function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Rm(Object(n),!0).forEach((function(e){yi(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Rm(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({key:i,target:e.target},n.keyCodeMap[i])))}))}},{key:"destroy",value:function(){this.player.root.removeEventListener("keydown",this.onKeydown),document.removeEventListener("keydown",this.onBodyKeyDown)}},{key:"disable",value:function(){this.config.disable=!0}},{key:"enable",value:function(){this.config.disable=!1}}],[{key:"pluginName",get:function(){return"keyboard"}},{key:"defaultConfig",get:function(){return{seekStep:10,checkVisible:!0,disableBodyTrigger:!1,isGlobalTrigger:!1,keyCodeMap:{},disable:!1}}}]),n}(dg);function Dm(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-5 -5 110 110">\n <path d="M100,50A50,50,0,1,1,50,0" stroke-width="5" stroke="#ddd" stroke-dasharray="236" fill="none"></path>\n</svg>\n',"image/svg+xml").firstChild}function Mm(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Nm=function(t){fi(n,t);var e=Mm(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"registerIcons",value:function(){return{loadingIcon:Dm}}},{key:"afterCreate",value:function(){this.appendChild("xg-loading-inner",this.icons.loadingIcon)}},{key:"render",value:function(){return'\n <xg-loading class="xgplayer-loading">\n <xg-loading-inner></xg-loading-inner>\n </xg-loading>'}}],[{key:"pluginName",get:function(){return"loading"}},{key:"defaultConfig",get:function(){return{position:wg.ROOT}}}]),n}(Pg),Fm=En,jm=Zi.findIndex,Bm=Zp,Hm="findIndex",Um=!0;Hm in[]&&Array(1).findIndex((function(){Um=!1})),Fm({target:"Array",proto:!0,forced:Um},{findIndex:function(t){return jm(this,t,arguments.length>1?arguments[1]:void 0)}}),Bm(Hm);var Vm=[{tag:"xg-cache",className:"xgplayer-progress-cache",styleKey:"cachedColor"},{tag:"xg-played",className:"xgplayer-progress-played",styleKey:"playedColor"}],Gm=function(){function t(e){ui(this,t),this.fragments=e.fragments||[],this.focusClass="inner-focus",this.style=e.style||{playedColor:"",cachedColor:"",progressColor:""},this.duration=0,this.cachedIndex=0,this.playedIndex=0}return Co(t,[{key:"updateDuration",value:function(t){var e=this;this.duration=parseInt(1e3*t);var n=0,i=this.fragments;this.fragments=i.map((function(t){return t.start=n,t.end=n+t.percent*e.duration,t.duration=t.percent*e.duration,n+=t.percent*e.duration,t}))}},{key:"updateProgress",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"played",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{newIndex:0,curIndex:0,millisecond:0},n=this.progressList,i=this.fragments,r=e.newIndex,o=e.curIndex,s=e.millisecond;r!==o&&n.map((function(e,n){n<r?e[t].style.width="100%":n>r&&(e[t].style.width=0)}));var a=i[r],c=0===s?0:(s-a.start)/a.duration;n[r][t].style.width=c<0?0:"".concat(100*c,"%")}},{key:"update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{cached:0,played:0},e=arguments.length>1?arguments[1]:void 0;if(!this.duration||parseInt(1e3*e,10)!==this.duration){if(!e&&0!==e)return;this.updateDuration(e)}var n=this.playedIndex,i=this.cachedIndex;if("Undefined"!==Wd.typeOf(t.played)){var r=this.findIndex(1e3*t.played,n);this.updateProgress("played",{newIndex:r,curIndex:n,millisecond:parseInt(1e3*t.played,10)}),this.playedIndex=r}if("Undefined"!==Wd.typeOf(t.cached)){var o=this.findIndex(1e3*t.cached,i);this.updateProgress("cached",{newIndex:o,curIndex:i,millisecond:parseInt(1e3*t.cached,10)}),this.cachedIndex=o}}},{key:"findIndex",value:function(t,e){var n=this.fragments;return 1===n.length?0:(t>n[e].start&&t<n[e].end||this.fragments.map((function(n,i){t>n.start&&t<=n.end&&(e=i)})),e)}},{key:"findHightLight",value:function(){for(var t=this.root.children,e=0;e<t.length;e++)if(Wd.hasClass(t[e],this.focusClass))return{dom:t[e],pos:t[e].getBoundingClientRect()}}},{key:"findFragment",value:function(t){var e=this.root.children;return t<0||t>=e.length?null:{dom:e[t],pos:e[t].getBoundingClientRect()}}},{key:"unHightLight",value:function(){for(var t=this.root.children,e=0;e<t.length;e++)Wd.removeClass(t[e],this.focusClass)}},{key:"setHightLight",value:function(t){var e=this.root.children;if(t<e.length)return Wd.addClass(e[t],this.focusClass),{dom:e[t],pos:e[t].getBoundingClientRect()}}},{key:"destroy",value:function(){this.progressList=null,this.fragments=null,this.root.innerHTML=""}},{key:"render",value:function(){var t=this,e=this.style.progressColor;return this.root=Wd.createDom("xg-inners","",{},"progress-list"),this.fragments&&(this.progressList=this.fragments.map((function(n){var i=Wd.createDom("xg-inner","",{style:e?"background:".concat(e,"; flex: ").concat(n.percent):"flex: ".concat(n.percent)},"".concat(n.isFocus?"inner-focus":""," xgplayer-progress-inner"));return t.root.appendChild(i),Vm.map((function(e){i.appendChild(Wd.createDom(e.tag,"",{style:e.styleKey?"background: ".concat(t.style[e.styleKey],"; width:0;"):"width:0;"},e.className))})),{cached:i.children[0],played:i.children[1]}}))),this.root}}]),t}();function Wm(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Ym=function(t){fi(n,t);var e=Wm(n);function n(t){var i;return ui(this,n),yi(pi(i=e.call(this,t)),"onMoveOnly",(function(t){var e=pi(i),n=e.pos,r=e.config,o=e.player;Wd.event(t);var s=Wd.getEventPos(t,o.zoom),a=90===o.rotateDeg?s.clientY:s.clientX;if(!(n.moving&&Math.abs(n.x-a)<r.miniMoveStep)){n.moving=!0,n.x=a;var c=i.computeTime(t);i.triggerCallbacks("dragmove",c)}})),yi(pi(i),"onBodyClick",(function(t){t.preventDefault(),t.stopPropagation()})),yi(pi(i),"onMouseDown",(function(t){var e=pi(i),n=e.player,r=e.pos,o=e.config,s=e.playerConfig,a=Wd.getEventPos(t,n.zoom),c=90===n.rotateDeg?a.clientY:a.clientX;if(!(n.isMini||o.closeMoveSeek||!s.allowSeekAfterEnded&&n.ended)){t.stopPropagation(),t.preventDefault(),i.focus(),Wd.checkIsFunction(s.disableSwipeHandler)&&s.disableSwipeHandler(),Wd.checkIsFunction(o.onMoveStart)&&o.onMoveStart(),Wd.event(t),r.x=c,r.isDown=!0,r.moving=!1,n.focus({autoHide:!1}),i.isProgressMoving=!0,Wd.addClass(i.progressBtn,"active");var l=i.computeTime(t);return i._state.time=l.currentTime,i.updateWidth(l.currentTime,l.percent,0),i.isMobile?(i.bind("touchmove",i.onMouseMove),i.bind("touchend",i.onMouseUp)):(i.unbind("mousemove",i.onMoveOnly),document.addEventListener("mousemove",i.onMouseMove,!1),document.addEventListener("mouseup",i.onMouseUp,!1),n.root.addEventListener("click",i.onBodyClick,!1)),!0}})),yi(pi(i),"onMouseUp",(function(t){var e=pi(i),n=e.player,r=e.config,o=e.pos,s=e.playerConfig,a=e._state;t.stopPropagation(),t.preventDefault(),Wd.checkIsFunction(s.enableSwipeHandler)&&s.enableSwipeHandler(),Wd.checkIsFunction(r.onMoveEnd)&&r.onMoveEnd(),Wd.event(t),Wd.removeClass(i.progressBtn,"active");var c=i.computeTime(t);o.moving?(i.updateWidth(c.currentTime,c.percent,2),i.triggerCallbacks("dragend",c)):i.triggerCallbacks("click",c),o.moving=!1,o.isDown=!1,o.x=0,o.y=0,a.time=0,i.isMobile?(i.unbind("touchmove",i.onMouseMove),i.unbind("touchend",i.onMouseUp),i.blur()):(document.removeEventListener("mousemove",i.onMouseMove,!1),document.removeEventListener("mouseup",i.onMouseUp,!1),n.root.removeEventListener("click",i.onBodyClick,!1),o.isEnter?!s.isMobileSimulateMode&&i.bind("mousemove",i.onMoveOnly):i.onMouseLeave(t)),Wd.setTimeout(pi(i),(function(){i.resetSeekState()}),10),n.focus()})),yi(pi(i),"onMouseMove",(function(t){var e=pi(i),n=e.pos,r=e.player,o=e.config,s=e._state;i.isMobile&&(t.stopPropagation(),t.preventDefault()),Wd.event(t);var a=Wd.getEventPos(t,r.zoom),c=90===r.rotateDeg?a.clientY:a.clientX,l=Math.abs(n.x-c);if(!(n.moving&&l<o.miniMoveStep||!n.moving&&l<o.miniStartStep)){n.x=c;var u=i.computeTime(t);s.time<u.currentTime?u.forward=!0:u.forward=!1,s.time=u.currentTime,n.isDown&&!n.moving&&(n.moving=!0,o.isPauseMoving&&r.pause(),i.triggerCallbacks("dragstart",u)),i.updateWidth(u.currentTime,u.percent,1),i.triggerCallbacks("dragmove",u)}})),yi(pi(i),"onMouseEnter",(function(t){var e=pi(i),n=e.player,r=e.pos;r.isDown||r.isEnter||n.isMini||!n.config.allowSeekAfterEnded&&n.ended||(r.isEnter=!0,i.bind("mousemove",i.onMoveOnly),i.bind("mouseleave",i.onMouseLeave),i.focus())})),yi(pi(i),"onMouseLeave",(function(t){var e=pi(i),n=e.player,r=e.pos;r.isEnter=!1,n.isMini||(i.unbind("mousemove",i.onMoveOnly),r.isDown?i.unbind("mouseleave",i.onMouseLeave):i.blur())})),i.useable=!1,i.isProgressMoving=!1,i.__dragCallBacks=[],i._state={now:-1,direc:0,time:0},i}return Co(n,[{key:"duration",get:function(){return this.playerConfig.customDuration||this.player.duration}},{key:"timeOffset",get:function(){return this.playerConfig.timeOffset||0}},{key:"changeState",value:function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.useable=t}},{key:"createInner",value:function(){var t=this;this.innerList=new Gm({fragments:this.config.fragments,style:this.playerConfig.commonStyle||{}}),this.outer.insertBefore(this.innerList.render(),this.outer.children[0]),["findHightLight","unHightLight","setHightLight","findFragment"].map((function(e){t[e]=t.innerList[e].bind(t.innerList)}))}},{key:"afterCreate",value:function(){var t=this;this.config.disable||this.playerConfig.isLive||(this.pos={x:0,y:0,moving:!1,isDown:!1,isEnter:!1},this.outer=this.find("xg-outer"),this.createInner(),"mobile"===Xd.device&&(this.config.isDragingSeek=!1,this.isMobile=!0),this.progressBtn=this.find(".xgplayer-progress-btn"),this.on(op,(function(){t.onTimeupdate()})),this.on(rp,(function(){t.onTimeupdate(),t.onCacheUpdate()})),this.on(fp,(function(){t.onCacheUpdate()})),this.on(tp,(function(){t.onCacheUpdate(),t._state.now=0})),this.on(pp,(function(){t.onReset()})),this.bindDomEvents(),this.initCustomStyle())}},{key:"initCustomStyle",value:function(){var t=(this.playerConfig||{}).commonStyle.sliderBtnStyle,e=this.progressBtn;t&&("string"==typeof t?e.style.boxShadow=t:"object"===di(t)&&Object.keys(t).map((function(n){e.style[n]=t[n]})))}},{key:"triggerCallbacks",value:function(t,e){this.__dragCallBacks.length>0&&this.__dragCallBacks.map((function(n){if(n&&n.handler&&n.type===t)try{n.handler(e)}catch(t){console.error("[XGPLAYER][triggerCallbacks] ".concat(n," error"),t)}}))}},{key:"addCallBack",value:function(t,e){e&&"function"==typeof e&&this.__dragCallBacks.push({type:t,handler:e})}},{key:"removeCallBack",value:function(t,e){var n=this.__dragCallBacks,i=-1;n.map((function(n,r){n&&n.type===t&&n.handler===e&&(i=r)})),i>-1&&n.splice(i,1)}},{key:"bindDomEvents",value:function(){var t=this.player,e=t.controls,n=t.config;this.isMobile?(this.bind("touchstart",this.onMouseDown),e&&(e.root&&e.root.addEventListener("touchmove",Wd.stopPropagation),e.center&&e.center.addEventListener("touchend",Wd.stopPropagation))):(this.bind("mousedown",this.onMouseDown),!n.isMobileSimulateMode&&this.bind("mouseenter",this.onMouseEnter))}},{key:"focus",value:function(){this.player.controls.pauseAutoHide(),Wd.addClass(this.root,"active")}},{key:"blur",value:function(){this.player.controls.recoverAutoHide(),Wd.removeClass(this.root,"active")}},{key:"updateWidth",value:function(t,e,n){var i=this.config,r=this.player;if(!i.isCloseClickSeek||0!==n){var o=t>r.duration?r.duration-.2:Number(t).toFixed(1);this.updatePercent(e),this.updateTime(t),(1!==n||i.isDragingSeek&&"audio"!==r.videoConfig.mediaType)&&(this._state.now=o,this._state.direc=o>r.currentTime?0:1,r.seek(o))}}},{key:"computeTime",value:function(t){var e,n,i,r=this.player,o=this.root.getBoundingClientRect(),s=o.width,a=o.height,c=o.top,l=o.left,u=Wd.getEventPos(t,r.zoom);90===r.rotateDeg?(e=a,n=c,i=u.clientY):(e=s,n=l,i=u.clientX);var h=i-n,f=(h=h>e?e:h<0?0:h)/e;return{percent:f=f<0?0:f>1?1:f,currentTime:parseInt(f*this.duration*1e3,10)/1e3,offset:h,width:e,left:n,e:t}}},{key:"updateTime",value:function(t){var e=this.player,n=this.duration;t>n?t=n:t<0&&(t=0);var i=e.plugins.time;i&&i.updateTime(t)}},{key:"resetSeekState",value:function(){this.isProgressMoving=!1;var t=this.player.plugins.time;t&&t.resetActive()}},{key:"updatePercent",value:function(t,e){if(this.isProgressMoving=!0,!this.config.disable){t=t>1?1:t<0?0:t,this.progressBtn.style.left="".concat(100*t,"%"),this.innerList.update({played:t*this.duration},this.duration);var n=this.player.plugins.miniprogress;n&&n.update({played:t*this.duration},this.duration)}}},{key:"onTimeupdate",value:function(){var t=this.player,e=this._state,n=this.duration;if(!(t.isSeeking||this.isProgressMoving||t.state<Zv)){if(e.now>-1){var i=parseInt(1e3*e.now,10)-parseInt(1e3*t.currentTime,10);if(0===e.direc&&i>300||1===e.direc&&i>-300)return void(e.now=-1);e.now=-1}var r=this.timeOffset+t.currentTime;this.innerList.update({played:r},n),this.progressBtn.style.left="".concat(r/n*100,"%");var o=this.player.plugins.miniprogress;o&&o.update({played:r},n)}}},{key:"onCacheUpdate",value:function(){var t=this.player,e=this.duration,n=t.bufferedPoint;this.innerList.update({cached:n.end},e);var i=this.player.plugins.miniprogress;i&&i.update({cached:n.end},e)}},{key:"onReset",value:function(){this.innerList.update({played:0,cached:0},0);var t=this.player.plugins.miniprogress;t&&t.update({cached:0,played:0},0)}},{key:"destroy",value:function(){var t=this.player,e=t.controls;this.thumbnailPlugin=null,this.innerList.destroy(),this.innerList=null,this.isMobile?(this.unbind("touchstart",this.onMouseDown),this.unbind("touchmove",this.onMouseMove),this.unbind("touchend",this.onMouseUp),e&&(e.root&&e.root.removeEventListener("touchmove",Wd.stopPropagation),e.center&&e.center.removeEventListener("touchend",Wd.stopPropagation))):(this.unbind("mousedown",this.onMouseDown),this.unbind("mouseenter",this.onMouseEnter),this.unbind("mousemove",this.onMoveOnly),document.removeEventListener("mousemove",this.onMouseMove,!1),document.removeEventListener("mouseup",this.onMouseUp,!1),t.root.removeEventListener("click",this.onBodyClick,!1))}},{key:"render",value:function(){if(!this.config.disable&&!this.playerConfig.isLive){var t=this.player.controls?this.player.controls.config.mode:"";return'\n <xg-progress class="xgplayer-progress '.concat("bottom"===t?"xgplayer-progress-bottom":"",'">\n <xg-outer class="xgplayer-progress-outer">\n <xg-progress-btn class="xgplayer-progress-btn"></xg-progress-btn>\n </xg-outer>\n </xg-progress>\n ')}}}],[{key:"pluginName",get:function(){return"progress"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_CENTER,index:0,disable:!1,isDragingSeek:!0,closeMoveSeek:!1,isPauseMoving:!1,isCloseClickSeek:!1,fragments:[{percent:1}],miniMoveStep:5,miniStartStep:2,onMoveStart:function(){},onMoveEnd:function(){}}}}]),n}(Pg);function Km(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var zm=function(t){fi(n,t);var e=Km(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"afterCreate",value:function(){var t=this,e=this.player;this.config.disable||(this.initIcons(),this.btnClick=this.btnClick.bind(this),this.bind(["touchend","click"],this.btnClick),this.on(ep,(function(){t.animate(e.paused)})),this.on(Jd,(function(){t.animate(e.paused)})),this.animate(!0))}},{key:"registerIcons",value:function(){return{play:{icon:_y,class:"xg-icon-play"},pause:{icon:Ey,class:"xg-icon-pause"}}}},{key:"btnClick",value:function(t){t.preventDefault(),t.stopPropagation();var e=this.player;return this.emitUserAction(t,"switch_play_pause",{prop:"paused",from:e.paused,to:!e.paused}),e.paused?(e.play(),this.animate(!1)):(e.pause(),this.animate(!0)),!1}},{key:"initIcons",value:function(){var t=this.icons;this.appendChild(".xgplayer-icon",t.play),this.appendChild(".xgplayer-icon",t.pause)}},{key:"animate",value:function(t){var e=this.i18nKeys;t?(this.setAttr("data-state","pause"),this.changeLangTextKey(this.find(".xg-tips"),e.PLAY_TIPS)):(this.setAttr("data-state","play"),this.changeLangTextKey(this.find(".xg-tips"),e.PAUSE_TIPS))}},{key:"destroy",value:function(){this.unbind(["touchend","click"],this.btnClick)}},{key:"render",value:function(){if(!this.config.disable)return'<xg-icon class="xgplayer-play">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.PLAY_TIPS,'">').concat(this.i18n.PLAY_TIPS,"</div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"play"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_LEFT,index:0,disable:!1}}}]),n}(Pg);function Xm(){return(new DOMParser).parseFromString('<svg width="32px" height="40px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <path d="M11.2374369,14 L17.6187184,7.61871843 C17.9604272,7.27700968 17.9604272,6.72299032 17.6187184,6.38128157 C17.2770097,6.03957281 16.7229903,6.03957281 16.3812816,6.38128157 L9.38128157,13.3812816 C9.03957281,13.7229903 9.03957281,14.2770097 9.38128157,14.6187184 L16.3812816,21.6187184 C16.7229903,21.9604272 17.2770097,21.9604272 17.6187184,21.6187184 C17.9604272,21.2770097 17.9604272,20.7229903 17.6187184,20.3812816 L11.2374369,14 L11.2374369,14 Z" fill="#FFFFFF"></path>\n </g>\n</svg>',"image/svg+xml").firstChild}function qm(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var $m=function(t){fi(n,t);var e=qm(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"afterCreate",value:function(){var t=this;this.initIcons(),this.onClick=function(e){e.preventDefault(),e.stopPropagation(),t.config.onClick(e)},this.bind(["click","touchend"],this.onClick)}},{key:"registerIcons",value:function(){return{screenBack:{icon:Xm,class:"xg-fullscreen-back"}}}},{key:"initIcons",value:function(){var t=this.icons;this.appendChild(this.root,t.screenBack)}},{key:"show",value:function(){Wd.addClass(this.root,"show")}},{key:"hide",value:function(){Wd.removeClass(this.root,"show")}},{key:"render",value:function(){return'<xg-icon class="xgplayer-back">\n </xg-icon>'}}],[{key:"pluginName",get:function(){return"topbackicon"}},{key:"defaultConfig",get:function(){return{position:wg.ROOT_TOP,index:0}}}]),n}(Pg);function Zm(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="2 -4 28 40">\n <path fill="#fff" transform="scale(0.0320625 0.0320625)" d="M598 214h212v212h-84v-128h-128v-84zM726 726v-128h84v212h-212v-84h128zM214 426v-212h212v84h-128v128h-84zM298 598v128h128v84h-212v-212h84z"></path>\n</svg>\n',"image/svg+xml").firstChild}function Jm(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="2 -4 28 40">\n <path fill="#fff" transform="scale(0.0320625 0.0320625)" d="M682 342h128v84h-212v-212h84v128zM598 810v-212h212v84h-128v128h-84zM342 342v-128h84v212h-212v-84h128zM214 682v-84h212v212h-84v-128h-128z"></path>\n</svg>\n',"image/svg+xml").firstChild}function Qm(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var tk=function(t){fi(n,t);var e=Qm(n);function n(){var t;ui(this,n);for(var i=arguments.length,r=new Array(i),o=0;o<i;o++)r[o]=arguments[o];return yi(pi(t=e.call.apply(e,[this].concat(r))),"_onOrientationChange",(function(e){t.player.fullscreen&&t.config.rotateFullscreen&&(90===window.orientation||-90===window.orientation?t.setRotateDeg(0):t.setRotateDeg(90))})),t}return Co(n,[{key:"afterCreate",value:function(){var t=this,e=this.config,n=this.playerConfig;if(!e.disable){e.target&&(this.playerConfig.fullscreenTarget=this.config.target);var i=Wd.getFullScreenEl();n.fullscreenTarget===i&&this.player.getFullscreen(),this.initIcons(),this.handleFullscreen=this.hook("fullscreenChange",this.changeFullScreen,{pre:function(e){var n=t.player.fullscreen;t.emitUserAction(e,"switch_fullscreen",{prop:"fullscreen",from:n,to:!n})}}),this.bind(".xgplayer-fullscreen","mobile"===Xd.device?"touchend":"click",this.handleFullscreen),this.on(Ep,(function(e){t.changeLangTextKey(t.find(".xg-tips"),e?t.i18nKeys.EXITFULLSCREEN_TIPS:t.i18nKeys.FULLSCREEN_TIPS),t.animate(e),t.config.needBackIcon&&t.show()})),this.config.needBackIcon&&(this.topBackIcon=this.player.registerPlugin({plugin:$m,options:{config:{onClick:function(e){t.handleFullscreen(e)}}}})),"mobile"===Xd.device&&window.addEventListener("orientationchange",this._onOrientationChange)}}},{key:"registerIcons",value:function(){return{fullscreen:{icon:Zm,class:"xg-get-fullscreen"},exitFullscreen:{icon:Jm,class:"xg-exit-fullscreen"}}}},{key:"destroy",value:function(){this.unbind(".xgplayer-icon","mobile"===Xd.device?"touchend":"click",this.handleFullscreen),"mobile"===Xd.device&&window.removeEventListener("orientationchange",this._onOrientationChange)}},{key:"initIcons",value:function(){var t=this.icons;this.appendChild(".xgplayer-icon",t.fullscreen),this.appendChild(".xgplayer-icon",t.exitFullscreen)}},{key:"setRotateDeg",value:function(t){var e=this.player;90===window.orientation||-90===window.orientation?e.rotateDeg=0:e.rotateDeg=t}},{key:"getRotateFullscreen",value:function(t){var e=this.player;e.isCssfullScreen&&e.exitCssFullscreen(t);var n=t?Wv.INNER_FULLSCREEN:Wv.ROTATE_FULLSCREEN;e._fullscreenEl=t||e.root,e.changeFullStyle(e.root,t,n,Wv.PARENT_ROTATE_FULLSCREEN),e.fullscreen=!0,this.setRotateDeg(90),this.emit(Ep,!0)}},{key:"exitRotateFullscreen",value:function(t){var e=this.player;e.fullscreen=!1;var n=e._fullscreenEl!==e.root?Wv.INNER_FULLSCREEN:Wv.ROTATE_FULLSCREEN;e.recoverFullStyle(e.root,e._fullscreenEl,n,Wv.PARENT_ROTATE_FULLSCREEN),this.setRotateDeg(0),this.emit(Ep,!1)}},{key:"changeFullScreen",value:function(t){t&&(t.preventDefault(),t.stopPropagation());var e=this.player,n=this.config,i=!1;if((!0===n.useCssFullscreen||"function"==typeof n.useCssFullscreen&&n.useCssFullscreen())&&(i=!0),i)e.fullscreen?(e.fullscreen=!1,e.exitCssFullscreen(),this.emit(Ep,!1)):(e.fullscreen=!0,e.getCssFullscreen(),this.emit(Ep,!0)),this.animate(e.fullscreen);else if(n.rotateFullscreen)e.fullscreen?this.exitRotateFullscreen():this.getRotateFullscreen(),this.animate(e.fullscreen);else{if(n.switchCallback&&"function"==typeof n.switchCallback)return void n.switchCallback(e.fullscreen);e.fullscreen?e.exitFullscreen():e.getFullscreen()}}},{key:"animate",value:function(t){t?this.setAttr("data-state","full"):this.setAttr("data-state","normal"),this.topBackIcon&&(t?(this.topBackIcon.show(),this.hide()):(this.topBackIcon.hide(),this.show()))}},{key:"show",value:function(){xo(vi(n.prototype),"show",this).call(this)}},{key:"hide",value:function(){xo(vi(n.prototype),"hide",this).call(this)}},{key:"render",value:function(){if(!this.config.disable){var t="FULLSCREEN_TIPS";return'<xg-icon class="xgplayer-fullscreen">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys[t],'">').concat(this.i18n[t],"</div>\n </xg-icon>")}}}],[{key:"pluginName",get:function(){return"fullscreen"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:0,useCssFullscreen:!1,rotateFullscreen:!1,switchCallback:null,target:null,disable:!1,needBackIcon:!1}}}]),n}(Pg);function ek(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var nk=function(t){fi(n,t);var e=ek(n);function n(t){var i;return ui(this,n),(i=e.call(this,t)).isActiving=!1,i}return Co(n,[{key:"duration",get:function(){return this.playerConfig.customDuration||this.player.duration}},{key:"timeOffset",get:function(){return this.playerConfig.timeOffset||0}},{key:"afterCreate",value:function(){var t=this,e=this.player.controls.config.mode;this.mode="flex"===e?"flex":"normal",this.config.disable||("flex"===this.mode&&(this.createCenterTime(),this.hide()),this.durationDom=this.find(".time-duration"),this.timeDom=this.find(".time-current"),this.on(cp,(function(){t.onTimeUpdate()})),this.on(op,(function(){t.onTimeUpdate()})),this.on(pp,(function(){t.onReset()})))}},{key:"show",value:function(){"flex"!==this.mode&&xo(vi(n.prototype),"show",this).call(this)}},{key:"onTimeUpdate",value:function(){var t=this.player;if(!(this.config.disable||this.isActiving||t.state<Zv)){var e=t.currentTime+this.timeOffset;"flex"===this.mode?(this.centerCurDom.innerHTML=Wd.format(e),this.duration!==1/0&&this.duration>0&&(this.centerDurDom.innerHTML=Wd.format(this.duration))):(this.timeDom.innerHTML=Wd.format(e),this.duration!==1/0&&this.duration>0&&(this.durationDom.innerHTML=Wd.format(this.duration)))}}},{key:"onReset",value:function(){"flex"===this.mode?(this.centerCurDom.innerHTML=Wd.format(0),this.centerDurDom.innerHTML=Wd.format(0)):(this.timeDom.innerHTML=Wd.format(0),this.durationDom.innerHTML=Wd.format(0))}},{key:"createCenterTime",value:function(){var t=this.player;if(t.controls&&t.controls.center){var e=t.controls.center;this.centerCurDom=Wd.createDom("xg-icon","00:00",{},"xgplayer-time left"),this.centerDurDom=Wd.createDom("xg-icon","00:00",{},"xgplayer-time right"),e.children.length>0?e.insertBefore(this.centerCurDom,e.children[0]):e.appendChild(this.centerCurDom),e.appendChild(this.centerDurDom)}}},{key:"afterPlayerInit",value:function(){var t=this.config;this.duration===1/0||this.playerConfig.isLive?(Wd.hide(this.durationDom),Wd.hide(this.timeDom),Wd.hide(this.find(".time-separator")),Wd.show(this.find(".time-live-tag"))):Wd.hide(this.find(".time-live-tag")),t.hide?this.hide():this.show()}},{key:"changeLiveState",value:function(t){t?(Wd.hide(this.durationDom),Wd.hide(this.timeDom),Wd.hide(this.find(".time-separator")),Wd.show(this.find(".time-live-tag"))):(Wd.hide(this.find(".time-live-tag")),Wd.show(this.find(".time-separator")),Wd.show(this.durationDom),Wd.show(this.timeDom))}},{key:"updateTime",value:function(t){this.isActiving=!0,!t&&0!==t||t>this.duration||("flex"!==this.mode?this.timeDom.innerHTML=Wd.format(t):this.centerCurDom.innerHTML=Wd.format(t))}},{key:"resetActive",value:function(){var t=this,e=this.player,n=function(){t.isActiving=!1};this.off(rp,n),e.isSeeking?this.once(rp,n):this.isActiving=!1}},{key:"destroy",value:function(){var t=this.player.controls.center;this.centerCurDom&&t.removeChild(this.centerCurDom),this.centerCurDom=null,this.centerDurDom&&t.removeChild(this.centerDurDom),this.centerDurDom=null}},{key:"render",value:function(){if(!this.config.disable)return'<xg-icon class="xgplayer-time">\n <span class="time-current">00:00</span>\n <span class="time-separator">/</span>\n <span class="time-duration">00:00</span>\n <span class="time-live-tag">'.concat(this.i18n.LIVE_TIP,"</span>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"time"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_LEFT,index:2,disable:!1}}}]),n}(Pg);function ik(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="0 -10 28 40">\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M358.4 358.4h-204.8v307.2h204.8l256 256v-819.2l-256 256z"></path>\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M940.632 837.632l-72.192-72.192c65.114-64.745 105.412-154.386 105.412-253.44s-40.299-188.695-105.396-253.424l-0.016-0.016 72.192-72.192c83.639 83.197 135.401 198.37 135.401 325.632s-51.762 242.434-135.381 325.612l-0.020 0.020zM795.648 693.248l-72.704-72.704c27.756-27.789 44.921-66.162 44.921-108.544s-17.165-80.755-44.922-108.546l0.002 0.002 72.704-72.704c46.713 46.235 75.639 110.363 75.639 181.248s-28.926 135.013-75.617 181.227l-0.021 0.021z"></path>\n</svg>\n',"image/svg+xml").firstChild}function rk(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="0 -10 28 40">\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M358.4 358.4h-204.8v307.2h204.8l256 256v-819.2l-256 256z"></path>\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M795.648 693.248l-72.704-72.704c27.756-27.789 44.921-66.162 44.921-108.544s-17.165-80.755-44.922-108.546l0.002 0.002 72.704-72.704c46.713 46.235 75.639 110.363 75.639 181.248s-28.926 135.013-75.617 181.227l-0.021 0.021zM795.648 693.248l-72.704-72.704c27.756-27.789 44.921-66.162 44.921-108.544s-17.165-80.755-44.922-108.546l0.002 0.002 72.704-72.704c46.713 46.235 75.639 110.363 75.639 181.248s-28.926 135.013-75.617 181.227l-0.021 0.021z"></path>\n</svg>\n',"image/svg+xml").firstChild}function ok(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="0 -10 28 40">\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M358.4 358.4h-204.8v307.2h204.8l256 256v-819.2l-256 256z"></path>\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M920.4 439.808l-108.544-109.056-72.704 72.704 109.568 108.544-109.056 108.544 72.704 72.704 108.032-109.568 108.544 109.056 72.704-72.704-109.568-108.032 109.056-108.544-72.704-72.704-108.032 109.568z"></path>\n</svg>\n',"image/svg+xml").firstChild}function sk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var ak=function(t){fi(n,t);var e=sk(n);function n(){var t;ui(this,n);for(var i=arguments.length,r=new Array(i),o=0;o<i;o++)r[o]=arguments[o];return yi(pi(t=e.call.apply(e,[this].concat(r))),"onBarMousedown",(function(e){var n=pi(t).player,i=t.find(".xgplayer-slider"),r=t.find(".xgplayer-bar");i.focus(),Wd.event(e);var o=r.getBoundingClientRect(),s=Wd.getEventPos(e,n.zoom),a=(s.clientX,s.clientY),c=o.height-(s.clientY-o.top);t.updateVolumePos(c,e),t.isMoving=!1;var l=function(e){e.preventDefault(),e.stopPropagation(),Wd.event(e);var i=Wd.getEventPos(e,n.zoom);t.isMoving=!0;var r=c-i.clientY+a;r>o.height||t.updateVolumePos(r,e)},u=function e(n){n.preventDefault(),n.stopPropagation(),Wd.event(n),window.removeEventListener("mousemove",l),window.removeEventListener("touchmove",l),window.removeEventListener("mouseup",e),window.removeEventListener("touchend",e),t.isMoving=!1};return window.addEventListener("mousemove",l),window.addEventListener("touchmove",l),window.addEventListener("mouseup",u),window.addEventListener("touchend",u),!1})),yi(pi(t),"onMouseenter",(function(e){Wd.addClass(t.root,"slide-show")})),yi(pi(t),"onMouseleave",(function(e){Wd.removeClass(t.root,"slide-show")})),yi(pi(t),"onVolumeChange",(function(e){var n=t.player,i=n.muted,r=n.volume;t.isMoving||(t.find(".xgplayer-drag").style.height=i||0===r?"0px":"".concat(100*r,"%")),t.animate(i,r)})),t}return Co(n,[{key:"registerIcons",value:function(){return{volumeSmall:{icon:rk,class:"xg-volume-small"},volumeLarge:{icon:ik,class:"xg-volume"},volumeMuted:{icon:ok,class:"xg-volume-mute"}}}},{key:"afterCreate",value:function(){var t=this;if(!this.config.disable){this.initIcons();var e=this.playerConfig,n=e.commonStyle,i=e.volume;n.volumeColor&&(this.find(".xgplayer-drag").style.backgroundColor=n.volumeColor),this.changeMutedHandler=this.hook("mutedChange",(function(e){t.changeMuted(e)}),{pre:function(e){e.preventDefault(),e.stopPropagation(),t.emitUserAction(e,"change_muted",{prop:"muted",from:t.player.muted,to:!t.player.muted})}}),"mobile"===Xd.device||this.playerConfig.isMobileSimulateMode||(this.bind("mouseenter",this.onMouseenter),this.bind(["blur","mouseleave"],this.onMouseleave),this.bind(".xgplayer-slider","mousedown",this.onBarMousedown)),this.bind(".xgplayer-icon","mobile"===Xd.device?"touchend":"click",this.changeMutedHandler),this.on(lp,this.onVolumeChange),this.once(up,this.onVolumeChange),"Number"!==Wd.typeOf(i)&&(this.player.volume=this.config.default),this.onVolumeChange()}}},{key:"updateVolumePos",value:function(t,e){var n=this.player,i=this.find(".xgplayer-drag"),r=t/this.find(".xgplayer-bar").getBoundingClientRect().height;i.style.height="".concat(t,"px");var o=Math.max(Math.min(r,1),0);this.emitUserAction(e,"change_volume",[{prop:"muted",from:!0,to:!1},{prop:"volume",from:n.volume,to:o}]),n.volume=o,n.muted=!1,this.config.showValueLabel&&this.updateVolumeValue()}},{key:"updateVolumeValue",value:function(){var t=this.player.volume,e=this.find(".xgplayer-value-label"),n=Math.max(Math.min(t,1),0);e.innerText=Math.ceil(100*n)}},{key:"changeMuted",value:function(t){t&&t.stopPropagation();var e=this.player;e.volume<.01?e.volume=this.config.default:e.muted=!e.muted}},{key:"animate",value:function(t,e){t||0===e?this.setAttr("data-state","mute"):e<.5&&this.icons.volumeSmall?this.setAttr("data-state","small"):this.setAttr("data-state","normal")}},{key:"initIcons",value:function(){var t=this.icons;this.appendChild(".xgplayer-icon",t.volumeSmall),this.appendChild(".xgplayer-icon",t.volumeLarge),this.appendChild(".xgplayer-icon",t.volumeMuted)}},{key:"destroy",value:function(){this.unbind("mouseenter",this.onMouseenter),this.unbind(["blur","mouseleave"],this.onMouseleave),this.unbind(".xgplayer-bar","mousedown",this.onBarMousedown),this.unbind(".xgplayer-icon","mobile"===Xd.device?"touchend":"click",this.changeMutedHandler)}},{key:"render",value:function(){if(!this.config.disable){var t=this.config.default||this.player.volume,e=this.config.showValueLabel;return'\n <xg-icon class="xgplayer-volume" data-state="normal">\n <div class="xgplayer-icon">\n </div>\n <xg-slider class="xgplayer-slider">\n '.concat(e?'<div class="xgplayer-value-label">'.concat(100*t,"</div>"):"",'\n <div class="xgplayer-bar">\n <xg-drag class="xgplayer-drag" style="height: ').concat(100*t,'%"></xg-drag>\n </div>\n </xg-slider>\n </xg-icon>')}}}],[{key:"pluginName",get:function(){return"volume"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:1,disable:!1,showValueLabel:!1,default:.6}}}]),n}(Pg);function ck(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="-4 -6 40 40" fill="none">\n <g clip-path="url(#clip0)">\n <path transform="scale(1.5 1.5)" d="M11.6665 9.16663H4.1665C2.78579 9.16663 1.6665 10.2859 1.6665 11.6666V15.8333C1.6665 17.214 2.78579 18.3333 4.1665 18.3333H11.6665C13.0472 18.3333 14.1665 17.214 14.1665 15.8333V11.6666C14.1665 10.2859 13.0472 9.16663 11.6665 9.16663Z" fill="white"/>\n <path transform="scale(1.5 1.5)" fill-rule="evenodd" clip-rule="evenodd" d="M3.88148 4.06298C3.75371 4.21005 3.67667 4.40231 3.67749 4.61242C3.67847 4.87253 3.79852 5.10435 3.98581 5.25646L6.99111 8.05895C7.32771 8.37283 7.85502 8.35443 8.16891 8.01782C8.48279 7.68122 8.46437 7.15391 8.12778 6.84003L6.62061 5.43457L9.8198 5.4224C9.82848 5.42239 9.8372 5.42221 9.84591 5.4219C10.9714 5.38233 12.0885 5.6285 13.0931 6.13744C14.0976 6.64635 14.957 7.40148 15.5908 8.33234C16.2246 9.2632 16.6122 10.3394 16.7177 11.4606C16.823 12.5819 16.6427 13.7115 16.1934 14.7442C16.0098 15.1661 16.203 15.6571 16.6251 15.8408C17.0471 16.0243 17.5381 15.8311 17.7216 15.4091C18.2833 14.1183 18.5087 12.7063 18.3771 11.3047C18.2453 9.90318 17.7607 8.55792 16.9684 7.39433C16.1761 6.23073 15.1021 5.28683 13.8463 4.65065C12.5946 4.01651 11.203 3.70872 9.80072 3.75583L6.43415 3.76862L7.96326 2.12885C8.27715 1.79225 8.25872 1.26494 7.92213 0.951061C7.58553 0.63718 7.05822 0.655585 6.74433 0.99219L3.90268 4.0395C3.89545 4.04724 3.88841 4.05509 3.88154 4.06303L3.88148 4.06298Z" fill="white"/>\n </g>\n <defs>\n <clipPath id="clip0">\n <rect width="40" height="40" fill="white"/>\n </clipPath>\n </defs>\n</svg>\n',"image/svg+xml").firstChild}function lk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var uk=function(t){fi(n,t);var e=lk(n);function n(t){var i;return ui(this,n),(i=e.call(this,t)).rotateDeg=i.config.rotateDeg||0,i}return Co(n,[{key:"afterCreate",value:function(){var t=this;this.config.disable||(this.appendChild(".xgplayer-icon",this.icons.rotate),this.onBtnClick=this.onBtnClick.bind(this),this.bind(".xgplayer-icon",["click","touchend"],this.onBtnClick),this.on(Op,(function(){console.log("Events.VIDEO_RESIZE"),t.rotateDeg&&Wd.setTimeout(t,(function(){t.updateRotateDeg(t.rotateDeg,t.config.innerRotate)}),100)})),this.rotateDeg&&this.updateRotateDeg(this.rotateDeg,this.config.innerRotate))}},{key:"destroy",value:function(){this.unbind(".xgplayer-icon",["click","touchend"],this.onBtnClick)}},{key:"onBtnClick",value:function(t){t.preventDefault(),t.stopPropagation(),this.emitUserAction(t,"rotate"),this.rotate(this.config.clockwise,this.config.innerRotate,1)}},{key:"updateRotateDeg",value:function(t,e){var n=this.player;t||(t=0);var i=this.player,r=i.root,o=i.innerContainer,s=i.video,a=r.offsetWidth,c=o&&e?o.offsetHeight:r.offsetHeight,l="100%",u="100%",h=0,f=0;.75!==t&&.25!==t||(l="".concat(c,"px"),u="".concat(a,"px"),h=-(c-a)/2,f=-(a-c)/2);var d="translate(".concat(h,"px,").concat(f,"px) rotate(").concat(t,"turn)"),p={transformOrigin:"center center",transform:d,webKitTransform:d,height:u,width:l},g=e?s:r,v=e?n.getPlugin("poster"):null;Object.keys(p).map((function(t){g.style[t]=p[t],v&&v.root&&(v.root.style[t]=p[t])}))}},{key:"rotate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,i=this.player;this.rotateDeg||(this.rotateDeg=0);var r=t?1:-1;this.rotateDeg=(this.rotateDeg+1+.25*r*n)%1,this.updateRotateDeg(this.rotateDeg,e),i.emit(Lp,360*this.rotateDeg)}},{key:"registerIcons",value:function(){return{rotate:ck}}},{key:"render",value:function(){if(!this.config.disable)return'\n <xg-icon class="xgplayer-rotate">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.ROTATE_TIPS,'">\n ').concat(this.i18n.ROTATE_TIPS,"\n </div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"rotate"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:6,innerRotate:!0,clockwise:!1,rotateDeg:0,disable:!1}}}]),n}(Pg);function hk(){return(new DOMParser).parseFromString('<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">\n <path fill-rule="evenodd" clip-rule="evenodd"\n d="M16.5 4.3H3.5C3.38954 4.3 3.3 4.38954 3.3 4.5V15.5C3.3 15.6105 3.38954 15.7 3.5 15.7H8.50005L8.50006 17.5H3.5C2.39543 17.5 1.5 16.6046 1.5 15.5V4.5C1.5 3.39543 2.39543 2.5 3.5 2.5H16.5C17.6046 2.5 18.5 3.39543 18.5 4.5V8.5H16.7V4.5C16.7 4.38954 16.6105 4.3 16.5 4.3ZM12 11.5C11.4477 11.5 11 11.9477 11 12.5L11 16.5C11 17.0523 11.4478 17.5 12 17.5H17.5C18.0523 17.5 18.5 17.0523 18.5 16.5L18.5 12.5C18.5 11.9477 18.0523 11.5 17.5 11.5H12Z"\n fill="white" />\n</svg>',"image/svg+xml").firstChild}function fk(){return(new DOMParser).parseFromString('<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">\n <path fill-rule="evenodd" clip-rule="evenodd"\n d="M16.5 4.3H3.5C3.38954 4.3 3.3 4.38954 3.3 4.5V15.5C3.3 15.6105 3.38954 15.7 3.5 15.7H8.50005L8.50006 17.5H3.5C2.39543 17.5 1.5 16.6046 1.5 15.5V4.5C1.5 3.39543 2.39543 2.5 3.5 2.5H16.5C17.6046 2.5 18.5 3.39543 18.5 4.5V8.5H16.7V4.5C16.7 4.38954 16.6105 4.3 16.5 4.3ZM12 11.5C11.4477 11.5 11 11.9477 11 12.5L11 16.5C11 17.0523 11.4478 17.5 12 17.5H17.5C18.0523 17.5 18.5 17.0523 18.5 16.5L18.5 12.5C18.5 11.9477 18.0523 11.5 17.5 11.5H12Z"\n fill="white" />\n <path fill-rule="evenodd" clip-rule="evenodd"\n d="M9.4998 7.7C9.77595 7.7 9.9998 7.47614 9.9998 7.2V6.5C9.9998 6.22386 9.77595 6 9.4998 6H5.5402L5.52754 6.00016H5.5C5.22386 6.00016 5 6.22401 5 6.50016V10.4598C5 10.7359 5.22386 10.9598 5.5 10.9598H6.2C6.47614 10.9598 6.7 10.7359 6.7 10.4598V8.83005L8.76983 10.9386C8.96327 11.1357 9.27984 11.1386 9.47691 10.9451L9.97645 10.4548C10.1735 10.2613 10.1764 9.94476 9.983 9.7477L7.97289 7.7H9.4998Z"\n fill="white" />\n</svg>',"image/svg+xml").firstChild}function dk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var pk="picture-in-picture",gk="inline",vk="fullscreen",yk=function(t){fi(n,t);var e=dk(n);function n(){var t;ui(this,n);for(var i=arguments.length,r=new Array(i),o=0;o<i;o++)r[o]=arguments[o];return yi(pi(t=e.call.apply(e,[this].concat(r))),"switchPIP",(function(e){if(!t.isPIPAvailable())return!1;e.stopPropagation(),t.isPip?(t.exitPIP(),t.emitUserAction(e,"change_pip",{props:"pip",from:!0,to:!1}),t.setAttr("data-state","normal")):4===t.player.video.readyState&&(t.requestPIP(),t.emitUserAction(e,"change_pip",{props:"pip",from:!1,to:!0}),t.setAttr("data-state","pip"))})),t}return Co(n,[{key:"beforeCreate",value:function(t){"boolean"==typeof t.player.config.pip&&(t.config.showIcon=t.player.config.pip)}},{key:"afterCreate",value:function(){var t=this;this.isPIPAvailable()&&(this.pMode=gk,this.initPipEvents(),this.config.showIcon&&this.initIcons(),this.once(wp,(function(){t.config.showIcon&&(Wd.removeClass(t.find(".xgplayer-icon"),"xg-icon-disable"),t.bind("click",t.switchPIP))})))}},{key:"registerIcons",value:function(){return{pipIcon:{icon:hk,class:"xg-get-pip"},pipIconExit:{icon:fk,class:"xg-exit-pip"}}}},{key:"initIcons",value:function(){var t=this.icons;this.appendChild(".xgplayer-icon",t.pipIcon),this.appendChild(".xgplayer-icon",t.pipIconExit)}},{key:"initPipEvents",value:function(){var t=this,e=this.player;this.leavePIPCallback=function(){var n=e.paused;Wd.setTimeout(t,(function(){!n&&e.videoPlay()}),0),!n&&e.videoPlay(),t.setAttr("data-state","normal"),e.emit(Ip,!1)},this.enterPIPCallback=function(n){e.emit(Ip,!0),t.pipWindow=n.pictureInPictureWindow,t.setAttr("data-state","pip")},this.onWebkitpresentationmodechanged=function(n){var i=e.video.webkitPresentationMode;t.pMode===vk&&i!==vk&&e.onFullscreenChange(null,!1),t.pMode=i,i===pk?t.enterPIPCallback(n):i===gk&&t.leavePIPCallback(n)},e.video&&(e.video.addEventListener("enterpictureinpicture",this.enterPIPCallback),e.video.addEventListener("leavepictureinpicture",this.leavePIPCallback),n.checkWebkitSetPresentationMode(e.video)&&e.video.addEventListener("webkitpresentationmodechanged",this.onWebkitpresentationmodechanged))}},{key:"requestPIP",value:function(){var t=this.player,e=this.playerConfig;if(this.isPIPAvailable()&&!this.isPip)try{var i=e.poster;return i&&(t.video.poster="String"===Wd.typeOf(i)?i:i.poster),n.checkWebkitSetPresentationMode(t.video)?t.video.webkitSetPresentationMode("picture-in-picture"):t.video.requestPictureInPicture(),!0}catch(t){return console.error("requestPiP",t),!1}}},{key:"exitPIP",value:function(){var t=this.player;try{return this.isPIPAvailable()&&this.isPip&&(n.checkWebkitSetPresentationMode(t.video)?t.video.webkitSetPresentationMode("inline"):document.exitPictureInPicture()),!0}catch(t){return console.error("exitPIP",t),!1}}},{key:"isPip",get:function(){var t=this.player;return document.pictureInPictureElement&&document.pictureInPictureElement===t.video||t.video.webkitPresentationMode===pk}},{key:"isPIPAvailable",value:function(){var t=this.player.video;return document.pictureInPictureEnabled&&("Boolean"===Wd.typeOf(t.disablePictureInPicture)&&!t.disablePictureInPicture||t.webkitSupportsPresentationMode&&"Function"===Wd.typeOf(t.webkitSetPresentationMode))}},{key:"destroy",value:function(){var t=this.player;t.video.removeEventListener("enterpictureinpicture",this.enterPIPCallback),t.video.removeEventListener("leavepictureinpicture",this.leavePIPCallback),this.exitPIP(),this.unbind("click",this.btnClick)}},{key:"render",value:function(){if(this.config.showIcon||!this.isPIPAvailable())return'<xg-icon class="xgplayer-pip">\n <div class="xgplayer-icon xg-icon-disable">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.PIP,'">').concat(this.i18n.PIP,"</div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"pip"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:6,showIcon:!1}}},{key:"checkWebkitSetPresentationMode",value:function(t){return"function"==typeof t.webkitSetPresentationMode}}]),n}(Pg);function mk(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="40" viewBox="10 0 24 40">\n <path transform="scale(0.038 0.028)" d="M800 380v768h-128v-352l-320 320v-704l320 320v-352z"></path>\n</svg>\n',"image/svg+xml").firstChild}function kk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var bk=function(t){fi(n,t);var e=kk(n);function n(t){var i;return ui(this,n),yi(pi(i=e.call(this,t)),"playNext",(function(t){var e=pi(i).player;t.preventDefault(),t.stopPropagation(),i.idx+1<i.config.urlList.length?(i.idx++,e.emit(Dp,i.idx+1),i.nextHandler(i.config.urlList[i.idx],i.idx)):(i.nextHandler(),e.emit(Dp))})),i.idx=-1,i}return Co(n,[{key:"afterCreate",value:function(){this.config.urlList&&0!==this.config.urlList.length&&(this.appendChild(".xgplayer-icon",this.icons.playNext),this.initEvents())}},{key:"registerIcons",value:function(){return{playNext:mk}}},{key:"initEvents",value:function(){this.nextHandler=this.hook("nextClick",this.changeSrc);var t="mobile"===Xd.device?"touchend":"click";this.bind(t,this.playNext),this.show()}},{key:"changeSrc",value:function(t){var e=this.player;t&&(e.pause(),e.currentTime=0,e.autoplay=!0,e.src=t)}},{key:"destroy",value:function(){this.unbind(["touchend","click"],this.playNext)}},{key:"render",value:function(){if(this.config.urlList&&0!==this.config.urlList.length)return'\n <xg-icon class="xgplayer-playnext">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="PLAYNEXT_TIPS">'.concat(this.i18n.PLAYNEXT_TIPS,"</div>\n </xg-icon>\n ")}}],[{key:"pluginName",get:function(){return"playNext"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_LEFT,index:1,url:null,urlList:[]}}}]),n}(Pg),wk={exports:{}};!function(t,e){t.exports=function t(e,n,i){var r,o,s=window,a="application/octet-stream",c=i||a,l=e,u=!n&&!i&&l,h=document.createElement("a"),f=function(t){return String(t)},d=s.Blob||s.MozBlob||s.WebKitBlob||f,p=n||"download";if(d=d.call?d.bind(s):Blob,"true"===String(this)&&(c=(l=[l,c])[0],l=l[1]),u&&u.length<2048&&(p=u.split("/").pop().split("?")[0],h.href=u,-1!==h.href.indexOf(u))){var g=new XMLHttpRequest;return g.open("GET",u,!0),g.responseType="blob",g.onload=function(e){t(e.target.response,p,a)},setTimeout((function(){g.send()}),0),g}if(/^data:([\w+-]+\/[\w+.-]+)?[,;]/.test(l)){if(!(l.length>2096103.424&&d!==f))return navigator.msSaveBlob?navigator.msSaveBlob(k(l),p):b(l);c=(l=k(l)).type||a}else if(/([\x80-\xff])/.test(l)){for(var v=0,y=new Uint8Array(l.length),m=y.length;v<m;++v)y[v]=l.charCodeAt(v);l=new d([y],{type:c})}function k(t){for(var e=t.split(/[:;,]/),n=e[1],i=("base64"==e[2]?atob:decodeURIComponent)(e.pop()),r=i.length,o=0,s=new Uint8Array(r);o<r;++o)s[o]=i.charCodeAt(o);return new d([s],{type:n})}function b(t,e){if("download"in h)return h.href=t,h.setAttribute("download",p),h.className="download-js-link",h.innerHTML="downloading...",h.style.display="none",document.body.appendChild(h),setTimeout((function(){h.click(),document.body.removeChild(h),!0===e&&setTimeout((function(){s.URL.revokeObjectURL(h.href)}),250)}),66),!0;if(/(Version)\/(\d+)\.(\d+)(?:\.(\d+))?.*Safari\//.test(navigator.userAgent))return/^data:/.test(t)&&(t="data:"+t.replace(/^data:([\w\/\-\+]+)/,a)),window.open(t)||confirm("Displaying New Document\n\nUse Save As... to download, then click back to return to this page.")&&(location.href=t),!0;var n=document.createElement("iframe");document.body.appendChild(n),!e&&/^data:/.test(t)&&(t="data:"+t.replace(/^data:([\w\/\-\+]+)/,a)),n.src=t,setTimeout((function(){document.body.removeChild(n)}),333)}if(r=l instanceof d?l:new d([l],{type:c}),navigator.msSaveBlob)return navigator.msSaveBlob(r,p);if(s.URL)b(s.URL.createObjectURL(r),!0);else{if("string"==typeof r||r.constructor===f)try{return b("data:"+c+";base64,"+s.btoa(r))}catch(t){return b("data:"+c+","+encodeURIComponent(r))}(o=new FileReader).onload=function(t){b(this.result)},o.readAsDataURL(r)}return!0}}(wk);var Ck=wk.exports;function xk(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24">\n <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <g transform="translate(-488.000000, -340.000000)" fill="#FFFFFF">\n <g id="Group-2">\n <g id="volme_big-copy" transform="translate(488.000000, 340.000000)">\n <rect id="Rectangle-18" x="11" y="4" width="2" height="12" rx="1"></rect>\n <rect id="Rectangle-2" x="3" y="18" width="18" height="2" rx="1"></rect>\n <rect id="Rectangle-2" transform="translate(4.000000, 17.500000) rotate(90.000000) translate(-4.000000, -17.500000) " x="1.5" y="16.5" width="5" height="2" rx="1"></rect><rect id="Rectangle-2-Copy-3" transform="translate(20.000000, 17.500000) rotate(90.000000) translate(-20.000000, -17.500000) " x="17.5" y="16.5" width="5" height="2" rx="1"></rect>\n <path d="M9.48791171,8.26502656 L9.48791171,14.2650266 C9.48791171,14.8173113 9.04019646,15.2650266 8.48791171,15.2650266 C7.93562696,15.2650266 7.48791171,14.8173113 7.48791171,14.2650266 L7.48791171,7.26502656 C7.48791171,6.71274181 7.93562696,6.26502656 8.48791171,6.26502656 L15.4879117,6.26502656 C16.0401965,6.26502656 16.4879117,6.71274181 16.4879117,7.26502656 C16.4879117,7.81731131 16.0401965,8.26502656 15.4879117,8.26502656 L9.48791171,8.26502656 Z" id="Combined-Shape" transform="translate(11.987912, 10.765027) scale(1, -1) rotate(45.000000) translate(-11.987912, -10.765027) "></path>\n </g>\n </g>\n </g>\n </g>\n</svg>\n',"image/svg+xml").firstChild}function _k(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Ek=function(t){fi(n,t);var e=_k(n);function n(t){var i;return ui(this,n),yi(pi(i=e.call(this,t)),"download",(function(t){if(!i.isLock){i.emitUserAction(t,"download");var e=i.getAbsoluteURL(i.player.src);Ck(e),i.isLock=!0,i.timer=window.setTimeout((function(){i.isLock=!1,window.clearTimeout(i.timer),i.timer=null}),300)}})),i.timer=null,i.isLock=!1,i}return Co(n,[{key:"afterCreate",value:function(){this.config.disable||(this.appendChild(".xgplayer-icon",this.icons.download),this.bind(["click","touchend"],this.download))}},{key:"registerIcons",value:function(){return{download:xk}}},{key:"getAbsoluteURL",value:function(t){if(!t.match(/^https?:\/\//)){var e=document.createElement("div");e.innerHTML='<a href="'.concat(t,'">x</a>'),t=e.firstChild.href}return t}},{key:"destroy",value:function(){this.unbind(["click","touchend"],this.download),window.clearTimeout(this.timer),this.timer=null}},{key:"render",value:function(){if(!this.config.disable)return'<xg-icon class="xgplayer-download">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.DOWNLOAD_TIPS,'">').concat(this.i18n.DOWNLOAD_TIPS,"</div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"download"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:3,disable:!0}}}]),n}(Pg);function Tk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Sk=function(t){fi(n,t);var e=Tk(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"beforeCreate",value:function(t){"boolean"==typeof t.player.config.screenShot&&(t.config.disable=!t.player.config.screenShot)}},{key:"afterCreate",value:function(){this.appendChild(".xgplayer-icon",this.icons.screenshotIcon);var t=this.config;this.initSize=function(e){t.fitVideo&&(t.width=e.vWidth,t.height=e.vHeight)},this.once(Op,this.initSize)}},{key:"onPluginsReady",value:function(){this.show(),this.onClickBtn=this.onClickBtn.bind(this),this.bind(["click","touchend"],this.onClickBtn)}},{key:"saveScreenShot",value:function(t,e){var n=document.createElement("a");n.href=t,n.download=e;var i=document.createEvent("MouseEvents");i.initMouseEvent("click",!0,!1,window,0,0,0,0,0,!1,!1,!1,!1,0,null),n.dispatchEvent(i)}},{key:"createCanvans",value:function(t,e){var n=document.createElement("canvas");this.canvasCtx=n.getContext("2d"),this.canvas=n,n.width=t||this.config.width,n.height=e||this.config.height}},{key:"onClickBtn",value:function(t){var e=this;t.preventDefault(),t.stopPropagation(),this.emitUserAction(t,"shot"),this.shot().then((function(t){e.emit(Ap,t),e.saveScreenShot(t,e.config.name+e.config.format)}))}},{key:"shot",value:function(t,e){var n=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{quality:.92,type:"image/png"},r=this.config,o=this.player,s=i.quality||r.quality,a=i.type||r.type;return new Promise((function(i,c){n.canvas?(n.canvas.width=t||r.width,n.canvas.height=e||r.height):n.createCanvans(t,e),n.canvasCtx.drawImage(o.video,0,0,t||r.width,e||r.height);var l=n.canvas.toDataURL(a,s).replace(a,"image/octet-stream");i(l=l.replace(/^data:image\/[^;]+/,"data:application/octet-stream"))}))}},{key:"registerIcons",value:function(){return{screenshotIcon:null}}},{key:"destroy",value:function(){this.unbind(["click","touchend"],this.onClickBtn),this.off(Op,this.initSize)}},{key:"render",value:function(){if(!this.config.disable){var t=this.icons.screenshotIcon?"xgplayer-icon":"xgplayer-icon btn-text",e="SCREENSHOT";return'\n <xg-icon class="xgplayer-shot">\n <div class="'.concat(t,'">\n ').concat(this.icons.screenshotIcon?"":'<span lang-key="'.concat(this.i18nKeys[e],'">').concat(this.i18n[e],"</span>")," \n </div>\n </xg-icon>")}}}],[{key:"pluginName",get:function(){return"screenShot"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:5,quality:.92,type:"image/png",format:".png",width:600,height:337,fitVideo:!0,disable:!1,name:"screenshot"}}}]),n}(Pg),Pk=function(){function t(e){ui(this,t),this.config=e.config,this.parent=e.root,this.root=Wd.createDom("ul","",{},"xg-options-list ".concat(this.config.className)),e.root.appendChild(this.root),this.onItemClick=this.onItemClick.bind(this),this.renderItemList();var n="mobile"===Xd.device?"touchend":"click";this._delegates=Pg.delegate.call(this,this.root,"li",n,this.onItemClick)}return Co(t,[{key:"renderItemList",value:function(t){var e=this,n=this.config,i=this.root;t?n.data=t:t=n.data,n.style&&Object.keys(n.style).map((function(t){i.style[t]=n[t]})),t.length>0&&(this.attrKeys=Object.keys(t[0])),this.root.innerHTML="",t.map((function(t,n){var i=t.isCurrent?"option-item selected":"option-item";t["data-index"]=n,e.root.appendChild(Wd.createDom("li","<span>".concat(t.showText,"</span>"),t,i))}))}},{key:"onItemClick",value:function(t){t.delegateTarget||(t.delegateTarget=t.target);var e=t.delegateTarget;if(e&&Wd.hasClass(e,"selected"))return!1;var n="function"==typeof this.config.onItemClick?this.config.onItemClick:null,i=this.root.querySelector(".selected");Wd.addClass(e,"selected"),i&&Wd.removeClass(i,"selected"),n(t,{from:i?this.getAttrObj(i,this.attrKeys):null,to:this.getAttrObj(e,this.attrKeys)})}},{key:"getAttrObj",value:function(t,e){if(!t||!e)return{};var n={};e.map((function(e){n[e]=t.getAttribute(e)}));var i=t.getAttribute("data-index");return i&&(n.index=Number(i)),n}},{key:"show",value:function(){Wd.removeClass(this.root,"hide"),Wd.addClass(this.root,"active")}},{key:"hide",value:function(){Wd.removeClass(this.root,"active"),Wd.addClass(this.root,"hide")}},{key:"destroy",value:function(){this._delegates&&(this._delegates.map((function(t){t.destroy&&t.destroy()})),this._delegates=null),this.root.innerHTML=null,this.parent.removeChild(this.root),this.root=null}}]),t}();function Rk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Ok="mobile"===Xd.device,Ik=function(t){fi(n,t);var e=Rk(n);function n(t){var i;return ui(this,n),(i=e.call(this,t)).isActive=!1,i.curValue=null,i.curIndex=0,i}return Co(n,[{key:"updateLang",value:function(t){this.renderItemList(this.config.list,this.curIndex)}},{key:"afterCreate",value:function(){var t=this,e=this.config;Ok&&"middle"!==e.listType&&(e.listType="rightSide"),e.hidePortrait&&Wd.addClass(this.root,"portrait"),this.once(ap,(function(){e.list&&e.list.length>0&&(t.renderItemList(e.list),t.show())})),Ok&&this.on(gp,(function(){t.isActive&&(t.optionsList&&t.optionsList.hide(),t.isActive=!1)})),this.activeEvent=Ok?"touchend":"mouseenter",this.onEnter=this.onEnter.bind(this),this.onLeave=this.onLeave.bind(this),this.bind(this.activeEvent,this.onEnter),this.bind("mouseleave",this.onLeave)}},{key:"show",value:function(){!this.config.list||this.config.list.length<2||Wd.addClass(this.root,"show")}},{key:"hide",value:function(){Wd.removeClass(this.root,"show")}},{key:"getTextByLang",value:function(t,e,n){if(void 0===t)return"";var i=this.config.list;!n&&(n=this.player.lang),e=!e||Wd.isUndefined(t[e])?"text":e,"number"==typeof t&&(t=i[t]);try{return"object"===di(t[e])?t[e][n]||t[e].zh:t[e]}catch(t){return console.warn(t),""}}},{key:"onEnter",value:function(t){t.preventDefault(),t.stopPropagation(),this.onToggle(!0)}},{key:"onLeave",value:function(t){t.preventDefault(),t.stopPropagation(),this.isActive&&this.onToggle(!1)}},{key:"onToggle",value:function(t){if(t!==this.isActive){var e=this.player.controls,n=this.config.listType;t?("rightSide"===n?e.blur():e.focus(),this.optionsList&&this.optionsList.show()):("rightSide"===n?e.focus():e.unFocus(),this.optionsList&&this.optionsList.hide()),this.isActive=t}}},{key:"onItemClick",value:function(t,e){t.preventDefault(),t.stopPropagation();var n=this.config,i=n.listType,r=n.list;(Ok||"rightSide"===i)&&this.onToggle(!1),this.curIndex=e.to.index,this.curItem=r[this.curIndex],this.changeCurrentText()}},{key:"changeCurrentText",value:function(){var t=this.config.list,e=t[this.curIndex<t.length?this.curIndex:0];e&&(this.find(".icon-text").innerHTML=this.getTextByLang(e,"iconText"))}},{key:"renderItemList",value:function(t,e){var n=this,i=this.config,r=this.optionsList,o=this.player;if("number"==typeof e&&(this.curIndex=e,this.curItem=i.list[e]),r)return r.renderItemList(t),void this.changeCurrentText();var s={config:{data:t||[],className:"rightSide"===i.listType?"right-side":"",onItemClick:function(t,e){n.onItemClick(t,e)}},root:"rightSide"===i.listType?o.root:this.root};this.optionsList=new Pk(s),this.changeCurrentText(),this.show()}},{key:"destroy",value:function(){this.unbind(this.activeEvent,this.onToggle),this.unbind("mouseleave",this.onToggle),this.optionsList&&(this.optionsList.destroy(),this.optionsList=null)}},{key:"render",value:function(){return'<xg-icon class="xg-options-icon '.concat(this.config.className||"",'">\n <div class="xgplayer-icon btn-text">\n <span class="icon-text"></span>\n </div>\n </xg-icon>')}}],[{key:"pluginName",get:function(){return"optionsIcon"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:100,list:[],listType:"middle",listStyle:{},hidePortrait:!0}}}]),n}(Pg);function Lk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Ak=function(t){fi(n,t);var e=Lk(n);function n(t){var i;return ui(this,n),(i=e.call(this,t)).curTime=0,i.isPaused=!0,i}return Co(n,[{key:"beforeCreate",value:function(t){var e=t.config.list;Array.isArray(e)&&e.length>0&&(t.config.list=e.map((function(t){return!t.text&&t.name&&(t.text=t.name),t.text||(t.text=t.definition),t})))}},{key:"afterCreate",value:function(){var t=this;xo(vi(n.prototype),"afterCreate",this).call(this),this.on("resourceReady",(function(e){console.log("resourceReady",e),t.changeDefinitionList(e)})),this.on(Pp,(function(e){t.renderItemList(e.to)})),this.player.definitionList.length<2&&this.hide()}},{key:"initDefinition",value:function(){var t=this.config,e=t.list,n=t.defaultDefinition;if(e.length>0){var i=null;e.map((function(t){t.definition===n&&(i=t)})),i||(i=e[0]),this.changeDefinition(i)}}},{key:"renderItemList",value:function(t){var e=this,i=this.player,r=this.config.list,o=t&&t.url?t.url:i.currentSrc||i.src,s=t&&t.definition?t.definition:this.config.defaultDefinition,a=0,c=r.map((function(t,n){var i={url:t.url,definition:t.definition||"",showText:e.getTextByLang(t)||t.definition,isCurrent:!1};return(t.url===o||!Wd.isUndefined(t.definition)&&t.definition===s)&&(i.isCurrent=!0,a=n),i}));xo(vi(n.prototype),"renderItemList",this).call(this,c,a)}},{key:"changeDefinitionList",value:function(t){Array.isArray(t)&&(this.config.list=t.map((function(t){return!t.text&&t.name&&(t.text=t.name),t.text||(t.text=t.definition),t})),this.renderItemList(),this.config.list.length<2?this.hide():this.show())}},{key:"changeDefinition",value:function(t,e){var n=this.player;n.switchURL?n.switchUrl(t.url):n.changeDefinition(t,e)}},{key:"onItemClick",value:function(t,e){xo(vi(n.prototype),"onItemClick",this).apply(this,arguments),this.emitUserAction(t,"change_definition",{from:e.from,to:e.to}),this.player.changeDefinition(e.to,e.from)}}],[{key:"pluginName",get:function(){return"definition"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:3,list:[],defaultDefinition:"",disable:!1,hidePortrait:!1,className:"xgplayer-definition"}}}]),n}(Ik);function Dk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Mk=function(t){fi(n,t);var e=Dk(n);function n(t){var i;return ui(this,n),(i=e.call(this,t)).curRate=1,i}return Co(n,[{key:"beforeCreate",value:function(t){var e=t.player.config.playbackRate,n=e?Array.isArray(e)?e:t.config.list:[];Array.isArray(n)&&(t.config.list=n.map((function(t){return"number"==typeof t?t={rate:t,text:"".concat(t,"x")}:!t.text&&t.rate&&(t.text="".concat(t.rate,"x")),t})))}},{key:"afterCreate",value:function(){var t=this;xo(vi(n.prototype),"afterCreate",this).call(this),this.on(hp,(function(){t.curValue!==t.player.playbackRate&&t.renderItemList()})),this.renderItemList()}},{key:"show",value:function(){this.config.list&&0!==this.config.list.length&&xo(vi(n.prototype),"show",this).call(this)}},{key:"onItemClick",value:function(t,e){xo(vi(n.prototype),"onItemClick",this).apply(this,arguments);var i=t.delegateTarget,r=Number(i.getAttribute("rate"));if(!r||r===this.curValue)return!1;this.emitUserAction(t,"change_rate",{props:"playbackRate",from:this.player.playbackRate,to:r}),this.curValue=r,this.player.playbackRate=r}},{key:"renderItemList",value:function(){var t=this,e=this.player.playbackRate||1;this.curValue=e;var i=0,r=this.config.list.map((function(n,r){var o={rate:n.rate};return o.rate===e&&(o.isCurrent=!0,i=r),o.showText=t.getTextByLang(n),o}));xo(vi(n.prototype),"renderItemList",this).call(this,r,i)}},{key:"destroy",value:function(){xo(vi(n.prototype),"destroy",this).call(this)}}],[{key:"pluginName",get:function(){return"playbackRate"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:4,list:[2,1.5,1,.75,.5],className:"xgplayer-playbackrate",hidePortrait:!1}}}]),n}(Ik);function Nk(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="31" height="40" viewBox="0 -5 31 40">\n <path fill="#fff" transform="scale(1.3, 1.3)" class=\'path_full\' d="M9,10v1a.9.9,0,0,1-1,1,.9.9,0,0,1-1-1V9A.9.9,0,0,1,8,8h2a.9.9,0,0,1,1,1,.9.9,0,0,1-1,1Zm6,4V13a1,1,0,0,1,2,0v2a.9.9,0,0,1-1,1H14a1,1,0,0,1,0-2Zm3-7H6V17H18Zm2,0V17a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2V7A2,2,0,0,1,6,5H18A2,2,0,0,1,20,7Z"></path>\n</svg>\n',"image/svg+xml").firstChild}function Fk(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="31" height="40" viewBox="0 -5 31 40">\n <path fill="#fff" transform="scale(1.3, 1.3)" d="M9,10V9a.9.9,0,0,1,1-1,.9.9,0,0,1,1,1v2a.9.9,0,0,1-1,1H8a.9.9,0,0,1-1-1,.9.9,0,0,1,1-1Zm6,4v1a1,1,0,0,1-2,0V13a.9.9,0,0,1,1-1h2a1,1,0,0,1,0,2Zm3-7H6V17H18Zm2,0V17a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2V7A2,2,0,0,1,6,5H18A2,2,0,0,1,20,7Z"></path>\n</svg>\n',"image/svg+xml").firstChild}function jk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Bk=function(t){fi(n,t);var e=jk(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"afterCreate",value:function(){var t=this;this.config.disable||(this.config.target&&(this.playerConfig.fullscreenTarget=this.config.target),this.initIcons(),this.on(Tp,(function(e){t.animate(e)})),this.btnClick=this.btnClick.bind(this),this.bind(["click","touchend"],this.btnClick))}},{key:"initIcons",value:function(){var t=this.icons,e=this.find(".xgplayer-icon");e.appendChild(t.cssFullscreen),e.appendChild(t.exitCssFullscreen)}},{key:"btnClick",value:function(t){t.preventDefault(),t.stopPropagation();var e=this.player.isCssfullScreen;this.emitUserAction(t,"switch_css_fullscreen",{prop:"cssfullscreen",from:e,to:!e}),e?this.player.exitCssFullscreen():this.player.getCssFullscreen()}},{key:"animate",value:function(t){this.root&&(t?this.setAttr("data-state","full"):this.setAttr("data-state","normal"),this.switchTips(t))}},{key:"switchTips",value:function(t){var e=this.i18nKeys;this.changeLangTextKey(this.find(".xg-tips"),t?e.EXITCSSFULLSCREEN_TIPS:e.CSSFULLSCREEN_TIPS)}},{key:"registerIcons",value:function(){return{cssFullscreen:{icon:Nk,class:"xg-get-cssfull"},exitCssFullscreen:{icon:Fk,class:"xg-exit-cssfull"}}}},{key:"destroy",value:function(){this.unbind(["click","touchend"],this.btnClick)}},{key:"render",value:function(){if(!this.config.disable)return'<xg-icon class=\'xgplayer-cssfullscreen\'>\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.EXITCSSFULLSCREEN_TIPS,'">').concat(this.i18n.CSSFULLSCREEN_TIPS,"</div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"cssFullscreen"}},{key:"defaultConfig",get:function(){return{position:wg.CONTROLS_RIGHT,index:1,disable:!1,target:null}}}]),n}(Pg);function Hk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Uk=function(t){fi(n,t);var e=Hk(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"afterCreate",value:function(){var t=this;this.clickHandler=this.hook("errorRetry",this.errorRetry,{pre:function(t){t.preventDefault(),t.stopPropagation()}}),this.onError=this.hook("showError",this.handleError),this.bind(".xgplayer-error-refresh","click",this.clickHandler),this.on(ap,(function(){t.handleCanPlay()})),this.on(np,(function(e){t.onError(e)}))}},{key:"errorRetry",value:function(){this.player.retry()}},{key:"handleCanPlay",value:function(){Wd.removeClass(this.player.root,"xgplayer-is-error")}},{key:"handleError",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=this.player,n=t.errorType,i=e.errorNote?this.i18n[e.errorNote]:"";if(!i)switch(n){case"decoder":i=this.i18n.MEDIA_ERR_DECODE;break;case"network":i=this.i18n.MEDIA_ERR_NETWORK;break;default:i=this.i18n.MEDIA_ERR_SRC_NOT_SUPPORTED}this.find(".xgplayer-error-text").innerHTML=i,this.find(".xgplayer-error-tips").innerHTML="".concat(this.i18n.REFRESH_TIPS,'<span class="xgplayer-error-refresh">').concat(this.i18n.REFRESH,"</span>")}},{key:"destroy",value:function(){this.unbind(".xgplayer-error-refresh","click",this.clickHandler)}},{key:"render",value:function(){return'<xg-error class="xgplayer-error">\n <div class="xgplayer-errornote">\n <span class="xgplayer-error-text"></span>\n <span class="xgplayer-error-tips"><em class="xgplayer-error-refresh"></em></span>\n </div>\n </xg-error>'}}],[{key:"pluginName",get:function(){return"error"}}]),n}(Pg);function Vk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Gk=function(t){fi(n,t);var e=Vk(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"afterCreate",value:function(){var t=this;this.intervalId=0,this.customConfig=null,this.bind(".highlight",["click","touchend"],(function(e){(t.config.onClick||t.customOnClick)&&(e.preventDefault(),e.stopPropagation(),t.customOnClick?t.customOnClick(e):t.config.onClick(e))})),this.player.showPrompt=function(){t.show.apply(t,arguments)},this.player.hidePrompt=function(){t.hide()}}},{key:"setStyle",value:function(t){var e=this;Object.keys(t).map((function(n){e.root.style[n]=t[n]}))}},{key:"show",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){};if(t){this.customOnClick=i;var r=this.config.interval;this.intervalId&&(clearTimeout(this.intervalId),this.intervalId=null),Wd.addClass(this.root,"show"),"arrow"===n.mode&&Wd.addClass(this.root,"arrow"),this.find(".xgplayer-prompt-detail").innerHTML="string"==typeof t?t:"".concat(t.text||"")+"".concat(t.highlight?'<i class="highlight">'.concat(t.highlight,"</i>"):""),n.style&&this.setStyle(n.style);var o="boolean"==typeof n.autoHide?n.autoHide:this.config.autoHide;if(o){var s=n.interval||r;this.intervalId=setTimeout((function(){e.hide()}),s)}}}},{key:"hide",value:function(){Wd.removeClass(this.root,"show"),Wd.removeClass(this.root,"arrow"),this.root.removeAttribute("style"),this.customOnClick=null}},{key:"render",value:function(){return'<xg-prompt class="xgplayer-prompt '.concat(Wv.CONTROLS_FOLLOW,'">\n <span class="xgplayer-prompt-detail"></span>\n </xg-prompt>')}}],[{key:"pluginName",get:function(){return"prompt"}},{key:"defaultConfig",get:function(){return{interval:3e3,style:{},mode:"arrow",autoHide:!0,detail:{text:"",highlight:""},onClick:function(){}}}}]),n}(Pg),Wk={time:0,text:"",id:1,duration:1,color:"#fff",style:{},width:6,height:6};function Yk(t){Object.keys(Wk).map((function(e){void 0===t[e]&&(t[e]=Wk[e])}))}var Kk={initDots:function(){var t=this;this._ispots.map((function(e){t.createDot(e,!1)})),this._ispotsInit=!0},createDot:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=this.player.plugins.progress;if(n&&(e&&(Yk(t),this._ispots.push(t)),this._ispotsInit||!e)){var i=this.calcuPosition(t.time,t.duration),r=t.style||{};r.left="".concat(i.left,"%"),r.width="".concat(i.width,"%");var o="xgspot_".concat(t.id," xgplayer-spot");i.isMini&&(o+=" mini");var s=Wd.createDom("xg-spot","",{"data-text":t.text,"data-time":t.time,"data-id":t.id},o);Object.keys(r).map((function(t){s.style[t]=r[t]})),n.outer&&n.outer.appendChild(s)}},findDot:function(t){if(this.player.plugins.progress){var e=this._ispots.filter((function(e,n){return e.id===t}));return e.length>0?e[0]:null}},updateDot:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.player.plugins.progress;if(n){var i=this.findDot(t.id);if(i&&Object.keys(t).map((function(e){i[e]=t[e]})),this._ispotsInit){var r=n.find('xg-spot[data-id="'.concat(t.id,'"]'));if(r){var o=this.calcuPosition(t.time,t.duration),s=t.style||{};s.left="".concat(o.left,"%"),s.width="".concat(o.width,"%"),r.setAttribute("data-text",t.text),r.setAttribute("data-time",t.time),o.isMini?Wd.addClass(r,"mini"):Wd.removeClass(r,"mini"),Object.keys(s).map((function(t){r.style[t]=s[t]})),e&&this.showDot(t.id)}}}},deleteDot:function(t){var e=this._ispots,n=this.player.plugins.progress;if(n){for(var i=[],r=0;r<e.length;r++)e[r].id===t&&i.push(r);for(var o=i.length-1;o>=0;o--)if(e.splice(i[o],1),this._ispotsInit){var s=n.find('xg-spot[data-id="'.concat(t,'"]'));s&&s.parentElement.removeChild(s)}}},deleteAllDots:function(){var t=this.player.plugins.progress;if(t)if(this._ispotsInit){for(var e=t.root.getElementsByTagName("xg-spot"),n=e.length-1;n>=0;n--)t.outer.removeChild(e[n]);this._ispots=[]}else this._ispots=[]},updateAllDots:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=this.player.plugins.progress;if(n)if(this._ispotsInit){this._ispots=[];var i=n.root.getElementsByTagName("xg-spot"),r=i.length;if(r>e.length)for(var o=r-1;o>e.length-1;o--)n.outer.removeChild(i[o]);e.map((function(e,n){n<r?(i[n].setAttribute("data-id","".concat(e.id)),t._ispots.push(e),t.updateDot(e)):t.createDot(e)}))}else this._ispots=e}};function zk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Xk={dragmove:"onProgressMove",dragstart:"onProgressDragStart",dragend:"onProgressDragEnd"},qk=function(t){fi(n,t);var e=zk(n);function n(t){var i;return ui(this,n),yi(pi(i=e.call(this,t)),"onMousemove",(function(t){(i._state.f||Wd.hasClass(t.target,"xg-spot-content"))&&(Wd.event(t),t.stopPropagation())})),yi(pi(i),"onMousedown",(function(t){(i._state.f||Wd.hasClass(t.target,"xg-spot-content"))&&(Wd.event(t),t.stopPropagation())})),i._ispots=[],i.videoPreview=null,i.videothumbnail=null,i.thumbnail=null,i._state={now:0,f:!1},i}return Co(n,[{key:"beforeCreate",value:function(t){var e=t.player.plugins.progress;e&&(t.root=e.root)}},{key:"onPluginsReady",value:function(){this.player.plugins.progress&&(this.previewLine=this.find(".xg-spot-line"),this.timePoint=this.find(".xgplayer-progress-point"),this.timeText=this.find(".xg-spot-time"),this.tipText=this.find(".spot-inner-text"),this._hasThumnail=!1,this.registerThumbnail(),function(t){var e=t.config,n=t.player;Object.keys(Kk).map((function(e){t[e]=Kk[e].bind(t)}));var i=n.config.progressDot||e.ispots||[];t._ispots=i.map((function(t){return Yk(t),t})),t._ispotsInit=!1,n.once(cp,(function(){t.initDots()}))}(this),this.bindEvents())}},{key:"bindEvents",value:function(){var t=this,e=this.player.plugins.progress;if("mobile"!==Xd.device&&e){Object.keys(Xk).map((function(n){t[Xk[n]]=t[Xk[n]].bind(t),e.addCallBack(n,t[Xk[n]])})),this.bind(".xg-spot-info","mousemove",this.onMousemove),this.bind(".xg-spot-info","mousedown",this.onMousedown);var n=this.hook("previewClick",(function(){}));this.handlerPreviewClick=function(e){e.stopPropagation(),n(parseInt(1e3*t._state.now,10)/1e3,e)},this.bind(".xg-spot-content","mouseup",this.handlerPreviewClick)}}},{key:"onProgressMove",value:function(t){this.updatePosition(t.offset,t.width,t.currentTime,t.e)}},{key:"onProgressDragStart",value:function(t){this.isDrag=!0,this.videoPreview&&Wd.addClass(this.videoPreview,"show")}},{key:"onProgressDragEnd",value:function(t){this.isDrag=!1,this.videoPreview&&Wd.removeClass(this.videoPreview,"show")}},{key:"updateLinePos",value:function(t,e){var n,i,r=this.root,o=this.previewLine,s=this.timePoint,a="flex"===this.player.controls.mode,c=r.getBoundingClientRect().width,l=s.getBoundingClientRect().width,u=t-c/2;u<0&&!a?(u=0,n=t-c/2,!this.thumbnail&&(i=t-c/2-l/2)):u>e-c&&!a?(n=u-(e-c),!this.thumbnail&&(i=u-(e-c)-l/2),u=e-c):(n=0,!this.thumbnail&&(i=-l/2)),void 0!==n&&(o.style.transform="translateX(".concat(n,"px)")),void 0!==i&&(s.style.transform="translateX(".concat(i,"px)")),r.style.transform="translateX(".concat(u,"px)")}},{key:"updateTimeText",value:function(t){var e=this.timeText,n=this.timePoint;e.textContent=t,!this.thumbnail&&(n.textContent=t)}},{key:"updatePosition",value:function(t,e,n,i){var r=this.root,o=this.config,s=this._state;if(r){this.updateLinePos(t,e),s.now=n;var a=Wd.format(n);i&&i.target&&Wd.hasClass(i.target,"xgplayer-spot")?(this.showTips(i.target.getAttribute("data-text"),!1,a),s.f=!0,o.isFocusDots&&s.f&&(s.now=parseInt(i.target.getAttribute("data-time"),10))):o.defaultText?(s.f=!1,this.showTips(o.defaultText,!0,a)):(s.f=!1,this.hideTips("")),this.updateTimeText(a),this.updateThumbnails(s.now)}}},{key:"updateThumbnails",value:function(t){var e=this.player,n=this.videoPreview,i=e.plugins.thumbnail;if(i&&i.usable){this.thumbnail&&i.update(this.thumbnail,t,160,90);var r=n&&n.getBoundingClientRect();this.videothumbnail&&i.update(this.videothumbnail,t,r.width,r.height)}}},{key:"registerThumbnail",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if("mobile"!==Xd.device){var e=this.player,n=this.config,i=e.getPlugin("thumbnail");if(i&&Object.keys(t).map((function(e){i.config[e]=t[e]})),i&&i.usable&&n.isShowThumbnail){Wd.removeClass(this.root,"short-line no-thumbnail"),this._hasThumnail=!0;var r=this.find(".xg-spot-thumbnail");this.thumbnail=i.createThumbnail(r,"progress-thumbnail"),n.isShowCoverPreview&&(this.videoPreview=Wd.createDom("xg-video-preview","",{},"xgvideo-preview"),e.root.appendChild(this.videoPreview),this.videothumbnail=i.createThumbnail(this.videoPreview,"xgvideo-thumbnail"))}else Wd.addClass(this.root,"short-line no-thumbnail")}}},{key:"calcuPosition",value:function(t,e){var n=this.player.plugins.progress,i=this.player,r=n.root.getBoundingClientRect().width,o=i.duration/r*6;return t+e>i.duration&&(e=i.duration-t),i.duration,i.duration,{left:t/i.duration*100,width:e/i.duration*100,isMini:e<o}}},{key:"showDot",value:function(t){var e=this.findDot(t);if(e){var n=this.root.getBoundingClientRect().width,i=e.time/this.player.duration*n;this.updatePosition(i,n,e.time)}}},{key:"showTips",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";t&&(Wd.addClass(this.root,"no-timepoint"),Wd.addClass(this.find(".xg-spot-content"),"show-text"),e&&"production"===this.config.mode?(Wd.addClass(this.root,"product"),this.tipText.textContent=t):(Wd.removeClass(this.root,"product"),this.tipText.textContent=this._hasThumnail?t:"".concat(n," ").concat(t)))}},{key:"hideTips",value:function(){Wd.removeClass(this.root,"no-timepoint"),this.tipText.textContent="",Wd.removeClass(this.find(".xg-spot-content"),"show-text"),Wd.removeClass(this.root,"product")}},{key:"destroy",value:function(){var t=this,e=this.player.plugins.progress;e&&Object.keys(Xk).map((function(n){e.removeCallBack(n,t[Xk[n]])})),this.videothumbnail=null,this.thumbnail=null,this.videoPreview&&this.player.root.removeChild(this.videoPreview),this.unbind(".xg-spot-info","mousemove",this.onMousemove),this.unbind(".xg-spot-info","mousedown",this.onMousedown),this.unbind(".xg-spot-content","mouseup",this.handlerPreviewClick)}},{key:"render",value:function(){return"mobile"===Xd.device||this.playerConfig.isMobileSimulateMode?"":'<div class="xg-spot-info '.concat("short"===this.config.mode?"short-line":"",'">\n <div class="xg-spot-content">\n <div class="xg-spot-thumbnail">\n <span class="xg-spot-time"></span>\n </div>\n <div class="xg-spot-text"><span class="spot-inner-text"></span></div>\n </div>\n <div class="xgplayer-progress-point">00:00</div>\n <div class="xg-spot-line"></div>\n </div>')}}],[{key:"pluginName",get:function(){return"progresspreview"}},{key:"defaultConfig",get:function(){return{index:1,miniWidth:6,ispots:[],defaultText:"",isFocusDots:!0,isShowThumbnail:!0,isShowCoverPreview:!1,mode:""}}}]),n}(Pg);function $k(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Zk=function(t){fi(n,t);var e=$k(n);function n(t){var i;return ui(this,n),(i=e.call(this,t)).ratio=1,i.interval=null,i.preloadMark={},i}return Co(n,[{key:"afterCreate",value:function(){this.usable&&this.initThumbnail()}},{key:"usable",get:function(){var t=this.config,e=t.urls,n=t.pic_num;return e&&e.length>0&&n>0}},{key:"initThumbnail",value:function(){var t=this.config,e=t.width,n=t.height,i=t.pic_num,r=t.interval;this.ratio=e/n*100,this.interval=r||Math.round(this.player.duration/i),this.preload(0)}},{key:"getUrlByIndex",value:function(t){return t>=0&&t<this.config.urls.length?this.config.urls[t]:""}},{key:"preload",value:function(t){var e=this,n=this.config.urls,i=n.length;[t-1,t,t+1,t+2].map((function(t){!e.preloadMark[t]&&t>=0&&t<i&&(Wd.preloadImg(n[t]),e.preloadMark[t]=!0)}))}},{key:"getPosition",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,i=this.config,r=i.pic_num,o=i.row,s=i.col,a=i.width,c=i.height;this.interval=Math.round(this.player.duration/r);var l=Math.ceil(t/this.interval),u=(l=l>r?r:l)<o*s?0:Math.ceil(l/(o*s))-1,h=l-u*(s*o),f=h>0?Math.ceil(h/s)-1:0,d=h>0?h-f*s-1:0,p=0,g=0;if(e&&n){var v=e/n;v<a/c?g=(p=e)/(a/c):p=(g=n)*(a/c)}else g=(p=e||a)/(a/c);var y=this.getUrlByIndex(u);return{urlIndex:u,rowIndex:f,colIndex:d,url:y,height:g,width:p,style:{backgroundImage:"url(".concat(y,")"),backgroundSize:"".concat(p*s,"px auto"),backgroundPosition:"-".concat(d*p,"px -").concat(f*g,"px"),width:"".concat(p,"px"),height:"".concat(g,"px")}}}},{key:"update",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:"",o=this.config,s=o.pic_num,a=o.urls;if(!(s<=0)&&a&&0!==a.length){var c=this.getPosition(e,n,i);this.preload(c.urlIndex),Object.keys(c.style).map((function(e){t.style[e]=c.style[e]})),Object.keys(r).map((function(e){t.style[e]=r[e]}))}}},{key:"createThumbnail",value:function(t,e){var n=Wd.createDom("xg-thumbnail","",{},"thumbnail ".concat(e));return t&&t.appendChild(n),n}}],[{key:"pluginName",get:function(){return"thumbnail"}},{key:"defaultConfig",get:function(){return{isShow:!1,urls:[],pic_num:0,col:0,row:0,height:90,width:160,scale:1,className:"",hidePortrait:!1}}}]),n}(Pg);function Jk(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var Qk=function(t){fi(n,t);var e=Jk(n);function n(){return ui(this,n),e.apply(this,arguments)}return Co(n,[{key:"afterCreate",value:function(){}},{key:"update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{cached:0,played:0},e=arguments.length>1?arguments[1]:void 0;e&&this.root&&(t.cached&&(this.find("xg-mini-progress-cache").style.width="".concat(t.cached/e*100,"%")),t.played&&(this.find("xg-mini-progress-played").style.width="".concat(t.played/e*100,"%")))}},{key:"render",value:function(){if(this.playerConfig.progress&&this.playerConfig.miniprogress)return'<xg-mini-progress class="xg-mini-progress">\n <xg-mini-progress-cache class="xg-mini-progress-cache"></xg-mini-progress-cache>\n <xg-mini-progress-played class="xg-mini-progress-played"></xg-mini-progress-played>\n </xg-mini-progress>'}}],[{key:"pluginName",get:function(){return"MiniProgress"}},{key:"defaultConfig",get:function(){return{}}}]),n}(Pg);function tb(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var eb="realtime",nb="firstframe";function ib(){try{return window.performance.now()}catch(t){return(new Date).getTime()}}function rb(t){return"safari"!==Xd.browser||!/^blob/.test(t.currentSrc)&&!/^blob/.test(t.src)}var ob=null,sb=function(t){fi(n,t);var e=tb(n);function n(){var t;ui(this,n);for(var i=arguments.length,r=new Array(i),o=0;o<i;o++)r[o]=arguments[o];return yi(pi(t=e.call.apply(e,[this].concat(r))),"onLoadedData",(function(){var e=t.player.video;t.videoPI=parseInt(e.videoWidth/e.videoHeight*100,10)})),yi(pi(t),"start",(function(){var e=t.player.video,n=ib();rb(e)&&t.canvasCtx&&(t.stop(),(t.config.mode===eb||n-t.preTime>=t.interval)&&(e&&e.videoWidth&&t.update(e,e.videoWidth,e.videoHeight),t.preTime=n),t.frameId=Wd.requestAnimationFrame(t.start))})),yi(pi(t),"stop",(function(){t.frameId&&(Wd.cancelAnimationFrame(t.frameId),t.frameId=null)})),t}return Co(n,[{key:"afterCreate",value:function(){var t=this;!0===this.playerConfig.dynamicBg&&(this.config.disable=!1),n.isSupport||(this.config.disable=!0);var e=this.config,i=e.disable,r=e.mode;i||(this._pos={width:0,height:0,rwidth:0,rheight:0,x:0,y:0},this.isStart=!1,this.videoPI=0,this.preTime=0,this.interval=parseInt(1e3/this.config.frameRate,10),this.canvas=null,this.canvasCtx=null,this.once(wp,(function(){t.init(),!t.player.paused&&t.start()})),this.once(up,this.onLoadedData),this.on(_p,(function(){t.once(up,t.onLoadedData)})),r!==nb&&(this.on(Jd,(function(){t.start()})),this.on(ep,(function(){t.stop()}))),r===nb&&this.once(op,(function(){var e=t.player.video;e&&rb(e)&&e.videoWidth&&t.update(e,e.videoWidth,e.videoHeight)})))}},{key:"init",value:function(){var t=this.player,e=this.config;this.canvasFilter=n.supportCanvasFilter();try{var i=t.innerContainer||t.root;i.insertAdjacentHTML("afterbegin",'<div class="xgplayer-dynamic-bg"><canvas>\n </canvas><xgmask></xgmask></div>'),this.root=i.children[0],this.canvas=this.find("canvas"),this.canvasFilter||(this.canvas.style.filter=e.filter,this.canvas.style.webkitFilter=e.filter),this.mask=this.find("xgmask"),e.addMask&&(this.mask.style.background=e.maskBg),this.canvasCtx=this.canvas.getContext("2d");var r=this.playerConfig.poster;if(r){var o="String"===Wd.typeOf(r)?r:"String"===Wd.typeOf(r.poster)?r.poster:null;this.updateImg(o)}}catch(t){Hd.logError("plugin:DynamicBg",t)}}},{key:"updateImg",value:function(t){var e=this;if(t){var n=this.canvas.getBoundingClientRect(),i=n.width,r=n.height,o=new window.Image;o.onload=function(){e.canvas&&(e.canvas.height=r,e.canvas.width=i,e.update(o,o.width,o.height),o=null)},o.src=t}}},{key:"update",value:function(t,e,n){if(this.canvas&&this.canvasCtx)try{var i=this._pos,r=this.config,o=this.canvas.getBoundingClientRect(),s=o.width,a=o.height;if(this.videoPI=parseInt(e/n*100,10),s!==i.width||a!==i.height){var c=parseInt(s/a*100,10);i.width=this.canvas.width=s,i.height=this.canvas.height=a;var l=a,u=s;c<this.videoPI?u=parseInt(a*this.videoPI/100,10):c>this.videoPI&&(l=parseInt(100*s/this.videoPI,10)),c<this.videoPI?u=parseInt(a*this.videoPI/100,10):c>this.videoPI&&(l=parseInt(100*s/this.videoPI,10)),i.rwidth=1.2*u,i.rheight=1.2*l,i.x=(s-i.rwidth)/2,i.y=(a-i.rheight)/2}this.canvasFilter&&(this.canvasCtx.filter=r.filter),this.canvasCtx.drawImage(t,i.x,i.y,i.rwidth,i.rheight)}catch(t){Hd.logError("plugin:DynamicBg",t)}}},{key:"destroy",value:function(){this.stop(),this.canvasCtx=null,this.canvas=null}},{key:"render",value:function(){return""}}],[{key:"pluginName",get:function(){return"dynamicBg"}},{key:"defaultConfig",get:function(){return{disable:!0,mode:"framerate",frameRate:10,filter:"blur(50px)",addMask:!0,maskBg:"rgba(0,0,0,0.7)"}}},{key:"isSupport",get:function(){return"boolean"==typeof ob?ob:ob=function(){try{return!!document.createElement("canvas").getContext}catch(t){return!1}}()}},{key:"supportCanvasFilter",value:function(){return!("safari"===Xd.browser||"firefox"===Xd.browser)}}]),n}(Pg),ab={LANG:"zh-cn",TEXT:{ERROR_TYPES:{network:{code:1,msg:"视频下载错误"},mse:{code:2,msg:"流追加错误"},parse:{code:3,msg:"解析错误"},format:{code:4,msg:"格式错误"},decoder:{code:5,msg:"解码错误"},runtime:{code:6,msg:"语法错误"},timeout:{code:7,msg:"播放超时"},other:{code:8,msg:"其他错误"}},HAVE_NOTHING:"没有关于音频/视频是否就绪的信息",HAVE_METADATA:"音频/视频的元数据已就绪",HAVE_CURRENT_DATA:"关于当前播放位置的数据是可用的,但没有足够的数据来播放下一帧/毫秒",HAVE_FUTURE_DATA:"当前及至少下一帧的数据是可用的",HAVE_ENOUGH_DATA:"可用数据足以开始播放",NETWORK_EMPTY:"音频/视频尚未初始化",NETWORK_IDLE:"音频/视频是活动的且已选取资源,但并未使用网络",NETWORK_LOADING:"浏览器正在下载数据",NETWORK_NO_SOURCE:"未找到音频/视频来源",MEDIA_ERR_ABORTED:"取回过程被用户中止",MEDIA_ERR_NETWORK:"网络错误",MEDIA_ERR_DECODE:"解码错误",MEDIA_ERR_SRC_NOT_SUPPORTED:"不支持的音频/视频格式",REPLAY:"重播",ERROR:"网络连接似乎出现了问题",PLAY_TIPS:"播放",PAUSE_TIPS:"暂停",PLAYNEXT_TIPS:"下一集",DOWNLOAD_TIPS:"下载",ROTATE_TIPS:"旋转",RELOAD_TIPS:"重新载入",FULLSCREEN_TIPS:"进入全屏",EXITFULLSCREEN_TIPS:"退出全屏",CSSFULLSCREEN_TIPS:"进入样式全屏",EXITCSSFULLSCREEN_TIPS:"退出样式全屏",TEXTTRACK:"字幕",PIP:"画中画",SCREENSHOT:"截图",LIVE:"正在直播",OFF:"关闭",OPEN:"开启",MINI_DRAG:"点击按住可拖动视频",MINISCREEN:"小屏幕",REFRESH_TIPS:"请试试",REFRESH:"刷新",FORWARD:"快进中",LIVE_TIP:"直播"}};function cb(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=vi(t);if(e){var r=vi(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return gi(this,n)}}var lb=function(t){fi(n,t);var e=cb(n);function n(){return ui(this,n),e.apply(this,arguments)}return n}(py);return yi(lb,"defaultPreset",(function t(e,n){var i,r,o;ui(this,t);var s=n&&n.isMobileSimulateMode,a=n.isLive,c=[].concat(a?[]:[Ym,Qk,qk,nk],[zm,tk,uk,bk,Ak,Mk,Ek,Sk,ak,yk]),l=[wy,xy,Py,Nm,Oy,Uk,Gk,Zk,Yy];this.plugins=[my].concat(Yh(c),l);var u=s?"mobile":Xd.device;switch(u){case"pc":(i=this.plugins).push.apply(i,[Am,qy,Bk]);break;case"mobile":(r=this.plugins).push.apply(r,[Pm]);break;default:(o=this.plugins).push.apply(o,[Am,qy,Bk])}(Xd.os.isIpad||"pc"===u)&&this.plugins.push(sb),this.ignores=[],this.i18n=[ab]})),yi(lb,"Util",Wd),yi(lb,"Sniffer",Xd),yi(lb,"Errors",Zd),yi(lb,"Events",jp),yi(lb,"Plugin",Pg),yi(lb,"BasePlugin",dg),yi(lb,"I18N",ly),yi(lb,"STATE_CLASS",Wv),lb}));
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("core-js/modules/es.array.find.js"),require("core-js/modules/es.object.to-string.js"),require("core-js/modules/es.array.concat.js"),require("core-js/modules/web.dom-collections.for-each.js"),require("core-js/modules/es.object.keys.js"),require("core-js/modules/es.array.slice.js"),require("core-js/modules/es.regexp.exec.js"),require("core-js/modules/es.regexp.test.js"),require("core-js/modules/es.array.join.js"),require("core-js/modules/es.array.splice.js"),require("core-js/modules/es.promise.js"),require("core-js/modules/es.function.name.js"),require("core-js/modules/es.number.is-nan.js"),require("core-js/modules/es.number.constructor.js"),require("core-js/modules/es.array.map.js"),require("core-js/modules/es.array.iterator.js"),require("core-js/modules/web.dom-collections.iterator.js"),require("core-js/modules/es.array.filter.js"),require("core-js/modules/es.object.assign.js"),require("core-js/modules/es.symbol.js"),require("core-js/modules/es.string.match.js"),require("core-js/modules/es.regexp.constructor.js"),require("core-js/modules/es.regexp.sticky.js"),require("core-js/modules/es.regexp.to-string.js"),require("core-js/modules/es.string.split.js"),require("core-js/modules/es.string.replace.js"),require("core-js/modules/es.string.trim.js"),require("core-js/modules/es.array.sort.js"),require("core-js/modules/es.string.iterator.js"),require("core-js/modules/es.number.to-fixed.js"),require("core-js/modules/es.array.find-index.js"),require("core-js/modules/es.typed-array.uint8-array.js"),require("core-js/modules/esnext.typed-array.at.js"),require("core-js/modules/es.typed-array.copy-within.js"),require("core-js/modules/es.typed-array.every.js"),require("core-js/modules/es.typed-array.fill.js"),require("core-js/modules/es.typed-array.filter.js"),require("core-js/modules/es.typed-array.find.js"),require("core-js/modules/es.typed-array.find-index.js"),require("core-js/modules/esnext.typed-array.find-last.js"),require("core-js/modules/esnext.typed-array.find-last-index.js"),require("core-js/modules/es.typed-array.for-each.js"),require("core-js/modules/es.typed-array.includes.js"),require("core-js/modules/es.typed-array.index-of.js"),require("core-js/modules/es.typed-array.iterator.js"),require("core-js/modules/es.typed-array.join.js"),require("core-js/modules/es.typed-array.last-index-of.js"),require("core-js/modules/es.typed-array.map.js"),require("core-js/modules/es.typed-array.reduce.js"),require("core-js/modules/es.typed-array.reduce-right.js"),require("core-js/modules/es.typed-array.reverse.js"),require("core-js/modules/es.typed-array.set.js"),require("core-js/modules/es.typed-array.slice.js"),require("core-js/modules/es.typed-array.some.js"),require("core-js/modules/es.typed-array.sort.js"),require("core-js/modules/es.typed-array.subarray.js"),require("core-js/modules/es.typed-array.to-locale-string.js"),require("core-js/modules/es.typed-array.to-string.js"),require("core-js/modules/web.url.js"),require("core-js/modules/web.url-search-params.js"),require("core-js/modules/es.json.stringify.js")):"function"==typeof define&&define.amd?define(["core-js/modules/es.array.find.js","core-js/modules/es.object.to-string.js","core-js/modules/es.array.concat.js","core-js/modules/web.dom-collections.for-each.js","core-js/modules/es.object.keys.js","core-js/modules/es.array.slice.js","core-js/modules/es.regexp.exec.js","core-js/modules/es.regexp.test.js","core-js/modules/es.array.join.js","core-js/modules/es.array.splice.js","core-js/modules/es.promise.js","core-js/modules/es.function.name.js","core-js/modules/es.number.is-nan.js","core-js/modules/es.number.constructor.js","core-js/modules/es.array.map.js","core-js/modules/es.array.iterator.js","core-js/modules/web.dom-collections.iterator.js","core-js/modules/es.array.filter.js","core-js/modules/es.object.assign.js","core-js/modules/es.symbol.js","core-js/modules/es.string.match.js","core-js/modules/es.regexp.constructor.js","core-js/modules/es.regexp.sticky.js","core-js/modules/es.regexp.to-string.js","core-js/modules/es.string.split.js","core-js/modules/es.string.replace.js","core-js/modules/es.string.trim.js","core-js/modules/es.array.sort.js","core-js/modules/es.string.iterator.js","core-js/modules/es.number.to-fixed.js","core-js/modules/es.array.find-index.js","core-js/modules/es.typed-array.uint8-array.js","core-js/modules/esnext.typed-array.at.js","core-js/modules/es.typed-array.copy-within.js","core-js/modules/es.typed-array.every.js","core-js/modules/es.typed-array.fill.js","core-js/modules/es.typed-array.filter.js","core-js/modules/es.typed-array.find.js","core-js/modules/es.typed-array.find-index.js","core-js/modules/esnext.typed-array.find-last.js","core-js/modules/esnext.typed-array.find-last-index.js","core-js/modules/es.typed-array.for-each.js","core-js/modules/es.typed-array.includes.js","core-js/modules/es.typed-array.index-of.js","core-js/modules/es.typed-array.iterator.js","core-js/modules/es.typed-array.join.js","core-js/modules/es.typed-array.last-index-of.js","core-js/modules/es.typed-array.map.js","core-js/modules/es.typed-array.reduce.js","core-js/modules/es.typed-array.reduce-right.js","core-js/modules/es.typed-array.reverse.js","core-js/modules/es.typed-array.set.js","core-js/modules/es.typed-array.slice.js","core-js/modules/es.typed-array.some.js","core-js/modules/es.typed-array.sort.js","core-js/modules/es.typed-array.subarray.js","core-js/modules/es.typed-array.to-locale-string.js","core-js/modules/es.typed-array.to-string.js","core-js/modules/web.url.js","core-js/modules/web.url-search-params.js","core-js/modules/es.json.stringify.js"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).Player=t()}(this,(function(){"use strict";function e(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,n)}return i}function t(t){for(var i=1;i<arguments.length;i++){var n=null!=arguments[i]?arguments[i]:{};i%2?e(Object(n),!0).forEach((function(e){s(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):e(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function r(e,t,i){return t&&o(e.prototype,t),i&&o(e,i),Object.defineProperty(e,"prototype",{writable:!1}),e}function s(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}function l(e){return(l=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function c(e,t){return(c=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function u(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function h(e,t){if(t&&("object"==typeof t||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return u(e)}function d(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var i,n=l(e);if(t){var o=l(this).constructor;i=Reflect.construct(n,arguments,o)}else i=n.apply(this,arguments);return h(this,i)}}function f(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&null!==(e=l(e)););return e}function p(){return p="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(e,t,i){var n=f(e,t);if(n){var o=Object.getOwnPropertyDescriptor(n,t);return o.get?o.get.call(arguments.length<3?e:i):o.value}},p.apply(this,arguments)}function g(e){return function(e){if(Array.isArray(e))return v(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return v(e,t);var i=Object.prototype.toString.call(e).slice(8,-1);"Object"===i&&e.constructor&&(i=e.constructor.name);if("Map"===i||"Set"===i)return Array.from(e);if("Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i))return v(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function v(e,t){(null==t||t>e.length)&&(t=e.length);for(var i=0,n=new Array(t);i<t;i++)n[i]=e[i];return n}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;var y={exports:{}};!function(e){var t=Object.prototype.hasOwnProperty,i="~";function n(){}function o(e,t,i){this.fn=e,this.context=t,this.once=i||!1}function r(e,t,n,r,s){if("function"!=typeof n)throw new TypeError("The listener must be a function");var a=new o(n,r||e,s),l=i?i+t:t;return e._events[l]?e._events[l].fn?e._events[l]=[e._events[l],a]:e._events[l].push(a):(e._events[l]=a,e._eventsCount++),e}function s(e,t){0==--e._eventsCount?e._events=new n:delete e._events[t]}function a(){this._events=new n,this._eventsCount=0}Object.create&&(n.prototype=Object.create(null),(new n).__proto__||(i=!1)),a.prototype.eventNames=function(){var e,n,o=[];if(0===this._eventsCount)return o;for(n in e=this._events)t.call(e,n)&&o.push(i?n.slice(1):n);return Object.getOwnPropertySymbols?o.concat(Object.getOwnPropertySymbols(e)):o},a.prototype.listeners=function(e){var t=i?i+e:e,n=this._events[t];if(!n)return[];if(n.fn)return[n.fn];for(var o=0,r=n.length,s=new Array(r);o<r;o++)s[o]=n[o].fn;return s},a.prototype.listenerCount=function(e){var t=i?i+e:e,n=this._events[t];return n?n.fn?1:n.length:0},a.prototype.emit=function(e,t,n,o,r,s){var a=i?i+e:e;if(!this._events[a])return!1;var l,c,u=this._events[a],h=arguments.length;if(u.fn){switch(u.once&&this.removeListener(e,u.fn,void 0,!0),h){case 1:return u.fn.call(u.context),!0;case 2:return u.fn.call(u.context,t),!0;case 3:return u.fn.call(u.context,t,n),!0;case 4:return u.fn.call(u.context,t,n,o),!0;case 5:return u.fn.call(u.context,t,n,o,r),!0;case 6:return u.fn.call(u.context,t,n,o,r,s),!0}for(c=1,l=new Array(h-1);c<h;c++)l[c-1]=arguments[c];u.fn.apply(u.context,l)}else{var d,f=u.length;for(c=0;c<f;c++)switch(u[c].once&&this.removeListener(e,u[c].fn,void 0,!0),h){case 1:u[c].fn.call(u[c].context);break;case 2:u[c].fn.call(u[c].context,t);break;case 3:u[c].fn.call(u[c].context,t,n);break;case 4:u[c].fn.call(u[c].context,t,n,o);break;default:if(!l)for(d=1,l=new Array(h-1);d<h;d++)l[d-1]=arguments[d];u[c].fn.apply(u[c].context,l)}}return!0},a.prototype.on=function(e,t,i){return r(this,e,t,i,!1)},a.prototype.once=function(e,t,i){return r(this,e,t,i,!0)},a.prototype.removeListener=function(e,t,n,o){var r=i?i+e:e;if(!this._events[r])return this;if(!t)return s(this,r),this;var a=this._events[r];if(a.fn)a.fn!==t||o&&!a.once||n&&a.context!==n||s(this,r);else{for(var l=0,c=[],u=a.length;l<u;l++)(a[l].fn!==t||o&&!a[l].once||n&&a[l].context!==n)&&c.push(a[l]);c.length?this._events[r]=1===c.length?c[0]:c:s(this,r)}return this},a.prototype.removeAllListeners=function(e){var t;return e?(t=i?i+e:e,this._events[t]&&s(this,t)):(this._events=new n,this._eventsCount=0),this},a.prototype.off=a.prototype.removeListener,a.prototype.addListener=a.prototype.on,a.prefixed=i,a.EventEmitter=a,e.exports=a}(y);var m=y.exports,k="undefined"!=typeof window&&window.location&&window.location.href.indexOf("xgplayerdebugger=1")>-1,b={info:"color: #525252; background-color: #90ee90;",error:"color: #525252; background-color: red;",warn:"color: #525252; background-color: yellow; "},C="%c[xgplayer]",w={config:{debug:k?3:1},logInfo:function(e){for(var t,i=arguments.length,n=new Array(i>1?i-1:0),o=1;o<i;o++)n[o-1]=arguments[o];this.config.debug>=3&&(t=console).log.apply(t,[C,b.info,e].concat(n))},logWarn:function(e){for(var t,i=arguments.length,n=new Array(i>1?i-1:0),o=1;o<i;o++)n[o-1]=arguments[o];this.config.debug>=1&&(t=console).warn.apply(t,[C,b.warn,e].concat(n))},logError:function(e){var t;if(!(this.config.debug<1)){for(var i=this.config.debug>=2?"trace":"error",n=arguments.length,o=new Array(n>1?n-1:0),r=1;r<n;r++)o[r-1]=arguments[r];(t=console)[i].apply(t,[C,b.error,e].concat(o))}}};var _=function(){function e(t){n(this,e),this.bufferedList=t}return r(e,[{key:"start",value:function(e){return this.bufferedList[e].start}},{key:"end",value:function(e){return this.bufferedList[e].end}},{key:"length",get:function(){return this.bufferedList.length}}]),e}(),x={};function T(e,t){for(var i=0,n=t.length;i<n;i++)if(e.indexOf(t[i])>-1)return!0;return!1}function E(e){var t=i(e);return null!==e&&("object"===t||"function"===t)}function S(e,t,i){var n,o,r,s,a,l,c=0,u=!1,h=!1,d=!0,f=!t&&0!==t&&"function"==typeof window.requestAnimationFrame;if("function"!=typeof e)throw new TypeError("Expected a function");function p(t){var i=n,r=o;return n=o=void 0,c=t,s=e.apply(r,i)}function g(e,t){return f?(window.cancelAnimationFrame(a),window.requestAnimationFrame(e)):setTimeout(e,t)}function v(e){return c=e,a=g(m,t),u?p(e):s}function y(e){var i=e-l;return void 0===l||i>=t||i<0||h&&e-c>=r}function m(){var e=Date.now();if(y(e))return k(e);a=g(m,function(e){var i=e-c,n=t-(e-l);return h?Math.min(n,r-i):n}(e))}function k(e){return a=void 0,d&&n?p(e):(n=o=void 0,s)}function b(){for(var e=Date.now(),i=y(e),r=arguments.length,c=new Array(r),u=0;u<r;u++)c[u]=arguments[u];if(n=c,o=this,l=e,i){if(void 0===a)return v(l);if(h)return a=g(m,t),p(l)}return void 0===a&&(a=g(m,t)),s}return t=+t||0,E(i)&&(u=!!i.leading,r=(h="maxWait"in i)?Math.max(+i.maxWait||0,t):r,d="trailing"in i?!!i.trailing:d),b.cancel=function(){void 0!==a&&function(e){if(f)return window.cancelAnimationFrame(e);clearTimeout(e)}(a),c=0,n=l=o=a=void 0},b.flush=function(){return void 0===a?s:k(Date.now())},b.pending=function(){return void 0!==a},b}x.createDom=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"div",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"",o=document.createElement(e);return o.className=n,o.innerHTML=t,Object.keys(i).forEach((function(t){var n=t,r=i[t];"video"===e||"audio"===e||"live-video"===e?r&&o.setAttribute(n,r):o.setAttribute(n,r)})),o},x.createDomFromHtml=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";try{var n=document.createElement("div");n.innerHTML=e;var o=n.children;return n=null,o.length>0?(o=o[0],i&&x.addClass(o,i),t&&Object.keys(t).forEach((function(e){o.setAttribute(e,t[e])})),o):null}catch(r){return w.logError("util.createDomFromHtml",r),null}},x.hasClass=function(e,t){if(!e||!t)return!1;try{return Array.prototype.some.call(e.classList,(function(e){return e===t}))}catch(o){var n=e.className&&"object"===i(e.className)?e.getAttribute("class"):e.className;return n&&!!n.match(new RegExp("(\\s|^)"+t+"(\\s|$)"))}},x.addClass=function(e,t){if(e&&t)try{t.replace(/(^\s+|\s+$)/g,"").split(/\s+/g).forEach((function(t){t&&e.classList.add(t)}))}catch(n){x.hasClass(e,t)||(e.className&&"object"===i(e.className)?e.setAttribute("class",e.getAttribute("class")+" "+t):e.className+=" "+t)}},x.removeClass=function(e,t){if(e&&t)try{t.replace(/(^\s+|\s+$)/g,"").split(/\s+/g).forEach((function(t){t&&e.classList.remove(t)}))}catch(n){x.hasClass(e,t)&&t.split(/\s+/g).forEach((function(t){var n=new RegExp("(\\s|^)"+t+"(\\s|$)");e.className&&"object"===i(e.className)?e.setAttribute("class",e.getAttribute("class").replace(n," ")):e.className=e.className.replace(n," ")}))}},x.toggleClass=function(e,t){e&&t.split(/\s+/g).forEach((function(t){x.hasClass(e,t)?x.removeClass(e,t):x.addClass(e,t)}))},x.classNames=function(){for(var e=arguments,t=[],i=function(i){"String"===x.typeOf(e[i])?t.push(e[i]):"Object"===x.typeOf(e[i])&&Object.keys(e[i]).map((function(n){e[i][n]&&t.push(n)}))},n=0;n<arguments.length;n++)i(n);return t.join(" ")},x.findDom=function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document,i=arguments.length>1?arguments[1]:void 0;try{e=t.querySelector(i)}catch(n){w.logError("util.findDom",n),0===i.indexOf("#")&&(e=t.getElementById(i.slice(1)))}return e},x.getCss=function(e,t){return e.currentStyle?e.currentStyle[t]:document.defaultView.getComputedStyle(e,!1)[t]},x.padStart=function(e,t,i){for(var n=String(i),o=t>>0,r=Math.ceil(o/n.length),s=[],a=String(e);r--;)s.push(n);return s.join("").substring(0,o-a.length)+a},x.format=function(e){if(window.isNaN(e))return"";e=Math.round(e);var t=x.padStart(Math.floor(e/3600),2,0),i=x.padStart(Math.floor((e-3600*t)/60),2,0),n=x.padStart(Math.floor(e-3600*t-60*i),2,0);return("00"===t?[i,n]:[t,i,n]).join(":")},x.event=function(e){if(e.touches){var t=e.touches[0]||e.changedTouches[0];e.clientX=t.clientX||0,e.clientY=t.clientY||0,e.offsetX=t.pageX-t.target.offsetLeft,e.offsetY=t.pageY-t.target.offsetTop}e._target=e.target||e.srcElement},x.typeOf=function(e){return Object.prototype.toString.call(e).match(/([^\s.*]+)(?=]$)/g)[0]},x.deepCopy=function(e,t){if("Object"===x.typeOf(t)&&"Object"===x.typeOf(e))return Object.keys(t).forEach((function(i){"Object"!==x.typeOf(t[i])||t[i]instanceof Node?"Array"===x.typeOf(t[i])?e[i]="Array"===x.typeOf(e[i])?e[i].concat(t[i]):t[i]:e[i]=t[i]:void 0===e[i]||void 0===e[i]?e[i]=t[i]:x.deepCopy(e[i],t[i])})),e},x.deepMerge=function(e,t){return Object.keys(t).map((function(i){var n;"Array"===x.typeOf(t[i])&&"Array"===x.typeOf(e[i])?"Array"===x.typeOf(e[i])&&(n=e[i]).push.apply(n,g(t[i])):x.typeOf(e[i])!==x.typeOf(t[i])||null===e[i]||"Object"!==x.typeOf(e[i])||t[i]instanceof window.Node?null!==t[i]&&(e[i]=t[i]):x.deepMerge(e[i],t[i])})),e},x.getBgImage=function(e){var t=(e.currentStyle||window.getComputedStyle(e,null)).backgroundImage;if(!t||"none"===t)return"";var i=document.createElement("a");return i.href=t.replace(/url\("|"\)/g,""),i.href},x.copyDom=function(e){if(e&&1===e.nodeType){var t=document.createElement(e.tagName);return Array.prototype.forEach.call(e.attributes,(function(e){t.setAttribute(e.name,e.value)})),e.innerHTML&&(t.innerHTML=e.innerHTML),t}return""},x.setInterval=function(e,t,i,n){e._interval[t]||(e._interval[t]=window.setInterval(i.bind(e),n))},x.clearInterval=function(e,t){clearInterval(e._interval[t]),e._interval[t]=null},x.setTimeout=function(e,t,i){e._timers||(e._timers=[]);var n=setTimeout((function(){t(),x.clearTimeout(e,n)}),i);return e._timers.push(n),n},x.clearTimeout=function(e,t){var i=e._timers;if("Array"===x.typeOf(i)){for(var n=0;n<i.length;n++)if(i[n]===t){i.splice(n,1),clearTimeout(t);break}}else clearTimeout(t)},x.clearAllTimers=function(e){var t=e._timers;"Array"===x.typeOf(t)&&(t.map((function(e){clearTimeout(e)})),e._timerIds=[])},x.createImgBtn=function(e,t,i,n){var o,r,s,a=x.createDom("xg-".concat(e),"",{},"xgplayer-".concat(e,"-img"));(a.style.backgroundImage='url("'.concat(t,'")'),i&&n)&&(["px","rem","em","pt","dp","vw","vh","vm","%"].every((function(e){return!(i.indexOf(e)>-1&&n.indexOf(e)>-1)||(o=parseFloat(i.slice(0,i.indexOf(e)).trim()),r=parseFloat(n.slice(0,n.indexOf(e)).trim()),s=e,!1)})),a.style.width="".concat(o).concat(s),a.style.height="".concat(r).concat(s),a.style.backgroundSize="".concat(o).concat(s," ").concat(r).concat(s),a.style.margin="start"===e?"-".concat(r/2).concat(s," auto auto -").concat(o/2).concat(s):"auto 5px auto 5px");return a},x.Hex2RGBA=function(e,t){var i=[];if(/^\#[0-9A-F]{3}$/i.test(e)){var n="#";e.replace(/[0-9A-F]/gi,(function(e){n+=e+e})),e=n}return/^#[0-9A-F]{6}$/i.test(e)?(e.replace(/[0-9A-F]{2}/gi,(function(e){i.push(parseInt(e,16))})),"rgba(".concat(i.join(","),", ").concat(t,")")):"rgba(255, 255, 255, 0.1)"},x.getFullScreenEl=function(){return document.fullscreenElement||document.webkitFullscreenElement||document.mozFullScreenElement||document.msFullscreenElement},x.checkIsFunction=function(e){return e&&"function"==typeof e},x.checkIsObject=function(e){return null!==e&&"object"===i(e)},x.hide=function(e){e.style.display="none"},x.show=function(e,t){e.style.display=t||"block"},x.isUndefined=function(e){if(null==e)return!0},x.setStyleFromCsstext=function(e,t){t&&("String"===x.typeOf(t)?t.replace(/\s+/g,"").split(";").map((function(t){if(t){var i=t.split(":");i.length>1&&(e.style[i[0]]=i[1])}})):Object.keys(t).map((function(i){e.style[i]=t[i]})))},x.filterStyleFromText=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:["width","height","top","left","bottom","right","position","z-index","padding","margin","transform"],i=e.style.cssText;if(!i)return{};var n=i.replace(/\s+/g,"").split(";"),o={},r={};return n.map((function(e){if(e){var i=e.split(":");i.length>1&&(T(i[0],t)?o[i[0]]=i[1]:r[i[0]]=i[1])}})),e.setAttribute("style",""),Object.keys(r).map((function(t){e.style[t]=r[t]})),o},x.getStyleFromCsstext=function(e){var t=e.style.cssText;if(!t)return{};var i=t.replace(/\s+/g,"").split(";"),n={};return i.map((function(e){if(e){var t=e.split(":");t.length>1&&(n[t[0]]=t[1])}})),n},x.preloadImg=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){};if(e){var n=new window.Image;n.onload=function(e){n=null,t&&t(e)},n.onerror=function(e){n=null,i&&i(e)},n.src=e}},x.stopPropagation=function(e){e&&(e.stopPropagation(),e.cancelable&&e.preventDefault())},x.scrollTop=function(){return window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0},x.scrollLeft=function(){return window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0},x.checkTouchSupport=function(){return"ontouchstart"in window},x.getBuffered2=function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:.5,i=[],n=0;n<e.length;n++)i.push({start:e.start(n)<.5?0:e.start(n),end:e.end(n)});i.sort((function(e,t){var i=e.start-t.start;return i||t.end-e.end}));var o=[];if(t)for(var r=0;r<i.length;r++){var s=o.length;if(s){var a=o[s-1].end;i[r].start-a<t?i[r].end>a&&(o[s-1].end=i[r].end):o.push(i[r])}else o.push(i[r])}else o=i;return new _(o)},x.getEventPos=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return{x:e.x/t,y:e.y/t,clientX:e.clientX/t,clientY:e.clientY/t,offsetX:e.offsetX/t,offsetY:e.offsetY/t,pageX:e.pageX/t,pageY:e.pageY/t}},x.requestAnimationFrame=function(e){var t=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame;if(t)return t(e)},x.getHostFromUrl=function(e){if("String"!==x.typeOf(e))return"";var t=e.split("/"),i="";return t.length>3&&t[2]&&(i=t[2]),i},x.cancelAnimationFrame=function(e){var t=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.cancelRequestAnimationFrame;t&&t(e)},x.isMSE=function(e){return!!(e&&e instanceof HTMLMediaElement)&&(/^blob/.test(e.currentSrc)||/^blob/.test(e.src))},x.generateSessionId=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=(new Date).getTime();try{e=parseInt(e)}catch(n){e=0}t+=e,window.performance&&"function"==typeof window.performance.now&&(t+=parseInt(window.performance.now()));var i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,(function(e){var i=(t+16*Math.random())%16|0;return t=Math.floor(t/16),("x"===e?i:3&i|8).toString(16)}));return i};var P=/(Android)\s([\d.]+)/,L=/(Version)\/([\d.]+)/,A=["avc1.42E01E, mp4a.40.2","avc1.58A01E, mp4a.40.2","avc1.4D401E, mp4a.40.2","avc1.64001E, mp4a.40.2","avc1.42E01E","mp4v.20.8","avc1.42E01E, mp4a.40.2","avc1.58A01E, mp4a.40.2","avc1.4D401E, mp4a.40.2","avc1.64001E, mp4a.40.2","mp4v.20.8, mp4a.40.2","mp4v.20.240, mp4a.40.2"],I={get device(){return I.os.isPc?"pc":"mobile"},get browser(){if("undefined"==typeof navigator)return"";var e=navigator.userAgent.toLowerCase(),t={ie:/rv:([\d.]+)\) like gecko/,firefox:/firefox\/([\d.]+)/,chrome:/chrome\/([\d.]+)/,opera:/opera.([\d.]+)/,safari:/version\/([\d.]+).*safari/};return[].concat(Object.keys(t).filter((function(i){return t[i].test(e)})))[0]},get os(){if("undefined"==typeof navigator)return{};var e=navigator.userAgent,t=/(?:Windows Phone)/.test(e),i=/(?:SymbianOS)/.test(e)||t,n=/(?:Android)/.test(e),o=/(?:Firefox)/.test(e),r=/(?:iPad|PlayBook)/.test(e)||n&&!/(?:Mobile)/.test(e)||o&&/(?:Tablet)/.test(e),s=/(?:iPhone)/.test(e)&&!r,a=!(s||n||i||r),l=/(?:iPad|PlayBook)/.test(e);return{isTablet:r,isPhone:s,isIpad:l,isIos:s||l,isAndroid:n,isPc:a,isSymbian:i,isWindowsPhone:t,isFireFox:o}},get osVersion(){if("undefined"==typeof navigator)return 0;var e=navigator.userAgent,t="",i=(t=/(?:iPhone)|(?:iPad|PlayBook)/.test(e)?L:P)?t.exec(e):[];if(i&&i.length>=3){var n=i[2].split(".");return n.length>0?parseInt(n[0]):0}return 0},get isWeixin(){if("undefined"==typeof navigator)return!1;return!!/(micromessenger)\/([\d.]+)/.exec(navigator.userAgent.toLocaleLowerCase())},isSupportMP4:function(){var e={isSupport:!1,mime:""};if("undefined"==typeof document)return e;if(this.supportResult)return this.supportResult;var t=document.createElement("video");return"function"==typeof t.canPlayType&&A.map((function(i){"probably"===t.canPlayType('video/mp4; codecs="'.concat(i,'"'))&&(e.isSupport=!0,e.mime+="||".concat(i))})),this.supportResult=e,t=null,e},isHevcSupported:function(){return!("undefined"==typeof MediaSource||!MediaSource.isTypeSupported)&&(MediaSource.isTypeSupported('video/mp4;codecs="hev1.1.6.L120.90"')||MediaSource.isTypeSupported('video/mp4;codecs="hev1.2.4.L120.90"')||MediaSource.isTypeSupported('video/mp4;codecs="hev1.3.E.L120.90"')||MediaSource.isTypeSupported('video/mp4;codecs="hev1.4.10.L120.90"'))},probeConfigSupported:function(e){var t={supported:!1,smooth:!1,powerEfficient:!1};if(!e||"undefined"==typeof navigator)return Promise.resolve(t);if(navigator.mediaCapabilities&&navigator.mediaCapabilities.decodingInfo)return navigator.mediaCapabilities.decodingInfo(e);var i=e.video||{},n=e.audio||{};try{var o=MediaSource.isTypeSupported(i.contentType),r=MediaSource.isTypeSupported(n.contentType);return Promise.resolve({supported:o&&r,smooth:!1,powerEfficient:!1})}catch(s){return Promise.resolve(t)}}},O="3.0.0-next.40",R={1:"network",2:"network",3:"decoder",4:"format"},D=r((function e(t){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{errorType:"",errorCode:0,errorMessage:"",originError:"",ext:{},mediaError:null};n(this,e);var o=t&&t.i18n?t.i18n.ERROR_TYPES:null;if(t.video){var r=i.mediaError?i.mediaError:t.video.error||{},s=t.duration,a=t.currentTime,l=t.ended,c=t.src,u=t.currentSrc,h=t.video,d=h.readyState,f=h.networkState,p={playerVersion:O,currentTime:a,duration:s,ended:l,readyState:d,networkState:f,src:c||u,errorType:i.errorType,errorCode:i.errorCode||r.code,message:i.errorMessage||r.message,mediaError:r,originError:i.originError?i.originError.stack:"",host:x.getHostFromUrl(c||u)};return i.ext&&Object.keys(i.ext).map((function(e){p[e]=i.ext[e]})),p}if(arguments.length>1){for(var g={playerVersion:O,domain:document.domain},v=["errorType","currentTime","duration","networkState","readyState","src","currentSrc","ended","errd","errorCode","mediaError"],y=0;y<arguments.length;y++)g[v[y]]=arguments[y];return g.ex=o?(o[arguments[0]]||{}).msg:"",g}})),M="play",j="playing",N="ended",F="pause",H="error",B="seeking",U="seeked",G="timeupdate",V="waiting",W="canplay",K="durationchange",q="volumechange",z="loadeddata",Y="ratechange",X="progress",Z="loadstart",J="emptied",$="focus",Q="blur",ee="ready",te="urlNull",ie="autoplay_started",ne="autoplay_was_prevented",oe="complete",re="replay",se="destroy",ae="urlchange",le="download_speed_change",ce="fullscreen_change",ue="cssFullscreen_change",he="mini_state_change",de="definition_change",fe="after_definition_change",pe="video_resize",ge="pip_change",ve="rotate",ye="screenShot",me="playnext",ke="shortcut",be="xglog",Ce="user_action",we="reset",_e=["play","playing","ended","pause","error","seeking","seeked","timeupdate","waiting","canplay","canplaythrough","durationchange","volumechange","loadeddata","ratechange","progress","loadstart","emptied","stalled","suspend","abort","lowdecode"],xe={STATS_INFO:"stats_info",STATS_DOWNLOAD:"stats_download",STATS_RESET:"stats_reset"},Te=Object.freeze(Object.defineProperty({__proto__:null,PLAY:M,PLAYING:j,ENDED:N,PAUSE:F,ERROR:H,SEEKING:B,SEEKED:U,TIME_UPDATE:G,WAITING:V,CANPLAY:W,CANPLAY_THROUGH:"canplaythrough",DURATION_CHANGE:K,VOLUME_CHANGE:q,LOADED_DATA:z,RATE_CHANGE:Y,PROGRESS:X,LOAD_START:Z,EMPTIED:J,STALLED:"stalled",SUSPEND:"suspend",ABORT:"abort",BUFFER_CHANGE:"bufferedChange",PLAYER_FOCUS:$,PLAYER_BLUR:Q,READY:ee,URL_NULL:te,AUTOPLAY_STARTED:ie,AUTOPLAY_PREVENTED:ne,COMPLETE:oe,REPLAY:re,DESTROY:se,URL_CHANGE:ae,DOWNLOAD_SPEED_CHANGE:le,FULLSCREEN_CHANGE:ce,CSS_FULLSCREEN_CHANGE:ue,MINI_STATE_CHANGE:he,DEFINITION_CHANGE:de,BEFORE_DEFINITION_CHANGE:"before_definition_change",AFTER_DEFINITION_CHANGE:fe,SEI_PARSED:"SEI_PARSED",RETRY:"retry",VIDEO_RESIZE:pe,PIP_CHANGE:ge,ROTATE:ve,SCREEN_SHOT:ye,PLAYNEXT:me,SHORTCUT:ke,XGLOG:be,USER_ACTION:Ce,RESET:we,VIDEO_EVENTS:_e,STATS_EVENTS:xe},Symbol.toStringTag,{value:"Module"}));function Ee(e,t){this&&this.emit&&("error"===e?this.errorHandler(e):this.emit(e,t))}function Se(e,t){return function(i){var n={player:t,eventName:e,originalEvent:i,detail:i.detail||{},timeStamp:i.timeStamp,currentTime:t.currentTime,duration:t.duration,paused:t.paused,ended:t.ended,isInternalOp:!!t._internalOp[i.type],muted:t.muted,volume:t.volume,host:x.getHostFromUrl(t.currentSrc),vtype:t.vtype};if(t.removeInnerOP(i.type),"timeupdate"===e&&(t._currentTime=t.video&&t.video.currentTime),"durationchange"===e&&(t._duration=t.video.duration),"volumechange"===e&&(n.isMutedChange=t._lastMuted!==t.muted,t._lastMuted=t.muted),t.videoEventMiddleware[e])try{t.videoEventMiddleware[e].call(t,n,Ee.bind(t))}catch(o){throw Ee.call(t,e,n),o}else Ee.call(t,e,n)}}var Pe=function(e){a(i,e);var t=d(i);function i(e){var o;n(this,i),(o=t.call(this,e))._hasStart=!1,o._currentTime=0,o._duration=0,o._internalOp={},o._lastMuted=!1,o.vtype="MP4",o.videoConfig=Object.assign({},{controls:!1,autoplay:e.autoplay,playsinline:e.playsinline,"x5-playsinline":e.playsinline,"webkit-playsinline":e.playsinline,"x5-video-player-fullscreen":e["x5-video-player-fullscreen"]||e.x5VideoPlayerFullscreen,"x5-video-orientation":e["x5-video-orientation"]||e.x5VideoOrientation,airplay:e.airplay,"webkit-airplay":e.airplay,tabindex:2,mediaType:e.mediaType||"video"},e.videoConfig,e.videoAttributes);var r=e["x5-video-player-type"]||e.x5VideoPlayerType;return I.isWeixin&&I.os.isAndroid&&r&&(o.videoConfig["x5-video-player-type"]=r,delete o.videoConfig.playsinline,delete o.videoConfig["webkit-playsinline"],delete o.videoConfig["x5-playsinline"]),e.loop&&(o.videoConfig.loop="loop"),o.video=x.createDom(o.videoConfig.mediaType,"",o.videoConfig,""),e.defaultPlaybackRate&&(o.video.defaultPlaybackRate=o.video.playbackRate=e.defaultPlaybackRate),"Number"===x.typeOf(e.volume)&&(o.volume=e.volume),e.autoplayMuted&&(o.video.muted=!0,o._lastMuted=!0),e.autoplay&&(o.video.autoplay=!0),o._interval={},o.videoEventMiddleware={},o.attachVideoEvents(),o}return r(i,[{key:"setEventsMiddleware",value:function(e){var t=this;Object.keys(e).map((function(i){t.videoEventMiddleware[i]=e[i]}))}},{key:"removeEventsMiddleware",value:function(e){var t=this;Object.keys(e).map((function(e){delete t.videoEventMiddleware[e]}))}},{key:"attachVideoEvents",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.video;this._evHandlers||(this._evHandlers=_e.map((function(t){var i="on".concat(t.charAt(0).toUpperCase()).concat(t.slice(1));return"function"==typeof e[i]&&e.on(t,e[i]),s({},t,Se(t,e))}))),this._evHandlers.forEach((function(e){var i=Object.keys(e)[0];t.addEventListener(i,e[i],!1)}))}},{key:"detachVideoEvents",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.video;this._evHandlers.forEach((function(e){var i=Object.keys(e)[0];t.removeEventListener(i,e[i],!1)})),this._evHandlers.forEach((function(t){var i=Object.keys(t)[0],n="on".concat(i.charAt(0).toUpperCase()).concat(i.slice(1));"function"==typeof e[n]&&e.off(i,e[n])})),this._evHandlers=null}},{key:"_attachSourceEvents",value:function(e,t){var i=this;e.removeAttribute("src"),t.forEach((function(e){i.video.appendChild(x.createDom("source","",{src:"".concat(e.src),type:"".concat(e.type||"")}))}));var n=e.children;if(n){this._videoSourceCount=n.length,!this._sourceError&&(this._sourceError=function(e){i._videoSourceCount--,0===i._videoSourceCount&&(i.videoEventMiddleware.error?i.videoEventMiddleware.error.call(i,e,(function(){i.errorHandler("error")})):i.errorHandler("error",{code:4,message:"sources load error"}))});for(var o=0;o<n.length;o++)n[o].addEventListener("error",this._sourceError)}}},{key:"_detachSourceEvents",value:function(e){var t=e.children;if(t&&0!==t.length&&this._sourceError){for(var i=0;i<t.length;i++)t[i].removeEventListener("error",this._sourceError);for(;t.length>0;)e.removeChild(t[0])}}},{key:"errorHandler",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(this.video&&(this.video.error||t)){var i=this.video.error||t,n=i.code?R[i.code]:"other";i.message;this.video.currentSrc||(i={code:6,message:"empty_src"}),this.emit(e,new D(this,{errorType:n,errorCode:i.code,errorMessage:i.message||"",mediaError:i}))}}},{key:"destroy",value:function(){for(var e in this.video&&(this.video.pause&&(this.video.pause(),this.video.muted=!0),this.video.removeAttribute("src"),this.video.load()),this._currentTime=0,this._duration=0,this.videoConfig=null,this._interval)Object.prototype.hasOwnProperty.call(this._interval,e)&&(clearInterval(this._interval[e]),this._interval[e]=null);this.detachVideoEvents(),this.video=null,this.videoEventMiddleware={},this.removeAllListeners()}},{key:"play",value:function(){return this.video?this.video.play():null}},{key:"pause",value:function(){this.video&&this.video.pause()}},{key:"load",value:function(){this.video&&this.video.load()}},{key:"canPlayType",value:function(e){return!!this.video&&this.video.canPlayType(e)}},{key:"getBufferedRange",value:function(e){var t=[0,0];if(!this.video)return t;e||(e=this.video.buffered);var i=this.video.currentTime;if(e)for(var n=0,o=e.length;n<o&&(t[0]=e.start(n),t[1]=e.end(n),!(t[0]<=i&&i<=t[1]));n++);return t[0]-i<=0&&i-t[1]<=0?t:[0,0]}},{key:"autoplay",get:function(){return!!this.video&&this.video.autoplay},set:function(e){this.video&&(this.video.autoplay=e)}},{key:"buffered",get:function(){return this.video?this.video.buffered:null}},{key:"buffered2",get:function(){return this.video&&this.video.buffered?x.getBuffered2(this.video.buffered):null}},{key:"bufferedPoint",get:function(){var e={start:0,end:0};if(!this.video)return e;var t=this.video.buffered;if(!t||0===t.length)return e;for(var i=0;i<t.length;i++)if((t.start(i)<=this.currentTime||t.start(i)<.1)&&t.end(i)>=this.currentTime)return{start:t.start(i),end:t.end(i)};return e}},{key:"crossOrigin",get:function(){return this.video?this.video.crossOrigin:""},set:function(e){this.video&&(this.video.crossOrigin=e)}},{key:"currentSrc",get:function(){return this.video?this.video.currentSrc:""},set:function(e){this.video&&(this.video.currentSrc=e)}},{key:"currentTime",get:function(){return this.video?void 0!==this.video.currentTime?this.video.currentTime:this._currentTime:0},set:function(e){this.video&&(this.video.currentTime=e)}},{key:"defaultMuted",get:function(){return!!this.video&&this.video.defaultMuted},set:function(e){this.video&&(this.video.defaultMuted=e)}},{key:"duration",get:function(){return this._duration}},{key:"ended",get:function(){return!!this.video&&this.video.ended}},{key:"error",get:function(){return this.video.error}},{key:"errorNote",get:function(){if(!this.video.error)return"";return["MEDIA_ERR_ABORTED","MEDIA_ERR_NETWORK","MEDIA_ERR_DECODE","MEDIA_ERR_SRC_NOT_SUPPORTED"][this.video.error.code-1]}},{key:"loop",get:function(){return!!this.video&&this.video.loop},set:function(e){this.video&&(this.video.loop=e)}},{key:"muted",get:function(){return!!this.video&&this.video.muted},set:function(e){this.video&&this.video.muted!==e&&(this._lastMuted=this.video.muted,this.video.muted=e)}},{key:"networkState",get:function(){return this.video.networkState}},{key:"paused",get:function(){return!this.video||this.video.paused}},{key:"playbackRate",get:function(){return this.video?this.video.playbackRate:0},set:function(e){this.video&&e!==1/0&&(this.video.playbackRate=e)}},{key:"played",get:function(){return this.video?this.video.played:null}},{key:"preload",get:function(){return!!this.video&&this.video.preload},set:function(e){this.video&&(this.video.preload=e)}},{key:"readyState",get:function(){return this.video.readyState}},{key:"seekable",get:function(){return!!this.video&&this.video.seekable}},{key:"seeking",get:function(){return!!this.video&&this.video.seeking}},{key:"src",get:function(){return this.video?this.video.src:""},set:function(e){this.video&&(this.emit(ae,e),this.emit(V),this._currentTime=0,this._duration=0,/^blob/.test(this.video.currentSrc)||/^blob/.test(this.video.src)?this.onWaiting():(this._detachSourceEvents(this.video),"Array"===x.typeOf(e)?this._attachSourceEvents(this.video,e):this.video.src=e,this.load()))}},{key:"volume",get:function(){return this.video?this.video.volume:0},set:function(e){e!==1/0&&this.video&&(this.video.volume=e)}},{key:"addInnerOP",value:function(e){this._internalOp[e]=!0}},{key:"removeInnerOP",value:function(e){delete this._internalOp[e]}},{key:"emit",value:function(e,t){for(var n,o=arguments.length,r=new Array(o>2?o-2:0),s=2;s<o;s++)r[s-2]=arguments[s];(n=p(l(i.prototype),"emit",this)).call.apply(n,[this,e,t].concat(r))}},{key:"on",value:function(e,t){for(var n,o=arguments.length,r=new Array(o>2?o-2:0),s=2;s<o;s++)r[s-2]=arguments[s];(n=p(l(i.prototype),"on",this)).call.apply(n,[this,e,t].concat(r))}},{key:"once",value:function(e,t){for(var n,o=arguments.length,r=new Array(o>2?o-2:0),s=2;s<o;s++)r[s-2]=arguments[s];(n=p(l(i.prototype),"once",this)).call.apply(n,[this,e,t].concat(r))}},{key:"off",value:function(e,t){for(var n,o=arguments.length,r=new Array(o>2?o-2:0),s=2;s<o;s++)r[s-2]=arguments[s];(n=p(l(i.prototype),"off",this)).call.apply(n,[this,e,t].concat(r))}},{key:"offAll",value:function(){p(l(i.prototype),"removeAllListeners",this).call(this)}}]),i}(m),Le=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{name:"xgplayer",version:1,db:null,ojstore:{name:"xg-m4a",keypath:"vid"}};n(this,e),this.indexedDB=window.indexedDB||window.webkitindexedDB,this.IDBKeyRange=window.IDBKeyRange||window.webkitIDBKeyRange,this.myDB=t}return r(e,[{key:"openDB",value:function(e){var t=this,i=this,n=this.myDB.version||1,o=i.indexedDB.open(i.myDB.name,n);o.onerror=function(e){},o.onsuccess=function(n){t.myDB.db=n.target.result,e.call(i)},o.onupgradeneeded=function(e){var t=e.target.result;e.target.transaction,t.objectStoreNames.contains(i.myDB.ojstore.name)||t.createObjectStore(i.myDB.ojstore.name,{keyPath:i.myDB.ojstore.keypath})}}},{key:"deletedb",value:function(){this.indexedDB.deleteDatabase(this.myDB.name)}},{key:"closeDB",value:function(){this.myDB.db.close()}},{key:"addData",value:function(e,t){for(var i,n=this.myDB.db.transaction(e,"readwrite").objectStore(e),o=0;o<t.length;o++)(i=n.add(t[o])).onerror=function(){},i.onsuccess=function(){}}},{key:"putData",value:function(e,t){for(var i,n=this.myDB.db.transaction(e,"readwrite").objectStore(e),o=0;o<t.length;o++)(i=n.put(t[o])).onerror=function(){},i.onsuccess=function(){}}},{key:"getDataByKey",value:function(e,t,i){var n=this,o=this.myDB.db.transaction(e,"readwrite").objectStore(e).get(t);o.onerror=function(){i.call(n,null)},o.onsuccess=function(e){var t=e.target.result;i.call(n,t)}}},{key:"deleteData",value:function(e,t){this.myDB.db.transaction(e,"readwrite").objectStore(e).delete(t)}},{key:"clearData",value:function(e){this.myDB.db.transaction(e,"readwrite").objectStore(e).clear()}}]),e}(),Ae=["fullscreenchange","webkitfullscreenchange","mozfullscreenchange","MSFullscreenChange"],Ie=["requestFullscreen","webkitRequestFullscreen","mozRequestFullScreen","msRequestFullscreen"],Oe=["exitFullscreen","webkitExitFullscreen","mozCancelFullScreen","msExitFullscreen"],Re="data-xgplayerid";function De(e,t,i){for(var n=arguments.length,o=new Array(n>3?n-3:0),r=3;r<n;r++)o[r-3]=arguments[r];var s=t.call.apply(t,[e].concat(o));i&&"function"==typeof i&&(s&&s.then?s.then((function(){for(var t=arguments.length,n=new Array(t),o=0;o<t;o++)n[o]=arguments[o];i.call.apply(i,[e].concat(n))})):i.call.apply(i,[e].concat(o)))}function Me(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{pre:null,next:null};return this.__hooks||(this.__hooks={}),!this.__hooks[e]&&(this.__hooks[e]=null),function(){var n=arguments,o=this;if(i.pre)try{var r;(r=i.pre).call.apply(r,[this].concat(Array.prototype.slice.call(arguments)))}catch(l){throw l.message="[pluginName: ".concat(this.pluginName,":").concat(e,":pre error] >> ").concat(l.message),l}if(this.__hooks&&this.__hooks[e])try{var s,a=(s=this.__hooks[e]).call.apply(s,[this,this].concat(Array.prototype.slice.call(arguments)));a?a.then?a.then((function(e){!1!==e&&De.apply(void 0,[o,t,i.next].concat(g(n)))})).catch((function(e){throw e})):De.apply(void 0,[this,t,i.next].concat(Array.prototype.slice.call(arguments))):void 0===a&&De.apply(void 0,[this,t,i.next].concat(Array.prototype.slice.call(arguments)))}catch(l){throw l.message="[pluginName: ".concat(this.pluginName,":").concat(e,"] >> ").concat(l.message),l}else De.apply(void 0,[this,t,i.next].concat(Array.prototype.slice.call(arguments)))}.bind(this)}function je(e,t){var i=this.__hooks;if(i)return i.hasOwnProperty(e)?(i&&(i[e]=t),!0):(console.warn("has no supported hook which name [".concat(e,"]")),!1)}function Ne(e,t){var i=this.__hooks;i&&delete i[e]}function Fe(e){if(this.plugins&&this.plugins[e.toLowerCase()]){for(var t=this.plugins[e.toLowerCase()],i=arguments.length,n=new Array(i>1?i-1:0),o=1;o<i;o++)n[o-1]=arguments[o];return t.useHooks&&t.useHooks.apply(t,n)}}function He(e){if(this.plugins&&this.plugins[e.toLowerCase()]){var t=this.plugins[e.toLowerCase()];if(t){for(var i=arguments.length,n=new Array(i>1?i-1:0),o=1;o<i;o++)n[o-1]=arguments[o];return t.removeHooks&&t.removeHooks.apply(t,n)}}}function Be(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];e.__hooks={},t&&t.map((function(t){e.__hooks[t]=null})),Object.defineProperty(e,"hooks",{get:function(){return e.__hooks&&Object.keys(e.__hooks).map((function(t){if(e.__hooks[t])return t}))}})}function Ue(e){e.__hooks=null}function Ge(e,t,i){for(var n=arguments.length,o=new Array(n>3?n-3:0),r=3;r<n;r++)o[r-3]=arguments[r];if(!e.__hooks||!e.__hooks[t])return i.call.apply(i,[e,e].concat(o));var s,a=(s=e.__hooks[t]).call.apply(s,[e,e].concat(o));if(a&&a.then)a.then((function(t){return!1===t?null:i.call.apply(i,[e,e].concat(o))})).catch((function(e){console.warn("[runHooks]".concat(t," reject"),e.message)}));else if(!1!==a)return i.call.apply(i,[e,e].concat(o))}function Ve(e,t){w.logError("[".concat(e,"] event or callback cant be undefined or null when call ").concat(t))}var We=function(){function e(t){n(this,e),x.checkIsFunction(this.beforeCreate)&&this.beforeCreate(t),Be(this),this.__args=t,this.__events={},this.config=t.config||{},this.player=null,this.playerConfig={},this.pluginName="",this.__init(t)}return r(e,[{key:"beforeCreate",value:function(e){}},{key:"afterCreate",value:function(){}},{key:"beforePlayerInit",value:function(){}},{key:"onPluginsReady",value:function(){}},{key:"afterPlayerInit",value:function(){}},{key:"destroy",value:function(){}},{key:"__init",value:function(e){this.player=e.player,this.playerConfig=e.player&&e.player.config,this.pluginName=e.pluginName?e.pluginName.toLowerCase():this.constructor.pluginName.toLowerCase(),this.logger=e.player&&e.player.logger}},{key:"updateLang",value:function(e){e||(e=this.lang)}},{key:"lang",get:function(){return this.player.lang}},{key:"i18n",get:function(){return this.player.i18n}},{key:"i18nKeys",get:function(){return this.player.i18nKeys}},{key:"domEventType",get:function(){var e=x.checkTouchSupport()?"touch":"mouse";return!this.playerConfig||"touch"!==this.playerConfig.domEventType&&"mouse"!==this.playerConfig.domEventType||(e=this.playerConfig.domEventType),e}},{key:"on",value:function(e,t){var i=this;e&&t&&this.player?"string"==typeof e?(this.__events[e]=t,this.player.on(e,t)):Array.isArray(e)&&e.forEach((function(e){i.__events[e]=t,i.player.on(e,t)})):Ve(this.pluginName,"plugin.on(event, callback)")}},{key:"once",value:function(e,t){e&&t&&this.player?this.player.once(e,t):Ve(this.pluginName,"plugin.once(event, callback)")}},{key:"off",value:function(e,t){var i=this;e&&t&&this.player?"string"==typeof e?(delete this.__events[e],this.player.off(e,t)):Array.isArray(e)&&e.forEach((function(n){delete i.__events[e],i.player.off(n,t)})):Ve(this.pluginName,"plugin.off(event, callback)")}},{key:"offAll",value:function(){var e=this;Object.keys(this.__events).map((function(t){e.__events[t]&&e.off(t,e.__events[t]),t&&delete e.__events[t]})),this.__events={}}},{key:"emit",value:function(e){var t;if(this.player){for(var i=arguments.length,n=new Array(i>1?i-1:0),o=1;o<i;o++)n[o-1]=arguments[o];(t=this.player).emit.apply(t,[e].concat(n))}}},{key:"emitUserAction",value:function(e,i){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(this.player){var o=t(t({},n),{},{pluginName:this.pluginName});this.player.emitUserAction(e,i,o)}}},{key:"hook",value:function(e,t){return Me.call.apply(Me,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"useHooks",value:function(e,t){for(var i=arguments.length,n=new Array(i>2?i-2:0),o=2;o<i;o++)n[o-2]=arguments[o];return je.call.apply(je,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"removeHooks",value:function(e,t){for(var i=arguments.length,n=new Array(i>2?i-2:0),o=2;o<i;o++)n[o-2]=arguments[o];return Ne.call.apply(Ne,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"registerPlugin",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";if(this.player)return i&&(t.pluginName=i),this.player.registerPlugin({plugin:e,options:t})}},{key:"getPlugin",value:function(e){return this.player?this.player.getPlugin(e):null}},{key:"__destroy",value:function(){var e=this,t=this.player,i=this.pluginName;this.offAll(),x.clearAllTimers(this),x.checkIsFunction(this.destroy)&&this.destroy(),["player","playerConfig","pluginName","logger","__args","__hooks"].map((function(t){e[t]=null})),t.unRegisterPlugin(i),Ue(this)}}],[{key:"defineGetterOrSetter",value:function(e,t){for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&Object.defineProperty(e,i,t[i])}},{key:"defaultConfig",get:function(){return{}}},{key:"pluginName",get:function(){return"pluginName"}}]),e}();if("undefined"!=typeof Element&&!Element.prototype.matches){var Ke=Element.prototype;Ke.matches=Ke.matchesSelector||Ke.mozMatchesSelector||Ke.msMatchesSelector||Ke.oMatchesSelector||Ke.webkitMatchesSelector}var qe=function(e,t){for(;e&&9!==e.nodeType;){if("function"==typeof e.matches&&e.matches(t))return e;e=e.parentNode}};function ze(e,t,i,n,o){var r=Ye.apply(this,arguments);return e.addEventListener(i,r,o),{destroy:function(){e.removeEventListener(i,r,o)}}}function Ye(e,t,i,n){return function(i){i.delegateTarget=qe(i.target,t),i.delegateTarget&&n.call(e,i)}}var Xe=function(e,t,i,n,o){return"function"==typeof e.addEventListener?ze.apply(null,arguments):"function"==typeof i?ze.bind(null,document).apply(null,arguments):("string"==typeof e&&(e=document.querySelectorAll(e)),Array.prototype.map.call(e,(function(e){return ze(e,t,i,n,o)})))},Ze={CONTROLS:"controls",ROOT:"root"},Je={ROOT:"root",ROOT_LEFT:"rootLeft",ROOT_RIGHT:"rootRight",ROOT_TOP:"rootTop",CONTROLS_LEFT:"controlsLeft",CONTROLS_RIGTH:"controlsRight",CONTROLS_RIGHT:"controlsRight",CONTROLS_CENTER:"controlsCenter",CONTROLS:"controls"};function $e(e){return!!e&&(e.indexOf&&/^(?:http|data:|\/)/.test(e))}function Qe(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:"",r=null;if(e instanceof window.Element)return x.addClass(e,i),Object.keys(n).map((function(t){e.setAttribute(t,n[t])})),e;if($e(e)||$e(e.url))return n.src=$e(e)?e:e.url||"",r=x.createDom(e.tag||"img","",n,"xg-img ".concat(i));if("function"==typeof e)try{return(r=e())instanceof window.Element?(x.addClass(r,i),Object.keys(n).map((function(e){r.setAttribute(e,n[e])})),r):(w.logWarn("warn>>icons.".concat(t," in config of plugin named [").concat(o,"] is a function mast return an Element Object")),null)}catch(s){return w.logError("Plugin named [".concat(o,"]:createIcon"),s),null}return"string"==typeof e?x.createDomFromHtml(e,n,i):(w.logWarn("warn>>icons.".concat(t," in config of plugin named [").concat(o,"] is invalid")),null)}function et(e,t){var n=t.config.icons||t.playerConfig.icons;Object.keys(e).map((function(o){var r=e[o],s=r&&r.class?r.class:"",a=r&&r.attr?r.attr:{},l=null;n&&n[o]&&(s=function(e,t){return"object"===i(e)&&e.class&&"string"==typeof e.class?"".concat(t," ").concat(e.class):t}(n[o],s),a=function(e,t){return"object"===i(e)&&e.attr&&"object"===i(e.attr)&&Object.keys(e.attr).map((function(i){t[i]=e.attr[i]})),t}(n[o],a),l=Qe(n[o],o,s,a,t.pluginName)),!l&&r&&(l=Qe(r.icon?r.icon:r,a,s,{},t.pluginName)),t.icons[o]=l}))}var tt=function(e){a(o,e);var t=d(o);function o(){var e,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return n(this,o),(e=t.call(this,i)).__delegates=[],e}return r(o,[{key:"__init",value:function(e){if(p(l(o.prototype),"__init",this).call(this,e),e.root){var t=e.root,i=null;this.icons={},this.root=null,this.parent=null,et(this.registerIcons()||{},this),this.langText={};var n,r,s=this.registerLanguageTexts()||{};n=s,r=this,Object.keys(n).map((function(e){Object.defineProperty(r.langText,e,{get:function(){var t=r.lang,i=r.i18n;return i[e]?i[e]:n[e]&&n[e][t]||""}})}));var a="";try{a=this.render()}catch(h){throw w.logError("Plugin:".concat(this.pluginName,":render"),h),new Error("Plugin:".concat(this.pluginName,":render:").concat(h.message))}if(a)(i=o.insert(a,t,e.index)).setAttribute("data-index",e.index);else{if(!e.tag)return;(i=x.createDom(e.tag,"",e.attr,e.name)).setAttribute("data-index",e.index),t.appendChild(i)}this.root=i,this.parent=t;var c=this.config.attr||{},u=this.config.style||{};this.setAttr(c),this.setStyle(u),this.config.index&&this.root.setAttribute("data-index",this.config.index),this.__registerChildren()}}},{key:"__registerChildren",value:function(){var e=this;if(this.root){this._children=[];var t=this.children();t&&"object"===i(t)&&Object.keys(t).length>0&&Object.keys(t).map((function(n){var o,r,s=n,a=t[s],l={root:e.root};"function"==typeof a?(o=e.config[s]||{},r=a):"object"===i(a)&&"function"==typeof a.plugin&&(o=a.options?x.deepCopy(e.config[s]||{},a.options):e.config[s]||{},r=a.plugin),l.config=o,void 0!==o.index&&(l.index=o.index),o.root&&(l.root=o.root),e.registerPlugin(r,l,s)}))}}},{key:"updateLang",value:function(e){e||(e=this.lang);var t=this.root,i=this.i18n,n=this.langText;t&&function e(t,i){for(var n=0;n<t.children.length;n++)t.children[n].children.length>0?e(t.children[n],i):i(t.children[n])}(t,(function(t){var o=t.getAttribute&&t.getAttribute("lang-key");if(o){var r=i[o.toUpperCase()]||n[o];r&&(t.innerHTML="function"==typeof r?r(e):r)}}))}},{key:"lang",get:function(){return this.player.lang}},{key:"changeLangTextKey",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",i=this.i18n||{},n=this.langText;e.setAttribute&&e.setAttribute("lang-key",t);var o=i[t]||n[t]||"";o&&(e.innerHTML=o)}},{key:"plugins",value:function(){return this._children}},{key:"children",value:function(){return{}}},{key:"registerPlugin",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";t.root=t.root||this.root;var n=p(l(o.prototype),"registerPlugin",this).call(this,e,t,i);return this._children.push(n),n}},{key:"registerIcons",value:function(){return{}}},{key:"registerLanguageTexts",value:function(){return{}}},{key:"find",value:function(e){if(this.root)return this.root.querySelector(e)}},{key:"bind",value:function(e,t,i){var n=this;if(arguments.length<3&&"function"==typeof t)Array.isArray(e)?e.forEach((function(e){n.bindEL(e,t)})):this.bindEL(e,t);else{var r=o.delegate.call(this,this.root,e,t,i);this.__delegates=this.__delegates.concat(r)}}},{key:"unbind",value:function(e,t){var i=this;if(arguments.length<3&&"function"==typeof t)Array.isArray(e)?e.forEach((function(e){i.unbindEL(e,t)})):this.unbindEL(e,t);else for(var n="".concat(e,"_").concat(t),o=0;o<this.__delegates.length;o++)if(this.__delegates[o].key===n){this.__delegates[o].destroy(),this.__delegates.splice(o,1);break}}},{key:"setStyle",value:function(e,t){var i=this;if(this.root)return"String"===x.typeOf(e)?this.root.style[e]=t:void("Object"===x.typeOf(e)&&Object.keys(e).map((function(t){i.root.style[t]=e[t]})))}},{key:"setAttr",value:function(e,t){var i=this;if(this.root)return"String"===x.typeOf(e)?this.root.setAttribute(e,t):void("Object"===x.typeOf(e)&&Object.keys(e).map((function(t){i.root.setAttribute(t,e[t])})))}},{key:"setHtml",value:function(e,t){this.root&&(this.root.innerHTML=e,"function"==typeof t&&t())}},{key:"bindEL",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];this.root&&"on".concat(e)in this.root&&"function"==typeof t&&this.root.addEventListener(e,t,i)}},{key:"unbindEL",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];this.root&&"on".concat(e)in this.root&&"function"==typeof t&&this.root.removeEventListener(e,t,i)}},{key:"show",value:function(e){if(this.root)return this.root.style.display=void 0!==e?e:"block","none"===window.getComputedStyle(this.root,null).getPropertyValue("display")?this.root.style.display="block":void 0}},{key:"hide",value:function(){this.root&&(this.root.style.display="none")}},{key:"appendChild",value:function(e,t){if(!this.root)return null;if(arguments.length<2&&arguments[0]instanceof window.Element)return this.root.appendChild(arguments[0]);if(!(t&&t instanceof window.Element))return null;try{return"string"==typeof e?this.find(e).appendChild(t):e.appendChild(t)}catch(i){return w.logError("Plugin:appendChild",i),null}}},{key:"render",value:function(){return""}},{key:"destroy",value:function(){}},{key:"__destroy",value:function(){var e=this,t=this.player;this.__delegates.map((function(e){e.destroy()})),this.__delegates=[],this._children instanceof Array&&(this._children.map((function(e){t.unRegisterPlugin(e.pluginName)})),this._children=null),this.root&&(this.root.hasOwnProperty("remove")?this.root.remove():this.root.parentNode&&this.root.parentNode.removeChild(this.root)),p(l(o.prototype),"__destroy",this).call(this),this.icons={},["root","parent"].map((function(t){e[t]=null}))}}],[{key:"insert",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,n=t.children.length,o=Number(i),r=e instanceof window.Node;if(n){for(var s=0,a=null,l="";s<n;s++){a=t.children[s];var c=Number(a.getAttribute("data-index"));if(c>=o){l="beforebegin";break}c<o&&(l="afterend")}return r?"afterend"===l?t.appendChild(e):t.insertBefore(e,a):a.insertAdjacentHTML(l,e),"afterend"===l?t.children[t.children.length-1]:t.children[s]}return r?t.appendChild(e):t.insertAdjacentHTML("beforeend",e),t.children[t.children.length-1]}},{key:"defaultConfig",get:function(){return{}}},{key:"delegate",value:function(e,t,i,n){var o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],r=[];if(e instanceof window.Node&&"function"==typeof n)if(Array.isArray(i))i.forEach((function(i){var s=Xe(e,t,i,n,o);s.key="".concat(t,"_").concat(i),r.push(s)}));else{var s=Xe(e,t,i,n,o);s.key="".concat(t,"_").concat(i),r.push(s)}return r}},{key:"ROOT_TYPES",get:function(){return Ze}},{key:"POSITIONS",get:function(){return Je}}]),o}(We),it=function(){function e(){var t=this;if(n(this,e),s(this,"__trigger",(function(e){var i=(new Date).getTime();t.timeStamp=i;for(var n=0;n<e.length;n++)t.__runHandler(e[n].target)})),this.__handlers=[],this.timeStamp=0,this.observer=null,window.ResizeObserver)try{this.observer=new window.ResizeObserver(function(e,t,i){var n=!0,o=!0;if("function"!=typeof e)throw new TypeError("Expected a function");return E(i)&&(n="leading"in i?!!i.leading:n,o="trailing"in i?!!i.trailing:o),S(e,t,{leading:n,trailing:o,maxWait:t})}(this.__trigger,100,{trailing:!0})),this.timeStamp=(new Date).getTime()}catch(i){console.error(i)}}return r(e,[{key:"addObserver",value:function(e,t){if(this.observer){this.observer&&this.observer.observe(e);for(var i=e.getAttribute(Re),n=this.__handlers,o=-1,r=0;r<n.length;r++)n[r]&&e===n[r].target&&(o=r);o>-1?this.__handlers[o].handler=t:this.__handlers.push({target:e,handler:t,playerId:i})}}},{key:"unObserver",value:function(e){var t=-1;this.__handlers.map((function(i,n){e===i.target&&(t=n)}));try{this.observer&&this.observer.unobserve(e)}catch(i){}this.observer&&this.observer.unobserve(e),t>-1&&this.__handlers.splice(t,1)}},{key:"destroyObserver",value:function(){this.observer&&this.observer.disconnect(),this.observer=null,this.__handlers=null}},{key:"__runHandler",value:function(e){for(var t=this.__handlers,i=0;i<t.length;i++)if(t[i]&&e===t[i].target){try{t[i].handler(e)}catch(n){console.error(n)}return!0}return!1}}]),e}(),nt=null;var ot={pluginGroup:{},init:function(e){var t,i,n=e._pluginInfoId;n||(n=(new Date).getTime(),e._pluginInfoId=n),!e.config.closeResizeObserver&&(t=e.root,i=function(){e.resize()},nt||(nt=new it),nt.addObserver(t,i)),0===Object.keys(this.pluginGroup).length&&(e.isUserActive=!0),this.pluginGroup[n]={_player:e,_originalOptions:e.config||{},_plugins:{}}},checkPlayerRoot:function(e){if(this.pluginGroup){for(var t=Object.keys(this.pluginGroup),i=0;i<t.length;i++){var n=this.pluginGroup[t[i]]._player;if(n.root===e)return n}return null}return null},formatPluginInfo:function(e,t){var i=null,n=null;return e.plugin&&"function"==typeof e.plugin?(i=e.plugin,n=e.options):(i=e,n={}),t&&(n.config=t||{}),{PLUFGIN:i,options:n}},checkPluginIfExits:function(e,t){for(var i=0;i<t.length;i++)if(e.toLowerCase()===t[i].pluginName.toLowerCase())return!0;return!1},getRootByConfig:function(e,t){for(var i=Object.keys(t),n=null,o=0;o<i.length;o++)if(e.toLowerCase()===i[o].toLowerCase()){n=t[i[o]];break}return"Object"===x.typeOf(n)?{root:n.root,position:n.position}:{}},lazyRegister:function(e,t){var i=this,n=t.timeout||1500;return Promise.race([t.loader().then((function(t){var n;n=t&&t.__esModule?t.default:t,i.register(e,n,t.options)})),new Promise((function(e,t){setTimeout((function(){t(new Error("timeout"))}),n)}))])},register:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(e&&t&&"function"==typeof t&&void 0!==t.prototype){var n=e._pluginInfoId;if(n&&this.pluginGroup[n]){this.pluginGroup[n]._plugins||(this.pluginGroup[n]._plugins={});var o=this.pluginGroup[n]._plugins,r=this.pluginGroup[n]._originalOptions;i.player=this.pluginGroup[n]._player;var s=i.pluginName||t.pluginName;if(!s)throw new Error("The property pluginName is necessary");if(!t.isSupported||t.isSupported()){i.config||(i.config={});for(var a=Object.keys(r),l=0;l<a.length;l++)if(s.toLowerCase()===a[l].toLowerCase()){var c=r[a[l]];"Object"===x.typeOf(c)?i.config=Object.assign({},i.config,r[a[l]]):"Boolean"===x.typeOf(c)&&(i.config.disable=!c);break}t.defaultConfig&&Object.keys(t.defaultConfig).forEach((function(e){void 0===i.config[e]&&(i.config[e]=t.defaultConfig[e])})),i.root?"string"==typeof i.root&&(i.root=e[i.root]):i.root=e.root,i.index=i.config.index||0;try{o[s.toLowerCase()]&&(this.unRegister(n,s.toLowerCase()),console.warn("the is one plugin with same pluginName [".concat(s,"] exist, destroy the old instance")));var u=new t(i);return o[s.toLowerCase()]=u,o[s.toLowerCase()].func=t,u&&"function"==typeof u.afterCreate&&u.afterCreate(),u}catch(h){throw console.error(h),h}}else console.warn("not supported plugin [".concat(s,"]"))}}},unRegister:function(e,t){e._pluginInfoId&&(e=e._pluginInfoId),t=t.toLowerCase();try{var i=this.pluginGroup[e]._plugins[t];i&&(i.pluginName&&i.__destroy(),delete this.pluginGroup[e]._plugins[t])}catch(n){console.error("[unRegister:".concat(t,"] cgid:[").concat(e,"] error"),n)}},deletePlugin:function(e,t){var i=e._pluginInfoId;i&&this.pluginGroup[i]&&this.pluginGroup[i]._plugins&&delete this.pluginGroup[i]._plugins[t]},getPlugins:function(e){var t=e._pluginInfoId;return t&&this.pluginGroup[t]?this.pluginGroup[t]._plugins:{}},findPlugin:function(e,t){var i=e._pluginInfoId;if(!i||!this.pluginGroup[i])return null;var n=t.toLowerCase();return this.pluginGroup[i]._plugins[n]},beforeInit:function(e){var t=this;function i(e){return e&&e.then?e:new Promise((function(e){e()}))}return new Promise((function(n){if(t.pluginGroup)return(e._loadingPlugins&&e._loadingPlugins.length?Promise.all(e._loadingPlugins):Promise.resolve()).then((function(){var o=e._pluginInfoId;if(t.pluginGroup[o]){var r=t.pluginGroup[o]._plugins,s=[];Object.keys(r).forEach((function(e){if(r[e]&&r[e].beforePlayerInit)try{var t=r[e].beforePlayerInit();s.push(i(t))}catch(n){throw s.push(i(null)),n}})),Promise.all([].concat(s)).then((function(){n()})).catch((function(e){console.error(e),n()}))}else n()}))}))},afterInit:function(e){var t=e._pluginInfoId;if(t&&this.pluginGroup[t]){var i=this.pluginGroup[t]._plugins;Object.keys(i).forEach((function(e){i[e]&&i[e].afterPlayerInit&&i[e].afterPlayerInit()}))}},setLang:function(e,t){var i=t._pluginInfoId;if(i&&this.pluginGroup[i]){var n=this.pluginGroup[i]._plugins;Object.keys(n).forEach((function(t){if(n[t].updateLang)n[t].updateLang(e);else try{n[t].lang=e}catch(i){console.warn("".concat(t," setLang"))}}))}},reRender:function(e){var t=this,i=e._pluginInfoId;if(i&&this.pluginGroup[i]){var n=[],o=this.pluginGroup[i]._plugins;Object.keys(o).forEach((function(e){"controls"!==e&&o[e]&&(n.push({plugin:o[e].func,options:o[e].__args}),t.unRegister(i,e))})),n.forEach((function(i){t.register(e,i.plugin,i.options)}))}},onPluginsReady:function(e){var t=e._pluginInfoId;if(t&&this.pluginGroup[t]){var i=this.pluginGroup[t]._plugins||{};Object.keys(i).forEach((function(e){i[e].onPluginsReady&&"function"==typeof i[e].onPluginsReady&&i[e].onPluginsReady()}))}},setCurrentUserActive:function(e,t){if(this.pluginGroup[e]){if(!t)return this.pluginGroup[e]._player.isUserActive=t,e;for(var i=Object.keys(this.pluginGroup),n=0;n<i.length;n++){var o=this.pluginGroup[i[n]];o&&o._player&&(this.pluginGroup[i[n]]._player.isUserActive=!1)}return this.pluginGroup[e]._player.isUserActive=t,e}},getCurrentUseActiveId:function(){if(this.pluginGroup){for(var e=Object.keys(this.pluginGroup),t=0;t<e.length;t++){var i=this.pluginGroup[e[t]];if(i&&i._player&&i._player.isUserActive)return e[t]}return null}},destroy:function(e){var t=e._pluginInfoId;if(this.pluginGroup[t]){var i,n;i=e.root,nt.unObserver(i,n);for(var o=this.pluginGroup[t]._plugins,r=0,s=Object.keys(o);r<s.length;r++){var a=s[r];this.unRegister(t,a)}var l=e.isUseActive;if(delete this.pluginGroup[t],delete e._pluginInfoId,l){var c=Object.keys(this.pluginGroup);c.length>0&&this.setCurrentUserActive(c[c.length-1],!0)}}}},rt={DEFAULT:"xgplayer",DEFAULT_SKIN:"xgplayer-skin-default",ENTER:"xgplayer-is-enter",PAUSED:"xgplayer-pause",PLAYING:"xgplayer-playing",ENDED:"xgplayer-ended",CANPLAY:"xgplayer-canplay",LOADING:"xgplayer-isloading",ERROR:"xgplayer-is-error",REPLAY:"xgplayer-replay",NO_START:"xgplayer-nostart",ACTIVE:"xgplayer-active",INACTIVE:"xgplayer-inactive",FULLSCREEN:"xgplayer-is-fullscreen",CSS_FULLSCREEN:"xgplayer-is-cssfullscreen",ROTATE_FULLSCREEN:"xgplayer-rotate-fullscreen",PARENT_ROTATE_FULLSCREEN:"xgplayer-rotate-parent",PARENT_FULLSCREEN:"xgplayer-fullscreen-parent",INNER_FULLSCREEN:"xgplayer-fullscreen-inner",NO_CONTROLS:"no-controls",FLEX_CONTROLS:"flex-controls",CONTROLS_FOLLOW:"controls-follow",CONTROLS_AUTOHIDE:"controls-autohide",TOP_BAR_AUTOHIDE:"top-bar-autohide",NOT_ALLOW_AUTOPLAY:"not-allow-autoplay",SEEKING:"seeking",PC:"xgplayer-pc",MOBILE:"xgplayer-mobile",MINI:"xgplayer-mini"};function st(){return{id:"",el:null,url:"",domEventType:"default",nullUrlStart:!1,width:600,height:337.5,fluid:!1,fitVideoSize:"fixed",videoFillMode:"auto",volume:.6,autoplay:!1,autoplayMuted:!1,loop:!1,isLive:!1,zoom:1,videoInit:!0,poster:"",isMobileSimulateMode:!1,defaultPlaybackRate:1,execBeforePluginsCall:null,allowSeekAfterEnded:!0,enableContextmenu:!1,closeVideoClick:!1,closeVideoDblclick:!1,closePlayerBlur:!1,closeDelayBlur:!1,leavePlayerTime:3e3,closePlayVideoFocus:!1,closePauseVideoFocus:!1,closeFocusVideoFocus:!0,closeControlsBlur:!0,topBarAutoHide:!0,videoAttributes:{},startTime:0,seekedStatus:"play",miniprogress:!1,disableSwipeHandler:function(){},enableSwipeHandler:function(){},ignores:[],whitelist:[],inactive:3e3,lang:(e=(document.documentElement.getAttribute("lang")||navigator.language||"zh-cn").toLocaleLowerCase(),"zh-cn"===e&&(e="zh"),e),controls:!0,marginControls:!1,fullscreenTarget:null,screenShot:!1,rotate:!1,pip:!1,download:!1,mini:!1,cssFullscreen:!0,keyShortcut:!0,presets:[],plugins:[],playbackRate:1,definition:{list:[]},playsinline:!0,customDuration:0,timeOffset:0,icons:{},i18n:[],thumbnail:null,videoConfig:{},commonStyle:{progressColor:"",playedColor:"",cachedColor:"",sliderBtnStyle:{},volumeColor:""}};var e}var at=1,lt=2,ct=3,ut=4,ht=5,dt=6,ft=7,pt=["ERROR","INITIAL","READY","ATTACHING","ATTACHED","NOTALLOW","RUNNING","ENDED","DESTROYED"],gt=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"onMouseEnter",(function(t){var i=u(e),n=i.player;i.playerConfig.closeControlsBlur&&n.focus({autoHide:!1})})),s(u(e),"onMouseLeave",(function(){u(e).player.focus()})),e}return r(i,[{key:"beforeCreate",value:function(e){e.config.mode||"mobile"!==I.device||(e.config.mode="flex"),e.player.config.marginControls&&(e.config.autoHide=!1)}},{key:"afterCreate",value:function(){var e=this,t=this.config,i=t.disable,n=t.height,o=t.mode;if(!i){"flex"===o&&this.player.addClass(rt.FLEX_CONTROLS);var r={height:"".concat(n,"px")};Object.keys(r).map((function(t){e.root.style[t]=r[t]})),this.left=this.find("xg-left-grid"),this.center=this.find("xg-center-grid"),this.right=this.find("xg-right-grid"),this.innerRoot=this.find("xg-inner-controls"),this.on(he,(function(t){t?x.addClass(e.root,"mini-controls"):x.removeClass(e.root,"mini-controls")}));var s=this.playerConfig.isMobileSimulateMode;"mobile"!==I.device&&"mobile"!==s&&(this.bind("mouseenter",this.onMouseEnter),this.bind("mouseleave",this.onMouseLeave))}}},{key:"focus",value:function(){this.player.focus({autoHide:!1})}},{key:"focusAwhile",value:function(){this.player.focus({autoHide:!0})}},{key:"blur",value:function(){this.player.blur({ignorePaused:!0})}},{key:"recoverAutoHide",value:function(){this.config.autoHide&&x.addClass(this.root,rt.CONTROLS_AUTOHIDE)}},{key:"pauseAutoHide",value:function(){x.removeClass(this.root,rt.CONTROLS_AUTOHIDE)}},{key:"show",value:function(){x.addClass(this.root,"show")}},{key:"hide",value:function(){x.removeClass(this.root,"show")}},{key:"mode",get:function(){return this.config.mode}},{key:"registerPlugin",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0;if(this.root){var o=e.defaultConfig||{};if(!t.root){var r=t.position?t.position:t.config&&t.config.position?t.config.position:o.position;switch(r){case Je.CONTROLS_LEFT:t.root=this.left;break;case Je.CONTROLS_RIGHT:t.root=this.right;break;case Je.CONTROLS_CENTER:t.root=this.center;break;case Je.CONTROLS:t.root=this.root;break;default:t.root=this.left}return p(l(i.prototype),"registerPlugin",this).call(this,e,t,n)}}}},{key:"destroy",value:function(){"mobile"!==I.device&&(this.unbind("mouseenter",this.onMouseEnter),this.unbind("mouseleave",this.onMouseLeave))}},{key:"render",value:function(){var e=this.config,t=e.mode,i=e.autoHide,n=e.initShow;if(!e.disable){var o=x.classNames({"xgplayer-controls":!0},{"flex-controls":"flex"===t},{"bottom-controls":"bottom"===t},s({},rt.CONTROLS_AUTOHIDE,i),{"xgplayer-controls-initshow":n||!i});return'<xg-controls class="'.concat(o,'" unselectable="on" onselectstart="return false">\n <xg-inner-controls class="xg-inner-controls xg-pos">\n <xg-left-grid class="xg-left-grid">\n </xg-left-grid>\n <xg-center-grid class="xg-center-grid"></xg-center-grid>\n <xg-right-grid class="xg-right-grid">\n </xg-right-grid>\n </xg-inner-controls>\n </xg-controls>')}}}],[{key:"pluginName",get:function(){return"controls"}},{key:"defaultConfig",get:function(){return{disable:!1,autoHide:!0,mode:"",initShow:!1}}}]),i}(tt),vt={lang:{},langKeys:[],textKeys:[]};function yt(e,t){return Object.keys(t).forEach((function(i){var n,o=x.typeOf(t[i]),r=x.typeOf(e[i]);"Array"===o?("Array"!==r&&(e[i]=[]),(n=e[i]).push.apply(n,g(t[i]))):"Object"===o?("Object"!==r&&(e[i]={}),yt(e[i],t[i])):e[i]=t[i]})),e}function mt(){Object.keys(vt.lang.en).map((function(e){vt.textKeys[e]=e}))}function kt(e,t){var i=e.LANG;if(t||(t=vt),t.lang){var n=e.TEXT||{};"zh"===i&&(i="zh-cn"),t.lang[i]?yt(t.lang[i],n):(t.langKeys.push(i),t.lang[i]=n),mt()}}kt({LANG:"en",TEXT:{ERROR_TYPES:{network:{code:1,msg:"video download error"},mse:{code:2,msg:"stream append error"},parse:{code:3,msg:"parsing error"},format:{code:4,msg:"wrong format"},decoder:{code:5,msg:"decoding error"},runtime:{code:6,msg:"grammatical errors"},timeout:{code:7,msg:"play timeout"},other:{code:8,msg:"other errors"}},HAVE_NOTHING:"There is no information on whether audio/video is ready",HAVE_METADATA:"Audio/video metadata is ready ",HAVE_CURRENT_DATA:"Data about the current play location is available, but there is not enough data to play the next frame/millisecond",HAVE_FUTURE_DATA:"Current and at least one frame of data is available",HAVE_ENOUGH_DATA:"The available data is sufficient to start playing",NETWORK_EMPTY:"Audio/video has not been initialized",NETWORK_IDLE:"Audio/video is active and has been selected for resources, but no network is used",NETWORK_LOADING:"The browser is downloading the data",NETWORK_NO_SOURCE:"No audio/video source was found",MEDIA_ERR_ABORTED:"The fetch process is aborted by the user",MEDIA_ERR_NETWORK:"An error occurred while downloading",MEDIA_ERR_DECODE:"An error occurred while decoding",MEDIA_ERR_SRC_NOT_SUPPORTED:"Audio/video is not supported",REPLAY:"Replay",ERROR:"Network is offline",PLAY_TIPS:"Play",PAUSE_TIPS:"Pause",PLAYNEXT_TIPS:"Play next",DOWNLOAD_TIPS:"Download",ROTATE_TIPS:"Rotate",RELOAD_TIPS:"Reload",FULLSCREEN_TIPS:"Fullscreen",EXITFULLSCREEN_TIPS:"Exit fullscreen",CSSFULLSCREEN_TIPS:"Cssfullscreen",EXITCSSFULLSCREEN_TIPS:"Exit cssfullscreen",TEXTTRACK:"Caption",PIP:"PIP",SCREENSHOT:"Screenshot",LIVE:"LIVE",OFF:"Off",OPEN:"Open",MINI_DRAG:"Click and hold to drag",MINISCREEN:"Miniscreen",REFRESH_TIPS:"Please Try",REFRESH:"Refresh",FORWARD:"forward",LIVE_TIP:"Live"}});var bt={get textKeys(){return vt.textKeys},get langKeys(){return vt.langKeys},get lang(){var e={};return vt.langKeys.map((function(t){e[t]=vt.lang[t]})),vt.lang["zh-cn"]&&(e.zh=vt.lang["zh-cn"]||{}),e},extend:function(e,t){var i=[];if(t||(t=vt),t.lang){i="Array"!==x.typeOf(e)?Object.keys(e).map((function(t){return{LANG:"zh"===t?"zh-cn":t,TEXT:e[t]}})):e;var n=t.lang;i.map((function(e){"zh"===e.LANG&&(e.LANG="zh-cn"),n[e.LANG]?yt(n[e.LANG]||{},e.TEXT||{}):kt(e,t)})),mt()}},use:kt,init:function(e){var t,i={lang:{},langKeys:[],textKeys:{},pId:e};return yt(i.lang,vt.lang),(t=i.langKeys).push.apply(t,g(vt.langKeys)),yt(i.textKeys,vt.textKeys),i}},Ct=["play","pause","replay","retry"],wt=0,_t=0,xt=function(e){a(o,e);var i=d(o);function o(e){var t;n(this,o);var r,a=x.deepMerge(st(),e);s(u(t=i.call(this,a)),"canPlayFunc",(function(){if(t.config){var e=t.config,i=e.autoplay,n=e.startTime,o=e.defaultPlaybackRate;w.logInfo("player","canPlayFunc, startTime",n),n&&(t.currentTime=n>t.duration?t.duration:n,t.config.startTime=0),1!==o&&(t.playbackRate=o),i&&t.videoPlay(),t.off(W,t.canPlayFunc),t.removeClass(rt.ENTER)}})),s(u(t),"onFullscreenChange",(function(e,i){var n=function(){x.setTimeout(u(t),(function(){t.resize()}),100)},o=x.getFullScreenEl();t._fullActionFrom?t._fullActionFrom="":t.emit(Ce,{eventType:"system",action:"switch_fullscreen",pluginName:"player",currentTime:t.currentTime,duration:t.duration,props:[{prop:"fullscreen",from:!0,to:!1}]});var r=function(e,t,i){if(e){var n=e.getAttribute(i);return!(!n||n!==t||"VIDEO"!==e.tagName&&"AUDIO"!==e.tagName)}}(o,t.playerId,Re);if(i||o&&(o===t._fullscreenEl||r))n(),!t.config.closeFocusVideoFocus&&t.video.focus(),t.fullscreen=!0,t.changeFullStyle(t.root,o,rt.FULLSCREEN),t.emit(ce,!0,t._fullScreenOffset),t.cssfullscreen&&t.exitCssFullscreen();else if(t.fullscreen){n();var s=u(t),a=s._fullScreenOffset;s.config.needFullscreenScroll?(window.scrollTo(a.left,a.top),x.setTimeout(u(t),(function(){t.fullscreen=!1,t._fullScreenOffset=null}),100)):(!t.config.closeFocusVideoFocus&&t.video.focus(),t.fullscreen=!1,t._fullScreenOffset=null),t.cssfullscreen?t.removeClass(rt.FULLSCREEN):t.recoverFullStyle(t.root,t._fullscreenEl,rt.FULLSCREEN),t._fullscreenEl=null,t.emit(ce,!1)}})),s(u(t),"_onWebkitbeginfullscreen",(function(e){t._fullscreenEl=t.video,t.onFullscreenChange(e,!0)})),s(u(t),"_onWebkitendfullscreen",(function(e){t.onFullscreenChange(e,!1)})),Be(u(t),Ct),t.config=a,t._pluginInfoId=x.generateSessionId(),(r=u(t)).logInfo=w.logInfo.bind(r),r.logWarn=w.logWarn.bind(r),r.logError=w.logError.bind(r);var l=t.constructor.defaultPreset;if(t.config.presets.length){var c=t.config.presets.indexOf("default");c>=0&&l&&(t.config.presets[c]=l)}else l&&t.config.presets.push(l);if(t.userTimer=null,t.waitTimer=null,t._state=at,t._isError=!1,t._hasStart=!1,t.isSeeking=!1,t.isCanplay=!1,t._runPending=!1,t.rotateDeg=0,t.isActive=!1,t.fullscreen=!1,t.cssfullscreen=!1,t.isRotateFullscreen=!1,t._fullscreenEl=null,t._cssfullscreenEl=null,t.curDefinition=null,t._orgCss="",t._fullScreenOffset=null,t._videoHeight=0,t._videoWidth=0,t._accPlayed={t:0,acc:0,loopAcc:0},t.innerContainer=null,t.controls=null,t.topBar=null,t.root=null,t.__i18n=bt.init(t._pluginInfoId),I.os.isAndroid&&I.osVersion>0&&I.osVersion<6&&(t.config.autoplay=!1),t.database=new Le,t.isUserActive=!1,!t._initDOM())return console.error(new Error("can't find the dom which id is ".concat(t.config.id," or this.config.el does not exist"))),h(t);var d=t.config,f=d.definition,p=void 0===f?{}:f;if(!d.url&&p.list&&p.list.length>0){var g=p.list.find((function(e){return e.definition&&e.definition===p.defaultDefinition}));g||(p.defaultDefinition=p.list[0].definition,g=p.list[0]),t.config.url=g.url,t.curDefinition=g}return t._bindEvents(),t._registerPresets(),t._registerPlugins(),ot.onPluginsReady(u(t)),t.getInitDefinition(),t.setState(lt),t.emit(ee),t.onReady&&t.onReady(),(t.config.videoInit||t.config.autoplay)&&(!t.hasStart||t.state<ut)&&t.start(),t}return r(o,[{key:"_initDOM",value:function(){var e=this;if(this.root=this.config.id?document.getElementById(this.config.id):null,!this.root){var t=this.config.el;if(!t||1!==t.nodeType)return this.emit(H,new D("use",this.config.vid,{line:32,handle:"Constructor",msg:"container id can't be empty"})),console.error("this.confg.id or this.config.el can't be empty"),!1;this.root=t}var i=ot.checkPlayerRoot(this.root);i&&(w.logWarn("The is an Player instance already exists in this.root, destroy it and reinitialize"),i.destroy()),this.root.setAttribute(Re,this.playerId),ot.init(this),this._initBaseDoms();var n=this.constructor.XgVideoProxy;if(n&&this.videoConfig.mediaType===n.mediaType){var o=this.innerContainer||this.root;this.detachVideoEvents(this.video);var r=new n(o,this.config,this.videoConfig);this.attachVideoEvents(r),this.video=r}if(this.video.setAttribute(Re,this.playerId),this.config.controls){var s=ot.register(this,gt);this.controls=s}var a="mobile"===this.config.isMobileSimulateMode?"mobile":I.device;if(this.addClass("".concat(rt.DEFAULT," ").concat(rt.INACTIVE," xgplayer-").concat(a," ").concat(this.config.controls?"":rt.NO_CONTROLS)),this.config.autoplay?this.addClass(rt.ENTER):this.addClass(rt.NO_START),this.config.fluid){var l=this.config,c=l.width,u=l.height;"number"==typeof c&&"number"==typeof u||(c=600,u=337.5);var h={width:"100%",height:"0","max-width":"100%","padding-top":"".concat(100*u/c,"%")};Object.keys(h).forEach((function(t){e.root.style[t]=h[t]}))}else["width","height"].forEach((function(t){e.config[t]&&("number"!=typeof e.config[t]?e.root.style[t]=e.config[t]:e.root.style[t]="".concat(e.config[t],"px"))}));return!0}},{key:"_initBaseDoms",value:function(){this.topBar=x.createDom("xg-bar","",{"data-index":-1},"xg-top-bar"),this.leftBar=x.createDom("xg-bar","",{"data-index":-1},"xg-left-bar"),this.rightBar=x.createDom("xg-bar","",{"data-index":-1},"xg-right-bar"),this.config.marginControls&&(this.innerContainer=x.createDom("xg-video-container","",{"data-index":-1},"xg-video-container"),this.root.appendChild(this.innerContainer)),this.config.topBarAutoHide&&x.addClass(this.topBar,rt.TOP_BAR_AUTOHIDE),this.root.appendChild(this.topBar),this.root.appendChild(this.leftBar),this.root.appendChild(this.rightBar)}},{key:"_bindEvents",value:function(){var e=this;["focus","blur"].forEach((function(t){e.on(t,e["on"+t.charAt(0).toUpperCase()+t.slice(1)])})),Ae.forEach((function(t){document&&document.addEventListener(t,e.onFullscreenChange)})),I.os.isIos&&(this.video.addEventListener("webkitbeginfullscreen",this._onWebkitbeginfullscreen),this.video.addEventListener("webkitendfullscreen",this._onWebkitendfullscreen)),this.once(z,this.resize),this.playFunc=function(){e.config.closeFocusVideoFocus||e.video.focus()},this.once(M,this.playFunc)}},{key:"_unbindEvents",value:function(){var e=this;this.root.removeEventListener("mousemove",this.mousemoveFunc),Ae.forEach((function(t){document.removeEventListener(t,e.onFullscreenChange)})),this.playFunc&&this.off(M,this.playFunc),this.off(W,this.canPlayFunc),this.video.removeEventListener("webkitbeginfullscreen",this._onWebkitbeginfullscreen),this.video.removeEventListener("webkitendfullscreen",this._onWebkitendfullscreen)}},{key:"_startInit",value:function(e){var t=this;if(this.video&&(e&&""!==e&&("Array"!==x.typeOf(e)||0!==e.length)||(e="",this.emit(te),w.logWarn("config.url is null, please get url and run player._startInit(url)"),!this.config.nullUrlStart))){this._detachSourceEvents(this.video),"Array"===x.typeOf(e)?this._attachSourceEvents(this.video,e):this.video.src!==e&&(this.video.src=e),"Number"===x.typeOf(this.config.volume)&&(this.volume=this.config.volume);var i=this.innerContainer?this.innerContainer:this.root;this.video instanceof window.Element&&!i.contains(this.video)&&i.insertBefore(this.video,i.firstChild);var n=this.video.readyState;w.logInfo("_startInit readyState",n),this.config.autoplay&&(!/^blob/.test(this.video.currentSrc)&&!/^blob/.test(this.video.src)&&this.load(),(I.os.isIpad||I.os.isPhone)&&this.videoPlay()),n>=2?this.canPlayFunc():this.once(W,this.canPlayFunc),(!this.hasStart||this.state<ut)&&ot.afterInit(this),this.hasStart=!0,this.setState(ut),x.setTimeout(this,(function(){t.emit(oe)}),0)}}},{key:"_registerPlugins",value:function(){var e=this,t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this._loadingPlugins=[];var i=this.config.ignores||[],n=this.config.plugins||[],o=this.config.i18n||[];t&&bt.extend(o,this.__i18n);var r=i.join("||").toLowerCase().split("||"),s=this.plugins;n.forEach((function(i){try{var n=i.plugin?i.plugin.pluginName:i.pluginName;if(n&&r.indexOf(n.toLowerCase())>-1)return null;if(!t&&s[n.toLowerCase()])return;if(i.lazy&&i.loader){var o=ot.lazyRegister(e,i);return void(i.forceBeforeInit&&(o.then((function(){e._loadingPlugins.splice(e._loadingPlugins.indexOf(o),1)})).catch((function(t){w.logError("_registerPlugins:loadingPlugin",t),e._loadingPlugins.splice(e._loadingPlugins.indexOf(o),1)})),e._loadingPlugins.push(o)))}return e.registerPlugin(i)}catch(a){w.logError("_registerPlugins:",a)}}))}},{key:"_registerPresets",value:function(){var e=this;this.config.presets.forEach((function(t){!function(e,t){var i,n,o=t.preset&&t.options?new t.preset(t.options,e.config):new t({},e.config),r=o.plugins,s=void 0===r?[]:r,a=o.ignores,l=void 0===a?[]:a,c=o.icons,u=void 0===c?{}:c,h=o.i18n,d=void 0===h?[]:h;e.config.plugins||(e.config.plugins=[]),e.config.ignores||(e.config.ignores=[]),(i=e.config.plugins).push.apply(i,g(s)),(n=e.config.ignores).push.apply(n,g(l)),Object.keys(u).map((function(t){e.config.icons[t]||(e.config.icons[t]=u[t])}));var f=e.config.i18n||[];d.push.apply(d,g(f)),e.config.i18n=d}(e,t)}))}},{key:"_getRootByPosition",value:function(e){var t=null;switch(e){case Je.ROOT_RIGHT:t=this.rightBar;break;case Je.ROOT_LEFT:t=this.leftBar;break;case Je.ROOT_TOP:t=this.topBar;break;default:t=this.innerContainer||this.root}return t}},{key:"registerPlugin",value:function(e,t){var i=ot.formatPluginInfo(e,t),n=i.PLUFGIN,o=i.options,r=this.config.plugins;!ot.checkPluginIfExits(n.pluginName,r)&&r.push(n);var s=ot.getRootByConfig(n.pluginName,this.config);s.root&&(o.root=s.root),s.position&&(o.position=s.position);var a=o.position?o.position:o.config&&o.config.position||n.defaultConfig&&n.defaultConfig.position;return!o.root&&"string"==typeof a&&a.indexOf("controls")>-1?this.controls&&this.controls.registerPlugin(n,o,n.pluginName):(o.root||(o.root=this._getRootByPosition(a)),ot.register(this,n,o))}},{key:"deregister",value:function(e){"string"==typeof e?ot.unRegister(this,e):e instanceof We&&ot.unRegister(this,e.pluginName)}},{key:"unRegisterPlugin",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.deregister(e),t&&this.removePluginFromConfig(e)}},{key:"removePluginFromConfig",value:function(e){var t;if("string"==typeof e?t=e:e instanceof We&&(t=e.pluginName),t)for(var i=this.config.plugins.length-1;i>-1;i--){if(this.config.plugins[i].pluginName.toLowerCase()===t.toLowerCase()){this.config.plugins.splice(i,1);break}}}},{key:"plugins",get:function(){return ot.getPlugins(this)}},{key:"getPlugin",value:function(e){var t=ot.findPlugin(this,e);return t&&t.pluginName?t:null}},{key:"addClass",value:function(e){this.root&&(x.hasClass(this.root,e)||x.addClass(this.root,e))}},{key:"removeClass",value:function(e){this.root&&x.removeClass(this.root,e)}},{key:"hasClass",value:function(e){if(this.root)return x.hasClass(this.root,e)}},{key:"setAttribute",value:function(e,t){this.root&&this.root.setAttribute(e,t)}},{key:"removeAttribute",value:function(e,t){this.root&&this.root.removeAttribute(e,t)}},{key:"start",value:function(e){var t=this;return this.hasStart||this.state>=ct?Promise.resolve():(e||this.config.url||this.getInitDefinition(),this.hasStart=!0,this.setState(ct),this._registerPlugins(!1),ot.beforeInit(this).then((function(){if(t.config)return e||(e=t.url||t.config.url),t._startInit(e)})).catch((function(e){throw e.fileName="player",e.lineNumber="236",w.logError("start:beforeInit:",e),e})))}},{key:"switchURL",value:function(e){var t=this,i=e;"Object"===x.typeOf(e)&&(i=e.url);var n=this.currentTime,o=this.paused&&!this._isError;return this.src=i,new Promise((function(e){var i=function(){t.currentTime=n,o&&t.once("canplay",(function(){t.pause()})),e()};I.os.isAndroid?t.once("timeupdate",(function(){i()})):t.once("canplay",(function(){i()})),t.play()}))}},{key:"videoPlay",value:function(){var e=this;if(this.hasStart||!(this.state<ut)){this.state<dt&&(this.removeClass(rt.NO_START),!this.isCanplay&&this.addClass(rt.ENTER));var t=p(l(o.prototype),"play",this).call(this);return void 0!==t&&t&&t.then?t.then((function(){e.removeClass(rt.NOT_ALLOW_AUTOPLAY),e.addClass(rt.PLAYING),e.state<dt&&(w.logInfo(">>>>playPromise.then"),e.setState(dt),e.emit(ie))})).catch((function(t){if(w.logWarn(">>>>playPromise.catch",t.name),e.video&&e.video.error)return e.onError(),void e.removeClass(rt.ENTER);"NotAllowedError"===t.name&&(e._errorTimer=x.setTimeout(e,(function(){e._errorTimer=null,e.emit(ne),e.addClass(rt.NOT_ALLOW_AUTOPLAY),e.removeClass(rt.ENTER),e.pause(),e.setState(ht)}),0))})):(w.logWarn("video.play not return promise"),this.state<dt&&(this.setState(dt),this.removeClass(rt.NOT_ALLOW_AUTOPLAY),this.removeClass(rt.NO_START),this.removeClass(rt.ENTER),this.addClass(rt.PLAYING),this.emit(ie))),t}this.removeClass(rt.NO_START),this.addClass(rt.ENTER);var i=this.start();i&&i.then((function(t){!e.config.autoplay&&e.videoPlay()}))}},{key:"videoPause",value:function(){p(l(o.prototype),"pause",this).call(this)}},{key:"play",value:function(){var e=this;this.removeClass(rt.PAUSED),Ge(this,"play",(function(){e.videoPlay()}))}},{key:"pause",value:function(){var e=this;Ge(this,"pause",(function(){p(l(o.prototype),"pause",e).call(e)}))}},{key:"seek",value:function(e,t){var i=this;if(this.video&&!Number.isNaN(Number(e)||!this.hasStart)){var n=this.config,o=n.isSeekedPlay,r=n.seekedStatus,s=t||(o?"play":r);e=e<0?0:e>this.duration?parseInt(this.duration,10):e,this.once(W,(function(){switch(i.removeClass(rt.ENTER),i.isSeeking=!1,s){case"play":i.play();break;case"pause":i.pause();break;default:!i.paused&&i.play()}})),this.state<dt?(this.removeClass(rt.NO_START),this.addClass(rt.ENTER),this.currentTime=e,"play"===s&&this.play()):this.currentTime=e}}},{key:"getInitDefinition",value:function(){var e=this,t=this.config,i=t.definition;!t.url&&i&&i.list&&i.list.length>0&&i.defaultDefinition&&i.list.map((function(t){t.definition===i.defaultDefinition&&(e.config.url=t.url,e.curDefinition=t)}))}},{key:"changeDefinition",value:function(e,t){var i=this,n=this.config.definition;if(Array.isArray(null==n?void 0:n.list)&&n.list.forEach((function(t){(null==e?void 0:e.definition)===t.definition&&(i.curDefinition=t)})),this.emit(de,{from:t,to:e}),this.hasStart){var o=this.switchURL(e.url);o&&o.then?o.then((function(){i.emit(fe,{from:t,to:e})})):this.emit(fe,{from:t,to:e})}else this.config.url=e.url}},{key:"reload",value:function(){this.load(),this.reloadFunc=function(){this.play()},this.once(z,this.reloadFunc)}},{key:"resetState",value:function(){var e=this,t=[rt.NOT_ALLOW_AUTOPLAY,rt.PLAYING,rt.NO_START,rt.PAUSED,rt.REPLAY,rt.ENTER,rt.ENDED,rt.ERROR,rt.LOADING];this.hasStart=!1,this._isError=!1,this.videoPause(),this._accPlayed.acc=0,this._accPlayed.t=0,this._accPlayed.loopAcc=0,t.forEach((function(t){e.removeClass(t)})),this.addClass(rt.ENTER),this.emit(we)}},{key:"reset",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],i=arguments.length>1?arguments[1]:void 0;this.resetState();var n=this.plugins;if(n&&(t.map((function(t){e.deregister(t)})),i)){var o=st();Object.keys(this.config).keys((function(t){"undefined"===e.config[t]||"plugins"!==t&&"presets"!==t&&"el"!==t&&"id"!==t||(e.config[t]=o[t])}))}}},{key:"destroy",value:function(){var e=this,t=this.innerContainer,i=this.root,n=this.video;if(i&&n){if(this._hasStart=!1,i.removeAttribute(Re),this.updateAcc("destroy"),this._unbindEvents(),this._detachSourceEvents(this.video),x.clearAllTimers(this),this.emit(se),ot.destroy(this),Ue(this),p(l(o.prototype),"destroy",this).call(this),this.fullscreen&&this._fullscreenEl===this.root&&this.exitFullscreen(),t)for(var r=t.children,s=0;s<r.length;s++)t.removeChild(r[s]);!t&&n instanceof window.Node&&i.contains(n)&&i.removeChild(n),["topBar","leftBar","rightBar","innerContainer"].map((function(t){e[t]&&i.removeChild(e[t]),e[t]=null}));var a=i.className.split(" ");a.length>0?i.className=a.filter((function(e){return e.indexOf("xgplayer")<0})).join(" "):i.className="",this.removeAttribute("data-xgfill"),["isSeeking","isCanplay","isActive","cssfullscreen","fullscreen"].forEach((function(t){e[t]=!1}))}}},{key:"replay",value:function(){var e=this;this.removeClass(rt.ENDED),this.currentTime=0,this.isSeeking=!1,Ge(this,"replay",(function(){e.once(W,(function(){var t=e.videoPlay();t&&t.catch&&t.catch((function(e){console.log(e)}))})),e.play(),e.emit(re),e.onPlay()}))}},{key:"retry",value:function(){var e=this;this.removeClass(rt.ERROR),this.addClass(rt.LOADING),Ge(this,"retry",(function(){var t=e.currentTime;e.src=e.config.url,!e.config.isLive&&(e.currentTime=t),e.once(W,(function(){e.videoPlay()}))}))}},{key:"changeFullStyle",value:function(e,t,i,n){e&&(n||(n=rt.PARENT_FULLSCREEN),this._orgCss||(this._orgCss=x.filterStyleFromText(e)),x.addClass(e,i),t&&t!==e&&!this._orgPCss&&(this._orgPCss=x.filterStyleFromText(t),x.addClass(t,n),t.setAttribute(Re,this.playerId)))}},{key:"recoverFullStyle",value:function(e,t,i,n){n||(n=rt.PARENT_FULLSCREEN),this._orgCss&&(x.setStyleFromCsstext(e,this._orgCss),this._orgCss=""),x.removeClass(e,i),t&&t!==e&&this._orgPCss&&(x.setStyleFromCsstext(t,this._orgPCss),this._orgPCss="",x.removeClass(t,n),t.removeAttribute(Re))}},{key:"getFullscreen",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.config.fullscreenTarget,t=this.root,i=this.video;e||(e=t),this._fullScreenOffset={top:x.scrollTop(),left:x.scrollLeft()},this._fullscreenEl=e,this._fullActionFrom="get";var n=x.getFullScreenEl();if(n!==this._fullscreenEl)try{for(var o=0;o<Ie.length;o++){var r=Ie[o];if(e[r]){var s="webkitRequestFullscreen"===r?e.webkitRequestFullscreen(window.Element.ALLOW_KEYBOARD_INPUT):e[r]();return s&&s.then?s:Promise.resolve()}}return i.fullscreenEnabled||i.webkitSupportsFullscreen?(i.webkitEnterFullscreen(),Promise.resolve()):Promise.reject(new Error("call getFullscreen fail"))}catch(a){return Promise.reject(new Error("call getFullscreen fail"))}else this.onFullscreenChange()}},{key:"exitFullscreen",value:function(e){if(this.isRotateFullscreen&&this.exitRotateFullscreen(),this._fullscreenEl||x.getFullScreenEl()){this.root;var t=this.video;this._fullActionFrom="exit";try{for(var i=0;i<Oe.length;i++){var n=Oe[i];if(document[n]){var o=document[n]();return o&&o.then?o:Promise.resolve()}}return t&&t.webkitSupportsFullscreen?(t.webkitExitFullScreen(),Promise.resolve()):Promise.reject(new Error("call exitFullscreen fail"))}catch(r){return Promise.reject(new Error("call exitFullscreen fail"))}}}},{key:"getCssFullscreen",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.config.fullscreenTarget;this.isRotateFullscreen?this.exitRotateFullscreen():this.fullscreen&&this.exitFullscreen();var t=e?"".concat(rt.INNER_FULLSCREEN," ").concat(rt.CSS_FULLSCREEN):rt.CSS_FULLSCREEN;this.changeFullStyle(this.root,e,t);var i=this.config.fullscreen,n=void 0===i?{}:i,o=!0===n.useCssFullscreen||"function"==typeof n.useCssFullscreen&&n.useCssFullscreen();o&&(this.fullscreen=!0,this.emit(ce,!0)),this._cssfullscreenEl=e,this.cssfullscreen=!0,this.emit(ue,!0)}},{key:"exitCssFullscreen",value:function(){var e=this._cssfullscreenEl?"".concat(rt.INNER_FULLSCREEN," ").concat(rt.CSS_FULLSCREEN):rt.CSS_FULLSCREEN;if(this.fullscreen){var t=this.config.fullscreen,i=void 0===t?{}:t;!0===i.useCssFullscreen||"function"==typeof i.useCssFullscreen&&i.useCssFullscreen()?(this.recoverFullStyle(this.root,this._cssfullscreenEl,e),this.fullscreen=!1,this.emit(ce,!1)):this.removeClass(e)}else this.recoverFullStyle(this.root,this._cssfullscreenEl,e);this._cssfullscreenEl=null,this.cssfullscreen=!1,this.emit(ue,!1)}},{key:"getRotateFullscreen",value:function(e){this.cssfullscreen&&this.exitCssFullscreen(e);var t=e?"".concat(rt.INNER_FULLSCREEN," ").concat(rt.ROTATE_FULLSCREEN):rt.ROTATE_FULLSCREEN;this._fullscreenEl=e||this.root,this.changeFullStyle(this.root,e,t,rt.PARENT_ROTATE_FULLSCREEN),this.isRotateFullscreen=!0,this.fullscreen=!0,this.setRotateDeg(90),this.emit(ce,!0)}},{key:"exitRotateFullscreen",value:function(e){var t=this._fullscreenEl!==this.root?"".concat(rt.INNER_FULLSCREEN," ").concat(rt.ROTATE_FULLSCREEN):rt.ROTATE_FULLSCREEN;this.recoverFullStyle(this.root,this._fullscreenEl,t,rt.PARENT_ROTATE_FULLSCREEN),this.isRotateFullscreen=!1,this.fullscreen=!1,this.setRotateDeg(0),this.emit(ce,!1)}},{key:"setRotateDeg",value:function(e){90===window.orientation||-90===window.orientation?this.rotateDeg=0:this.rotateDeg=e}},{key:"focus",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{autoHide:!this.config.closeDelayBlur,delay:this.config.inactive};this.isActive?this.onFocus(e):this.emit($,t({paused:this.paused,ended:this.ended},e))}},{key:"blur",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{ignorePaused:!1};this.isActive?this.emit(Q,t({paused:this.paused,ended:this.ended},e)):this.onBlur(e)}},{key:"onFocus",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=t.autoHide,n=void 0===i?!this.config.closePlayerBlur:i,o=t.delay,r=void 0===o?this.config.inactive:o;this.isActive=!0,this.removeClass(rt.INACTIVE),this.userTimer&&(x.clearTimeout(this,this.userTimer),this.userTimer=null),n?this.userTimer=x.setTimeout(this,(function(){e.userTimer=null,e.blur()}),r):this.userTimer&&(x.clearTimeout(this,this.userTimer),this.userTimer=null)}},{key:"onBlur",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.ignorePaused,i=void 0!==t&&t;if(this.isActive){var n=this.config.closePauseVideoFocus;this.isActive=!1,(i||n||!this.paused&&!this.ended)&&this.addClass(rt.INACTIVE)}}},{key:"onEmptied",value:function(){this.updateAcc("emptied")}},{key:"onCanplay",value:function(){this.state>=dt&&this.removeClass(rt.ENTER),this.removeClass(rt.LOADING),this.isCanplay=!0,this.waitTimer&&x.clearTimeout(this,this.waitTimer)}},{key:"onPlay",value:function(){this.state===ft&&this.setState(dt),this.removeClass(rt.PAUSED),this.ended&&this.removeClass(rt.ENDED),!this.config.closePlayVideoFocus&&this.focus()}},{key:"onPause",value:function(){this.addClass(rt.PAUSED),this.updateAcc("pause"),this.config.closePauseVideoFocus||(this.userTimer&&(x.clearTimeout(this,this.userTimer),this.userTimer=null),this.focus())}},{key:"onEnded",value:function(){this.updateAcc("ended"),this.addClass(rt.ENDED),this.setState(ft)}},{key:"onError",value:function(){this._isError=!0,this.updateAcc("error"),this.removeClass(rt.NOT_ALLOW_AUTOPLAY),this.removeClass(rt.NO_START),this.removeClass(rt.ENTER),this.removeClass(rt.LOADING),this.addClass(rt.ERROR)}},{key:"onSeeking",value:function(){this.isSeeking||this.updateAcc("seeking"),this.isSeeking=!0,this.addClass(rt.SEEKING)}},{key:"onSeeked",value:function(){this.isSeeking=!1,this.waitTimer&&x.clearTimeout(this,this.waitTimer),this.removeClass(rt.LOADING),this.removeClass(rt.SEEKING)}},{key:"onWaiting",value:function(){var e=this;this.waitTimer&&x.clearTimeout(this,this.waitTimer),this.updateAcc("waiting"),this.waitTimer=x.setTimeout(this,(function(){e.addClass(rt.LOADING),x.clearTimeout(e,e.waitTimer),e.waitTimer=null}),200)}},{key:"onPlaying",value:function(){var e=this;this._isError=!1,[rt.NO_START,rt.PAUSED,rt.ENDED,rt.ERROR,rt.REPLAY,rt.LOADING].forEach((function(t){e.removeClass(t)}))}},{key:"onTimeupdate",value:function(){!this._videoHeight&&this.resize(),(this.waitTimer||this.hasClass(rt.LOADING))&&this.video.readyState>2&&(this.removeClass(rt.LOADING),x.clearTimeout(this,this.waitTimer),this.waitTimer=null),!this.paused&&this.state<dt&&this.duration&&(this.setState(dt),this.emit(ie)),this._accPlayed.t||this.paused||this.ended||(this._accPlayed.t=(new Date).getTime())}},{key:"onVolumechange",value:function(){"Number"===x.typeOf(this.config.volume)&&(this.config.volume=this.volume)}},{key:"onRatechange",value:function(){this.config.defaultPlaybackRate=this.playbackRate}},{key:"emitUserAction",value:function(e,i,n){if(this.video&&i&&e){var o="String"===x.typeOf(e)?e:e.type||"";n.props&&"Array"!==x.typeOf(n.props)&&(n.props=[n.props]),this.emit(Ce,t({eventType:o,action:i,currentTime:this.currentTime,duration:this.duration,ended:this.ended,event:e},n))}}},{key:"updateAcc",value:function(e){if(this._accPlayed.t){var t=(new Date).getTime()-this._accPlayed.t;this._accPlayed.acc+=t,this._accPlayed.t=0,("ended"===e||this.ended)&&(this._accPlayed.loopAcc=this._accPlayed.acc)}}},{key:"checkBuffer",value:function(e){var t=this.video.buffered;if(!t||0===t.length||!this.duration)return!0;for(var i=e||this.video.currentTime||.2,n=t.length,o=0;o<n;o++)if(t.start(o)<=i&&t.end(o)>i)return!0;return!1}},{key:"position",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{h:0,y:0,x:0,w:0};if(this.video&&e&&e.h){var t=1/e.h,i=1!==t?"scale(".concat(t,")"):"",n=0,o=0;e.y&&(o=(100-100*e.h)/2-100*e.y),e.w&&e.x&&(n=(100-100*e.w)/2-100*e.x),i+=" translate(".concat(n,"%, ").concat(o,"%)"),this.video.style.transform=i,this.video.style.webkitTransform=i}}},{key:"setConfig",value:function(e){var t=this;e&&Object.keys(e).map((function(i){if("plugins"!==i){t.config[i]=e[i];var n=t.plugins[i.toLowerCase()];n&&"Function"===x.typeOf(n.setConfig)&&n.setConfig(e[i])}}))}},{key:"playNext",value:function(e){this.resetState(),this.setConfig(e),this._currentTime=0,this._duration=0,this.play(),this.emit(me,e)}},{key:"resize",value:function(){var e=this;if(this.video){var t=this.video,i=t.videoWidth,n=t.videoHeight,o=this.config,r=o.fitVideoSize,s=o.videoFillMode;if("fill"!==s&&"cover"!==s||this.setAttribute("data-xgfill",s),n&&i){this._videoHeight=n,this._videoWidth=i;var a=this.root.getBoundingClientRect(),l=this.controls&&this.innerContainer?this.controls.root.getBoundingClientRect().height:0,c=a.width,u=a.height-l,h=parseInt(i/n*1e3,10),d=parseInt(c/u*1e3,10),f=c,p=u,g={};"auto"===r&&d>h||"fixWidth"===r?(p=c/h*1e3,this.config.fluid?g.paddingTop="".concat(100*p/f,"%"):g.height="".concat(p+l,"px")):("auto"===r&&d<h||"fixHeight"===r)&&(f=h*u/1e3,g.width="".concat(f,"px")),this.fullscreen||this.cssfullscreen||Object.keys(g).forEach((function(t){e.root.style[t]=g[t]})),("fillHeight"===s&&d<h||"fillWidth"===s&&d>h)&&this.setAttribute("data-xgfill","cover");var v={videoScale:h,vWidth:f,vHeight:p,cWidth:f,cHeight:p+l};this.emit(pe,v)}}}},{key:"updateObjectPosition",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this.video.updateObjectPosition?this.video.updateObjectPosition(e,t):this.video.style.objectPosition="".concat(100*e,"% ").concat(100*t,"%")}},{key:"setState",value:function(e){w.logInfo("setState","state from:".concat(pt[this.state]," to:").concat(pt[e])),this._state=e}},{key:"state",get:function(){return this._state}},{key:"isFullscreen",get:function(){return this.fullscreen}},{key:"isCssfullScreen",get:function(){return this.cssfullscreen}},{key:"hasStart",get:function(){return this._hasStart},set:function(e){"boolean"==typeof e&&(this._hasStart=e,!1===e&&this.setState(lt),this.emit("hasstart"))}},{key:"isPlaying",get:function(){return this._state===dt||this._state===ft},set:function(e){e?this.setState(dt):this._state>=dt&&this.setState(ut)}},{key:"definitionList",get:function(){return this.config.definition.list||[]},set:function(e){var t=this,i=this.config.definition,n=null,o=null;i.list=e,this.emit("resourceReady",e),e.forEach((function(e){var r;(null===(r=t.curDefinition)||void 0===r?void 0:r.definition)===e.definition&&(n=e),i.defaultDefinition===e.definition&&(o=e)})),!o&&e.length>0&&(o=e[0]),n?this.changeDefinition(n):o&&this.changeDefinition(o)}},{key:"videoFrameInfo",get:function(){var e={total:0,dropped:0,corrupted:0,droppedRate:0,droppedDuration:0};if(!this.video||!this.video.getVideoPlaybackQuality)return e;var t=this.video.getVideoPlaybackQuality();return e.dropped=t.droppedVideoFrames||0,e.total=t.totalVideoFrames||0,e.corrupted=t.corruptedVideoFrames||0,e.total>0&&(e.droppedRate=e.dropped/e.total*100,e.droppedDuration=parseInt(this.cumulateTime/e.total*e.dropped,0)),e}},{key:"lang",get:function(){return this.config.lang},set:function(e){0!==bt.langKeys.filter((function(t){return t===e})).length||"zh"===e?(this.config.lang=e,ot.setLang(e,this)):console.error("Sorry, set lang fail, because the language [".concat(e,"] is not supported now, list of all supported languages is [").concat(bt.langKeys.join(),"] "))}},{key:"i18n",get:function(){var e=this.config.lang;return"zh"===e&&(e="zh-cn"),this.__i18n.lang[e]||this.__i18n.lang.en}},{key:"i18nKeys",get:function(){return this.__i18n.textKeys||{}}},{key:"version",get:function(){return O}},{key:"playerId",get:function(){return this._pluginInfoId}},{key:"url",get:function(){return this.__url||this.config.url},set:function(e){this.__url=e}},{key:"poster",get:function(){return this.plugins.poster?this.plugins.poster.config.poster:this.config.poster},set:function(e){this.plugins.poster&&this.plugins.poster.update(e)}},{key:"readyState",get:function(){var e=p(l(o.prototype),"readyState",this);return this.i18n[e]||e}},{key:"error",get:function(){var e=p(l(o.prototype),"error",this);return this.i18n[e]||e}},{key:"networkState",get:function(){var e=p(l(o.prototype),"networkState",this);return this.i18n[e]||e}},{key:"fullscreenChanging",get:function(){return!(null===this._fullScreenOffset)}},{key:"cumulateTime",get:function(){var e=this._accPlayed;return this.updateAcc("get"),e.acc}},{key:"zoom",get:function(){return this.config.zoom},set:function(e){this.config.zoom=e}},{key:"avgSpeed",get:function(){return _t},set:function(e){_t=e}},{key:"realTimeSpeed",get:function(){return wt},set:function(e){wt=e}},{key:"hook",value:function(e,t){return Me.call.apply(Me,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"useHooks",value:function(e,t){return je.call.apply(je,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"removeHooks",value:function(e,t){return Ne.call.apply(Ne,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"usePluginHooks",value:function(e,t,i){for(var n=arguments.length,o=new Array(n>3?n-3:0),r=3;r<n;r++)o[r-3]=arguments[r];return Fe.call.apply(Fe,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"removePluginHooks",value:function(e,t,i){for(var n=arguments.length,o=new Array(n>3?n-3:0),r=3;r<n;r++)o[r-3]=arguments[r];return He.call.apply(He,[this].concat(Array.prototype.slice.call(arguments)))}},{key:"setUserActive",value:function(e,t){"boolean"==typeof t&&t!==this.muted&&(this.addInnerOP("volumechange"),this.muted=t),ot.setCurrentUserActive(this.playerId,e)}}],[{key:"debugger",get:function(){return w.config.debug},set:function(e){w.config.debug=e}},{key:"getCurrentUserActivePlayerId",value:function(){return ot.getCurrentUseActiveId()}},{key:"setCurrentUserActive",value:function(e,t){ot.setCurrentUserActive(e,t)}},{key:"isHevcSupported",value:function(){return I.isHevcSupported()}},{key:"probeConfigSupported",value:function(e){return I.probeConfigSupported(e)}},{key:"install",value:function(e,t){o.plugins||(o.plugins={}),o.plugins[e]||(o.plugins[e]=t)}},{key:"use",value:function(e,t){o.plugins||(o.plugins={}),o.plugins[e]=t}}]),o}(Pe);s(xt,"defaultPreset",null),s(xt,"XgVideoProxy",null);function Tt(){return(new Date).getTime()}var Et="loadstart",St="loadeddata",Pt="firstFrame",Lt="waitingStart",At="waitingEnd",It="seekStart",Ot="seekEnd",Rt=function(e){a(o,e);var i=d(o);function o(){var e;n(this,o);for(var t=arguments.length,r=new Array(t),a=0;a<t;a++)r[a]=arguments[a];return s(u(e=i.call.apply(i,[this].concat(r))),"_onTimeupdate",(function(){e._state.isTimeUpdate=!0,e._state.autoplayStart&&(w.logInfo("[xgLogger]".concat(e.player.playerId," _onTimeupdate")),e._sendFF("onTimeupdate"))})),s(u(e),"_onAutoplayStart",(function(){w.logInfo("[xgLogger]".concat(e.player.playerId," _onAutoplayStart")),e._state.autoplayStart=!0,e.vt&&e._sendFF("onAutoplayStart")})),s(u(e),"_onReset",(function(){e._state={autoplayStart:!1,isFFLoading:!1,isTimeUpdate:!1,isFFSend:!1},e.vt=0,e.pt=0,e.fvt=0,e._isSeeking=!1,e.seekingStart=0,e.waitingStart=0,e._isWaiting=!1,e._waitTimer&&x.clearTimeout(u(e),e._waitTimer),e._waittTimer&&x.clearTimeout(u(e),e._waittTimer),e._waitTimer=null,e._waittTimer=null,e._waitType=0})),s(u(e),"_onSeeking",(function(){e.seekingStart||(e.suspendWaitingStatus("seek"),e.seekingStart=Tt(),e.emitLog(It,{start:Tt()}))})),s(u(e),"_onSeeked",(function(){e.suspendSeekingStatus("seeked")})),s(u(e),"_onWaitingLoadStart",(function(){e._isWaiting||e.vt||(e._isWaiting=!0,e.waitingStart=Tt(),e._waitType=1,e.emitLog(Lt,{start:e.waitingStart,type:1,endType:"loadstart"}))})),s(u(e),"_onWaiting",(function(){!e._isWaiting&&e.vt&&(e._isWaiting=!0,e._waitTimer=x.setTimeout(u(e),(function(){e._isWaiting&&(e.waitingStart=Tt(),x.clearTimeout(u(e),e._waitTimer),e._waitTimer=null,e.vt?e.seekingStart?e._waitType=2:e._waitType=0:e._waitType=1,e._startWaitTimeout(),e.emitLog(Lt,{start:e.waitingStart,type:e._waitType,endType:2===e._waitType?"seek":"playing"}))}),200))})),s(u(e),"_onError",(function(){e.suspendSeekingStatus("error"),e.suspendWaitingStatus("error")})),s(u(e),"_onPlaying",(function(){e._isWaiting&&e.suspendWaitingStatus("playing")})),e}return r(o,[{key:"afterCreate",value:function(){var e=this;this._onReset(),this._waitType="firstFrame",this._initOnceEvents(),this.on(Z,(function(){var t=e._state,i=t.autoplayStart,n=t.isFFSend;w.logInfo("[xgLogger]".concat(e.player.playerId," LOAD_START"),"autoplayStart:".concat(i," isFFSend:").concat(n)),n||(e.emitLog(Et,{}),e._state.isTimeUpdate=!1,e._state.isFFLoading=!0,e.pt=Tt(),e.vt=0,e.fvt=0,e._initOnceEvents(),e._onWaitingLoadStart())})),this.on(z,(function(){e.vt=Tt(),e.fvt=e.vt-e.pt;var t=e._state,i=t.isTimeUpdate,n=t.isFFSend;w.logInfo("[xgLogger]".concat(e.player.playerId," LOADED_DATA"),"fvt:".concat(e.fvt," isTimeUpdate:").concat(e._state.isTimeUpdate)),i&&e._sendFF("loadedData"),n||e.emitLog(St,{}),e.suspendWaitingStatus("loadeddata")})),this.on(B,this._onSeeking),this.on(U,this._onSeeked),this.on(se,(function(){e.endState("destroy")})),this.on(ae,(function(){e.endState("urlChange"),w.logInfo("[xgLogger]".concat(e.player.playerId," URL_CHANGE")),e._onReset()})),this.on([j,W],this._onPlaying),this.on(V,this._onWaiting),this.on(H,this._onError),this.on(we,(function(){w.logInfo("[xgLogger]".concat(e.player.playerId," RESET")),e.endState("reset"),e._initOnceEvents(),e._onReset()}))}},{key:"_initOnceEvents",value:function(){this.off(ie,this._onAutoplayStart),this.off(G,this._onTimeupdate),this.once(ie,this._onAutoplayStart),this.once(G,this._onTimeupdate)}},{key:"_sendFF",value:function(e){this.s=Tt();var t=this._state,i=t.isFFLoading,n=t.isFFSend;w.logInfo("[xgLogger]".concat(this.player.playerId," _sendFF"),"".concat(e," fvt:").concat(this.fvt," isFFLoading:").concat(i," !isFFSend:").concat(!n)),this.vt>0&&i&&!n&&(w.logInfo("[xgLogger]".concat(this.player.playerId," emitLog_firstFrame"),e),this._state.isFFLoading=!1,this._state.isFFSend=!0,this.emitLog(Pt,{fvt:this.fvt,costTime:this.fvt,vt:this.vt}))}},{key:"_startWaitTimeout",value:function(){var e=this;this._waittTimer&&x.clearTimeout(this,this._waittTimer),this._waittTimer=x.setTimeout(this,(function(){e.suspendWaitingStatus("timeout"),x.clearTimeout(e,e._waittTimer),e._waittTimer=null}),3e4)}},{key:"endState",value:function(e){this.suspendWaitingStatus(e),this.suspendSeekingStatus(e)}},{key:"suspendSeekingStatus",value:function(e){if(this.seekingStart){var t=Tt(),i=t-this.seekingStart;this.seekingStart=0,this.emitLog(Ot,{end:t,costTime:i,endType:e})}}},{key:"suspendWaitingStatus",value:function(e){if(this._waitTimer&&(x.clearTimeout(this,this._waitTimer),this._waitTimer=null),this._waittTimer&&(x.clearTimeout(this,this._waittTimer),this._waittTimer=null),this._isWaiting=!1,this.waitingStart){var t=Tt()-this.waitingStart;this._isWaiting=!1,this.waitingStart=0,this.emitLog(At,{costTime:t,type:this._waitType,endType:2===this._waitType?"seek":e})}}},{key:"emitLog",value:function(e,i){console.log("emitLog",e);var n=this.player;this.emit(be,t({t:Tt(),host:x.getHostFromUrl(n.currentSrc),vtype:n.vtype,eventType:e,currentTime:this.player.currentTime,readyState:n.video.readyState,networkState:n.video.networkState},i))}}],[{key:"pluginName",get:function(){return"xgLogger"}},{key:"defaultConfig",get:function(){return{}}}]),o}(tt);function Dt(){return(new DOMParser).parseFromString('<svg class="xgplayer-replay-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 78 78" width="78" height="78">\n <path fill="#fff" transform="translate(20, 20)" d="M8.22708362,13.8757234 L11.2677371,12.6472196 C11.7798067,12.4403301 12.3626381,12.6877273 12.5695276,13.1997969 L12.9441342,14.1269807 C13.1510237,14.6390502 12.9036264,15.2218816 12.3915569,15.4287712 L6.8284538,17.6764107 L5.90126995,18.0510173 C5.38920044,18.2579068 4.80636901,18.0105096 4.5994795,17.49844 L1.97723335,11.0081531 C1.77034384,10.4960836 2.0177411,9.91325213 2.52981061,9.70636262 L3.45699446,9.33175602 C3.96906396,9.12486652 4.5518954,9.37226378 4.75878491,9.88433329 L5.67885163,12.1615783 C7.99551726,6.6766934 13.3983951,3 19.5,3 C27.7842712,3 34.5,9.71572875 34.5,18 C34.5,26.2842712 27.7842712,33 19.5,33 C15.4573596,33 11.6658607,31.3912946 8.87004692,28.5831991 C8.28554571,27.9961303 8.28762719,27.0463851 8.87469603,26.4618839 C9.46176488,25.8773827 10.4115101,25.8794641 10.9960113,26.466533 C13.2344327,28.7147875 16.263503,30 19.5,30 C26.127417,30 31.5,24.627417 31.5,18 C31.5,11.372583 26.127417,6 19.5,6 C14.4183772,6 9.94214483,9.18783811 8.22708362,13.8757234 Z"></path>\n</svg>\n',"image/svg+xml").firstChild}var Mt=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"registerIcons",value:function(){return{replay:Dt}}},{key:"afterCreate",value:function(){var e=this;tt.insert(this.icons.replay,this.root,0),this.__handleReplay=this.hook("replayClick",(function(){e.player.replay()}),{pre:function(e){e.preventDefault(),e.stopPropagation()}}),this.bind(".xgplayer-replay",["click","touchend"],this.__handleReplay),this.on(N,(function(){if(e.playerConfig.loop||x.addClass(e.player.root,"replay"),!e.config.disable){e.show();var t=e.root.querySelector("path");if(t){var i=window.getComputedStyle(t).getPropertyValue("transform");if("string"==typeof i&&i.indexOf("none")>-1)return null;t.setAttribute("transform",i)}}})),this.on(M,(function(){e.hide()}))}},{key:"handleReplay",value:function(e){e.preventDefault(),e.stopPropagation(),this.player.replay(),x.removeClass(this.player.root,"replay")}},{key:"show",value:function(){this.config.disable||(this.root.style.display="flex")}},{key:"enable",value:function(){this.config.disable=!1}},{key:"disable",value:function(){this.config.disable=!0,this.hide()}},{key:"destroy",value:function(){this.unbind(".xgplayer-replay",["click","touchend"],this.__handleReplay)}},{key:"render",value:function(){return'<xg-replay class="xgplayer-replay">\n <xg-replay-txt class="xgplayer-replay-txt" lang-key="'.concat(this.i18nKeys.REPLAY,'">').concat(this.i18n.REPLAY,"</xg-replay-txt>\n </xg-replay>")}}],[{key:"pluginName",get:function(){return"replay"}},{key:"defaultConfig",get:function(){return{disable:!1}}}]),i}(tt),jt=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"isEndedShow",get:function(){return this.config.isEndedShow},set:function(e){this.config.isEndedShow=e}},{key:"hide",value:function(){x.addClass(this.root,"hide")}},{key:"show",value:function(){x.removeClass(this.root,"hide")}},{key:"beforeCreate",value:function(e){"string"==typeof e.player.config.poster&&(e.config.poster=e.player.config.poster)}},{key:"afterCreate",value:function(){var e=this;this.on(N,(function(){e.isEndedShow&&x.removeClass(e.root,"hide")})),this.config.hideCanplay?(this.once(G,(function(){e.onTimeUpdate()})),this.on(ae,(function(){x.removeClass(e.root,"hide"),x.addClass(e.root,"xg-showplay"),e.once(G,(function(){e.onTimeUpdate()}))}))):this.on(M,(function(){x.addClass(e.root,"hide")}))}},{key:"onTimeUpdate",value:function(){var e=this;this.player.currentTime?x.removeClass(this.root,"xg-showplay"):this.once(G,(function(){e.onTimeUpdate()}))}},{key:"update",value:function(e){e&&(this.config.poster=e,this.root.style.backgroundImage="url(".concat(e,")"))}},{key:"render",value:function(){var e=this.config,t=e.poster,i=e.hideCanplay,n=t?"background-image:url(".concat(t,");"):"";return'<xg-poster class="xgplayer-poster '.concat(i?"xg-showplay":"",'" style="').concat(n,'">\n </xg-poster>')}}],[{key:"pluginName",get:function(){return"poster"}},{key:"defaultConfig",get:function(){return{isEndedShow:!0,hideCanplay:!1,poster:""}}}]),i}(tt);function Nt(){return(new DOMParser).parseFromString('<svg class="play" xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="3 -4 28 40">\n <path fill="#fff" transform="scale(0.0320625 0.0320625)" d="M576,363L810,512L576,661zM342,214L576,363L576,661L342,810z"></path>\n</svg>\n',"image/svg+xml").firstChild}function Ft(){return(new DOMParser).parseFromString('<svg class="pause" xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="3 -4 28 40">\n <path fill="#fff" transform="scale(0.0320625 0.0320625)" d="M598,214h170v596h-170v-596zM256 810v-596h170v596h-170z"></path>\n</svg>\n',"image/svg+xml").firstChild}var Ht={};var Bt=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),s(u(o=t.call(this,e)),"onAutoplayStart",(function(){if(!o.autoPlayStart){var e="auto"===o.config.mode?"auto-hide":"hide";x.addClass(o.root,e),o.autoPlayStart=!0,o.onPlayPause("play")}})),o.autoPlayStart=!1,o}return r(i,[{key:"afterCreate",value:function(){var e=this,t=this.player,i=this.playerConfig;this.initIcons(),this.once(ee,(function(){i&&(i.lang&&"en"===i.lang?x.addClass(t.root,"lang-is-en"):"jp"===i.lang&&x.addClass(t.root,"lang-is-jp"))})),this.on(ie,this.onAutoplayStart),i.autoplay||this.show(),this.on(ne,(function(){var t="auto"===e.config.mode?"auto-hide":"hide";e.setAttr("data-state","play"),x.removeClass(e.root,t),e.show()})),this.on(M,(function(){e.onPlayPause("play")})),this.on(F,(function(){e.onPlayPause("pause")})),this.clickHandler=this.hook("startClick",this.switchPausePlay,{pre:function(t){t.cancelable&&t.preventDefault(),t.stopPropagation();var i=e.player.paused;e.emitUserAction(t,"switch_play_pause",{props:"paused",from:i,to:!i})}}),this.bind(["click","touchend"],this.clickHandler)}},{key:"registerIcons",value:function(){return{startPlay:{icon:Nt,class:"xg-icon-play"},startPause:{icon:Ft,class:"xg-icon-pause"}}}},{key:"initIcons",value:function(){var e=this.icons;this.appendChild("xg-start-inner",e.startPlay),this.appendChild("xg-start-inner",e.startPause)}},{key:"hide",value:function(){x.addClass(this.root,"hide")}},{key:"show",value:function(){x.removeClass(this.root,"hide")}},{key:"focusHide",value:function(){x.addClass(this.root,"focus-hide")}},{key:"recover",value:function(){x.removeClass(this.root,"focus-hide")}},{key:"switchStatus",value:function(e){e?this.setAttr("data-state",this.player.paused?"pause":"play"):this.setAttr("data-state",this.player.paused?"play":"pause")}},{key:"animate",value:function(e){var t=this;!function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{start:null,end:null};Ht[e]&&window.clearTimeout(Ht[e].id),Ht[e]={},i.start&&i.start(),Ht[e].id=window.setTimeout((function(){i.end&&i.end(),window.clearTimeout(Ht[e].id),delete Ht[e]}),t)}("pauseplay",400,{start:function(){x.addClass(t.root,"interact"),t.show(),t.switchStatus(!0)},end:function(){x.removeClass(t.root,"interact"),!e&&t.hide()}})}},{key:"switchPausePlay",value:function(e){var t=this.player;(e.cancelable&&e.preventDefault(),e.stopPropagation(),t.state<lt)||(this.player.paused||t.state!==dt?t.play():t.pause())}},{key:"onPlayPause",value:function(e){var t=this.config,i=this.player;if(!(i.state<dt)&&this.autoPlayStart){if("show"===t.mode)return this.switchStatus(),void this.show();if("auto"!==t.mode){if(t.isShowPause&&i.paused&&!i.ended||t.isShowEnd&&i.ended)return this.switchStatus(),void this.show();if(t.disableAnimate)return this.switchStatus(),void this.hide();if("play"===e)this.autoPlayStart?this.animate():this.hide();else{if(!this.autoPlayStart||i.ended)return;this.animate()}}else this.switchStatus()}}},{key:"destroy",value:function(){this.unbind(["click","touchend"],this.clickHandler),Object.keys(Ht).map((function(e){window.clearTimeout(Ht[e].id),delete Ht[e]}))}},{key:"render",value:function(){var e=this.playerConfig.autoplay?"auto"===this.config.mode?"auto-hide":"hide":"";return'\n <xg-start class="xgplayer-start '.concat(e,'">\n <xg-start-inner></xg-start-inner>\n </xg-start>')}}],[{key:"pluginName",get:function(){return"start"}},{key:"defaultConfig",get:function(){return{isShowPause:!1,isShowEnd:!1,disableAnimate:!1,mode:"hide"}}}]),i}(tt),Ut=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"render",value:function(){var e=this.config.innerHtml,t=x.createDom("xg-enter","",{},"xgplayer-enter");if(e&&e instanceof window.HTMLElement)t.appendChild(e);else if(e&&"string"==typeof e)t.innerHTML=e;else{for(var i="",n=1;n<=12;n++)i+='<div class="xgplayer-enter-bar'.concat(n,'"></div>');t.innerHTML='<div class="xgplayer-enter-spinner">'.concat(i,"</div>")}return t}}],[{key:"pluginName",get:function(){return"enter"}},{key:"defaultConfig",get:function(){return{innerHtml:"",logo:""}}}]),i}(tt),Gt=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"afterCreate",value:function(){this.getMini=this.getMini.bind(this),this.exitMini=this.exitMini.bind(this),this.bind("click",this.getMini)}},{key:"getMini",value:function(){this.config.onClick&&this.config.onClick()}},{key:"exitMini",value:function(){this.config.onClick&&this.config.onClick()}},{key:"destroy",value:function(){this.unbind(["click","touchend"],this.getMini)}},{key:"render",value:function(){var e="MINISCREEN";return'\n <xg-icon class="xgplayer-miniicon">\n <div class="xgplayer-icon btn-text"><span class="icon-text" lang-key="'.concat(this.i18nKeys[e],'">').concat(this.i18n[e],"</span></div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"miniscreenIcon"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:10}}}]),i}(tt);function Vt(e){var t=parseFloat(e);return-1===e.indexOf("%")&&!Number.isNaN(t)&&t}var Wt=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],Kt=Wt.length;function qt(e){if("string"==typeof e&&(e=document.querySelector(e)),e&&"object"===i(e)&&e.nodeType){var t=function(e){return window.getComputedStyle(e)}(e);if("none"===t.display)return function(){for(var e={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},t=0;t<Kt;t++)e[Wt[t]]=0;return e}();var n={};n.width=e.offsetWidth,n.height=e.offsetHeight;for(var o=n.isBorderBox="border-box"===t.boxSizing,r=0;r<Kt;r++){var s=Wt[r],a=t[s],l=parseFloat(a);n[s]=Number.isNaN(l)?0:l}var c=n.paddingLeft+n.paddingRight,u=n.paddingTop+n.paddingBottom,h=n.marginLeft+n.marginRight,d=n.marginTop+n.marginBottom,f=n.borderLeftWidth+n.borderRightWidth,p=n.borderTopWidth+n.borderBottomWidth,g=o,v=Vt(t.width);!1!==v&&(n.width=v+(g?0:c+f));var y=Vt(t.height);return!1!==y&&(n.height=y+(g?0:u+p)),n.innerWidth=n.width-(c+f),n.innerHeight=n.height-(u+p),n.outerWidth=n.width+h,n.outerHeight=n.height+d,n}}function zt(e,t){for(var i=0;i<e.length;i++){var n=e[i];if(n.identifier===t)return n}}var Yt="dragStart",Xt="dragMove",Zt="dragEnded",Jt={mousedown:["mousemove","mouseup"],touchstart:["touchmove","touchend","touchcancel"],pointerdown:["pointermove","pointerup","pointercancel"]},$t=function(e){a(i,e);var t=d(i);function i(e){var o,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return n(this,i),(o=t.call(this)).isEnabled=!0,o.isDragging=!1,o.isDown=!1,o.position={},o.downPoint={},o.dragPoint={x:0,y:0},o.startPos={x:0,y:0},o._root=e instanceof Element?e:document.querySelector(e),o._handlerDom=r.handle instanceof Element?r.handle:document.querySelector(r.handle),o._root&&o._handlerDom?(o._bindStartEvent(),o):h(o)}return r(i,[{key:"_bindStartEvent",value:function(){var e=this;"ontouchstart"in window?this._startKey="touchstart":this._startKey="mousedown",this["on".concat(this._startKey)]=this["on".concat(this._startKey)].bind(this),this._handlerDom.addEventListener(this._startKey,this["on".concat(this._startKey)]),Jt[this._startKey].map((function(t){e["on".concat(t)]=e["on".concat(t)].bind(e)}))}},{key:"_unbindStartEvent",value:function(){this._handlerDom.removeEventListener(this._startKey,this["on".concat(this._startKey)])}},{key:"_bindPostStartEvents",value:function(e){var t=this;if(e){var i=Jt[this._startKey];i.map((function(e){window.addEventListener(e,t["on".concat(e)])})),this._boundPointerEvents=i}}},{key:"_unbindPostStartEvents",value:function(){var e=this;this._boundPointerEvents&&(this._boundPointerEvents.map((function(t){window.removeEventListener(t,e["on".concat(t)])})),delete this._boundPointerEvents)}},{key:"enable",value:function(){this.isEnabled=!0}},{key:"disable",value:function(){this.isEnabled=!1,this.isDragging&&this.onUp()}},{key:"onDocUp",value:function(e){this.onUp()}},{key:"animate",value:function(){var e=this;this.isDragging&&(this.positionDrag(),window.requestAnimationFrame((function(){e.animate()})))}},{key:"positionDrag",value:function(){var e="translate3d(".concat(this.dragPoint.x,"px, ").concat(this.dragPoint.y,"px, 0)");this._root.style.transform=e,this._root.style.webKitTransform=e}},{key:"setLeftTop",value:function(){this._root.style.left=this.position.x+"px",this._root.style.top=this.position.y+"px"}},{key:"onmousedown",value:function(e){this.dragStart(e,e)}},{key:"onmousemove",value:function(e){this.dragMove(e,e)}},{key:"onmouseup",value:function(e){this.dragEnd(e,e)}},{key:"ontouchstart",value:function(e){var t=e.changedTouches[0];this.dragStart(e,t),this.touchIdentifier=void 0!==t.pointerId?t.pointerId:t.identifier,e.preventDefault()}},{key:"ontouchmove",value:function(e){var t=zt(e.changedTouches,this.touchIdentifier);t&&this.dragMove(e,t)}},{key:"ontouchend",value:function(e){var t=zt(e.changedTouches,this.touchIdentifier);t&&this.dragEnd(e,t),e.preventDefault()}},{key:"ontouchcancel",value:function(e){var t=zt(e.changedTouches,this.touchIdentifier);t&&this.dragCancel(e,t)}},{key:"dragStart",value:function(e,t){if(this._root&&!this.isDown&&this.isEnabled){this.downPoint=t,this.dragPoint.x=0,this.dragPoint.y=0,this._getPosition();var i=qt(this._root);this.startPos.x=this.position.x,this.startPos.y=this.position.y,this.startPos.maxY=window.innerHeight-i.height,this.startPos.maxX=window.innerWidth-i.width,this.setLeftTop(),this.isDown=!0,this._bindPostStartEvents(e)}}},{key:"dragRealStart",value:function(e,t){this.isDragging=!0,this.animate(),this.emit(Yt,this.startPos)}},{key:"dragEnd",value:function(e,t){this._root&&(this._unbindPostStartEvents(),this.isDragging&&(this._root.style.transform="",this.setLeftTop(),this.emit(Zt)),this.presetInfo())}},{key:"_dragPointerMove",value:function(e,t){var i={x:t.pageX-this.downPoint.pageX,y:t.pageY-this.downPoint.pageY};return!this.isDragging&&this.hasDragStarted(i)&&this.dragRealStart(e,t),i}},{key:"dragMove",value:function(e,t){if(e=e||window.event,this.isDown){var i=this.startPos,n=i.x,o=i.y,r=this._dragPointerMove(e,t),s=r.x,a=r.y;s=this.checkContain("x",s,n),a=this.checkContain("y",a,o),this.position.x=n+s,this.position.y=o+a,this.dragPoint.x=s,this.dragPoint.y=a,this.emit(Xt,this.position)}}},{key:"dragCancel",value:function(e,t){this.dragEnd(e,t)}},{key:"presetInfo",value:function(){this.isDragging=!1,this.startPos={x:0,y:0},this.dragPoint={x:0,y:0},this.isDown=!1}},{key:"destroy",value:function(){this._unbindStartEvent(),this._unbindPostStartEvents(),this.isDragging&&this.dragEnd(),this.removeAllListeners(),this._handlerDom=null}},{key:"hasDragStarted",value:function(e){return Math.abs(e.x)>3||Math.abs(e.y)>3}},{key:"checkContain",value:function(e,t,i){return t+i<0?0-i:"x"===e&&t+i>this.startPos.maxX?this.startPos.maxX-i:"y"===e&&t+i>this.startPos.maxY?this.startPos.maxY-i:t}},{key:"_getPosition",value:function(){var e=window.getComputedStyle(this._root),t=this._getPositionCoord(e.left,"width"),i=this._getPositionCoord(e.top,"height");this.position.x=Number.isNaN(t)?0:t,this.position.y=Number.isNaN(i)?0:i,this._addTransformPosition(e)}},{key:"_addTransformPosition",value:function(e){var t=e.transform;if(0===t.indexOf("matrix")){var i=t.split(","),n=0===t.indexOf("matrix3d")?12:4,o=parseInt(i[n],10),r=parseInt(i[n+1],10);this.position.x+=o,this.position.y+=r}}},{key:"_getPositionCoord",value:function(e,t){if(-1!==e.indexOf("%")){var i=qt(this._root.parentNode);return i?parseFloat(e)/100*i[t]:0}return parseInt(e,10)}}]),i}(m),Qt=function(e){a(i,e);var t=d(i);function i(e){var o;n(this,i),s(u(o=t.call(this,e)),"onCancelClick",(function(e){o.exitMini(),o.isClose=!0})),s(u(o),"onCenterClick",(function(e){var t=u(o).player;t.paused?t.play():t.pause()})),s(u(o),"onScroll",(function(e){if(!(!window.scrollY&&0!==window.scrollY||Math.abs(window.scrollY-o.pos.scrollY)<50)){var t=parseInt(x.getCss(o.player.root,"height"));t+=o.config.scrollTop,o.pos.scrollY=window.scrollY,window.scrollY>t+5?!o.isMini&&!o.isClose&&o.getMini():window.scrollY<=t&&(o.isMini&&o.exitMini(),o.isClose=!1)}})),o.isMini=!1,o.isClose=!1;var r=u(o).config;return o.pos={left:r.left<0?window.innerWidth-r.width-20:r.left,top:r.top<0?window.innerHeight-r.height-20:r.top,height:o.config.height,width:o.config.width,scrollY:window.scrollY||0},o.lastStyle=null,o}return r(i,[{key:"beforeCreate",value:function(e){"boolean"==typeof e.player.config.mini&&(e.config.isShowIcon=e.player.config.mini)}},{key:"afterCreate",value:function(){var e=this;this.initIcons(),this.on(F,(function(){e.setAttr("data-state","pause")})),this.on(M,(function(){e.setAttr("data-state","play")}))}},{key:"onPluginsReady",value:function(){var e=this,t=this.player;if(!this.config.disable){if(this.config.isShowIcon){var i={config:{onClick:function(){e.getMini()}}};t.controls.registerPlugin(Gt,i,Gt.pluginName)}var n=x.checkTouchSupport()?"touchend":"click";this.bind(".mini-cancel-btn",n,this.onCancelClick),this.bind(".play-icon",n,this.onCenterClick),this.config.disableDrag||(this._draggabilly=new $t(this.player.root,{handle:this.root})),this.config.isScrollSwitch&&window.addEventListener("scroll",this.onScroll)}}},{key:"registerIcons",value:function(){return{play:{icon:Nt,class:"xg-icon-play"},pause:{icon:Ft,class:"xg-icon-pause"}}}},{key:"initIcons",value:function(){var e=this.icons;this.appendChild(".play-icon",e.play),this.appendChild(".play-icon",e.pause)}},{key:"getMini",value:function(){var e=this;if(!this.isMini){var t=this.player,i=this.playerConfig,n=this.config.target||this.player.root;this.lastStyle={},x.addClass(t.root,"xgplayer-mini"),["width","height","top","left"].map((function(t){e.lastStyle[t]=n.style[t],n.style[t]="".concat(e.pos[t],"px")})),i.fluid&&(n.style["padding-top"]=""),this.emit(he,!0),t.isMini=this.isMini=!0}}},{key:"exitMini",value:function(){var e=this;if(!this.isMini)return!1;var t=this.player,i=this.playerConfig,n=this.config.target||this.player.root;x.removeClass(t.root,"xgplayer-mini"),this.lastStyle&&Object.keys(this.lastStyle).map((function(t){n.style[t]=e.lastStyle[t]})),this.lastStyle=null,i.fluid&&(t.root.style.width="100%",t.root.style.height="0",t.root.style["padding-top"]="".concat(100*i.height/i.width,"%")),this.emit(he,!1),this.isMini=t.isMini=!1}},{key:"destroy",value:function(){window.removeEventListener("scroll",this.onScroll);var e=x.checkTouchSupport()?"touchend":"click";this.unbind(".mini-cancel-btn",e,this.onCancelClick),this.unbind(".play-icon",e,this.onCenterClick),this._draggabilly&&this._draggabilly.destroy(),this._draggabilly=null,this.exitMini()}},{key:"render",value:function(){if(!this.config.disable)return'\n <xg-mini-layer class="xg-mini-layer">\n <xg-mini-header class="xgplayer-mini-header">\n <div lang-key="'.concat(this.i18nKeys.MINI_DRAG,'">').concat(this.i18n.MINI_DRAG,'</div>\n </xg-mini-header>\n <div class="mini-cancel-btn">\n <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">\n <path fill="#fff" fill-rule="evenodd" d="M3.99 3.49a1 1 0 0 1 1.414 0L10 8.085l4.596-4.595a1 1 0 1 1 1.414 1.414L11.414 9.5l4.596 4.596a1 1 0 0 1 .084 1.32l-.084.094a1 1 0 0 1-1.414 0L10 10.914 5.404 15.51a1 1 0 0 1-1.414-1.414L8.585 9.5 3.99 4.904a1 1 0 0 1-.084-1.32z"></path>\n </svg>\n </div>\n <div class="play-icon">\n </div>\n </xg-mini-layer>')}}],[{key:"pluginName",get:function(){return"miniscreen"}},{key:"defaultConfig",get:function(){return{index:10,disable:!1,width:320,height:180,left:-1,top:-1,isShowIcon:!1,isScrollSwitch:!1,scrollTop:0,disableDrag:!1}}}]),i}(tt),ei={mouseenter:"onMouseEnter",mouseleave:"onMouseLeave",mousemove:"onMouseMove"},ti=["videoClick","videoDbClick"],ii=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"onMouseMove",(function(t){var i=u(e),n=i.player,o=i.playerConfig;n.isActive||(n.focus({autoHide:!o.closeDelayBlur}),!o.closeFocusVideoFocus&&n.video.focus())})),s(u(e),"onMouseEnter",(function(t){var i=u(e),n=i.playerConfig,o=i.player;!n.closeFocusVideoFocus&&o.video.focus(),n.closeDelayBlur?o.focus({autoHide:!1}):o.focus()})),s(u(e),"onMouseLeave",(function(t){var i=e.playerConfig,n=i.closePlayerBlur,o=i.leavePlayerTime,r=i.closeDelayBlur;n||r||(o?e.player.focus({autoHide:!0,delay:o}):e.player.blur())})),s(u(e),"onVideoClick",(function(t){var i=u(e),n=i.player,o=i.playerConfig;t.target&&o.closeVideoClick||t.target!==n.video&&t.target!==n.innerContainer&&t.target!==n.video.__canvas||(t.preventDefault(),o.closeVideoStopPropagation||t.stopPropagation(),e._clickCount++,e.clickTimer&&(clearTimeout(e.clickTimer),e.clickTimer=null),e.clickTimer=setTimeout((function(){e._clickCount&&(e._clickCount--,Ge(u(e),ti[0],(function(t,i){e.switchPlayPause(i.e)}),{e:t,paused:n.paused}),clearTimeout(e.clickTimer),e.clickTimer=null)}),300))})),s(u(e),"onVideoDblClick",(function(t){var i=u(e),n=i.player,o=i.playerConfig;!t.target||t.target!==n.video&&t.target!==n.video.__canvas||(e._clickCount<2?e._clickCount=0:(e._clickCount=0,e.clickTimer&&(clearTimeout(e.clickTimer),e.clickTimer=null),t.preventDefault(),t.stopPropagation(),o.closeVideoDblclick||Ge(u(e),ti[1],(function(t,i){e.emitUserAction(i.e,"switch_fullscreen",{props:"fullscreen",from:n.fullscreen,to:!n.fullscreen}),n.fullscreen?n.exitFullscreen():n.getFullscreen()}),{e:t,fullscreen:n.fullscreen})))})),e}return r(i,[{key:"afterCreate",value:function(){var e=this;this._clickCount=0,ti.map((function(t){e.__hooks[t]=null}));var t=this.playerConfig,i=t.enableContextmenu;"mobile"===t.isMobileSimulateMode||"mobile"===I.device&&!I.os.isIpad||(this.config.disableContextmenu=!i,this.initEvents())}},{key:"initEvents",value:function(){var e=this,t=this.player,i=t.video,n=t.root;i&&i.addEventListener("click",this.onVideoClick,!1),i&&i.addEventListener("dblclick",this.onVideoDblClick,!1),Object.keys(ei).map((function(t){n.addEventListener(t,e[ei[t]],!1)})),this.config.disableContextmenu&&i&&i.addEventListener("contextmenu",this.onContextmenu,!1)}},{key:"switchPlayPause",value:function(e){var t=this.player;this.emitUserAction(e,"switch_play_pause",{props:"paused",from:t.paused,to:!t.paused}),t.ended?t.duration!==1/0&&t.duration>0&&t.replay():t.paused?t.play():t.pause()}},{key:"onContextmenu",value:function(e){(e=e||window.event).preventDefault&&e.preventDefault(),e.stopPropagation?e.stopPropagation():(e.returnValue=!1,e.cancelBubble=!0)}},{key:"destroy",value:function(){var e=this,t=this.player,i=t.video,n=t.root;this.clickTimer&&clearTimeout(this.clickTimer),i.removeEventListener("click",this.onVideoClick,!1),i.removeEventListener("dblclick",this.onVideoDblClick,!1),i.removeEventListener("contextmenu",this.onContextmenu,!1),Object.keys(ei).map((function(t){n.removeEventListener(t,e[ei[t]],!1)}))}}],[{key:"pluginName",get:function(){return"pc"}},{key:"defaultConfig",get:function(){return{disableContextmenu:!0}}}]),i}(We),ni="press",oi="pressend",ri="doubleclick",si="click",ai="touchmove",li="touchstart",ci="touchend",ui={start:"touchstart",end:"touchend",move:"touchmove",cancel:"touchcancel"},hi={start:"mousedown",end:"mouseup",move:"mousemove",cancel:"mouseleave"};function di(e){return e&&e.length>0?e[e.length-1]:null}function fi(e){var t=navigator.userAgent;/(?:iPhone|iPad)/.test(t)&&e.cancelable&&e.preventDefault()}var pi=function(){function e(t){var i=this,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{eventType:"touch"};n(this,e),this._pos={moving:!1,start:!1,x:0,y:0},this.config={pressDelay:600,dbClickDelay:200,disablePress:!1,disableDbClick:!1,miniStep:2,needPreventDefault:!0},Object.keys(o).map((function(e){i.config[e]=o[e]})),this.root=t,this.events="mouse"===o.eventType?hi:ui,this.pressIntrvalId=null,this.dbIntrvalId=null,this.__handlers={},this._initEvent()}return r(e,[{key:"_initEvent",value:function(){this.onTouchStart=this.onTouchStart.bind(this),this.onTouchMove=this.onTouchMove.bind(this),this.onTouchEnd=this.onTouchEnd.bind(this),this.onTouchCancel=this.onTouchCancel.bind(this),this.root.addEventListener(this.events.start,this.onTouchStart)}},{key:"__setPress",value:function(e){var t=this,i=this.config;this.pressIntrvalId&&this.__clearPress(),this.pressIntrvalId=setTimeout((function(){t.trigger(ni,e),t._pos.press=!0,t.__clearPress()}),i.pressDelay)}},{key:"__clearPress",value:function(){window.clearTimeout(this.pressIntrvalId),this.pressIntrvalId=null}},{key:"__setDb",value:function(e){var t=this,i=this.config;if(this.dbIntrvalId)return this.__clearDb(),void this.trigger(ri,e);this.dbIntrvalId=setTimeout((function(){t.__clearDb(),t._pos.start||t._pos.press||t._pos.moving||t.trigger(si,e)}),i.dbClickDelay)}},{key:"__clearDb",value:function(){clearTimeout(this.dbIntrvalId),this.dbIntrvalId=null}},{key:"on",value:function(e,t){this.__handlers[e]||(this.__handlers[e]=[]),this.__handlers[e].push(t)}},{key:"off",value:function(e,t){if(this.__handlers[e]){for(var i=this.__handlers[e],n=-1,o=0;o<i.length;o++)if(i[o]===t){n=o;break}n>=0&&this.__handlers[e].splice(n,1)}}},{key:"trigger",value:function(e,t){this.__handlers[e]&&this.__handlers[e].map((function(i){try{i(t)}catch(n){console.error("trigger>>:".concat(e),n)}}))}},{key:"onTouchStart",value:function(e){var t=this._pos,i=this.root;this.config.needPreventDefault&&fi(e);var n=di(e.touches);t.x=n?parseInt(n.pageX,10):e.pageX,t.y=n?parseInt(n.pageX,10):e.pageX,t.start=!0,this.__setPress(e),i.addEventListener(this.events.end,this.onTouchEnd),i.addEventListener(this.events.cancel,this.onTouchCancel),i.addEventListener(this.events.move,this.onTouchMove),this.trigger(li,e)}},{key:"onTouchCancel",value:function(e){this.onTouchEnd(e)}},{key:"onTouchEnd",value:function(e){var t=this._pos,i=this.root;this.config.needPreventDefault&&fi(e),this.__clearPress(),i.removeEventListener(this.events.cancel,this.onTouchCancel),i.removeEventListener(this.events.end,this.onTouchEnd),i.removeEventListener(this.events.move,this.onTouchMove),e.moving=t.moving,e.press=t.press,t.press&&this.trigger(oi,e),this.trigger(ci,e),!t.press&&!t.moving&&this.__setDb(e),t.press=!1,t.start=!1,t.moving=!1}},{key:"onTouchMove",value:function(e){var t=this._pos,i=this.config,n=di(e.touches),o=n?parseInt(n.pageX,10):e.pageX,r=n?parseInt(n.pageY,10):e.pageX,s=o-t.x,a=r-t.y;Math.abs(a)<i.miniStep&&Math.abs(s)<i.miniStep||(this.__clearPress(),t.press&&this.trigger(oi,e),t.press=!1,t.moving=!0,this.trigger(ai,e))}},{key:"destroy",value:function(){var e=this,t={touchend:"onTouchEnd",touchmove:"onTouchMove",touchstart:"onTouchStart"};Object.keys(t).map((function(i){e.root.removeEventListener("touchend",e[t[i]])}))}}]),e}();function gi(){return(new DOMParser).parseFromString('<svg width="20" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg"\n xmlns:xlink="http://www.w3.org/1999/xlink">\n <path opacity="0.54"\n d="M7.5 3.63397C8.16667 4.01887 8.16667 4.98113 7.5 5.36603L1.5 8.83013C0.833334 9.21503 0 8.7339 0 7.9641L0 1.0359C0 0.266098 0.833333 -0.215027 1.5 0.169873L7.5 3.63397Z"\n fill="white" />\n <path transform="translate(5 0)" d="M7.5 3.63397C8.16667 4.01887 8.16667 4.98113 7.5 5.36603L1.5 8.83013C0.833334 9.21503 0 8.7339 0 7.9641L0 1.0359C0 0.266098 0.833333 -0.215027 1.5 0.169873L7.5 3.63397Z" fill="white"/>\n</svg>',"image/svg+xml").firstChild}var vi="auto",yi="seeking",mi="playbackrate",ki=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),s(u(o=t.call(this,e)),"onTouchStart",(function(e){var t=u(o),i=t.player,n=t.config,r=t.pos,s=t.playerConfig,a=o.getTouche(e);if(a&&!n.disableGesture&&o.duration>0&&!i.ended){r.isStart=!0,x.checkIsFunction(s.disableSwipeHandler)&&s.disableSwipeHandler(),o.find(".xg-dur").innerHTML=x.format(o.duration);var l=o.root.getBoundingClientRect();90===i.rotateDeg?(r.top=l.left,r.left=l.top,r.width=l.height,r.height=l.width):(r.top=l.top,r.left=l.left,r.width=l.width,r.height=l.height);var c=parseInt(a.pageX-r.left,10),h=parseInt(a.pageY-r.top,10);r.x=90===i.rotateDeg?h:c,r.y=90===i.rotateDeg?c:h,r.scopeL=n.scopeL*r.width,r.scopeR=(1-n.scopeR)*r.width,r.scopeM1=r.width*(1-n.scopeM)/2,r.scopeM2=r.width-r.scopeM1}})),s(u(o),"onTouchMove",(function(e){var t=o.getTouche(e),i=u(o),n=i.pos,r=i.config,s=i.player;if(t&&!r.disableGesture&&o.duration&&n.isStart){var a=r.miniMoveStep,l=r.hideControlsActive,c=parseInt(t.pageX-n.left,10),h=parseInt(t.pageY-n.top,10),d=90===s.rotateDeg?h:c,f=90===s.rotateDeg?c:h;if(Math.abs(d-n.x)>a||Math.abs(f-n.y)>a){var p=d-n.x,g=f-n.y,v=n.scope;if(-1===v&&(0===(v=o.checkScope(d,f,p,g,n))&&(l?s.blur():s.focus({autoHide:!1}),!n.time&&(n.time=parseInt(1e3*s.currentTime,10)+1e3*o.timeOffset)),n.scope=v),-1===v||v>0&&!r.gestureY||0===v&&!r.gestureX)return;e.cancelable&&e.preventDefault(),o.executeMove(p,g,v,n.width,n.height),n.x=d,n.y=f}}})),s(u(o),"onTouchEnd",(function(e){var t=u(o),i=t.player,n=t.pos,r=t.playerConfig;n.isStart&&(n.scope>-1&&e.cancelable&&e.preventDefault(),o.endLastMove(n.scope),setTimeout((function(){i.getPlugin("progress")&&i.getPlugin("progress").resetSeekState()}),10),n.scope=-1,o.resetPos(),x.checkIsFunction(r.enableSwipeHandler)&&r.enableSwipeHandler(),o.changeAction(vi))})),s(u(o),"onRootTouchMove",(function(e){!o.config.disableGesture&&o.config.gestureX&&o.checkIsRootTarget(e)&&(e.stopPropagation(),o.pos.isStart?o.onTouchMove(e):o.onTouchStart(e))})),s(u(o),"onRootTouchEnd",(function(e){o.pos.isStart&&o.checkIsRootTarget(e)&&(e.stopPropagation(),o.onTouchEnd(e))})),o.pos={isStart:!1,x:0,y:0,time:0,volume:0,rate:1,light:0,width:0,height:0,scopeL:0,scopeR:0,scopeM1:0,scopeM2:0,scope:-1},o.timer=null,o}return r(i,[{key:"duration",get:function(){return this.playerConfig.customDuration||this.player.duration}},{key:"timeOffset",get:function(){return this.playerConfig.timeOffset||0}},{key:"registerIcons",value:function(){return{seekTipIcon:{icon:gi,class:"xg-seek-pre"}}}},{key:"afterCreate",value:function(){var e=this,t=this.playerConfig,i=this.config,n=this.player;!0===t.closeVideoDblclick&&(i.closedbClick=!0),this.resetPos(),x.isUndefined(t.disableGesture)||(i.disableGesture=!!t.disableGesture),this.appendChild(".xg-seek-icon",this.icons.seekTipIcon),this.xgMask=x.createDom("xg-mask","",{},"xgmask"),n.root.appendChild(this.xgMask),this.initCustomStyle(),this.registerThumbnail();var o=this.domEventType;this.touch=new pi(this.root,{eventType:o,needPreventDefault:!this.config.disableGesture}),this.root.addEventListener("contextmenu",(function(e){e.preventDefault()})),n.root.addEventListener("touchmove",this.onRootTouchMove,!0),n.root.addEventListener("touchend",this.onRootTouchEnd,!0),this.on(K,(function(){var t=e.player,i=e.config;1e3*t.duration<i.moveDuration&&(i.moveDuration=1e3*t.duration)})),this.on([W,N],(function(){var t=e.pos,i=t.time;!t.isStart&&i>0&&(e.pos.time=0)}));var r={touchstart:"onTouchStart",touchmove:"onTouchMove",touchend:"onTouchEnd",press:"onPress",pressend:"onPressEnd",click:"onClick",doubleclick:"onDbClick"};if(Object.keys(r).map((function(t){e.touch.on(t,(function(i){e[r[t]](i)}))})),!i.disableActive){var s=n.plugins.progress;s&&(s.addCallBack("dragmove",(function(t){e.activeSeekNote(t.currentTime,t.forward)})),s.addCallBack("dragend",(function(){e.changeAction(vi)})))}}},{key:"registerThumbnail",value:function(){var e=this.player.plugins.thumbnail;if(e&&e.usable){this.thumbnail=e.createThumbnail(null,"mobile-thumbnail");var t=this.find(".time-preview");t.insertBefore(this.thumbnail,t.children[0])}}},{key:"initCustomStyle",value:function(){var e=(this.playerConfig||{}).commonStyle,t=e.playedColor,i=e.progressColor;t&&(this.find(".xg-curbar").style.backgroundColor=t,this.find(".xg-cur").style.color=t),i&&(this.find(".xg-bar").style.backgroundColor=i,this.find(".time-preview").style.color=i),this.config.disableTimeProgress&&x.addClass(this.find(".xg-timebar"),"hide")}},{key:"resetPos",value:function(){var e=this;this.pos?(this.pos.isStart=!1,this.pos.scope=-1,["x","y","width","height","scopeL","scopeR","scopeM1","scopeM2"].map((function(t){e.pos[t]=0}))):this.pos={isStart:!1,x:0,y:0,volume:0,rate:1,light:0,width:0,height:0,scopeL:0,scopeR:0,scopeM1:0,scopeM2:0,scope:-1,time:0}}},{key:"changeAction",value:function(e){var t=this.player;this.root.setAttribute("data-xg-action",e);var i=t.plugins.start;i&&i.recover()}},{key:"getTouche",value:function(e){this.player.rotateDeg;var t=e.touches&&e.touches.length>0?e.touches[e.touches.length-1]:e;return{pageX:t.pageX,pageY:t.pageY}}},{key:"checkScope",value:function(e,t,i,n,o){var r=o.width,s=-1;if(e<0||e>r)return s;var a=0===n?Math.abs(i):Math.abs(i/n);return Math.abs(i)>0&&a>=1.73&&e>o.scopeM1&&e<o.scopeM2?s=0:(0===Math.abs(i)||a<=.57)&&(s=e<o.scopeL?1:e>o.scopeR?2:3),s}},{key:"executeMove",value:function(e,t,i,n,o){switch(i){case 0:this.updateTime(e/n*this.config.scopeM);break;case 1:this.updateBrightness(t/o);break;case 2:I.os.isIos||this.updateVolume(t/o)}}},{key:"endLastMove",value:function(e){var t=this,i=this.pos,n=this.player,o=this.config,r=(i.time-this.timeOffset)/1e3;if(0===e)n.seek(Number(r).toFixed(1)),o.hideControlsEnd?n.blur():n.focus(),this.timer=setTimeout((function(){t.pos.time=0}),500);this.changeAction(vi)}},{key:"checkIsRootTarget",value:function(e){var t=this.player.plugins||{};return(!t.progress||!t.progress.root.contains(e.target))&&(t.start&&t.start.root.contains(e.target)||t.controls&&t.controls.root.contains(e.target))}},{key:"sendUseAction",value:function(e){var t=this.player.paused;this.emitUserAction(e,"switch_play_pause",{prop:"paused",from:t,to:!t})}},{key:"onClick",value:function(e){var t=this.player,i=this.config,n=this.playerConfig;t.state<dt?n.closeVideoClick||(this.sendUseAction(new Event("click")),t.play()):!i.closedbClick||n.closeVideoClick?t.isActive?t.blur():t.focus():n.closeVideoClick||((t.isActive||i.focusVideoClick)&&(this.emitUserAction("click","switch_play_pause"),this.switchPlayPause()),t.focus())}},{key:"onDbClick",value:function(e){var t=this.config,i=this.player;!t.closedbClick&&i.state>=dt&&(this.sendUseAction(new Event("dblclick")),this.switchPlayPause())}},{key:"onPress",value:function(e){var t=this.pos,i=this.config,n=this.player;i.disablePress||(t.rate=this.player.playbackRate,this.emitUserAction("press","change_rate",{prop:"playbackRate",from:n.playbackRate,to:i.pressRate}),n.playbackRate=i.pressRate,this.changeAction(mi))}},{key:"onPressEnd",value:function(e){var t=this.pos,i=this.config,n=this.player;i.disablePress||(this.emitUserAction("pressend","change_rate",{prop:"playbackRate",from:n.playbackRate,to:t.rate}),n.playbackRate=t.rate,t.rate=1,this.changeAction(vi))}},{key:"updateTime",value:function(e){var t=this.player,i=this.config,n=this.player.duration;e=Number(e.toFixed(4));var o=parseInt(e*i.moveDuration,10)+this.timeOffset;o=(o+=this.pos.time)<0?0:o>1e3*n?1e3*n-200:o,t.getPlugin("time")&&t.getPlugin("time").updateTime(o/1e3),t.getPlugin("progress")&&t.getPlugin("progress").updatePercent(o/1e3/this.duration,!0),this.activeSeekNote(o/1e3,e>0),i.isTouchingSeek&&t.seek(Number((o-this.timeOffset)/1e3).toFixed(1)),this.pos.time=o}},{key:"updateVolume",value:function(e){this.player.rotateDeg&&(e=-e);var t=this.player,i=this.pos;if(e=parseInt(100*e,10),i.volume+=e,!(Math.abs(i.volume)<10)){var n=parseInt(10*t.volume,10)-parseInt(i.volume/10,10);n=n>10?10:n<1?0:n,t.volume=n/10,i.volume=0}}},{key:"updateBrightness",value:function(e){this.player.rotateDeg&&(e=-e);var t=this.pos,i=this.config,n=this.xgMask,o=t.light+.8*e;o=o>i.maxDarkness?i.maxDarkness:o<0?0:o,n&&(n.style.backgroundColor="rgba(0,0,0,".concat(o,")")),t.light=o}},{key:"activeSeekNote",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=this.player,n=this.config,o=!(this.duration!==1/0&&this.duration>0);if(e&&"number"==typeof e&&!o&&!n.disableActive){e<0?e=0:e>i.duration&&(e=i.duration-.2),this.changeAction(yi);var r=i.plugins.start;r&&r.focusHide(),this.find(".xg-dur").innerHTML=x.format(this.duration),this.find(".xg-cur").innerHTML=x.format(e),this.find(".xg-curbar").style.width="".concat(e/this.duration*100,"%"),t?x.removeClass(this.find(".xg-seek-show"),"xg-back"):x.addClass(this.find(".xg-seek-show"),"xg-back"),this.updateThumbnails(e)}}},{key:"updateThumbnails",value:function(e){var t=this.player.plugins.thumbnail;t&&t.usable&&this.thumbnail&&t.update(this.thumbnail,e,160,90)}},{key:"switchPlayPause",value:function(){var e=this.player;if(e.state<ut)return!1;e.ended||(e.paused?e.play():e.pause())}},{key:"disableGesture",value:function(){this.config.disableGesture=!1}},{key:"enableGesture",value:function(){this.config.disableGesture=!0}},{key:"destroy",value:function(){var e=this.player;this.timer&&clearTimeout(this.timer),this.thumbnail=null,e.root.removeChild(this.xgMask),this.xgMask=null,this.touch&&this.touch.destroy(),this.touch=null,e.root.removeEventListener("touchmove",this.onRootTouchMove,!0),e.root.removeEventListener("touchend",this.onRootTouchEnd,!0)}},{key:"render",value:function(){var e="normal"!==this.config.gradient?"gradient ".concat(this.config.gradient):"gradient";return'\n <xg-trigger class="trigger">\n <div class="'.concat(e,'"></div>\n <div class="time-preview">\n <div class="xg-seek-show ').concat(this.config.disableSeekIcon?" hide-seek-icon":"",'">\n <i class="xg-seek-icon"></i>\n <span class="xg-cur">00:00</span>\n <span>/</span>\n <span class="xg-dur">00:00</span>\n </div>\n <div class="xg-bar xg-timebar">\n <div class="xg-curbar"></div>\n </div>\n </div>\n <div class="xg-playbackrate xg-top-note">\n <span><i>').concat(this.config.pressRate,"X</i>").concat(this.i18n.FORWARD,"</span>\n </div>\n </xg-trigger>\n ")}}],[{key:"pluginName",get:function(){return"mobile"}},{key:"defaultConfig",get:function(){return{index:0,disableGesture:!1,gestureX:!0,gestureY:!0,gradient:"normal",isTouchingSeek:!1,miniMoveStep:5,miniYPer:5,scopeL:.25,scopeR:.25,scopeM:.9,pressRate:2,darkness:!0,maxDarkness:.8,disableActive:!1,disableTimeProgress:!1,hideControlsActive:!1,hideControlsEnd:!1,moveDuration:36e4,closedbClick:!1,disablePress:!0,disableSeekIcon:!1,focusVideoClick:!1}}}]),i}(tt);function bi(e){e.preventDefault(),e.returnValue=!1}function Ci(e){var t=e.tagName;return!("INPUT"!==t&&"TEXTAREA"!==t&&!e.isContentEditable)}var wi=function(e){a(o,e);var i=d(o);function o(){var e;n(this,o);for(var t=arguments.length,r=new Array(t),a=0;a<t;a++)r[a]=arguments[a];return s(u(e=i.call.apply(i,[this].concat(r))),"onBodyKeyDown",(function(t){var i=t||window.event;if(e.player&&(e.player.isUserActive||e.config.isIgnoreUserActive)&&!(e.config.disable||e.config.disableBodyTrigger||!e.checkIsVisible()||i.metaKey||i.altKey||i.ctrlKey)){var n=i.keyCode;return!(i.target!==document.body&&(!e.config.isGlobalTrigger||Ci(i.target))||!e.checkCode(n,!0))&&(bi(i),e.handleKeyCode(n,t),!1)}})),s(u(e),"onKeydown",(function(t){var i=t||window.event;if(!(e.config.disable||e.config.disableRootTrigger||i.metaKey||i.altKey||i.ctrlKey)&&(e.player.isUserActive||e.config.isIgnoreUserActive)&&(e.player.isUserActive||e.config.isIgnoreUserActive)){if(!i||37!==i.keyCode&&!e.checkCode(i.keyCode)||i.target!==e.player.root&&i.target!==e.player.video&&i.target!==e.player.controls.el)return!0;bi(i),e.handleKeyCode(i.keyCode,t)}})),e}return r(o,[{key:"mergekeyCodeMap",value:function(){var e=this,t=this.config.keyCodeMap;t&&Object.keys(t).map((function(i){e.keyCodeMap[i]?["keyCode","action","disable","isBodyTarget"].map((function(n){t[i][n]&&(e.keyCodeMap[i][n]=t[i][n])})):e.keyCodeMap[i]=t[i]}))}},{key:"afterCreate",value:function(){this.config.disable=!this.playerConfig.keyShortcut;var e="function"==typeof this.config.seekStep?this.config.seekStep(this.player):this.config.seekStep;e&&"number"==typeof e&&(this.seekStep=e),this.keyCodeMap={space:{keyCode:32,action:"playPause",disable:!1,noBodyTarget:!1},up:{keyCode:38,action:"upVolume",disable:!1,noBodyTarget:!0},down:{keyCode:40,action:"downVolume",disable:!1,noBodyTarget:!0},left:{keyCode:37,action:"seekBack",disable:!1},right:{keyCode:39,action:"seek",disable:!1},esc:{keyCode:27,action:"exitFullscreen",disable:!1}},this.mergekeyCodeMap(),this.player.root.addEventListener("keydown",this.onKeydown),document.addEventListener("keydown",this.onBodyKeyDown)}},{key:"checkIsVisible",value:function(){if(!this.config.checkVisible)return!0;var e=this.player.root.getBoundingClientRect(),t=e.height,i=e.top,n=e.bottom,o=window.innerHeight;return!(i<0&&i<0-.9*t||n>0&&n-o>.9*t)}},{key:"checkCode",value:function(e,t){var i=this,n=!1;return Object.keys(this.keyCodeMap).map((function(o){i.keyCodeMap[o]&&e===i.keyCodeMap[o].keyCode&&!i.keyCodeMap[o].disable&&(n=!t||t&&!i.keyCodeMap[o].noBodyTarget)})),n}},{key:"downVolume",value:function(e){var t=this.player,i=parseFloat((t.volume-.1).toFixed(1)),n={volume:{from:t.volume,to:i}};this.emitUserAction(e,"change_volume",{props:n}),t.volume=i>=0?i:0}},{key:"upVolume",value:function(e){var t=this.player,i=parseFloat((t.volume+.1).toFixed(1)),n={volume:{from:t.volume,to:i}};this.emitUserAction(e,"change_volume",{props:n}),t.volume=i<=1?i:1}},{key:"seek",value:function(e){var t=this.player,i=t.currentTime,n=t.duration,o=i,r={currentTime:{from:i,to:o=i+this.seekStep<=n?i+this.seekStep:n-1}};this.emitUserAction(e,"seek",{props:r}),this.player.currentTime=o}},{key:"seekBack",value:function(e){var t=this.player.currentTime,i=0;t-this.seekStep>=0&&(i=t-this.seekStep);var n={currentTime:{from:t,to:i}};this.emitUserAction(e,"seek",{props:n}),this.player.currentTime=i}},{key:"playPause",value:function(e){var t=this.player;t&&(this.emitUserAction(e,"switch_play_pause"),t.paused?t.play():t.pause())}},{key:"exitFullscreen",value:function(e){var t=this.player,i=t.fullscreen,n=t.cssfullscreen;i&&(this.emitUserAction("keyup","switch_fullscreen",{prop:"fullscreen",from:i,to:!i}),t.exitFullscreen()),n&&(this.emitUserAction("keyup","switch_css_fullscreen",{prop:"cssfullscreen",from:n,to:!n}),t.exitCssFullscreen())}},{key:"handleKeyCode",value:function(e,i){var n=this;Object.keys(this.keyCodeMap).map((function(o){var r=n.keyCodeMap[o],s=r.action,a=r.keyCode,l=r.disable;a!==e||l||("function"==typeof s?s(i,n.player):"string"==typeof s&&"function"==typeof n[s]&&n[s](i,n.player),n.emit(ke,t({key:o,target:i.target},n.keyCodeMap[o])))}))}},{key:"destroy",value:function(){this.player.root.removeEventListener("keydown",this.onKeydown),document.removeEventListener("keydown",this.onBodyKeyDown)}},{key:"disable",value:function(){this.config.disable=!0}},{key:"enable",value:function(){this.config.disable=!1}}],[{key:"pluginName",get:function(){return"keyboard"}},{key:"defaultConfig",get:function(){return{seekStep:10,checkVisible:!0,disableBodyTrigger:!1,disableRootTrigger:!1,isGlobalTrigger:!1,keyCodeMap:{},disable:!1,isIgnoreUserActive:!1}}}]),o}(We);function _i(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-5 -5 110 110">\n <path d="M100,50A50,50,0,1,1,50,0" stroke-width="5" stroke="#ddd" stroke-dasharray="236" fill="none"></path>\n</svg>\n',"image/svg+xml").firstChild}var xi=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"registerIcons",value:function(){return{loadingIcon:_i}}},{key:"afterCreate",value:function(){this.appendChild("xg-loading-inner",this.icons.loadingIcon)}},{key:"render",value:function(){return'\n <xg-loading class="xgplayer-loading">\n <xg-loading-inner></xg-loading-inner>\n </xg-loading>'}}],[{key:"pluginName",get:function(){return"loading"}},{key:"defaultConfig",get:function(){return{position:Je.ROOT}}}]),i}(tt),Ti=[{tag:"xg-cache",className:"xgplayer-progress-cache",styleKey:"cachedColor"},{tag:"xg-played",className:"xgplayer-progress-played",styleKey:"playedColor"}],Ei=function(){function e(t){n(this,e),this.fragments=t.fragments||[],this.focusClass="inner-focus",this.style=t.style||{playedColor:"",cachedColor:"",progressColor:""},this.duration=0,this.cachedIndex=0,this.playedIndex=0}return r(e,[{key:"updateDuration",value:function(e){var t=this;this.duration=parseInt(1e3*e);var i=0,n=this.fragments;this.fragments=n.map((function(e){return e.start=i,e.end=i+e.percent*t.duration,e.duration=e.percent*t.duration,i+=e.percent*t.duration,e}))}},{key:"updateProgress",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"played",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{newIndex:0,curIndex:0,millisecond:0},i=this.progressList,n=this.fragments,o=t.newIndex,r=t.curIndex,s=t.millisecond;o!==r&&i.map((function(t,i){i<o?t[e].style.width="100%":i>o&&(t[e].style.width=0)}));var a=n[o],l=0===s?0:(s-a.start)/a.duration;i[o][e].style.width=l<0?0:"".concat(100*l,"%")}},{key:"update",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{cached:0,played:0},t=arguments.length>1?arguments[1]:void 0;if(!this.duration||parseInt(1e3*t,10)!==this.duration){if(!t&&0!==t)return;this.updateDuration(t)}var i=this.playedIndex,n=this.cachedIndex;if("Undefined"!==x.typeOf(e.played)){var o=this.findIndex(1e3*e.played,i);this.updateProgress("played",{newIndex:o,curIndex:i,millisecond:parseInt(1e3*e.played,10)}),this.playedIndex=o}if("Undefined"!==x.typeOf(e.cached)){var r=this.findIndex(1e3*e.cached,n);this.updateProgress("cached",{newIndex:r,curIndex:n,millisecond:parseInt(1e3*e.cached,10)}),this.cachedIndex=r}}},{key:"findIndex",value:function(e,t){var i=this.fragments;return 1===i.length?0:(e>i[t].start&&e<i[t].end||this.fragments.map((function(i,n){e>i.start&&e<=i.end&&(t=n)})),t)}},{key:"findHightLight",value:function(){for(var e=this.root.children,t=0;t<e.length;t++)if(x.hasClass(e[t],this.focusClass))return{dom:e[t],pos:e[t].getBoundingClientRect()}}},{key:"findFragment",value:function(e){var t=this.root.children;return e<0||e>=t.length?null:{dom:t[e],pos:t[e].getBoundingClientRect()}}},{key:"unHightLight",value:function(){for(var e=this.root.children,t=0;t<e.length;t++)x.removeClass(e[t],this.focusClass)}},{key:"setHightLight",value:function(e){var t=this.root.children;if(e<t.length)return x.addClass(t[e],this.focusClass),{dom:t[e],pos:t[e].getBoundingClientRect()}}},{key:"destroy",value:function(){this.progressList=null,this.fragments=null,this.root.innerHTML=""}},{key:"render",value:function(){var e=this,t=this.style.progressColor;return this.root=x.createDom("xg-inners","",{},"progress-list"),this.fragments&&(this.progressList=this.fragments.map((function(i){var n=x.createDom("xg-inner","",{style:t?"background:".concat(t,"; flex: ").concat(i.percent):"flex: ".concat(i.percent)},"".concat(i.isFocus?"inner-focus":""," xgplayer-progress-inner"));return e.root.appendChild(n),Ti.map((function(t){n.appendChild(x.createDom(t.tag,"",{style:t.styleKey?"background: ".concat(e.style[t.styleKey],"; width:0;"):"width:0;"},t.className))})),{cached:n.children[0],played:n.children[1]}}))),this.root}}]),e}(),Si=function(e){a(o,e);var t=d(o);function o(e){var i;return n(this,o),s(u(i=t.call(this,e)),"onMoveOnly",(function(e){var t=u(i),n=t.pos,o=t.config,r=t.player;x.event(e);var s=x.getEventPos(e,r.zoom),a=90===r.rotateDeg?s.clientY:s.clientX;if(!(n.moving&&Math.abs(n.x-a)<o.miniMoveStep)){n.moving=!0,n.x=a;var l=i.computeTime(e);i.triggerCallbacks("dragmove",l,e)}})),s(u(i),"onBodyClick",(function(e){e.preventDefault(),e.stopPropagation()})),s(u(i),"_mouseDownHandler",(function(e,t){i._state.time=t.currentTime,i.updateWidth(t.currentTime,t.percent,0)})),s(u(i),"_mouseUpHandler",(function(e,t){u(i).pos.moving&&i.updateWidth(t.currentTime,t.percent,2)})),s(u(i),"_mouseMoveHandler",(function(e,t){var n=u(i),o=n._state,r=n.pos,s=n.config,a=n.player;o.time<t.currentTime?t.forward=!0:t.forward=!1,o.time=t.currentTime,r.isDown&&!r.moving&&(r.moving=!0,s.isPauseMoving&&a.pause(),i.triggerCallbacks("dragstart",t,e)),i.updateWidth(t.currentTime,t.percent,1),i.triggerCallbacks("dragmove",t,e)})),s(u(i),"onMouseDown",(function(e){var t=u(i),n=t.player,o=t.pos,r=t.config,s=t.playerConfig,a=x.getEventPos(e,n.zoom),l=90===n.rotateDeg?a.clientY:a.clientX;if(!(n.isMini||r.closeMoveSeek||!s.allowSeekAfterEnded&&n.ended)){e.stopPropagation(),i.focus(),x.checkIsFunction(s.disableSwipeHandler)&&s.disableSwipeHandler(),x.checkIsFunction(r.onMoveStart)&&r.onMoveStart(),x.event(e),o.x=l,o.isDown=!0,o.moving=!1,n.focus({autoHide:!1}),i.isProgressMoving=!0,x.addClass(i.progressBtn,"active");var c=i.computeTime(e);return i._mouseDownHandlerHook(e,c),"touch"===i.domEventType?(i.root.addEventListener("touchmove",i.onMouseMove),i.root.addEventListener("touchend",i.onMouseUp)):(i.unbind("mousemove",i.onMoveOnly),document.addEventListener("mousemove",i.onMouseMove,!1),document.addEventListener("mouseup",i.onMouseUp,!1),n.root.addEventListener("click",i.onBodyClick,!1)),!0}})),s(u(i),"onMouseUp",(function(e){var t=u(i),n=t.player,o=t.config,r=t.pos,s=t.playerConfig,a=t._state;e.stopPropagation(),e.preventDefault(),x.checkIsFunction(s.enableSwipeHandler)&&s.enableSwipeHandler(),x.checkIsFunction(o.onMoveEnd)&&o.onMoveEnd(),x.event(e),x.removeClass(i.progressBtn,"active");var l=i.computeTime(e);r.moving?i.triggerCallbacks("dragend",l,e):i.triggerCallbacks("click",l,e),i._mouseUpHandlerHook(e,l),r.moving=!1,r.isDown=!1,r.x=0,r.y=0,a.time=0,"touch"===i.domEventType?(i.root.removeEventListener("touchmove",i.onMouseMove),i.root.removeEventListener("touchend",i.onMouseUp),i.blur()):(document.removeEventListener("mousemove",i.onMouseMove,!1),document.removeEventListener("mouseup",i.onMouseUp,!1),n.root.removeEventListener("click",i.onBodyClick,!1),r.isEnter?"mobile"!==s.isMobileSimulateMode&&i.bind("mousemove",i.onMoveOnly):i.onMouseLeave(e)),x.setTimeout(u(i),(function(){i.resetSeekState()}),10),n.focus()})),s(u(i),"onMouseMove",(function(e){var t=u(i),n=t.pos,o=t.player,r=t.config;x.checkTouchSupport()&&e.preventDefault(),x.event(e);var s=x.getEventPos(e,o.zoom),a=90===o.rotateDeg?s.clientY:s.clientX,l=Math.abs(n.x-a);if(!(n.moving&&l<r.miniMoveStep||!n.moving&&l<r.miniStartStep)){n.x=a;var c=i.computeTime(e);i._mouseMoveHandlerHook(e,c)}})),s(u(i),"onMouseOut",(function(e){i.triggerCallbacks("mouseout",null,e)})),s(u(i),"onMouseOver",(function(e){i.triggerCallbacks("mouseover",null,e)})),s(u(i),"onMouseEnter",(function(e){var t=u(i),n=t.player,o=t.pos;i.triggerCallbacks("mouseenter",null,e),o.isDown||o.isEnter||n.isMini||!n.config.allowSeekAfterEnded&&n.ended||(o.isEnter=!0,i.bind("mousemove",i.onMoveOnly),i.bind("mouseleave",i.onMouseLeave),i.focus())})),s(u(i),"onMouseLeave",(function(e){i.triggerCallbacks("mouseleave",null,e);var t=u(i),n=t.player,o=t.pos;o.isEnter=!1,n.isMini||(i.unbind("mousemove",i.onMoveOnly),o.isDown?i.unbind("mouseleave",i.onMouseLeave):i.blur())})),i.useable=!1,i.isProgressMoving=!1,i.__dragCallBacks=[],i._state={now:-1,direc:0,time:0},i._disableBlur=!1,i}return r(o,[{key:"duration",get:function(){return this.playerConfig.customDuration||this.player.duration}},{key:"timeOffset",get:function(){return this.playerConfig.timeOffset||0}},{key:"changeState",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.useable=e}},{key:"createInner",value:function(){var e=this;this.innerList=new Ei({fragments:this.config.fragments,style:this.playerConfig.commonStyle||{}}),this.outer.insertBefore(this.innerList.render(),this.outer.children[0]),["findHightLight","unHightLight","setHightLight","findFragment"].map((function(t){e[t]=e.innerList[t].bind(e.innerList)}))}},{key:"afterCreate",value:function(){var e=this;this.config.disable||this.playerConfig.isLive||(this.pos={x:0,y:0,moving:!1,isDown:!1,isEnter:!1},this.outer=this.find("xg-outer"),this.createInner(),"mobile"===I.device&&(this.config.isDragingSeek=!1,this.isMobile=!0),this.progressBtn=this.find(".xgplayer-progress-btn"),this.on(K,(function(){e.onMouseLeave()})),this.on(G,(function(){e.onTimeupdate()})),this.on(U,(function(){e.onTimeupdate(),e.onCacheUpdate()})),this.on(X,(function(){e.onCacheUpdate()})),this.on(N,(function(){e.onCacheUpdate(),e._state.now=0})),this.on(J,(function(){e.onReset()})),this.bindDomEvents(),this.initCustomStyle())}},{key:"initCustomStyle",value:function(){var e=(this.playerConfig||{}).commonStyle.sliderBtnStyle,t=this.progressBtn;e&&("string"==typeof e?t.style.boxShadow=e:"object"===i(e)&&Object.keys(e).map((function(i){t.style[i]=e[i]})))}},{key:"triggerCallbacks",value:function(e,t,i){this.__dragCallBacks.length>0&&this.__dragCallBacks.map((function(n){if(n&&n.handler&&n.type===e)try{n.handler(t,i)}catch(o){console.error("[XGPLAYER][triggerCallbacks] ".concat(n," error"),o)}}))}},{key:"addCallBack",value:function(e,t){t&&"function"==typeof t&&this.__dragCallBacks.push({type:e,handler:t})}},{key:"removeCallBack",value:function(e,t){var i=this.__dragCallBacks,n=-1;i.map((function(i,o){i&&i.type===e&&i.handler===t&&(n=o)})),n>-1&&i.splice(n,1)}},{key:"bindDomEvents",value:function(){var e=this.player,t=e.controls,i=e.config;this._mouseDownHandlerHook=this.hook("dragstart",this._mouseDownHandler),this._mouseUpHandlerHook=this.hook("dragend",this._mouseUpHandler),this._mouseMoveHandlerHook=this.hook("drag",this._mouseMoveHandler),"touch"===this.domEventType?(this.root.addEventListener("touchstart",this.onMouseDown),t&&(t.root&&t.root.addEventListener("touchmove",x.stopPropagation),t.center&&t.center.addEventListener("touchend",x.stopPropagation))):(this.bind("mousedown",this.onMouseDown),"mobile"!==i.isMobileSimulateMode&&this.bind("mouseenter",this.onMouseEnter),this.bind("mouseover",this.onMouseOver),this.bind("mouseout",this.onMouseOut))}},{key:"focus",value:function(){x.addClass(this.root,"active")}},{key:"blur",value:function(){this._disableBlur||(this.player.controls.recoverAutoHide(),x.removeClass(this.root,"active"))}},{key:"disableBlur",value:function(){this._disableBlur=!0}},{key:"enableBlur",value:function(){this._disableBlur=!1}},{key:"updateWidth",value:function(e,t,i){var n=this.config,o=this.player;if(!n.isCloseClickSeek||0!==i){var r=e>=o.duration?o.duration-n.endedDiff:Number(e).toFixed(1);this.updatePercent(t),this.updateTime(e),(1!==i||n.isDragingSeek&&"audio"!==o.videoConfig.mediaType)&&(this._state.now=r,this._state.direc=r>o.currentTime?0:1,o.seek(r))}}},{key:"computeTime",value:function(e){var t,i,n,o=this.player,r=this.root.getBoundingClientRect(),s=r.width,a=r.height,l=r.top,c=r.left,u=x.getEventPos(e,o.zoom);90===o.rotateDeg?(t=a,i=l,n=u.clientY):(t=s,i=c,n=u.clientX);var h=n-i,d=(h=h>t?t:h<0?0:h)/t;return{percent:d=d<0?0:d>1?1:d,currentTime:parseInt(d*this.duration*1e3,10)/1e3,offset:h,width:t,left:i,e:e}}},{key:"updateTime",value:function(e){var t=this.player,i=this.duration;e>i?e=i:e<0&&(e=0);var n=t.plugins.time;n&&n.updateTime(e)}},{key:"resetSeekState",value:function(){this.isProgressMoving=!1;var e=this.player.plugins.time;e&&e.resetActive()}},{key:"updatePercent",value:function(e,t){if(this.isProgressMoving=!0,!this.config.disable){e=e>1?1:e<0?0:e,this.progressBtn.style.left="".concat(100*e,"%"),this.innerList.update({played:e*this.duration},this.duration);var i=this.player.plugins.miniprogress;i&&i.update({played:e*this.duration},this.duration)}}},{key:"onTimeupdate",value:function(){var e=this.player,t=this._state,i=this.duration;if(!(e.isSeeking||this.isProgressMoving||e.state<dt)){if(t.now>-1){var n=parseInt(1e3*t.now,10)-parseInt(1e3*e.currentTime,10);if(0===t.direc&&n>300||1===t.direc&&n>-300)return void(t.now=-1);t.now=-1}var o=this.timeOffset+e.currentTime;this.innerList.update({played:o},i),this.progressBtn.style.left="".concat(o/i*100,"%");var r=this.player.plugins.miniprogress;r&&r.update({played:o},i)}}},{key:"onCacheUpdate",value:function(){var e=this.player,t=this.duration,i=e.bufferedPoint;this.innerList.update({cached:i.end},t);var n=this.player.plugins.miniprogress;n&&n.update({cached:i.end},t)}},{key:"onReset",value:function(){this.innerList.update({played:0,cached:0},0);var e=this.player.plugins.miniprogress;e&&e.update({cached:0,played:0},0)}},{key:"destroy",value:function(){var e=this.player,t=e.controls;this.thumbnailPlugin=null,this.innerList.destroy(),this.innerList=null,"touch"===this.domEventType?(this.root.removeEventListener("touchstart",this.onMouseDown),this.root.removeEventListener("touchmove",this.onMouseMove),this.root.removeEventListener("touchend",this.onMouseUp),t&&(t.root&&t.root.removeEventListener("touchmove",x.stopPropagation),t.center&&t.center.removeEventListener("touchend",x.stopPropagation))):(this.unbind("mousedown",this.onMouseDown),this.unbind("mouseenter",this.onMouseEnter),this.unbind("mousemove",this.onMoveOnly),this.unbind("mouseleave",this.onMouseLeave),document.removeEventListener("mousemove",this.onMouseMove,!1),document.removeEventListener("mouseup",this.onMouseUp,!1),e.root.removeEventListener("click",this.onBodyClick,!1))}},{key:"render",value:function(){if(!this.config.disable&&!this.playerConfig.isLive){var e=this.player.controls?this.player.controls.config.mode:"";return'\n <xg-progress class="xgplayer-progress '.concat("bottom"===e?"xgplayer-progress-bottom":"",'">\n <xg-outer class="xgplayer-progress-outer">\n <xg-progress-btn class="xgplayer-progress-btn"></xg-progress-btn>\n </xg-outer>\n </xg-progress>\n ')}}}],[{key:"pluginName",get:function(){return"progress"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_CENTER,index:0,disable:!1,isDragingSeek:!0,closeMoveSeek:!1,isPauseMoving:!1,isCloseClickSeek:!1,fragments:[{percent:1}],miniMoveStep:5,miniStartStep:2,onMoveStart:function(){},onMoveEnd:function(){},endedDiff:.2}}}]),o}(tt),Pi=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"_onMouseenter",(function(t){e.emit("icon_mouseenter",{pluginName:e.pluginName})})),s(u(e),"_onMouseLeave",(function(t){e.emit("icon_mouseleave",{pluginName:e.pluginName})})),e}return r(i,[{key:"afterCreate",value:function(){this.bind("mouseenter",this._onMouseenter),this.bind("mouseleave",this._onMouseLeave)}},{key:"destroy",value:function(){this.unbind("mouseenter",this._onMouseenter),this.unbind("mouseleave",this._onMouseLeave)}}]),i}(tt),Li=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"afterCreate",value:function(){var e=this;p(l(i.prototype),"afterCreate",this).call(this);var t=this.player;this.config.disable||(this.initIcons(),this.btnClick=this.btnClick.bind(this),this.bind(["touchend","click"],this.btnClick),this.on(F,(function(){e.animate(t.paused)})),this.on(M,(function(){e.animate(t.paused)})),this.animate(!0))}},{key:"registerIcons",value:function(){return{play:{icon:Nt,class:"xg-icon-play"},pause:{icon:Ft,class:"xg-icon-pause"}}}},{key:"btnClick",value:function(e){e.preventDefault(),e.stopPropagation();var t=this.player;return this.emitUserAction(e,"switch_play_pause",{prop:"paused",from:t.paused,to:!t.paused}),t.ended?t.replay():t.paused?(t.play(),this.animate(!1)):(t.pause(),this.animate(!0)),!1}},{key:"initIcons",value:function(){var e=this.icons;this.appendChild(".xgplayer-icon",e.play),this.appendChild(".xgplayer-icon",e.pause)}},{key:"animate",value:function(e){var t=this.i18nKeys;e?(this.setAttr("data-state","pause"),this.changeLangTextKey(this.find(".xg-tips"),t.PLAY_TIPS)):(this.setAttr("data-state","play"),this.changeLangTextKey(this.find(".xg-tips"),t.PAUSE_TIPS))}},{key:"destroy",value:function(){p(l(i.prototype),"destroy",this).call(this),this.unbind(["touchend","click"],this.btnClick)}},{key:"render",value:function(){if(!this.config.disable)return'<xg-icon class="xgplayer-play">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.PLAY_TIPS,'">').concat(this.i18n.PLAY_TIPS,"</div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"play"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_LEFT,index:0,disable:!1}}}]),i}(Pi);function Ai(){return(new DOMParser).parseFromString('<svg width="32px" height="40px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <path d="M11.2374369,14 L17.6187184,7.61871843 C17.9604272,7.27700968 17.9604272,6.72299032 17.6187184,6.38128157 C17.2770097,6.03957281 16.7229903,6.03957281 16.3812816,6.38128157 L9.38128157,13.3812816 C9.03957281,13.7229903 9.03957281,14.2770097 9.38128157,14.6187184 L16.3812816,21.6187184 C16.7229903,21.9604272 17.2770097,21.9604272 17.6187184,21.6187184 C17.9604272,21.2770097 17.9604272,20.7229903 17.6187184,20.3812816 L11.2374369,14 L11.2374369,14 Z" fill="#FFFFFF"></path>\n </g>\n</svg>',"image/svg+xml").firstChild}var Ii=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"afterCreate",value:function(){var e=this;this.initIcons(),this.onClick=function(t){t.preventDefault(),t.stopPropagation(),e.config.onClick(t)},this.bind(["click","touchend"],this.onClick)}},{key:"registerIcons",value:function(){return{screenBack:{icon:Ai,class:"xg-fullscreen-back"}}}},{key:"initIcons",value:function(){var e=this.icons;this.appendChild(this.root,e.screenBack)}},{key:"show",value:function(){x.addClass(this.root,"show")}},{key:"hide",value:function(){x.removeClass(this.root,"show")}},{key:"render",value:function(){return'<xg-icon class="xgplayer-back">\n </xg-icon>'}}],[{key:"pluginName",get:function(){return"topbackicon"}},{key:"defaultConfig",get:function(){return{position:Je.ROOT_TOP,index:0}}}]),i}(tt);function Oi(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="2 -4 28 40">\n <path fill="#fff" transform="scale(0.0320625 0.0320625)" d="M598 214h212v212h-84v-128h-128v-84zM726 726v-128h84v212h-212v-84h128zM214 426v-212h212v84h-128v128h-84zM298 598v128h128v84h-212v-212h84z"></path>\n</svg>\n',"image/svg+xml").firstChild}function Ri(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="2 -4 28 40">\n <path fill="#fff" transform="scale(0.0320625 0.0320625)" d="M682 342h128v84h-212v-212h84v128zM598 810v-212h212v84h-128v128h-84zM342 342v-128h84v212h-212v-84h128zM214 682v-84h212v212h-84v-128h-128z"></path>\n</svg>\n',"image/svg+xml").firstChild}var Di=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"_onOrientationChange",(function(t){e.player.fullscreen&&e.config.rotateFullscreen&&(90===window.orientation||-90===window.orientation?e.player.setRotateDeg(0):e.player.setRotateDeg(90))})),e}return r(i,[{key:"afterCreate",value:function(){var e=this;p(l(i.prototype),"afterCreate",this).call(this);var t=this.config,n=this.playerConfig;if(!t.disable){t.target&&(this.playerConfig.fullscreenTarget=this.config.target);var o=x.getFullScreenEl();n.fullscreenTarget===o&&this.player.getFullscreen(),this.initIcons(),this.handleFullscreen=this.hook("fullscreenChange",this.toggleFullScreen,{pre:function(t){var i=e.player.fullscreen;e.emitUserAction(t,"switch_fullscreen",{prop:"fullscreen",from:i,to:!i})}}),this.bind(".xgplayer-fullscreen",["touchend","click"],this.handleFullscreen),this.on(ce,(function(t){e.changeLangTextKey(e.find(".xg-tips"),t?e.i18nKeys.EXITFULLSCREEN_TIPS:e.i18nKeys.FULLSCREEN_TIPS),e.animate(t)})),this.config.needBackIcon&&(this.topBackIcon=this.player.registerPlugin({plugin:Ii,options:{config:{onClick:function(t){e.handleFullscreen(t)}}}})),"mobile"===I.device&&window.addEventListener("orientationchange",this._onOrientationChange)}}},{key:"registerIcons",value:function(){return{fullscreen:{icon:Oi,class:"xg-get-fullscreen"},exitFullscreen:{icon:Ri,class:"xg-exit-fullscreen"}}}},{key:"destroy",value:function(){p(l(i.prototype),"destroy",this).call(this),this.unbind(".xgplayer-icon","mobile"===I.device?"touchend":"click",this.handleFullscreen),"mobile"===I.device&&window.removeEventListener("orientationchange",this._onOrientationChange)}},{key:"initIcons",value:function(){var e=this.icons;this.appendChild(".xgplayer-icon",e.fullscreen),this.appendChild(".xgplayer-icon",e.exitFullscreen)}},{key:"toggleFullScreen",value:function(e){e&&(e.preventDefault(),e.stopPropagation());var t=this.player,i=this.config;!0===i.useCssFullscreen||"function"==typeof i.useCssFullscreen&&i.useCssFullscreen()?(t.fullscreen?t.exitCssFullscreen():t.getCssFullscreen(),this.animate(t.fullscreen)):i.rotateFullscreen?(t.fullscreen?t.exitRotateFullscreen():t.getRotateFullscreen(),this.animate(t.fullscreen)):i.switchCallback&&"function"==typeof i.switchCallback?i.switchCallback(t.fullscreen):t.fullscreen?t.exitFullscreen():t.getFullscreen()}},{key:"animate",value:function(e){e?this.setAttr("data-state","full"):this.setAttr("data-state","normal"),this.topBackIcon&&(e?(this.topBackIcon.show(),this.hide()):(this.topBackIcon.hide(),this.show()))}},{key:"show",value:function(){p(l(i.prototype),"show",this).call(this)}},{key:"hide",value:function(){p(l(i.prototype),"hide",this).call(this)}},{key:"render",value:function(){if(!this.config.disable){var e="FULLSCREEN_TIPS";return'<xg-icon class="xgplayer-fullscreen">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys[e],'">').concat(this.i18n[e],"</div>\n </xg-icon>")}}}],[{key:"pluginName",get:function(){return"fullscreen"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:0,useCssFullscreen:!1,rotateFullscreen:!1,switchCallback:null,target:null,disable:!1,needBackIcon:!1}}}]),i}(Pi),Mi=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),(o=t.call(this,e)).isActiving=!1,o}return r(i,[{key:"duration",get:function(){return this.playerConfig.customDuration||this.player.duration}},{key:"currentTime",get:function(){return this.player.currentTime||0}},{key:"timeOffset",get:function(){return this.playerConfig.timeOffset||0}},{key:"afterCreate",value:function(){var e=this,t=this.player.controls.config.mode;this.mode="flex"===t?"flex":"normal",this.config.disable||("flex"===this.mode&&(this.createCenterTime(),this.hide()),this.durationDom=this.find(".time-duration"),this.timeDom=this.find(".time-current"),this.on(K,(function(){e.onTimeUpdate()})),this.on(G,(function(){e.onTimeUpdate()})),this.on(J,(function(){e.onReset()})))}},{key:"show",value:function(){"flex"!==this.mode&&p(l(i.prototype),"show",this).call(this)}},{key:"onTimeUpdate",value:function(){var e=this.player;if(!(this.config.disable||this.isActiving||e.state<dt&&e.state!==ut)){var t=this.currentTime+this.timeOffset;"flex"===this.mode?(this.centerCurDom.innerHTML=x.format(t),this.duration!==1/0&&this.duration>0&&(this.centerDurDom.innerHTML=x.format(this.duration))):(this.timeDom.innerHTML=x.format(t),this.duration!==1/0&&this.duration>0&&(this.durationDom.innerHTML=x.format(this.duration)))}}},{key:"onReset",value:function(){"flex"===this.mode?(this.centerCurDom.innerHTML=x.format(0),this.centerDurDom.innerHTML=x.format(0)):(this.timeDom.innerHTML=x.format(0),this.durationDom.innerHTML=x.format(0))}},{key:"createCenterTime",value:function(){var e=this.player;if(e.controls&&e.controls.center){var t=e.controls.center;this.centerCurDom=x.createDom("xg-icon","00:00",{},"xgplayer-time left"),this.centerDurDom=x.createDom("xg-icon","00:00",{},"xgplayer-time right"),t.children.length>0?t.insertBefore(this.centerCurDom,t.children[0]):t.appendChild(this.centerCurDom),t.appendChild(this.centerDurDom)}}},{key:"afterPlayerInit",value:function(){var e=this.config;this.duration===1/0||this.playerConfig.isLive?(x.hide(this.durationDom),x.hide(this.timeDom),x.hide(this.find(".time-separator")),x.show(this.find(".time-live-tag"))):x.hide(this.find(".time-live-tag")),e.hide?this.hide():this.show()}},{key:"changeLiveState",value:function(e){e?(x.hide(this.durationDom),x.hide(this.timeDom),x.hide(this.find(".time-separator")),x.show(this.find(".time-live-tag"))):(x.hide(this.find(".time-live-tag")),x.show(this.find(".time-separator")),x.show(this.durationDom),x.show(this.timeDom))}},{key:"updateTime",value:function(e){this.isActiving=!0,!e&&0!==e||e>this.duration||("flex"!==this.mode?this.timeDom.innerHTML=x.format(e):this.centerCurDom.innerHTML=x.format(e))}},{key:"resetActive",value:function(){var e=this,t=this.player,i=function(){e.isActiving=!1};this.off(U,i),t.isSeeking?this.once(U,i):this.isActiving=!1}},{key:"destroy",value:function(){var e=this.player.controls.center;this.centerCurDom&&e.removeChild(this.centerCurDom),this.centerCurDom=null,this.centerDurDom&&e.removeChild(this.centerDurDom),this.centerDurDom=null}},{key:"render",value:function(){if(!this.config.disable)return'<xg-icon class="xgplayer-time">\n <span class="time-current">00:00</span>\n <span class="time-separator">/</span>\n <span class="time-duration">00:00</span>\n <span class="time-live-tag">'.concat(this.i18n.LIVE_TIP,"</span>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"time"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_LEFT,index:2,disable:!1}}}]),i}(tt);function ji(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="0 -10 28 40">\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M358.4 358.4h-204.8v307.2h204.8l256 256v-819.2l-256 256z"></path>\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M940.632 837.632l-72.192-72.192c65.114-64.745 105.412-154.386 105.412-253.44s-40.299-188.695-105.396-253.424l-0.016-0.016 72.192-72.192c83.639 83.197 135.401 198.37 135.401 325.632s-51.762 242.434-135.381 325.612l-0.020 0.020zM795.648 693.248l-72.704-72.704c27.756-27.789 44.921-66.162 44.921-108.544s-17.165-80.755-44.922-108.546l0.002 0.002 72.704-72.704c46.713 46.235 75.639 110.363 75.639 181.248s-28.926 135.013-75.617 181.227l-0.021 0.021z"></path>\n</svg>\n',"image/svg+xml").firstChild}function Ni(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="0 -10 28 40">\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M358.4 358.4h-204.8v307.2h204.8l256 256v-819.2l-256 256z"></path>\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M795.648 693.248l-72.704-72.704c27.756-27.789 44.921-66.162 44.921-108.544s-17.165-80.755-44.922-108.546l0.002 0.002 72.704-72.704c46.713 46.235 75.639 110.363 75.639 181.248s-28.926 135.013-75.617 181.227l-0.021 0.021zM795.648 693.248l-72.704-72.704c27.756-27.789 44.921-66.162 44.921-108.544s-17.165-80.755-44.922-108.546l0.002 0.002 72.704-72.704c46.713 46.235 75.639 110.363 75.639 181.248s-28.926 135.013-75.617 181.227l-0.021 0.021z"></path>\n</svg>\n',"image/svg+xml").firstChild}function Fi(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="28" height="40" viewBox="0 -10 28 40">\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M358.4 358.4h-204.8v307.2h204.8l256 256v-819.2l-256 256z"></path>\n <path fill="#fff" transform="scale(0.0220625 0.0220625)" d="M920.4 439.808l-108.544-109.056-72.704 72.704 109.568 108.544-109.056 108.544 72.704 72.704 108.032-109.568 108.544 109.056 72.704-72.704-109.568-108.032 109.056-108.544-72.704-72.704-108.032 109.568z"></path>\n</svg>\n',"image/svg+xml").firstChild}var Hi=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"onBarMousedown",(function(t){var i=u(e).player,n=e.find(".xgplayer-bar");x.event(t);var o=n.getBoundingClientRect(),r=x.getEventPos(t,i.zoom),s=o.height-(r.clientY-o.top);if(r.h=s,r.barH=o.height,e.pos=r,!(s<-2))return e.updateVolumePos(s,t),document.addEventListener("mouseup",e.onBarMouseUp),e.isStart=!0,!1})),s(u(e),"onBarMouseMove",(function(t){if(e.isStart){var i=u(e),n=i.pos,o=i.player;t.preventDefault(),t.stopPropagation(),x.event(t);var r=x.getEventPos(t,o.zoom);e.isMoving=!0;var s=n.h-r.clientY+n.clientY;s>n.barH||e.updateVolumePos(s,t)}})),s(u(e),"onBarMouseUp",(function(t){x.event(t),document.removeEventListener("mouseup",e.onBarMouseUp),e.isStart=!1,e.isMoving=!1})),s(u(e),"onMouseenter",(function(t){e._timerId&&(x.clearTimeout(u(e),e._timerId),e._timerId=null),x.addClass(e.root,"slide-show"),e.emit("icon_mouseenter",{pluginName:e.pluginName})})),s(u(e),"onMouseleave",(function(t){e._timerId&&(x.clearTimeout(u(e),e._timerId),e._timerId=null),e._timerId=x.setTimeout(u(e),(function(){x.removeClass(e.root,"slide-show"),e.isStart&&e.onBarMouseUp(t),e._timerId=null}),100),e.emit("icon_mouseleave",{pluginName:e.pluginName})})),s(u(e),"onVolumeChange",(function(t){if(e.player){var i=e.player,n=i.muted,o=i.volume;e.isMoving||(e.find(".xgplayer-drag").style.height=n||0===o?"4px":"".concat(100*o,"%"),e.config.showValueLabel&&e.updateVolumeValue()),e.animate(n,o)}})),e}return r(i,[{key:"registerIcons",value:function(){return{volumeSmall:{icon:Ni,class:"xg-volume-small"},volumeLarge:{icon:ji,class:"xg-volume"},volumeMuted:{icon:Fi,class:"xg-volume-mute"}}}},{key:"afterCreate",value:function(){var e=this;if(this._timerId=null,!this.config.disable){this.initIcons();var t=this.playerConfig,i=t.commonStyle,n=t.volume;i.volumeColor&&(this.find(".xgplayer-drag").style.backgroundColor=i.volumeColor),this.changeMutedHandler=this.hook("mutedChange",(function(t){e.changeMuted(t)}),{pre:function(e){e.preventDefault(),e.stopPropagation()}}),this._onMouseenterHandler=this.hook("mouseenter",this.onMouseenter),this._onMouseleaveHandler=this.hook("mouseleave",this.onMouseleave),"mobile"!==I.device&&"mobile"!==this.playerConfig.isMobileSimulateMode&&(this.bind("mouseenter",this._onMouseenterHandler),this.bind(["blur","mouseleave"],this._onMouseleaveHandler),this.bind(".xgplayer-slider","mousedown",this.onBarMousedown),this.bind(".xgplayer-slider","mousemove",this.onBarMouseMove),this.bind(".xgplayer-slider","mouseup",this.onBarMouseUp)),this.bind(".xgplayer-icon",["touchend","click"],this.changeMutedHandler),this.on(q,this.onVolumeChange),this.once(z,this.onVolumeChange),"Number"!==x.typeOf(n)&&(this.player.volume=this.config.default),this.onVolumeChange()}}},{key:"updateVolumePos",value:function(e,t){var i=this.player,n=this.find(".xgplayer-drag"),o=this.find(".xgplayer-bar");if(o&&n){var r=parseInt(e/o.getBoundingClientRect().height*1e3,10);n.style.height="".concat(e,"px");var s=Math.max(Math.min(r/1e3,1),0),a={volume:{from:i.volume,to:s}};i.muted&&(a.muted={from:!0,to:!1}),this.emitUserAction(t,"change_volume",{muted:i.muted,volume:i.volume,props:a}),i.volume=Math.max(Math.min(r/1e3,1),0),i.muted&&(i.muted=!1),this.config.showValueLabel&&this.updateVolumeValue()}}},{key:"updateVolumeValue",value:function(){var e=this.player,t=e.volume,i=e.muted,n=this.find(".xgplayer-value-label"),o=Math.max(Math.min(t,1),0);n.innerText=i?0:Math.ceil(100*o)}},{key:"changeMuted",value:function(e){e&&e.stopPropagation();var t=this.player;this.isStart&&this.onBarMouseUp(e),this.emitUserAction(e,"change_muted",{muted:t.muted,volume:t.volume,props:{muted:{from:t.muted,to:!t.muted}}}),t.volume>0&&(t.muted=!t.muted),t.volume<.01&&(t.volume=this.config.miniVolume)}},{key:"animate",value:function(e,t){e||0===t?this.setAttr("data-state","mute"):t<.5&&this.icons.volumeSmall?this.setAttr("data-state","small"):this.setAttr("data-state","normal")}},{key:"initIcons",value:function(){var e=this.icons;this.appendChild(".xgplayer-icon",e.volumeSmall),this.appendChild(".xgplayer-icon",e.volumeLarge),this.appendChild(".xgplayer-icon",e.volumeMuted)}},{key:"destroy",value:function(){this.unbind("mouseenter",this.onMouseenter),this.unbind(["blur","mouseleave"],this.onMouseleave),this.unbind(".xgplayer-slider","mousedown",this.onBarMousedown),this.unbind(".xgplayer-slider","mousemove",this.onBarMouseMove),this.unbind(".xgplayer-slider","mouseup",this.onBarMouseUp),document.removeEventListener("mouseup",this.onBarMouseUp),this.unbind(".xgplayer-icon","mobile"===I.device?"touchend":"click",this.changeMutedHandler)}},{key:"render",value:function(){if(!this.config.disable){var e=this.config.default||this.player.volume,t=this.config.showValueLabel;return'\n <xg-icon class="xgplayer-volume" data-state="normal">\n <div class="xgplayer-icon">\n </div>\n <xg-slider class="xgplayer-slider">\n '.concat(t?'<div class="xgplayer-value-label">'.concat(100*e,"</div>"):"",'\n <div class="xgplayer-bar">\n <xg-drag class="xgplayer-drag" style="height: ').concat(100*e,'%"></xg-drag>\n </div>\n </xg-slider>\n </xg-icon>')}}}],[{key:"pluginName",get:function(){return"volume"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:1,disable:!1,showValueLabel:!1,default:.6,miniVolume:.2}}}]),i}(tt);function Bi(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="-4 -6 40 40" fill="none">\n <g clip-path="url(#clip0)">\n <path transform="scale(1.5 1.5)" d="M11.6665 9.16663H4.1665C2.78579 9.16663 1.6665 10.2859 1.6665 11.6666V15.8333C1.6665 17.214 2.78579 18.3333 4.1665 18.3333H11.6665C13.0472 18.3333 14.1665 17.214 14.1665 15.8333V11.6666C14.1665 10.2859 13.0472 9.16663 11.6665 9.16663Z" fill="white"/>\n <path transform="scale(1.5 1.5)" fill-rule="evenodd" clip-rule="evenodd" d="M3.88148 4.06298C3.75371 4.21005 3.67667 4.40231 3.67749 4.61242C3.67847 4.87253 3.79852 5.10435 3.98581 5.25646L6.99111 8.05895C7.32771 8.37283 7.85502 8.35443 8.16891 8.01782C8.48279 7.68122 8.46437 7.15391 8.12778 6.84003L6.62061 5.43457L9.8198 5.4224C9.82848 5.42239 9.8372 5.42221 9.84591 5.4219C10.9714 5.38233 12.0885 5.6285 13.0931 6.13744C14.0976 6.64635 14.957 7.40148 15.5908 8.33234C16.2246 9.2632 16.6122 10.3394 16.7177 11.4606C16.823 12.5819 16.6427 13.7115 16.1934 14.7442C16.0098 15.1661 16.203 15.6571 16.6251 15.8408C17.0471 16.0243 17.5381 15.8311 17.7216 15.4091C18.2833 14.1183 18.5087 12.7063 18.3771 11.3047C18.2453 9.90318 17.7607 8.55792 16.9684 7.39433C16.1761 6.23073 15.1021 5.28683 13.8463 4.65065C12.5946 4.01651 11.203 3.70872 9.80072 3.75583L6.43415 3.76862L7.96326 2.12885C8.27715 1.79225 8.25872 1.26494 7.92213 0.951061C7.58553 0.63718 7.05822 0.655585 6.74433 0.99219L3.90268 4.0395C3.89545 4.04724 3.88841 4.05509 3.88154 4.06303L3.88148 4.06298Z" fill="white"/>\n </g>\n <defs>\n <clipPath id="clip0">\n <rect width="40" height="40" fill="white"/>\n </clipPath>\n </defs>\n</svg>\n',"image/svg+xml").firstChild}var Ui=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),(o=t.call(this,e)).rotateDeg=o.config.rotateDeg||0,o}return r(i,[{key:"afterCreate",value:function(){var e=this;this.config.disable||(p(l(i.prototype),"afterCreate",this).call(this),this.appendChild(".xgplayer-icon",this.icons.rotate),this.onBtnClick=this.onBtnClick.bind(this),this.bind(".xgplayer-icon",["click","touchend"],this.onBtnClick),this.on(pe,(function(){e.rotateDeg&&x.setTimeout(e,(function(){e.updateRotateDeg(e.rotateDeg,e.config.innerRotate)}),100)})),this.rotateDeg&&this.updateRotateDeg(this.rotateDeg,this.config.innerRotate))}},{key:"destroy",value:function(){p(l(i.prototype),"destroy",this).call(this),this.unbind(".xgplayer-icon",["click","touchend"],this.onBtnClick)}},{key:"onBtnClick",value:function(e){e.preventDefault(),e.stopPropagation(),this.emitUserAction(e,"rotate"),this.rotate(this.config.clockwise,this.config.innerRotate,1)}},{key:"updateRotateDeg",value:function(e,t){var i=this.player;e||(e=0);var n=this.player,o=n.root,r=n.innerContainer,s=n.video,a=o.offsetWidth,l=r&&t?r.offsetHeight:o.offsetHeight,c="100%",u="100%",h=0,d=0;.75!==e&&.25!==e||(c="".concat(l,"px"),u="".concat(a,"px"),h=-(l-a)/2,d=-(a-l)/2);var f="translate(".concat(h,"px,").concat(d,"px) rotate(").concat(e,"turn)"),p={transformOrigin:"center center",transform:f,webKitTransform:f,height:u,width:c},g=t?s:o,v=t?i.getPlugin("poster"):null;Object.keys(p).map((function(e){g.style[e]=p[e],v&&v.root&&(v.root.style[e]=p[e])}))}},{key:"rotate",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,n=this.player;this.rotateDeg||(this.rotateDeg=0);var o=e?1:-1;this.rotateDeg=(this.rotateDeg+1+.25*o*i)%1,this.updateRotateDeg(this.rotateDeg,t),n.emit(ve,360*this.rotateDeg)}},{key:"registerIcons",value:function(){return{rotate:Bi}}},{key:"render",value:function(){if(!this.config.disable)return'\n <xg-icon class="xgplayer-rotate">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.ROTATE_TIPS,'">\n ').concat(this.i18n.ROTATE_TIPS,"\n </div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"rotate"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:6,innerRotate:!0,clockwise:!1,rotateDeg:0,disable:!1}}}]),i}(Pi);function Gi(){return(new DOMParser).parseFromString('<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">\n <path fill-rule="evenodd" clip-rule="evenodd"\n d="M16.5 4.3H3.5C3.38954 4.3 3.3 4.38954 3.3 4.5V15.5C3.3 15.6105 3.38954 15.7 3.5 15.7H8.50005L8.50006 17.5H3.5C2.39543 17.5 1.5 16.6046 1.5 15.5V4.5C1.5 3.39543 2.39543 2.5 3.5 2.5H16.5C17.6046 2.5 18.5 3.39543 18.5 4.5V8.5H16.7V4.5C16.7 4.38954 16.6105 4.3 16.5 4.3ZM12 11.5C11.4477 11.5 11 11.9477 11 12.5L11 16.5C11 17.0523 11.4478 17.5 12 17.5H17.5C18.0523 17.5 18.5 17.0523 18.5 16.5L18.5 12.5C18.5 11.9477 18.0523 11.5 17.5 11.5H12Z"\n fill="white" />\n</svg>',"image/svg+xml").firstChild}function Vi(){return(new DOMParser).parseFromString('<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">\n <path fill-rule="evenodd" clip-rule="evenodd"\n d="M16.5 4.3H3.5C3.38954 4.3 3.3 4.38954 3.3 4.5V15.5C3.3 15.6105 3.38954 15.7 3.5 15.7H8.50005L8.50006 17.5H3.5C2.39543 17.5 1.5 16.6046 1.5 15.5V4.5C1.5 3.39543 2.39543 2.5 3.5 2.5H16.5C17.6046 2.5 18.5 3.39543 18.5 4.5V8.5H16.7V4.5C16.7 4.38954 16.6105 4.3 16.5 4.3ZM12 11.5C11.4477 11.5 11 11.9477 11 12.5L11 16.5C11 17.0523 11.4478 17.5 12 17.5H17.5C18.0523 17.5 18.5 17.0523 18.5 16.5L18.5 12.5C18.5 11.9477 18.0523 11.5 17.5 11.5H12Z"\n fill="white" />\n <path fill-rule="evenodd" clip-rule="evenodd"\n d="M9.4998 7.7C9.77595 7.7 9.9998 7.47614 9.9998 7.2V6.5C9.9998 6.22386 9.77595 6 9.4998 6H5.5402L5.52754 6.00016H5.5C5.22386 6.00016 5 6.22401 5 6.50016V10.4598C5 10.7359 5.22386 10.9598 5.5 10.9598H6.2C6.47614 10.9598 6.7 10.7359 6.7 10.4598V8.83005L8.76983 10.9386C8.96327 11.1357 9.27984 11.1386 9.47691 10.9451L9.97645 10.4548C10.1735 10.2613 10.1764 9.94476 9.983 9.7477L7.97289 7.7H9.4998Z"\n fill="white" />\n</svg>',"image/svg+xml").firstChild}var Wi="picture-in-picture",Ki="inline",qi="fullscreen",zi=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"switchPIP",(function(t){if(!e.isPIPAvailable())return!1;t.stopPropagation(),e.isPip?(e.exitPIP(),e.emitUserAction(t,"change_pip",{props:"pip",from:!0,to:!1}),e.setAttr("data-state","normal")):4===e.player.video.readyState&&(e.requestPIP(),e.emitUserAction(t,"change_pip",{props:"pip",from:!1,to:!0}),e.setAttr("data-state","pip"))})),e}return r(i,[{key:"beforeCreate",value:function(e){"boolean"==typeof e.player.config.pip&&(e.config.showIcon=e.player.config.pip)}},{key:"afterCreate",value:function(){var e=this;this.isPIPAvailable()&&(p(l(i.prototype),"afterCreate",this).call(this),this.pMode=Ki,this.initPipEvents(),this.config.showIcon&&this.initIcons(),this.once(oe,(function(){e.config.showIcon&&(x.removeClass(e.find(".xgplayer-icon"),"xg-icon-disable"),e.bind("click",e.switchPIP))})))}},{key:"registerIcons",value:function(){return{pipIcon:{icon:Gi,class:"xg-get-pip"},pipIconExit:{icon:Vi,class:"xg-exit-pip"}}}},{key:"initIcons",value:function(){var e=this.icons;this.appendChild(".xgplayer-icon",e.pipIcon),this.appendChild(".xgplayer-icon",e.pipIconExit)}},{key:"initPipEvents",value:function(){var e=this,t=this.player;this.leavePIPCallback=function(){var i=t.paused;x.setTimeout(e,(function(){!i&&t.videoPlay()}),0),!i&&t.videoPlay(),e.setAttr("data-state","normal"),t.emit(ge,!1)},this.enterPIPCallback=function(i){t.emit(ge,!0),e.pipWindow=i.pictureInPictureWindow,e.setAttr("data-state","pip")},this.onWebkitpresentationmodechanged=function(i){var n=t.video.webkitPresentationMode;e.pMode===qi&&n!==qi&&t.onFullscreenChange(null,!1),e.pMode=n,n===Wi?e.enterPIPCallback(i):n===Ki&&e.leavePIPCallback(i)},t.video&&(t.video.addEventListener("enterpictureinpicture",this.enterPIPCallback),t.video.addEventListener("leavepictureinpicture",this.leavePIPCallback),i.checkWebkitSetPresentationMode(t.video)&&t.video.addEventListener("webkitpresentationmodechanged",this.onWebkitpresentationmodechanged))}},{key:"requestPIP",value:function(){var e=this.player,t=this.playerConfig;if(this.isPIPAvailable()&&!this.isPip)try{var n=t.poster;return n&&(e.video.poster="String"===x.typeOf(n)?n:n.poster),i.checkWebkitSetPresentationMode(e.video)?e.video.webkitSetPresentationMode("picture-in-picture"):e.video.requestPictureInPicture(),!0}catch(o){return console.error("requestPiP",o),!1}}},{key:"exitPIP",value:function(){var e=this.player;try{return this.isPIPAvailable()&&this.isPip&&(i.checkWebkitSetPresentationMode(e.video)?e.video.webkitSetPresentationMode("inline"):document.exitPictureInPicture()),!0}catch(t){return console.error("exitPIP",t),!1}}},{key:"isPip",get:function(){var e=this.player;return document.pictureInPictureElement&&document.pictureInPictureElement===e.video||e.video.webkitPresentationMode===Wi}},{key:"isPIPAvailable",value:function(){var e=this.player.video;return("Boolean"!==x.typeOf(document.pictureInPictureEnabled)||document.pictureInPictureEnabled)&&("Boolean"===x.typeOf(e.disablePictureInPicture)&&!e.disablePictureInPicture||e.webkitSupportsPresentationMode&&"Function"===x.typeOf(e.webkitSetPresentationMode))}},{key:"destroy",value:function(){p(l(i.prototype),"destroy",this).call(this);var e=this.player;e.video.removeEventListener("enterpictureinpicture",this.enterPIPCallback),e.video.removeEventListener("leavepictureinpicture",this.leavePIPCallback),i.checkWebkitSetPresentationMode(e.video)&&e.video.removeEventListener("webkitpresentationmodechanged",this.onWebkitpresentationmodechanged),this.exitPIP(),this.unbind("click",this.btnClick)}},{key:"render",value:function(){if(this.config.showIcon&&this.isPIPAvailable())return'<xg-icon class="xgplayer-pip">\n <div class="xgplayer-icon xg-icon-disable">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.PIP,'">').concat(this.i18n.PIP,"</div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"pip"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:6,showIcon:!1}}},{key:"checkWebkitSetPresentationMode",value:function(e){return"function"==typeof e.webkitSetPresentationMode}}]),i}(Pi);function Yi(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="24" height="40" viewBox="10 0 24 40">\n <path transform="scale(0.038 0.028)" d="M800 380v768h-128v-352l-320 320v-704l320 320v-352z"></path>\n</svg>\n',"image/svg+xml").firstChild}var Xi=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),s(u(o=t.call(this,e)),"playNext",(function(e){var t=u(o).player;e.preventDefault(),e.stopPropagation(),o.idx+1<o.config.urlList.length?(o.idx++,o.nextHandler(o.config.urlList[o.idx],o.idx),t.emit(me,o.idx+1)):(o.nextHandler(),t.emit(me))})),o.idx=-1,o}return r(i,[{key:"afterCreate",value:function(){this.config.urlList&&0!==this.config.urlList.length&&(this.appendChild(".xgplayer-icon",this.icons.playNext),this.initEvents())}},{key:"registerIcons",value:function(){return{playNext:Yi}}},{key:"initEvents",value:function(){this.nextHandler=this.hook("nextClick",this.changeSrc);var e="mobile"===I.device?"touchend":"click";this.bind(e,this.playNext),this.show()}},{key:"changeSrc",value:function(e){var t=this.player;e&&(t.pause(),t.currentTime=0,t.switchURL?t.switchURL(e):t.src=e,t.config.url=e,t.play())}},{key:"destroy",value:function(){this.unbind(["touchend","click"],this.playNext)}},{key:"render",value:function(){if(this.config.urlList&&0!==this.config.urlList.length)return'\n <xg-icon class="xgplayer-playnext">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="PLAYNEXT_TIPS">'.concat(this.i18n.PLAYNEXT_TIPS,"</div>\n </xg-icon>\n ")}}],[{key:"pluginName",get:function(){return"playNext"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_LEFT,index:1,url:null,urlList:[]}}}]),i}(tt),Zi={exports:{}};Zi.exports=function e(t,i,n){var o,r,s=window,a="application/octet-stream",l=n||a,c=t,u=!i&&!n&&c,h=document.createElement("a"),d=function(e){return String(e)},f=s.Blob||s.MozBlob||s.WebKitBlob||d,p=i||"download";if(f=f.call?f.bind(s):Blob,"true"===String(this)&&(l=(c=[c,l])[0],c=c[1]),u&&u.length<2048&&(p=u.split("/").pop().split("?")[0],h.href=u,-1!==h.href.indexOf(u))){var g=new XMLHttpRequest;return g.open("GET",u,!0),g.responseType="blob",g.onload=function(t){e(t.target.response,p,a)},setTimeout((function(){g.send()}),0),g}if(/^data:([\w+-]+\/[\w+.-]+)?[,;]/.test(c)){if(!(c.length>2096103.424&&f!==d))return navigator.msSaveBlob?navigator.msSaveBlob(k(c),p):b(c);l=(c=k(c)).type||a}else if(/([\x80-\xff])/.test(c)){for(var v=0,y=new Uint8Array(c.length),m=y.length;v<m;++v)y[v]=c.charCodeAt(v);c=new f([y],{type:l})}function k(e){for(var t=e.split(/[:;,]/),i=t[1],n=("base64"==t[2]?atob:decodeURIComponent)(t.pop()),o=n.length,r=0,s=new Uint8Array(o);r<o;++r)s[r]=n.charCodeAt(r);return new f([s],{type:i})}function b(e,t){if("download"in h)return h.href=e,h.setAttribute("download",p),h.className="download-js-link",h.innerHTML="downloading...",h.style.display="none",document.body.appendChild(h),setTimeout((function(){h.click(),document.body.removeChild(h),!0===t&&setTimeout((function(){s.URL.revokeObjectURL(h.href)}),250)}),66),!0;if(/(Version)\/(\d+)\.(\d+)(?:\.(\d+))?.*Safari\//.test(navigator.userAgent))return/^data:/.test(e)&&(e="data:"+e.replace(/^data:([\w\/\-\+]+)/,a)),window.open(e)||confirm("Displaying New Document\n\nUse Save As... to download, then click back to return to this page.")&&(location.href=e),!0;var i=document.createElement("iframe");document.body.appendChild(i),!t&&/^data:/.test(e)&&(e="data:"+e.replace(/^data:([\w\/\-\+]+)/,a)),i.src=e,setTimeout((function(){document.body.removeChild(i)}),333)}if(o=c instanceof f?c:new f([c],{type:l}),navigator.msSaveBlob)return navigator.msSaveBlob(o,p);if(s.URL)b(s.URL.createObjectURL(o),!0);else{if("string"==typeof o||o.constructor===d)try{return b("data:"+l+";base64,"+s.btoa(o))}catch(C){return b("data:"+l+","+encodeURIComponent(o))}(r=new FileReader).onload=function(e){b(this.result)},r.readAsDataURL(o)}return!0};var Ji=Zi.exports;function $i(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24">\n <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <g transform="translate(-488.000000, -340.000000)" fill="#FFFFFF">\n <g id="Group-2">\n <g id="volme_big-copy" transform="translate(488.000000, 340.000000)">\n <rect id="Rectangle-18" x="11" y="4" width="2" height="12" rx="1"></rect>\n <rect id="Rectangle-2" x="3" y="18" width="18" height="2" rx="1"></rect>\n <rect id="Rectangle-2" transform="translate(4.000000, 17.500000) rotate(90.000000) translate(-4.000000, -17.500000) " x="1.5" y="16.5" width="5" height="2" rx="1"></rect><rect id="Rectangle-2-Copy-3" transform="translate(20.000000, 17.500000) rotate(90.000000) translate(-20.000000, -17.500000) " x="17.5" y="16.5" width="5" height="2" rx="1"></rect>\n <path d="M9.48791171,8.26502656 L9.48791171,14.2650266 C9.48791171,14.8173113 9.04019646,15.2650266 8.48791171,15.2650266 C7.93562696,15.2650266 7.48791171,14.8173113 7.48791171,14.2650266 L7.48791171,7.26502656 C7.48791171,6.71274181 7.93562696,6.26502656 8.48791171,6.26502656 L15.4879117,6.26502656 C16.0401965,6.26502656 16.4879117,6.71274181 16.4879117,7.26502656 C16.4879117,7.81731131 16.0401965,8.26502656 15.4879117,8.26502656 L9.48791171,8.26502656 Z" id="Combined-Shape" transform="translate(11.987912, 10.765027) scale(1, -1) rotate(45.000000) translate(-11.987912, -10.765027) "></path>\n </g>\n </g>\n </g>\n </g>\n</svg>\n',"image/svg+xml").firstChild}var Qi=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),s(u(o=t.call(this,e)),"download",(function(e){if(!o.isLock){o.emitUserAction(e,"download");var t=o.getAbsoluteURL(o.player.src);Ji(t),o.isLock=!0,o.timer=window.setTimeout((function(){o.isLock=!1,window.clearTimeout(o.timer),o.timer=null}),300)}})),o.timer=null,o.isLock=!1,o}return r(i,[{key:"afterCreate",value:function(){p(l(i.prototype),"afterCreate",this).call(this),this.config.disable||(this.appendChild(".xgplayer-icon",this.icons.download),this.bind(["click","touchend"],this.download))}},{key:"registerIcons",value:function(){return{download:$i}}},{key:"getAbsoluteURL",value:function(e){if(!e.match(/^https?:\/\//)){var t=document.createElement("div");t.innerHTML='<a href="'.concat(e,'">x</a>'),e=t.firstChild.href}return e}},{key:"destroy",value:function(){p(l(i.prototype),"destroy",this).call(this),this.unbind(["click","touchend"],this.download),window.clearTimeout(this.timer),this.timer=null}},{key:"render",value:function(){if(!this.config.disable)return'<xg-icon class="xgplayer-download">\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.DOWNLOAD_TIPS,'">').concat(this.i18n.DOWNLOAD_TIPS,"</div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"download"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:3,disable:!0}}}]),i}(Pi),en=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"beforeCreate",value:function(e){"boolean"==typeof e.player.config.screenShot&&(e.config.disable=!e.player.config.screenShot)}},{key:"afterCreate",value:function(){p(l(i.prototype),"afterCreate",this).call(this),this.appendChild(".xgplayer-icon",this.icons.screenshotIcon);var e=this.config;this.initSize=function(t){e.fitVideo&&(e.width=t.vWidth,e.height=t.vHeight)},this.once(pe,this.initSize)}},{key:"onPluginsReady",value:function(){this.show(),this.onClickBtn=this.onClickBtn.bind(this),this.bind(["click","touchend"],this.onClickBtn)}},{key:"saveScreenShot",value:function(e,t){var i=document.createElement("a");i.href=e,i.download=t;var n=document.createEvent("MouseEvents");n.initMouseEvent("click",!0,!1,window,0,0,0,0,0,!1,!1,!1,!1,0,null),i.dispatchEvent(n)}},{key:"createCanvans",value:function(e,t){var i=document.createElement("canvas");this.canvasCtx=i.getContext("2d"),this.canvas=i,i.width=e||this.config.width,i.height=t||this.config.height}},{key:"onClickBtn",value:function(e){var t=this;e.preventDefault(),e.stopPropagation(),this.emitUserAction(e,"shot"),this.shot().then((function(e){t.emit(ye,e),t.saveScreenShot(e,t.config.name+t.config.format)}))}},{key:"shot",value:function(e,t){var i=this,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{quality:.92,type:"image/png"},o=this.config,r=this.player,s=n.quality||o.quality,a=n.type||o.type;return new Promise((function(n,l){var c=null;r.video.canvas?c=r.video.canvas:(i.canvas?(i.canvas.width=e||o.width,i.canvas.height=t||o.height):i.createCanvans(e,t),i.canvasCtx.drawImage(r.video,0,0,e||o.width,t||o.height),c=i.canvas);var u=c.toDataURL(a,s).replace(a,"image/octet-stream");n(u=u.replace(/^data:image\/[^;]+/,"data:application/octet-stream"))}))}},{key:"registerIcons",value:function(){return{screenshotIcon:null}}},{key:"destroy",value:function(){p(l(i.prototype),"destroy",this).call(this),this.unbind(["click","touchend"],this.onClickBtn),this.off(pe,this.initSize)}},{key:"render",value:function(){if(!this.config.disable){var e=this.icons.screenshotIcon?"xgplayer-icon":"xgplayer-icon btn-text",t="SCREENSHOT";return'\n <xg-icon class="xgplayer-shot">\n <div class="'.concat(e,'">\n ').concat(this.icons.screenshotIcon?"":'<span lang-key="'.concat(this.i18nKeys[t],'">').concat(this.i18n[t],"</span>")," \n </div>\n </xg-icon>")}}}],[{key:"pluginName",get:function(){return"screenShot"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:5,quality:.92,type:"image/png",format:".png",width:600,height:337,fitVideo:!0,disable:!1,name:"screenshot"}}}]),i}(Pi),tn=function(){function e(t){n(this,e),this.config=t.config,this.parent=t.root,this.root=x.createDom("ul","",{},"xg-options-list ".concat(this.config.className)),t.root.appendChild(this.root),this.onItemClick=this.onItemClick.bind(this),this.renderItemList();var i="mobile"===I.device?"touchend":"click";this._delegates=tt.delegate.call(this,this.root,"li",i,this.onItemClick)}return r(e,[{key:"renderItemList",value:function(e){var t=this,i=this.config,n=this.root;e?i.data=e:e=i.data,i.style&&Object.keys(i.style).map((function(e){n.style[e]=i[e]})),e.length>0&&(this.attrKeys=Object.keys(e[0])),this.root.innerHTML="",e.map((function(e,i){var n=e.selected?"option-item selected":"option-item";e["data-index"]=i,t.root.appendChild(x.createDom("li","<span>".concat(e.showText,"</span>"),e,n))}))}},{key:"onItemClick",value:function(e){e.delegateTarget||(e.delegateTarget=e.target);var t=e.delegateTarget;if(t&&x.hasClass(t,"selected"))return!1;var i="function"==typeof this.config.onItemClick?this.config.onItemClick:null,n=this.root.querySelector(".selected");x.addClass(t,"selected"),n&&x.removeClass(n,"selected"),i(e,{from:n?this.getAttrObj(n,this.attrKeys):null,to:this.getAttrObj(t,this.attrKeys)})}},{key:"getAttrObj",value:function(e,t){if(!e||!t)return{};var i={};t.map((function(t){i[t]=e.getAttribute(t)}));var n=e.getAttribute("data-index");return n&&(i.index=Number(n)),i}},{key:"show",value:function(){x.removeClass(this.root,"hide"),x.addClass(this.root,"active")}},{key:"hide",value:function(){x.removeClass(this.root,"active"),x.addClass(this.root,"hide")}},{key:"destroy",value:function(){this._delegates&&(this._delegates.map((function(e){e.destroy&&e.destroy()})),this._delegates=null),this.root.innerHTML=null,this.parent.removeChild(this.root),this.root=null}}]),e}(),nn="mobile"===I.device,on=function(e){a(o,e);var t=d(o);function o(e){var i;return n(this,o),s(u(i=t.call(this,e)),"onEnter",(function(e){e.preventDefault(),e.stopPropagation(),i.emit("icon_mouseenter",{pluginName:i.pluginName}),i.onToggle(!0)})),s(u(i),"onLeave",(function(e){e.preventDefault(),e.stopPropagation(),i.emit("icon_mouseleave",{pluginName:i.pluginName}),i.isActive&&i.onToggle(!1)})),i.isActive=!1,i.curValue=null,i.curIndex=0,i}return r(o,[{key:"updateLang",value:function(e){this.renderItemList(this.config.list,this.curIndex)}},{key:"afterCreate",value:function(){var e=this,t=this.config;nn&&"middle"!==t.listType&&(t.listType="rightSide"),t.hidePortrait&&x.addClass(this.root,"portrait"),this.once(W,(function(){t.list&&t.list.length>0&&(e.renderItemList(t.list),e.show())})),nn&&this.on($,(function(){e.isActive&&(e.optionsList&&e.optionsList.hide(),e.isActive=!1)})),this.activeEvent=nn?"touchend":"mouseenter",this.bind(this.activeEvent,this.onEnter),this.bind("mouseleave",this.onLeave)}},{key:"show",value:function(){!this.config.list||this.config.list.length<2||x.addClass(this.root,"show")}},{key:"hide",value:function(){x.removeClass(this.root,"show")}},{key:"getTextByLang",value:function(e,t,n){if(void 0===e)return"";var o=this.config.list;return!n&&(n=this.player.lang),t=!t||x.isUndefined(e[t])?"text":t,"number"==typeof e&&(e=o[e]),"object"===i(e[t])?e[t][n]||e[t].zh:e[t]||""}},{key:"onToggle",value:function(e){if(this.isActive!==e){var t=this.player.controls,i=this.config.listType;e?("rightSide"===i?t.blur():t.focus(),this.optionsList&&this.optionsList.show()):("rightSide"===i?t.focus():t.focusAwhile(),this.optionsList&&this.optionsList.hide()),this.isActive=e}}},{key:"onItemClick",value:function(e,t){e.preventDefault(),e.stopPropagation();var i=this.config,n=i.listType,o=i.list;(nn||"rightSide"===n)&&this.onToggle(!1),this.curIndex=t.to.index,this.curItem=o[this.curIndex],this.changeCurrentText(),this.onToggle(!1)}},{key:"changeCurrentText",value:function(){var e=this.config.list,t=e[this.curIndex<e.length?this.curIndex:0];t&&(this.find(".icon-text").innerHTML=this.getTextByLang(t,"iconText"))}},{key:"renderItemList",value:function(e,t){var i=this,n=this.config,o=this.optionsList,r=this.player;if("number"==typeof t&&(this.curIndex=t,this.curItem=n.list[t]),o)return o.renderItemList(e),void this.changeCurrentText();var s={config:{data:e||[],className:"rightSide"===n.listType?"right-side":"",onItemClick:function(e,t){i.onItemClick(e,t)}},root:"rightSide"===n.listType?r.root:this.root};this.config.isShowIcon&&(this.optionsList=new tn(s),this.changeCurrentText(),this.show())}},{key:"destroy",value:function(){this.unbind(this.activeEvent,this.onToggle),this.unbind("mouseleave",this.onToggle),this.optionsList&&(this.optionsList.destroy(),this.optionsList=null)}},{key:"render",value:function(){if(this.config.isShowIcon)return'<xg-icon class="xg-options-icon '.concat(this.config.className||"",'">\n <div class="xgplayer-icon btn-text">\n <span class="icon-text"></span>\n </div>\n </xg-icon>')}}],[{key:"pluginName",get:function(){return"optionsIcon"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:100,list:[],listType:"middle",listStyle:{},hidePortrait:!0,isShowIcon:!1}}}]),o}(tt),rn=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),(o=t.call(this,e)).curTime=0,o.isPaused=!0,o}return r(i,[{key:"beforeCreate",value:function(e){var t=e.config.list;Array.isArray(t)&&t.length>0&&(e.config.list=t.map((function(e){return!e.text&&e.name&&(e.text=e.name),e.text||(e.text=e.definition),e})))}},{key:"afterCreate",value:function(){var e=this;p(l(i.prototype),"afterCreate",this).call(this),this.on("resourceReady",(function(t){e.changeDefinitionList(t)})),this.on(de,(function(t){e.renderItemList(e.config.list,t.to)})),this.player.definitionList.length<2&&this.hide()}},{key:"initDefinition",value:function(){var e=this.config,t=e.list,i=e.defaultDefinition;if(t.length>0){var n=null;t.map((function(e){e.definition===i&&(n=e)})),n||(n=t[0]),this.changeDefinition(n)}}},{key:"renderItemList",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.config.list||[],n=arguments.length>1?arguments[1]:void 0,o=n&&n.definition?n.definition:this.config.defaultDefinition;n&&t.forEach((function(e){e.selected=!1}));var r=0,s=t.map((function(t,i){var n={url:t.url,definition:t.definition||"",showText:e.getTextByLang(t)||t.definition,selected:!1};return(t.selected||t.definition&&t.definition===o)&&(n.selected=!0,r=i),n}));p(l(i.prototype),"renderItemList",this).call(this,s,r)}},{key:"changeDefinitionList",value:function(e){Array.isArray(e)&&(this.config.list=e.map((function(e){return!e.text&&e.name&&(e.text=e.name),e.text||(e.text=e.definition),e})),this.renderItemList(),this.config.list.length<2?this.hide():this.show())}},{key:"changeDefinition",value:function(e,t){this.player.changeDefinition(e,t)}},{key:"onItemClick",value:function(e,t){var n=this.player.definitionList;p(l(i.prototype),"onItemClick",this).apply(this,arguments),this.emitUserAction(e,"change_definition",{from:t.from,to:t.to});for(var o=0;o<n.length;o++)t.to&&n[o].definition===t.to.definition&&(t.to.url=n[o].url),t.from&&n[o].definition===t.from.definition&&(t.from.url=n[o].url);this.player.changeDefinition(t.to,t.from)}}],[{key:"pluginName",get:function(){return"definition"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:3,list:[],defaultDefinition:"",disable:!1,hidePortrait:!1,className:"xgplayer-definition",isShowIcon:!0}}}]),i}(on),sn=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),(o=t.call(this,e)).curRate=1,o}return r(i,[{key:"beforeCreate",value:function(e){var t=e.player.config.playbackRate,i=t?Array.isArray(t)?t:e.config.list:[];Array.isArray(i)&&(e.config.list=i.map((function(e){return"number"==typeof e?e={rate:e,text:"".concat(e,"x")}:!e.text&&e.rate&&(e.text="".concat(e.rate,"x")),e})))}},{key:"afterCreate",value:function(){var e=this;p(l(i.prototype),"afterCreate",this).call(this),this.on(Y,(function(){e.curValue!==e.player.playbackRate&&e.renderItemList()})),this.renderItemList()}},{key:"show",value:function(){this.config.list&&0!==this.config.list.length&&p(l(i.prototype),"show",this).call(this)}},{key:"onItemClick",value:function(e,t){p(l(i.prototype),"onItemClick",this).apply(this,arguments);var n=e.delegateTarget,o=Number(n.getAttribute("rate"));if(!o||o===this.curValue)return!1;var r={playbackRate:{from:this.player.playbackRate,to:o}};this.emitUserAction(e,"change_rate",{props:r}),this.curValue=o,this.player.playbackRate=o}},{key:"renderItemList",value:function(){var e=this,t=this.player.playbackRate||1;this.curValue=t;var n=0,o=this.config.list.map((function(i,o){var r={rate:i.rate};return r.rate===t&&(r.selected=!0,n=o),r.showText=e.getTextByLang(i),r}));p(l(i.prototype),"renderItemList",this).call(this,o,n)}},{key:"destroy",value:function(){p(l(i.prototype),"destroy",this).call(this)}}],[{key:"pluginName",get:function(){return"playbackRate"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:4,list:[2,1.5,1,.75,.5],className:"xgplayer-playbackrate",isShowIcon:!0,hidePortrait:!1}}}]),i}(on);function an(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="31" height="40" viewBox="0 -5 31 40">\n <path fill="#fff" transform="scale(1.3, 1.3)" class=\'path_full\' d="M9,10v1a.9.9,0,0,1-1,1,.9.9,0,0,1-1-1V9A.9.9,0,0,1,8,8h2a.9.9,0,0,1,1,1,.9.9,0,0,1-1,1Zm6,4V13a1,1,0,0,1,2,0v2a.9.9,0,0,1-1,1H14a1,1,0,0,1,0-2Zm3-7H6V17H18Zm2,0V17a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2V7A2,2,0,0,1,6,5H18A2,2,0,0,1,20,7Z"></path>\n</svg>\n',"image/svg+xml").firstChild}function ln(){return(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" width="31" height="40" viewBox="0 -5 31 40">\n <path fill="#fff" transform="scale(1.3, 1.3)" d="M9,10V9a.9.9,0,0,1,1-1,.9.9,0,0,1,1,1v2a.9.9,0,0,1-1,1H8a.9.9,0,0,1-1-1,.9.9,0,0,1,1-1Zm6,4v1a1,1,0,0,1-2,0V13a.9.9,0,0,1,1-1h2a1,1,0,0,1,0,2Zm3-7H6V17H18Zm2,0V17a2,2,0,0,1-2,2H6a2,2,0,0,1-2-2V7A2,2,0,0,1,6,5H18A2,2,0,0,1,20,7Z"></path>\n</svg>\n',"image/svg+xml").firstChild}var cn=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"beforeCreate",value:function(e){"boolean"==typeof e.player.config.cssFullscreen&&(e.config.disable=!e.player.config.cssFullscreen)}},{key:"afterCreate",value:function(){var e=this;p(l(i.prototype),"afterCreate",this).call(this),this.config.disable||(this.config.target&&(this.playerConfig.fullscreenTarget=this.config.target),this.initIcons(),this.on(ue,(function(t){e.animate(t)})),this.btnClick=this.btnClick.bind(this),this.handleCssFullscreen=this.hook("cssFullscreen_change",this.btnClick,{pre:function(e){e.preventDefault(),e.stopPropagation()}}),this.bind(["click","touchend"],this.handleCssFullscreen))}},{key:"initIcons",value:function(){var e=this.icons,t=this.find(".xgplayer-icon");t.appendChild(e.cssFullscreen),t.appendChild(e.exitCssFullscreen)}},{key:"btnClick",value:function(e){e.preventDefault(),e.stopPropagation();var t=this.player.isCssfullScreen;this.emitUserAction(e,"switch_cssfullscreen",{cssfullscreen:t}),t?this.player.exitCssFullscreen():this.player.getCssFullscreen()}},{key:"animate",value:function(e){this.root&&(e?this.setAttr("data-state","full"):this.setAttr("data-state","normal"),this.switchTips(e))}},{key:"switchTips",value:function(e){var t=this.i18nKeys;this.changeLangTextKey(this.find(".xg-tips"),e?t.EXITCSSFULLSCREEN_TIPS:t.CSSFULLSCREEN_TIPS)}},{key:"registerIcons",value:function(){return{cssFullscreen:{icon:an,class:"xg-get-cssfull"},exitCssFullscreen:{icon:ln,class:"xg-exit-cssfull"}}}},{key:"destroy",value:function(){p(l(i.prototype),"destroy",this).call(this),this.unbind(["click","touchend"],this.btnClick)}},{key:"render",value:function(){if(!this.config.disable)return'<xg-icon class=\'xgplayer-cssfullscreen\'>\n <div class="xgplayer-icon">\n </div>\n <div class="xg-tips" lang-key="'.concat(this.i18nKeys.CSSFULLSCREEN_TIPS,'">').concat(this.i18n.CSSFULLSCREEN_TIPS,"</div>\n </xg-icon>")}}],[{key:"pluginName",get:function(){return"cssFullscreen"}},{key:"defaultConfig",get:function(){return{position:Je.CONTROLS_RIGHT,index:1,disable:!1,target:null}}}]),i}(Pi),un=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"afterCreate",value:function(){var e=this;this.clickHandler=this.hook("errorRetry",this.errorRetry,{pre:function(e){e.preventDefault(),e.stopPropagation()}}),this.onError=this.hook("showError",this.handleError),this.bind(".xgplayer-error-refresh","click",this.clickHandler),this.on(W,(function(){e.handleCanPlay()})),this.on(H,(function(t){e.onError(t)}))}},{key:"errorRetry",value:function(e){this.emitUserAction(e,"error_retry",{}),this.player.retry()}},{key:"handleCanPlay",value:function(){x.removeClass(this.player.root,"xgplayer-is-error")}},{key:"handleError",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.player,i=e.errorType,n=t.errorNote?this.i18n[t.errorNote]:"";if(!n)switch(i){case"decoder":n=this.i18n.MEDIA_ERR_DECODE;break;case"network":n=this.i18n.MEDIA_ERR_NETWORK;break;default:n=this.i18n.MEDIA_ERR_SRC_NOT_SUPPORTED}this.find(".xgplayer-error-text").innerHTML=n,this.find(".xgplayer-error-tips").innerHTML="".concat(this.i18n.REFRESH_TIPS,'<span class="xgplayer-error-refresh">').concat(this.i18n.REFRESH,"</span>")}},{key:"destroy",value:function(){this.unbind(".xgplayer-error-refresh","click",this.clickHandler)}},{key:"render",value:function(){return'<xg-error class="xgplayer-error">\n <div class="xgplayer-errornote">\n <span class="xgplayer-error-text"></span>\n <span class="xgplayer-error-tips"><em class="xgplayer-error-refresh"></em></span>\n </div>\n </xg-error>'}}],[{key:"pluginName",get:function(){return"error"}}]),i}(tt),hn=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"afterCreate",value:function(){var e=this;this.intervalId=0,this.customConfig=null,this.bind(".highlight",["click","touchend"],(function(t){(e.config.onClick||e.customOnClick)&&(t.preventDefault(),t.stopPropagation(),e.customOnClick?e.customOnClick(t):e.config.onClick(t))})),this.player.showPrompt=function(){e.show.apply(e,arguments)},this.player.hidePrompt=function(){e.hide()}}},{key:"setStyle",value:function(e){var t=this;Object.keys(e).map((function(i){t.root.style[i]=e[i]}))}},{key:"show",value:function(e){var t=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){};if(e){this.customOnClick=n;var o=this.config.interval;this.intervalId&&(clearTimeout(this.intervalId),this.intervalId=null),x.addClass(this.root,"show"),"arrow"===i.mode&&x.addClass(this.root,"arrow"),this.find(".xgplayer-prompt-detail").innerHTML="string"==typeof e?e:"".concat(e.text||"")+"".concat(e.highlight?'<i class="highlight">'.concat(e.highlight,"</i>"):""),i.style&&this.setStyle(i.style);var r="boolean"==typeof i.autoHide?i.autoHide:this.config.autoHide;if(r){var s=i.interval||o;this.intervalId=setTimeout((function(){t.hide()}),s)}}}},{key:"hide",value:function(){x.removeClass(this.root,"show"),x.removeClass(this.root,"arrow"),this.root.removeAttribute("style"),this.customOnClick=null}},{key:"render",value:function(){return'<xg-prompt class="xgplayer-prompt '.concat(rt.CONTROLS_FOLLOW,'">\n <span class="xgplayer-prompt-detail"></span>\n </xg-prompt>')}}],[{key:"pluginName",get:function(){return"prompt"}},{key:"defaultConfig",get:function(){return{interval:3e3,style:{},mode:"arrow",autoHide:!0,detail:{text:"",highlight:""},onClick:function(){}}}}]),i}(tt),dn={time:0,text:"",id:1,duration:1,color:"#fff",style:{},width:6,height:6};function fn(e){Object.keys(dn).map((function(t){void 0===e[t]&&(e[t]=dn[t])}))}var pn={initDots:function(){var e=this;this._ispots.map((function(t){e.createDot(t,!1)})),this._ispotsInit=!0},createDot:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=this.player.plugins.progress;if(i&&(t&&(fn(e),this._ispots.push(e)),this._ispotsInit||!t)){var n=this.calcuPosition(e.time,e.duration),o=e.style||{};o.left="".concat(n.left,"%"),o.width="".concat(n.width,"%");var r="xgspot_".concat(e.id," xgplayer-spot");n.isMini&&(r+=" mini");var s=x.createDom("xg-spot",e.template||"",{"data-text":e.text,"data-time":e.time,"data-id":e.id},r);Object.keys(o).map((function(e){s.style[e]=o[e]})),i.outer&&i.outer.appendChild(s)}},findDot:function(e){if(this.player.plugins.progress){var t=this._ispots.filter((function(t,i){return t.id===e}));return t.length>0?t[0]:null}},updateDot:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=this.player.plugins.progress;if(i){var n=this.findDot(e.id);if(n&&Object.keys(e).map((function(t){n[t]=e[t]})),this._ispotsInit){var o=i.find('xg-spot[data-id="'.concat(e.id,'"]'));if(o){var r=this.calcuPosition(e.time,e.duration),s=e.style||{};s.left="".concat(r.left,"%"),s.width="".concat(r.width,"%"),o.setAttribute("data-text",e.text),o.setAttribute("data-time",e.time),r.isMini?x.addClass(o,"mini"):x.removeClass(o,"mini"),Object.keys(s).map((function(e){o.style[e]=s[e]})),t&&this.showDot(e.id)}}}},deleteDot:function(e){var t=this._ispots,i=this.player.plugins.progress;if(i){for(var n=[],o=0;o<t.length;o++)t[o].id===e&&n.push(o);for(var r=n.length-1;r>=0;r--)if(t.splice(n[r],1),this._ispotsInit){var s=i.find('xg-spot[data-id="'.concat(e,'"]'));s&&s.parentElement.removeChild(s)}}},deleteAllDots:function(){var e=this.player.plugins.progress;if(e)if(this._ispotsInit){for(var t=e.root.getElementsByTagName("xg-spot"),i=t.length-1;i>=0;i--)e.outer.removeChild(t[i]);this._ispots=[]}else this._ispots=[]},updateAllDots:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],i=this.player.plugins.progress;if(i)if(this._ispotsInit){this._ispots=[];var n=i.root.getElementsByTagName("xg-spot"),o=n.length;if(o>t.length)for(var r=o-1;r>t.length-1;r--)i.outer.removeChild(n[r]);t.map((function(t,i){i<o?(n[i].setAttribute("data-id","".concat(t.id)),e._ispots.push(t),e.updateDot(t)):e.createDot(t)}))}else this._ispots=t},getAllDotsDom:function(){var e=this.player.plugins.progress;return e?e.root.getElementsByTagName("xg-spot"):[]},getDotDom:function(e){var t=this.player.plugins.progress;if(t)return t.find('xg-spot[data-id="'.concat(e,'"]'))}};var gn={dragmove:"onProgressMove",dragstart:"onProgressDragStart",dragend:"onProgressDragEnd",click:"onProgressClick",mouseover:"onProgressMouseOver"},vn=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),s(u(o=t.call(this,e)),"onMousemove",(function(e){o.config.disable||(o._state.f||x.hasClass(e.target,"xg-spot-content"))&&(x.event(e),e.stopPropagation())})),s(u(o),"onMousedown",(function(e){o.config.disable||(o._state.f||x.hasClass(e.target,"xg-spot-content"))&&(x.event(e),e.stopPropagation())})),s(u(o),"onMouseup",(function(e){if(o.isDrag){var t=o.player.plugins.progress;t&&t.pos&&(t.onMouseUp(e),!t.pos.isEnter&&t.onMouseLeave(e))}})),s(u(o),"onDotMouseLeave",(function(e){if(!o.config.disable){o._curDot.removeEventListener("mouseleave",o.onDotMouseLeave),o.blurDot(e.target),o._curDot=null;var t=o.player.plugins.progress;t&&t.enableBlur(),o.show()}})),s(u(o),"onProgressMouseOver",(function(e,t){if(!o.config.disable&&x.hasClass(t.target,"xgplayer-spot")&&!o._curDot){o._curDot=t.target,o.focusDot(t.target),o._curDot.children.length>0&&o.hide();var i=o.player.plugins.progress;i&&i.disableBlur(),o._curDot.addEventListener("mouseleave",o.onDotMouseLeave)}})),o._ispots=[],o.videoPreview=null,o.videothumbnail=null,o.thumbnail=null,o._state={now:0,f:!1},o}return r(i,[{key:"beforeCreate",value:function(e){var t=e.player.plugins.progress;t&&(e.root=t.root)}},{key:"afterCreate",value:function(){var e=this;this._curDot=null,this.handlerSpotClick=this.hook("spotClick",(function(t,i){i.time&&e.player.seek(i.time)})),function(e){var t=e.config,i=e.player;Object.keys(pn).map((function(t){e[t]=pn[t].bind(e)}));var n=i.config.progressDot||t.ispots||[];e._ispots=n.map((function(e){return fn(e),e})),e._ispotsInit=!1,i.once(K,(function(){e.initDots()}))}(this),this.config.disable&&this.disable()}},{key:"setConfig",value:function(e){var t=this;e&&Object.keys(e).map((function(i){t.config[i]=e[i]}))}},{key:"onPluginsReady",value:function(){this.player.plugins.progress&&(this.previewLine=this.find(".xg-spot-line"),this.timePoint=this.find(".xgplayer-progress-point"),this.timeText=this.find(".xg-spot-time"),this.tipText=this.find(".spot-inner-text"),this._hasThumnail=!1,this.registerThumbnail(),this.bindEvents())}},{key:"bindEvents",value:function(){var e=this,t=this.player.plugins.progress;if(t&&(Object.keys(gn).map((function(i){e[gn[i]]=e[gn[i]].bind(e),t.addCallBack(i,e[gn[i]])})),"mobile"!==I.device)){this.bind(".xg-spot-info","mousemove",this.onMousemove),this.bind(".xg-spot-info","mousedown",this.onMousedown),this.bind(".xg-spot-info","mouseup",this.onMouseup);var i=this.hook("previewClick",(function(){}));this.handlerPreviewClick=function(t){t.stopPropagation(),i(parseInt(1e3*e._state.now,10)/1e3,t)},this.bind(".xg-spot-content","mouseup",this.handlerPreviewClick)}}},{key:"onProgressMove",value:function(e,t){!this.config.disable&&this.player.duration&&this.updatePosition(e.offset,e.width,e.currentTime,e.e)}},{key:"onProgressDragStart",value:function(e){!this.config.disable&&this.player.duration&&(this.isDrag=!0,this.videoPreview&&x.addClass(this.videoPreview,"show"))}},{key:"onProgressDragEnd",value:function(e){!this.config.disable&&this.player.duration&&(this.isDrag=!1,this.videoPreview&&x.removeClass(this.videoPreview,"show"))}},{key:"onProgressClick",value:function(e,t){if(!this.config.disable&&x.hasClass(t.target,"xgplayer-spot")){t.stopPropagation(),t.preventDefault();var i={};["time","id","text"].map((function(e){i[e]=t.target.getAttribute("data-".concat(e))})),i.time&&(i.time=Number(i.time)),this.handlerSpotClick(t,i)}}},{key:"updateLinePos",value:function(e,t){var i,n,o=this.root,r=this.previewLine,s=this.timePoint,a="flex"===this.player.controls.mode,l=o.getBoundingClientRect().width,c=s.getBoundingClientRect().width,u=e-l/2;u<0&&!a?(u=0,i=e-l/2,!this.thumbnail&&(n=e-l/2-c/2)):u>t-l&&!a?(i=u-(t-l),!this.thumbnail&&(n=u-(t-l)-c/2),u=t-l):!this.thumbnail&&(n=-c/2),r.style.transform=void 0!==i?"translateX(".concat(i,"px)"):"",s.style.transform=void 0!==n?"translateX(".concat(n,"px)"):"",o.style.transform="translateX(".concat(u,"px)")}},{key:"updateTimeText",value:function(e){var t=this.timeText,i=this.timePoint;t.textContent=e,!this.thumbnail&&(i.textContent=e)}},{key:"updatePosition",value:function(e,t,i,n){var o=this.root,r=this.config,s=this._state;if(o){this.updateLinePos(e,t),s.now=i;var a=x.format(i);n&&n.target&&x.hasClass(n.target,"xgplayer-spot")?(this.showTips(n.target.getAttribute("data-text"),!1,a),this.focusDot(n.target),s.f=!0,r.isFocusDots&&s.f&&(s.now=parseInt(n.target.getAttribute("data-time"),10))):r.defaultText?(s.f=!1,this.showTips(r.defaultText,!0,a)):(s.f=!1,this.hideTips("")),this.updateTimeText(a),this.updateThumbnails(s.now)}}},{key:"updateThumbnails",value:function(e){var t=this.player,i=this.videoPreview,n=t.plugins.thumbnail;if(n&&n.usable){this.thumbnail&&n.update(this.thumbnail,e,160,90);var o=i&&i.getBoundingClientRect();this.videothumbnail&&n.update(this.videothumbnail,e,o.width,o.height)}}},{key:"changeThumbnail",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if("mobile"!==I.device){var t=this.player,i=this.config,n=t.getPlugin("thumbnail");if(n.changeConfig(e),n&&n.usable&&i.isShowThumbnail){x.removeClass(this.root,"short-line no-thumbnail"),this._hasThumnail=!0;var o=this.find(".xg-spot-thumbnail");this.videoPreview&&this.player.root.removeChild(this.videoPreview),this.thumbnail&&o.removeChild(this.thumbnail),this.thumbnail=n.createThumbnail(o,"progress-thumbnail"),i.isShowCoverPreview&&(this.videoPreview=x.createDom("xg-video-preview","",{},"xgvideo-preview"),t.root.appendChild(this.videoPreview),this.videothumbnail=n.createThumbnail(this.videoPreview,"xgvideo-thumbnail"))}else{x.addClass(this.root,"short-line no-thumbnail");var r=this.find(".xg-spot-thumbnail");this.videoPreview&&this.player.root.removeChild(this.videoPreview),this.thumbnail&&r.removeChild(this.thumbnail),this.videothumbnail=null,this.thumbnail=null,this._hasThumnail=!1}}}},{key:"registerThumbnail",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if("mobile"!==I.device){var t=this.player,i=this.config,n=t.getPlugin("thumbnail");if(n&&n.setConfig(e),n&&n.usable&&i.isShowThumbnail){x.removeClass(this.root,"short-line no-thumbnail"),this._hasThumnail=!0;var o=this.find(".xg-spot-thumbnail");this.thumbnail=n.createThumbnail(o,"progress-thumbnail"),i.isShowCoverPreview&&(this.videoPreview=x.createDom("xg-video-preview","",{},"xgvideo-preview"),t.root.appendChild(this.videoPreview),this.videothumbnail=n.createThumbnail(this.videoPreview,"xgvideo-thumbnail"))}else x.addClass(this.root,"short-line no-thumbnail")}}},{key:"calcuPosition",value:function(e,t){var i=this.player.plugins.progress,n=this.player,o=i.root.getBoundingClientRect().width,r=n.duration/o*6;return e+t>n.duration&&(t=n.duration-e),n.duration,n.duration,{left:e/n.duration*100,width:t/n.duration*100,isMini:t<r}}},{key:"showDot",value:function(e){var t=this.findDot(e);if(t){var i=this.root.getBoundingClientRect().width,n=t.time/this.player.duration*i;this.updatePosition(n,i,t.time)}}},{key:"focusDot",value:function(e,t){e&&(t||(t=e.getAttribute("data-id")),x.addClass(e,"active"),this._activeDotId=t)}},{key:"blurDot",value:function(e){if(!e){var t=this._activeDotId;e=this.getDotDom(t)}e&&(x.removeClass(e,"active"),this._activeDotId=null)}},{key:"showTips",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";x.addClass(this.root,"no-timepoint"),e&&(x.addClass(this.find(".xg-spot-content"),"show-text"),t&&"production"===this.config.mode?(x.addClass(this.root,"product"),this.tipText.textContent=e):(x.removeClass(this.root,"product"),this.tipText.textContent=this._hasThumnail?e:"".concat(i," ").concat(e)))}},{key:"hideTips",value:function(){x.removeClass(this.root,"no-timepoint"),this.tipText.textContent="",x.removeClass(this.find(".xg-spot-content"),"show-text"),x.removeClass(this.root,"product")}},{key:"hide",value:function(){x.addClass(this.root,"hide")}},{key:"show",value:function(){x.removeClass(this.root,"hide")}},{key:"enable",value:function(){var e=this.config,t=this.playerConfig;this.config.disable=!1,this.show(),!this.thumbnail&&e.isShowThumbnail&&this.registerThumbnail(t.thumbnail||{})}},{key:"disable",value:function(){this.config.disable=!0,this.hide()}},{key:"destroy",value:function(){var e=this,t=this.player.plugins.progress;t&&Object.keys(gn).map((function(i){t.removeCallBack(i,e[gn[i]])})),this.videothumbnail=null,this.thumbnail=null,this.videoPreview&&this.player.root.removeChild(this.videoPreview),this.unbind(".xg-spot-info","mousemove",this.onMousemove),this.unbind(".xg-spot-info","mousedown",this.onMousedown),this.unbind(".xg-spot-info","mouseup",this.onMouseup),this.unbind(".xg-spot-content","mouseup",this.handlerPreviewClick)}},{key:"render",value:function(){return"mobile"===I.device||"mobile"===this.playerConfig.isMobileSimulateMode?"":'<div class="xg-spot-info '.concat("short"===this.config.mode?"short-line":"",'">\n <div class="xg-spot-content">\n <div class="xg-spot-thumbnail">\n <span class="xg-spot-time"></span>\n </div>\n <div class="xg-spot-text"><span class="spot-inner-text"></span></div>\n </div>\n <div class="xgplayer-progress-point">00:00</div>\n <div class="xg-spot-line"></div>\n </div>')}}],[{key:"pluginName",get:function(){return"progresspreview"}},{key:"defaultConfig",get:function(){return{index:1,miniWidth:6,ispots:[],defaultText:"",isFocusDots:!0,isShowThumbnail:!0,isShowCoverPreview:!1,mode:"",disable:!1}}}]),i}(tt),yn=function(e){a(i,e);var t=d(i);function i(e){var o;return n(this,i),(o=t.call(this,e)).ratio=1,o.interval=-1,o.preloadMark={},o}return r(i,[{key:"afterCreate",value:function(){var e=this;this.usable&&this.initThumbnail(),this.on([K],(function(){var t=e.config,i=t.pic_num,n=t.interval;e.usable&&(e.interval=n>0?n:Math.round(1e3*e.player.duration/i)/1e3)}))}},{key:"setConfig",value:function(e){var t=this;e&&(Object.keys(e).map((function(i){t.config[i]=e[i]})),this.usable&&this.initThumbnail())}},{key:"usable",get:function(){var e=this.config,t=e.urls,i=e.pic_num;return t&&t.length>0&&i>0}},{key:"initThumbnail",value:function(){var e=this.config,t=e.width,i=e.height,n=e.pic_num,o=e.interval;this.ratio=t/i*100,this.interval=o>0?o:Math.round(1e3*this.player.duration/n)/1e3,this.preload(0)}},{key:"getUrlByIndex",value:function(e){return e>=0&&e<this.config.urls.length?this.config.urls[e]:""}},{key:"preload",value:function(e){var t=this,i=this.config.urls,n=i.length;[e-1,e,e+1,e+2].map((function(e){!t.preloadMark[e]&&e>=0&&e<n&&(x.preloadImg(i[e]),t.preloadMark[e]=!0)}))}},{key:"getPosition",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,n=this.config,o=n.pic_num,r=n.row,s=n.col,a=n.width,l=n.height,c=Math.ceil(e/this.interval),u=(c=c>o?o:c)<r*s?0:Math.ceil(c/(r*s))-1,h=c-u*(s*r),d=h>0?Math.ceil(h/s)-1:0,f=h>0?h-d*s-1:0,p=0,g=0;if(t&&i){var v=t/i;v<a/l?g=(p=t)/(a/l):p=(g=i)*(a/l)}else g=(p=t||a)/(a/l);var y=this.getUrlByIndex(u);return{urlIndex:u,rowIndex:d,colIndex:f,url:y,height:g,width:p,style:{backgroundImage:"url(".concat(y,")"),backgroundSize:"".concat(p*s,"px auto"),backgroundPosition:"-".concat(f*p,"px -").concat(d*g,"px"),width:"".concat(p,"px"),height:"".concat(g,"px")}}}},{key:"update",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},r=this.config,s=r.pic_num,a=r.urls;if(!(s<1)&&a&&0!==a.length){var l=this.getPosition(t,i,n);this.preload(l.urlIndex),Object.keys(l.style).map((function(t){e.style[t]=l.style[t]})),Object.keys(o).map((function(t){e.style[t]=o[t]}))}}},{key:"changeConfig",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.setConfig(e)}},{key:"createThumbnail",value:function(e,t){var i=x.createDom("xg-thumbnail","",{},"thumbnail ".concat(t));return e&&e.appendChild(i),i}}],[{key:"pluginName",get:function(){return"thumbnail"}},{key:"defaultConfig",get:function(){return{isShow:!1,urls:[],pic_num:0,col:0,row:0,width:160,height:90,scale:1,className:"",hidePortrait:!1}}}]),i}(tt),mn=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i,[{key:"afterCreate",value:function(){}},{key:"update",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{cached:0,played:0},t=arguments.length>1?arguments[1]:void 0;t&&this.root&&(e.cached&&(this.find("xg-mini-progress-cache").style.width="".concat(e.cached/t*100,"%")),e.played&&(this.find("xg-mini-progress-played").style.width="".concat(e.played/t*100,"%")))}},{key:"render",value:function(){if(this.playerConfig.progress&&this.playerConfig.miniprogress)return'<xg-mini-progress class="xg-mini-progress">\n <xg-mini-progress-cache class="xg-mini-progress-cache"></xg-mini-progress-cache>\n <xg-mini-progress-played class="xg-mini-progress-played"></xg-mini-progress-played>\n </xg-mini-progress>'}}],[{key:"pluginName",get:function(){return"MiniProgress"}},{key:"defaultConfig",get:function(){return{}}}]),i}(tt),kn="realtime",bn="firstframe",Cn="poster";function wn(){try{return window.performance.now()}catch(e){return(new Date).getTime()}}var _n=null,xn=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"start",(function(){var t=e.player.video,i=wn(),n=e.checkVideoIsSupport(t);n&&e.canvasCtx&&t.videoWidth&&t.videoHeight&&(e.stop(),e.videoPI=t.videoHeight>0?parseInt(t.videoWidth/t.videoHeight*100,10):0,(e.config.mode===kn||i-e.preTime>=e.interval)&&(t&&t.videoWidth&&e.update(n,e.videoPI),e.preTime=i),e.frameId=x.requestAnimationFrame(e.start))})),s(u(e),"stop",(function(){e.frameId&&(x.cancelAnimationFrame(e.frameId),e.frameId=null)})),e}return r(i,[{key:"afterCreate",value:function(){var e=this;!0===this.playerConfig.dynamicBg&&(this.config.disable=!1),i.isSupport||(this.config.disable=!0);var t=this.config,n=t.disable,o=t.mode;n||(this._pos={width:0,height:0,rwidth:0,rheight:0,x:0,y:0,pi:0},this.isStart=!1,this.videoPI=0,this.preTime=0,this.interval=parseInt(1e3/this.config.frameRate,10),this.canvas=null,this.canvasCtx=null,this.once(oe,(function(){e.player&&e.init()})),o!==Cn&&(o!==bn&&(this.on(J,(function(){e.stop()})),this.on(M,(function(){e.start()})),this.on(F,(function(){e.stop()}))),o===bn&&this.once(G,(function(){e.renderOnce()}))))}},{key:"init",value:function(){var e=this.player,t=this.config;this.canvasFilter=i.supportCanvasFilter();try{var n=this.config.isInnerRender&&e.innerContainer||e.root;n.insertAdjacentHTML("afterbegin",'<div class="xgplayer-dynamic-bg"><canvas>\n </canvas><xgmask></xgmask></div>'),this.root=n.children[0],this.canvas=this.find("canvas"),this.canvasFilter||(this.canvas.style.filter=t.filter,this.canvas.style.webkitFilter=t.filter),this.mask=this.find("xgmask"),t.addMask&&(this.mask.style.background=t.maskBg),this.canvasCtx=this.canvas.getContext("2d"),this.renderByPoster()}catch(o){w.logError("plugin:DynamicBg",o)}}},{key:"checkVideoIsSupport",value:function(e){if(!e)return null;var t=e&&e instanceof window.HTMLVideoElement?e:e.canvas?e.canvas:e.flyVideo?e.flyVideo:null;if(t&&("safari"!==I.browser||!/^blob/.test(t.currentSrc)&&!/^blob/.test(t.src)))return t;var i=t?t.tagName.toLowerCase():"";return"canvas"===i||"img"===i?t:null}},{key:"renderByPoster",value:function(){var e=this.playerConfig.poster;if(e){var t="String"===x.typeOf(e)?e:"String"===x.typeOf(e.poster)?e.poster:null;this.updateImg(t)}}},{key:"renderOnce",value:function(){var e=this.player.video;if(e.videoWidth&&e.videoHeight){this.videoPI=parseInt(e.videoWidth/e.videoHeight*100,10);var t=this.checkVideoIsSupport(e);t&&e.videoWidth&&this.update(t,this.videoPI)}}},{key:"updateImg",value:function(e){var t=this;if(e){var i=this.canvas.getBoundingClientRect(),n=i.width,o=i.height,r=new window.Image;r.onload=function(){if(t.canvas&&!t.frameId&&!t.isStart){t.canvas.height=o,t.canvas.width=n;var e=parseInt(n/o*100,10);t.update(r,e),r=null}},r.src=e}}},{key:"update",value:function(e,t){if(this.canvas&&this.canvasCtx&&t)try{var i=this._pos,n=this.config,o=this.canvas.getBoundingClientRect(),r=o.width,s=o.height;if(r!==i.width||s!==i.height||i.pi!==t){var a=parseInt(r/s*100,10);i.pi=t,i.width=this.canvas.width=r,i.height=this.canvas.height=s;var l=s,c=r;a<t?c=parseInt(s*t/100,10):a>t&&(l=parseInt(100*r/t,10)),i.rwidth=c*n.multiple,i.rheight=l*n.multiple,i.x=(r-i.rwidth)/2,i.y=(s-i.rheight)/2}this.canvasFilter&&(this.canvasCtx.filter=n.filter),this.canvasCtx.drawImage(e,i.x,i.y,i.rwidth,i.rheight)}catch(u){w.logError("plugin:DynamicBg",u)}}},{key:"destroy",value:function(){this.stop(),this.canvasCtx=null,this.canvas=null}},{key:"render",value:function(){return""}}],[{key:"pluginName",get:function(){return"dynamicBg"}},{key:"defaultConfig",get:function(){return{isInnerRender:!1,disable:!0,mode:"framerate",frameRate:10,filter:"blur(50px)",addMask:!0,multiple:1.2,maskBg:"rgba(0,0,0,0.7)"}}},{key:"isSupport",get:function(){return"boolean"==typeof _n?_n:_n=function(){try{return!!document.createElement("canvas").getContext}catch(e){return!1}}()}},{key:"supportCanvasFilter",value:function(){return!("safari"===I.browser||"firefox"===I.browser)}}]),i}(tt),Tn="info",En=xe,Sn=function(e){a(o,e);var i=d(o);function o(){var e;n(this,o);for(var r=arguments.length,a=new Array(r),l=0;l<r;l++)a[l]=arguments[l];return s(u(e=i.call.apply(i,[this].concat(a))),"_recordUserActions",(function(i){var n=e._getTime(),o=Object.assign({},i,{msg:i.msg||i.action});e._stats.info.push(t(t({type:"userAction"},n),{},{payload:o}))})),s(u(e),"_onReset",(function(){e.reset()})),s(u(e),"_recordInfo",(function(t){e.info(t)})),s(u(e),"_downloadStats",(function(){var t=e.getStats(),i=new Blob([JSON.stringify(t)],{type:"application/json"}),n=window.URL.createObjectURL(i),o=document.createElement("a");o.style.display="none",o.href=n,o.download="player.txt",o.disabled=!1,o.click()})),e}return r(o,[{key:"_getTime",value:function(){return{timestamp:Date.now(),timeFormat:(new Date).toISOString()}}},{key:"afterCreate",value:function(){this.reset(),this.on(Ce,this._recordUserActions),this.on(En.STATS_INFO,this._recordInfo),this.on(En.STATS_DOWNLOAD,this._downloadStats),this.on(En.STATS_RESET,this._onReset)}},{key:"destroy",value:function(){this.offAll()}},{key:"downloadStats",value:function(){this._downloadStats()}},{key:"info",value:function(e){e.profile?this._infoProfile(e):this._info(e)}},{key:"_info",value:function(e){var i=this._getTime();this._stats.info.push(t(t({},i),{},{payload:e}))}},{key:"_infoProfile",value:function(e){if(e&&e.startMs){var i=t({cat:"function",dur:Date.now()-e.startMs,name:e.name||e.msg,ph:"X",pid:0,tid:0,ts:e.startMs,profile:!0},e);this._info(i)}else console.warn("infoProfile need object data, include startMs")}},{key:"reset",value:function(){var e;this._stats=(s(e={},Tn,[]),s(e,"media",{}),e)}},{key:"getStats",value:function(){for(var e=this.player.video,t=[],i=0;i<e.buffered.length;i++)t.push({start:e.buffered.start(i),end:e.buffered.end(i)});var n={currentTime:e.currentTime,readyState:e.readyState,buffered:t,paused:e.paused,ended:e.ended};return this._stats.media=n,{raw:this._stats,timestat:this._getTimeStats(),profile:this._getProfile()}}},{key:"_getTimeStats",value:function(){return this._stats.info.map((function(e){var t=e.payload.data,i="";try{t instanceof Error?i=t.msg:void 0!==t&&(i=JSON.stringify(t))}catch(n){console.log("err",n)}return"[".concat(e.timeFormat,"] : ").concat(e.payload.msg," ").concat(i," ")}))}},{key:"_getProfile",value:function(){var e={traceEvents:[]};return this._stats.info.forEach((function(t){t.payload.profile&&e.traceEvents.push(t.payload)})),e}}],[{key:"pluginName",get:function(){return"stats"}},{key:"defaultConfig",get:function(){return{}}}]),o}(We),Pn=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"onGapJump",(function(){var t=u(e),n=t.player,o=t.config;if(n.video.readyState!==HTMLMediaElement.HAVE_NOTHING){if(n.video.seeking){if(!e.seekingEventReceived)return}else e.seekingEventReceived=!1;if(!n.video.paused||0===n.video.currentTime||!e.hasPlayed){var r=n.video.buffered,s=o.smallGapLimit||.5,a=o.gapDetectionThreshold||.3,l=n.video.currentTime,c=e._getIndex(r,l,a);if(null!==c&&0!==c){console.log("GapJump bufferRange ",r.start(c),r.end(c));var h=r.start(c)+.1;if(!(h>n.video.duration)){var d=h-l,f=d<=s;d<i.BROWSER_GAP_TOLERANCE||f&&(!1!==o.useGapJump&&(n.video.currentTime=e.isSafari?h+.1:h),e.player&&e.player.emit("detectGap"),console.log("gapJump gapIndex",c," isGapSamll:",f," currentTime:",n.video.currentTime," jumpSize:",l-n.video.currentTime),.08!==h&&n&&n.emit("log",{type:"oneevent",end_type:"gap",vid:n.config.vid,ext:{video_postion:Math.floor(1e3*h)}}))}}}}})),e}return r(i,[{key:"afterCreate",value:function(){var e=this;!1!==this.config.useGapJump&&(this.hasPlayed=!1,this.seekingEventReceived=!1,this.isSafari=/(Safari|iPhone|iPad|iPod)/.test(navigator.userAgent)&&!/Chrome/.test(navigator.userAgent)&&!/BlackBerry/.test(navigator.platform),this.on(V,this.onGapJump),this.on(M,(function(){e.hasPlayed=!0})),this.on(B,(function(){e.seekingEventReceived=!0})))}},{key:"_getIndex",value:function(e,t,i){if(!e||!e.length)return null;if(1===e.length&&e.end(0)-e.start(0)<1e-6)return null;for(var n=this._getBuffered(e),o=null,r=0;r<n.length;r++){if(n[r].start>t&&(0===r||n[r-1].end-t<=i)){o=r;break}}return o}},{key:"_getBuffered",value:function(e){if(!e)return[];for(var t=[],i=0;i<e.length;i++)t.push({start:e.start(i),end:e.end(i)});return t}}],[{key:"pluginName",get:function(){return"gapJump"}},{key:"defaultConfig",get:function(){return{useGapJump:!1,smallGapLimit:.5,gapDetectionThreshold:.3}}}]),i}(tt);Pn.BROWSER_GAP_TOLERANCE=.001;var Ln=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"onWaiting",(function(){var t=u(e).config;e.jumpCnt>t.jumpCntMax||e.timer||!1===t.useWaitingTimeoutJump||(e.timer=setTimeout(e.onJump,1e3*t.waitingTime))})),s(u(e),"onJump",(function(){var t=u(e),i=t.player,n=t.config;if(clearTimeout(e.timer),e.timer=null,!(e.jumpCnt>n.jumpCntMax||!1===n.useWaitingTimeoutJump||i.video.paused&&0!==i.video.currentTime&&e.hasPlayed)){e.jumpSize=n.jumpSize*(e.jumpCnt+1),e.jumpCnt===n.jumpSize&&e.jumpSize<6&&(e.jumpSize=6);var o=i.currentTime+e.jumpSize;o>i.video.duration||(console.log("waitintTimeout, currentTime:",i.currentTime,", jumpTo:",o),e.jumpCnt++,i.currentTime=o)}})),e}return r(i,[{key:"afterCreate",value:function(){var e=this,t=this.config,i=t.useWaitingTimeoutJump,n=t.jumpSize;!1!==i&&(this.hasPlayed=!1,this.jumpCnt=0,this.timer=null,this.jumpSize=n,this.on(V,this.onWaiting),this.on([j,W],(function(){clearTimeout(e.timer),e.timer=null,e.jumpSize=e.config.jumpSize})),this.on(M,(function(){e.hasPlayed=!0})))}}],[{key:"pluginName",get:function(){return"waitingTimeoutJump"}},{key:"defaultConfig",get:function(){return{useWaitingTimeoutJump:!1,waitingTime:15,jumpSize:2,jumpCntMax:4}}}]),i}(tt),An=function(e){a(i,e);var t=d(i);function i(){var e;n(this,i);for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];return s(u(e=t.call.apply(t,[this].concat(r))),"getSpeed",(function(t){if(e.speedListCache.length<=0)return 0;var i=0;return e.speedListCache.map((function(e){i+=e})),Math.floor(i/e.speedListCache.length)})),s(u(e),"_onRealSpeedChange",(function(t){t.speed&&e.appendList(t.speed)})),s(u(e),"testSpeed",(function(){if(clearTimeout(e.timer),e.timer=null,e.player&&e.config.openSpeed){var t=e.config,i=t.url,n=t.loadSize,o=t.testCnt,r=t.testTimeStep,s=i+(i.indexOf("?")<0?"?testst=":"&testst=")+Date.now();if(!(e.cnt>=o)){e.cnt++;try{var a=(new Date).getTime(),l=null,c=new XMLHttpRequest;e.xhr=c,c.open("GET",s);var u={},h=Math.floor(10*Math.random());u.Range="bytes="+h+"-"+(n+h),u&&Object.keys(u).forEach((function(e){c.setRequestHeader(e,u[e])})),c.onreadystatechange=function(){if(4===c.readyState){e.xhr=null,l=(new Date).getTime();var t=c.getResponseHeader("Content-Length")/1024*8,i=Math.round(1e3*t/(l-a));e.appendList(i),e.timer=setTimeout(e.testSpeed,r)}},c.send()}catch(d){console.error(d)}}}})),s(u(e),"appendList",(function(t){var i=e.config.saveSpeedMax;e.speedListCache.length>=i&&e.speedListCache.shift(),e.speedListCache.push(t),e.player&&(e.player.realTimeSpeed=t),e.updateSpeed()})),s(u(e),"updateSpeed",(function(){var t=e.getSpeed(),i=u(e).player;!i||i.avgSpeed&&t===i.avgSpeed||(i.avgSpeed=t,i.emit(le,{speed:t,realTimeSpeed:i.realTimeSpeed}))})),e}return r(i,[{key:"afterCreate",value:function(){var e=this;this.speedListCache=[];var t=this.config,i=t.openSpeed,n=t.testTimeStep;this.timer=null,this.cnt=0,this.xhr=null,i&&(this.on("real_time_speed",this._onRealSpeedChange),this.on([z,re],(function(){x.isMSE(e.player.video)||(e.speedListCache=[],e.cnt=0,e.timer=setTimeout(e.testSpeed,n))})))}},{key:"openSpeed",get:function(){return this.config.openSpeed},set:function(e){if(this.config.openSpeed=e,!e&&this.timer)return clearTimeout(this.timer),void(this.timer=null);if(this.config.openSpeed){if(this.timer)return;this.timer=setTimeout(this.testSpeed,this.config.testTimeStep)}}},{key:"destroy",value:function(){clearTimeout(this.timer),this.timer=null,this.xhr&&4!==this.xhr.readyState&&(this.xhr.cancel(),this.xhr=null)}}],[{key:"pluginName",get:function(){return"testspeed"}},{key:"defaultConfig",get:function(){return{openSpeed:!1,testCnt:3,loadSize:204800,testTimeStep:3e3,url:"",saveSpeedMax:5}}}]),i}(tt);bt.use({LANG:"zh-cn",TEXT:{ERROR_TYPES:{network:{code:1,msg:"视频下载错误"},mse:{code:2,msg:"流追加错误"},parse:{code:3,msg:"解析错误"},format:{code:4,msg:"格式错误"},decoder:{code:5,msg:"解码错误"},runtime:{code:6,msg:"语法错误"},timeout:{code:7,msg:"播放超时"},other:{code:8,msg:"其他错误"}},HAVE_NOTHING:"没有关于音频/视频是否就绪的信息",HAVE_METADATA:"音频/视频的元数据已就绪",HAVE_CURRENT_DATA:"关于当前播放位置的数据是可用的,但没有足够的数据来播放下一帧/毫秒",HAVE_FUTURE_DATA:"当前及至少下一帧的数据是可用的",HAVE_ENOUGH_DATA:"可用数据足以开始播放",NETWORK_EMPTY:"音频/视频尚未初始化",NETWORK_IDLE:"音频/视频是活动的且已选取资源,但并未使用网络",NETWORK_LOADING:"浏览器正在下载数据",NETWORK_NO_SOURCE:"未找到音频/视频来源",MEDIA_ERR_ABORTED:"取回过程被用户中止",MEDIA_ERR_NETWORK:"网络错误",MEDIA_ERR_DECODE:"解码错误",MEDIA_ERR_SRC_NOT_SUPPORTED:"不支持的音频/视频格式",REPLAY:"重播",ERROR:"网络连接似乎出现了问题",PLAY_TIPS:"播放",PAUSE_TIPS:"暂停",PLAYNEXT_TIPS:"下一集",DOWNLOAD_TIPS:"下载",ROTATE_TIPS:"旋转",RELOAD_TIPS:"重新载入",FULLSCREEN_TIPS:"进入全屏",EXITFULLSCREEN_TIPS:"退出全屏",CSSFULLSCREEN_TIPS:"进入样式全屏",EXITCSSFULLSCREEN_TIPS:"退出样式全屏",TEXTTRACK:"字幕",PIP:"画中画",SCREENSHOT:"截图",LIVE:"正在直播",OFF:"关闭",OPEN:"开启",MINI_DRAG:"点击按住可拖动视频",MINISCREEN:"小屏幕",REFRESH_TIPS:"请试试",REFRESH:"刷新",FORWARD:"快进中",LIVE_TIP:"直播"}});var In=r((function e(t,i){var o,r,s;n(this,e);var a=i&&"mobile"===i.isMobileSimulateMode,l=i.isLive,c=[].concat(l?[]:[Si,mn,vn,Mi],[Li,Di,Ui,Xi,rn,sn,Qi,en,Hi,zi]),u=[Mt,jt,Bt,xi,Ut,un,hn,yn,Qt];this.plugins=[Sn,Rt].concat(g(c),u,[Pn,Ln]);var h=a?"mobile":I.device;switch(h){case"pc":(o=this.plugins).push.apply(o,[wi,ii,cn,An]);break;case"mobile":(r=this.plugins).push.apply(r,[ki]);break;default:(s=this.plugins).push.apply(s,[wi,ii,cn])}(I.os.isIpad||"pc"===h)&&this.plugins.push(xn),I.os.isIpad&&this.plugins.push(ii),this.ignores=[],this.i18n=[]})),On=function(e){a(i,e);var t=d(i);function i(){return n(this,i),t.apply(this,arguments)}return r(i)}(xt);return s(On,"defaultPreset",In),s(On,"Util",x),s(On,"Sniffer",I),s(On,"Errors",D),s(On,"Events",Te),s(On,"Plugin",tt),s(On,"BasePlugin",We),s(On,"I18N",bt),s(On,"STATE_CLASS",rt),On}));
2
2
  //# sourceMappingURL=index.min.js.map