(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[945],{60722:function(e,t,a){var r=Object.create,n=Object.defineProperty,o=Object.getOwnPropertyDescriptor,i=Object.getOwnPropertyNames,l=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,u=(e,t,a)=>t in e?n(e,t,{enumerable:!0,configurable:!0,writable:!0,value:a}):e[t]=a,p=(e,t,a,r)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let l of i(t))s.call(e,l)||l===a||n(e,l,{get:()=>t[l],enumerable:!(r=o(t,l))||r.enumerable});return e},d=(e,t,a)=>(a=null!=e?r(l(e)):{},p(!t&&e&&e.__esModule?a:n(a,"default",{value:e,enumerable:!0}),e)),y=(e,t,a)=>(u(e,"symbol"!=typeof t?t+"":t,a),a),c={};((e,t)=>{for(var a in t)n(e,a,{get:t[a],enumerable:!0})})(c,{default:()=>P}),e.exports=p(n({},"__esModule",{value:!0}),c);var h=d(a(67294)),f=d(a(69590)),m=a(85741),b=a(38045);class P extends h.Component{constructor(){super(...arguments),y(this,"mounted",!1),y(this,"isReady",!1),y(this,"isPlaying",!1),y(this,"isLoading",!0),y(this,"loadOnReady",null),y(this,"startOnPlay",!0),y(this,"seekOnPlay",null),y(this,"onDurationCalled",!1),y(this,"handlePlayerMount",e=>{if(this.player){this.progress();return}this.player=e,this.player.load(this.props.url),this.progress()}),y(this,"getInternalPlayer",e=>this.player?this.player[e]:null),y(this,"progress",()=>{if(this.props.url&&this.player&&this.isReady){let e=this.getCurrentTime()||0,t=this.getSecondsLoaded(),a=this.getDuration();if(a){let r={playedSeconds:e,played:e/a};null!==t&&(r.loadedSeconds=t,r.loaded=t/a),(r.playedSeconds!==this.prevPlayed||r.loadedSeconds!==this.prevLoaded)&&this.props.onProgress(r),this.prevPlayed=r.playedSeconds,this.prevLoaded=r.loadedSeconds}}this.progressTimeout=setTimeout(this.progress,this.props.progressFrequency||this.props.progressInterval)}),y(this,"handleReady",()=>{if(!this.mounted)return;this.isReady=!0,this.isLoading=!1;let{onReady:e,playing:t,volume:a,muted:r}=this.props;e(),r||null===a||this.player.setVolume(a),this.loadOnReady?(this.player.load(this.loadOnReady,!0),this.loadOnReady=null):t&&this.player.play(),this.handleDurationCheck()}),y(this,"handlePlay",()=>{this.isPlaying=!0,this.isLoading=!1;let{onStart:e,onPlay:t,playbackRate:a}=this.props;this.startOnPlay&&(this.player.setPlaybackRate&&1!==a&&this.player.setPlaybackRate(a),e(),this.startOnPlay=!1),t(),this.seekOnPlay&&(this.seekTo(this.seekOnPlay),this.seekOnPlay=null),this.handleDurationCheck()}),y(this,"handlePause",e=>{this.isPlaying=!1,this.isLoading||this.props.onPause(e)}),y(this,"handleEnded",()=>{let{activePlayer:e,loop:t,onEnded:a}=this.props;e.loopOnEnded&&t&&this.seekTo(0),t||(this.isPlaying=!1,a())}),y(this,"handleError",(...e)=>{this.isLoading=!1,this.props.onError(...e)}),y(this,"handleDurationCheck",()=>{clearTimeout(this.durationCheckTimeout);let e=this.getDuration();e?this.onDurationCalled||(this.props.onDuration(e),this.onDurationCalled=!0):this.durationCheckTimeout=setTimeout(this.handleDurationCheck,100)}),y(this,"handleLoaded",()=>{this.isLoading=!1})}componentDidMount(){this.mounted=!0}componentWillUnmount(){clearTimeout(this.progressTimeout),clearTimeout(this.durationCheckTimeout),this.isReady&&this.props.stopOnUnmount&&(this.player.stop(),this.player.disablePIP&&this.player.disablePIP()),this.mounted=!1}componentDidUpdate(e){if(!this.player)return;let{url:t,playing:a,volume:r,muted:n,playbackRate:o,pip:i,loop:l,activePlayer:s,disableDeferredLoading:u}=this.props;if(!(0,f.default)(e.url,t)){if(this.isLoading&&!s.forceLoad&&!u&&!(0,b.isMediaStream)(t)){console.warn(`ReactPlayer: the attempt to load ${t} is being deferred until the player has loaded`),this.loadOnReady=t;return}this.isLoading=!0,this.startOnPlay=!0,this.onDurationCalled=!1,this.player.load(t,this.isReady)}e.playing||!a||this.isPlaying||this.player.play(),e.playing&&!a&&this.isPlaying&&this.player.pause(),!e.pip&&i&&this.player.enablePIP&&this.player.enablePIP(),e.pip&&!i&&this.player.disablePIP&&this.player.disablePIP(),e.volume!==r&&null!==r&&this.player.setVolume(r),e.muted!==n&&(n?this.player.mute():(this.player.unmute(),null!==r&&setTimeout(()=>this.player.setVolume(r)))),e.playbackRate!==o&&this.player.setPlaybackRate&&this.player.setPlaybackRate(o),e.loop!==l&&this.player.setLoop&&this.player.setLoop(l)}getDuration(){return this.isReady?this.player.getDuration():null}getCurrentTime(){return this.isReady?this.player.getCurrentTime():null}getSecondsLoaded(){return this.isReady?this.player.getSecondsLoaded():null}seekTo(e,t,a){if(!this.isReady){0!==e&&(this.seekOnPlay=e,setTimeout(()=>{this.seekOnPlay=null},5e3));return}if(t?"fraction"===t:e>0&&e<1){let t=this.player.getDuration();if(!t){console.warn("ReactPlayer: could not seek using fraction –\xa0duration not yet available");return}this.player.seekTo(t*e,a);return}this.player.seekTo(e,a)}render(){let e=this.props.activePlayer;return e?h.default.createElement(e,{...this.props,onMount:this.handlePlayerMount,onReady:this.handleReady,onPlay:this.handlePlay,onPause:this.handlePause,onEnded:this.handleEnded,onLoaded:this.handleLoaded,onError:this.handleError}):null}}y(P,"displayName","Player"),y(P,"propTypes",m.propTypes),y(P,"defaultProps",m.defaultProps)},70390:function(e,t,a){var r=Object.create,n=Object.defineProperty,o=Object.getOwnPropertyDescriptor,i=Object.getOwnPropertyNames,l=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,u=(e,t,a)=>t in e?n(e,t,{enumerable:!0,configurable:!0,writable:!0,value:a}):e[t]=a,p=(e,t,a,r)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let l of i(t))s.call(e,l)||l===a||n(e,l,{get:()=>t[l],enumerable:!(r=o(t,l))||r.enumerable});return e},d=(e,t,a)=>(a=null!=e?r(l(e)):{},p(!t&&e&&e.__esModule?a:n(a,"default",{value:e,enumerable:!0}),e)),y=(e,t,a)=>(u(e,"symbol"!=typeof t?t+"":t,a),a),c={};((e,t)=>{for(var a in t)n(e,a,{get:t[a],enumerable:!0})})(c,{createReactPlayer:()=>S}),e.exports=p(n({},"__esModule",{value:!0}),c);var h=d(a(67294)),f=d(a(9996)),m=d(a(30845)),b=d(a(69590)),P=a(85741),g=a(38045),w=d(a(60722));let v=(0,g.lazy)(()=>a.e(7664).then(a.t.bind(a,83855,23))),O="undefined"!=typeof window&&window.document&&"undefined"!=typeof document,k=void 0!==a.g&&a.g.window&&a.g.window.document,_=Object.keys(P.propTypes),T=O||k?h.Suspense:()=>null,C=[],S=(e,t)=>{var a;return a=class extends h.Component{constructor(){super(...arguments),y(this,"state",{showPreview:!!this.props.light}),y(this,"references",{wrapper:e=>{this.wrapper=e},player:e=>{this.player=e}}),y(this,"handleClickPreview",e=>{this.setState({showPreview:!1}),this.props.onClickPreview(e)}),y(this,"showPreview",()=>{this.setState({showPreview:!0})}),y(this,"getDuration",()=>this.player?this.player.getDuration():null),y(this,"getCurrentTime",()=>this.player?this.player.getCurrentTime():null),y(this,"getSecondsLoaded",()=>this.player?this.player.getSecondsLoaded():null),y(this,"getInternalPlayer",(e="player")=>this.player?this.player.getInternalPlayer(e):null),y(this,"seekTo",(e,t,a)=>{if(!this.player)return null;this.player.seekTo(e,t,a)}),y(this,"handleReady",()=>{this.props.onReady(this)}),y(this,"getActivePlayer",(0,m.default)(a=>{for(let t of[...C,...e])if(t.canPlay(a))return t;return t||null})),y(this,"getConfig",(0,m.default)((e,t)=>{let{config:a}=this.props;return f.default.all([P.defaultProps.config,P.defaultProps.config[t]||{},a,a[t]||{}])})),y(this,"getAttributes",(0,m.default)(e=>(0,g.omit)(this.props,_))),y(this,"renderActivePlayer",e=>{if(!e)return null;let t=this.getActivePlayer(e);if(!t)return null;let a=this.getConfig(e,t.key);return h.default.createElement(w.default,{...this.props,key:t.key,ref:this.references.player,config:a,activePlayer:t.lazyPlayer||t,onReady:this.handleReady})})}shouldComponentUpdate(e,t){return!(0,b.default)(this.props,e)||!(0,b.default)(this.state,t)}componentDidUpdate(e){let{light:t}=this.props;!e.light&&t&&this.setState({showPreview:!0}),e.light&&!t&&this.setState({showPreview:!1})}renderPreview(e){if(!e)return null;let{light:t,playIcon:a,previewTabIndex:r,oEmbedUrl:n,previewAriaLabel:o}=this.props;return h.default.createElement(v,{url:e,light:t,playIcon:a,previewTabIndex:r,previewAriaLabel:o,oEmbedUrl:n,onClick:this.handleClickPreview})}render(){let{url:e,style:t,width:a,height:r,fallback:n,wrapper:o}=this.props,{showPreview:i}=this.state,l=this.getAttributes(e),s="string"==typeof o?this.references.wrapper:void 0;return h.default.createElement(o,{ref:s,style:{...t,width:a,height:r},...l},h.default.createElement(T,{fallback:n},i?this.renderPreview(e):this.renderActivePlayer(e)))}},y(a,"displayName","ReactPlayer"),y(a,"propTypes",P.propTypes),y(a,"defaultProps",P.defaultProps),y(a,"addCustomPlayer",e=>{C.push(e)}),y(a,"removeCustomPlayers",()=>{C.length=0}),y(a,"canPlay",t=>{for(let a of[...C,...e])if(a.canPlay(t))return!0;return!1}),y(a,"canEnablePIP",t=>{for(let a of[...C,...e])if(a.canEnablePIP&&a.canEnablePIP(t))return!0;return!1}),a}},22004:function(e,t,a){let r,n,o;var i=Object.create,l=Object.defineProperty,s=Object.getOwnPropertyDescriptor,u=Object.getOwnPropertyNames,p=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty,y=(e,t,a,r)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let n of u(t))d.call(e,n)||n===a||l(e,n,{get:()=>t[n],enumerable:!(r=s(t,n))||r.enumerable});return e},c={};((e,t)=>{for(var a in t)l(e,a,{get:t[a],enumerable:!0})})(c,{default:()=>b}),e.exports=y(l({},"__esModule",{value:!0}),c);var h=(o=null!=(r=a(86497))?i(p(r)):{},y(!n&&r&&r.__esModule?o:l(o,"default",{value:r,enumerable:!0}),r)),f=a(70390);let m=h.default[h.default.length-1];var b=(0,f.createReactPlayer)(h.default,m)},71776:function(e,t,a){var r=Object.defineProperty,n=Object.getOwnPropertyDescriptor,o=Object.getOwnPropertyNames,i=Object.prototype.hasOwnProperty,l={};((e,t)=>{for(var a in t)r(e,a,{get:t[a],enumerable:!0})})(l,{AUDIO_EXTENSIONS:()=>k,DASH_EXTENSIONS:()=>C,FLV_EXTENSIONS:()=>S,HLS_EXTENSIONS:()=>T,MATCH_URL_DAILYMOTION:()=>g,MATCH_URL_FACEBOOK:()=>c,MATCH_URL_FACEBOOK_WATCH:()=>h,MATCH_URL_KALTURA:()=>O,MATCH_URL_MIXCLOUD:()=>w,MATCH_URL_MUX:()=>y,MATCH_URL_SOUNDCLOUD:()=>p,MATCH_URL_STREAMABLE:()=>f,MATCH_URL_TWITCH_CHANNEL:()=>P,MATCH_URL_TWITCH_VIDEO:()=>b,MATCH_URL_VIDYARD:()=>v,MATCH_URL_VIMEO:()=>d,MATCH_URL_WISTIA:()=>m,MATCH_URL_YOUTUBE:()=>u,VIDEO_EXTENSIONS:()=>_,canPlay:()=>R}),e.exports=((e,t,a,l)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let s of o(t))i.call(e,s)||s===a||r(e,s,{get:()=>t[s],enumerable:!(l=n(t,s))||l.enumerable});return e})(r({},"__esModule",{value:!0}),l);var s=a(38045);let u=/(?:youtu\.be\/|youtube(?:-nocookie|education)?\.com\/(?:embed\/|v\/|watch\/|watch\?v=|watch\?.+&v=|shorts\/|live\/))((\w|-){11})|youtube\.com\/playlist\?list=|youtube\.com\/user\//,p=/(?:soundcloud\.com|snd\.sc)\/[^.]+$/,d=/vimeo\.com\/(?!progressive_redirect).+/,y=/stream\.mux\.com\/(?!\w+\.m3u8)(\w+)/,c=/^https?:\/\/(www\.)?facebook\.com.*\/(video(s)?|watch|story)(\.php?|\/).+$/,h=/^https?:\/\/fb\.watch\/.+$/,f=/streamable\.com\/([a-z0-9]+)$/,m=/(?:wistia\.(?:com|net)|wi\.st)\/(?:medias|embed)\/(?:iframe\/)?([^?]+)/,b=/(?:www\.|go\.)?twitch\.tv\/videos\/(\d+)($|\?)/,P=/(?:www\.|go\.)?twitch\.tv\/([a-zA-Z0-9_]+)($|\?)/,g=/^(?:(?:https?):)?(?:\/\/)?(?:www\.)?(?:(?:dailymotion\.com(?:\/embed)?\/video)|dai\.ly)\/([a-zA-Z0-9]+)(?:_[\w_-]+)?(?:[\w.#_-]+)?/,w=/mixcloud\.com\/([^/]+\/[^/]+)/,v=/vidyard.com\/(?:watch\/)?([a-zA-Z0-9-_]+)/,O=/^https?:\/\/[a-zA-Z]+\.kaltura.(com|org)\/p\/([0-9]+)\/sp\/([0-9]+)00\/embedIframeJs\/uiconf_id\/([0-9]+)\/partner_id\/([0-9]+)(.*)entry_id.([a-zA-Z0-9-_].*)$/,k=/\.(m4a|m4b|mp4a|mpga|mp2|mp2a|mp3|m2a|m3a|wav|weba|aac|oga|spx)($|\?)/i,_=/\.(mp4|og[gv]|webm|mov|m4v)(#t=[,\d+]+)?($|\?)/i,T=/\.(m3u8)($|\?)/i,C=/\.(mpd)($|\?)/i,S=/\.(flv)($|\?)/i,I=e=>{if(e instanceof Array){for(let t of e)if("string"==typeof t&&I(t)||I(t.src))return!0;return!1}return!!((0,s.isMediaStream)(e)||(0,s.isBlobUrl)(e))||k.test(e)||_.test(e)||T.test(e)||C.test(e)||S.test(e)},R={youtube:e=>e instanceof Array?e.every(e=>u.test(e)):u.test(e),soundcloud:e=>p.test(e)&&!k.test(e),vimeo:e=>d.test(e)&&!_.test(e)&&!T.test(e),mux:e=>y.test(e),facebook:e=>c.test(e)||h.test(e),streamable:e=>f.test(e),wistia:e=>m.test(e),twitch:e=>b.test(e)||P.test(e),dailymotion:e=>g.test(e),mixcloud:e=>w.test(e),vidyard:e=>v.test(e),kaltura:e=>O.test(e),file:I}},86497:function(e,t,a){var r=Object.defineProperty,n=Object.getOwnPropertyDescriptor,o=Object.getOwnPropertyNames,i=Object.prototype.hasOwnProperty,l={};((e,t)=>{for(var a in t)r(e,a,{get:t[a],enumerable:!0})})(l,{default:()=>p}),e.exports=((e,t,a,l)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let s of o(t))i.call(e,s)||s===a||r(e,s,{get:()=>t[s],enumerable:!(l=n(t,s))||l.enumerable});return e})(r({},"__esModule",{value:!0}),l);var s=a(38045),u=a(71776),p=[{key:"youtube",name:"YouTube",canPlay:u.canPlay.youtube,lazyPlayer:(0,s.lazy)(()=>a.e(4439).then(a.t.bind(a,60356,23)))},{key:"soundcloud",name:"SoundCloud",canPlay:u.canPlay.soundcloud,lazyPlayer:(0,s.lazy)(()=>a.e(6125).then(a.t.bind(a,72648,23)))},{key:"vimeo",name:"Vimeo",canPlay:u.canPlay.vimeo,lazyPlayer:(0,s.lazy)(()=>a.e(3743).then(a.t.bind(a,80868,23)))},{key:"mux",name:"Mux",canPlay:u.canPlay.mux,lazyPlayer:(0,s.lazy)(()=>a.e(4258).then(a.t.bind(a,58376,23)))},{key:"facebook",name:"Facebook",canPlay:u.canPlay.facebook,lazyPlayer:(0,s.lazy)(()=>a.e(2121).then(a.t.bind(a,31972,23)))},{key:"streamable",name:"Streamable",canPlay:u.canPlay.streamable,lazyPlayer:(0,s.lazy)(()=>a.e(2546).then(a.t.bind(a,50993,23)))},{key:"wistia",name:"Wistia",canPlay:u.canPlay.wistia,lazyPlayer:(0,s.lazy)(()=>a.e(8055).then(a.t.bind(a,8018,23)))},{key:"twitch",name:"Twitch",canPlay:u.canPlay.twitch,lazyPlayer:(0,s.lazy)(()=>a.e(6216).then(a.t.bind(a,29482,23)))},{key:"dailymotion",name:"DailyMotion",canPlay:u.canPlay.dailymotion,lazyPlayer:(0,s.lazy)(()=>a.e(7596).then(a.t.bind(a,36807,23)))},{key:"mixcloud",name:"Mixcloud",canPlay:u.canPlay.mixcloud,lazyPlayer:(0,s.lazy)(()=>a.e(4667).then(a.t.bind(a,50143,23)))},{key:"vidyard",name:"Vidyard",canPlay:u.canPlay.vidyard,lazyPlayer:(0,s.lazy)(()=>a.e(8888).then(a.t.bind(a,36596,23)))},{key:"kaltura",name:"Kaltura",canPlay:u.canPlay.kaltura,lazyPlayer:(0,s.lazy)(()=>a.e(261).then(a.t.bind(a,73911,23)))},{key:"file",name:"FilePlayer",canPlay:u.canPlay.file,canEnablePIP:e=>u.canPlay.file(e)&&(document.pictureInPictureEnabled||(0,s.supportsWebKitPresentationMode)())&&!u.AUDIO_EXTENSIONS.test(e),lazyPlayer:(0,s.lazy)(()=>a.e(6011).then(a.t.bind(a,14926,23)))}]},85741:function(e,t,a){let r,n,o;var i=Object.create,l=Object.defineProperty,s=Object.getOwnPropertyDescriptor,u=Object.getOwnPropertyNames,p=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty,y=(e,t,a,r)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let n of u(t))d.call(e,n)||n===a||l(e,n,{get:()=>t[n],enumerable:!(r=s(t,n))||r.enumerable});return e},c={};((e,t)=>{for(var a in t)l(e,a,{get:t[a],enumerable:!0})})(c,{defaultProps:()=>T,propTypes:()=>k}),e.exports=y(l({},"__esModule",{value:!0}),c);let{string:h,bool:f,number:m,array:b,oneOfType:P,shape:g,object:w,func:v,node:O}=(o=null!=(r=a(45697))?i(p(r)):{},y(!n&&r&&r.__esModule?o:l(o,"default",{value:r,enumerable:!0}),r)).default,k={url:P([h,b,w]),playing:f,loop:f,controls:f,volume:m,muted:f,playbackRate:m,width:P([h,m]),height:P([h,m]),style:w,progressInterval:m,playsinline:f,pip:f,stopOnUnmount:f,light:P([f,h,w]),playIcon:O,previewTabIndex:m,previewAriaLabel:h,fallback:O,oEmbedUrl:h,wrapper:P([h,v,g({render:v.isRequired})]),config:g({soundcloud:g({options:w}),youtube:g({playerVars:w,embedOptions:w,onUnstarted:v}),facebook:g({appId:h,version:h,playerId:h,attributes:w}),dailymotion:g({params:w}),vimeo:g({playerOptions:w,title:h}),mux:g({attributes:w,version:h}),file:g({attributes:w,tracks:b,forceVideo:f,forceAudio:f,forceHLS:f,forceSafariHLS:f,forceDisableHls:f,forceDASH:f,forceFLV:f,hlsOptions:w,hlsVersion:h,dashVersion:h,flvVersion:h}),wistia:g({options:w,playerId:h,customControls:b}),mixcloud:g({options:w}),twitch:g({options:w,playerId:h}),vidyard:g({options:w})}),onReady:v,onStart:v,onPlay:v,onPause:v,onBuffer:v,onBufferEnd:v,onEnded:v,onError:v,onDuration:v,onSeek:v,onPlaybackRateChange:v,onPlaybackQualityChange:v,onProgress:v,onClickPreview:v,onEnablePIP:v,onDisablePIP:v},_=()=>{},T={playing:!1,loop:!1,controls:!1,volume:null,muted:!1,playbackRate:1,width:"640px",height:"360px",style:{},progressInterval:1e3,playsinline:!1,pip:!1,stopOnUnmount:!0,light:!1,fallback:null,wrapper:"div",previewTabIndex:0,previewAriaLabel:"",oEmbedUrl:"https://noembed.com/embed?url={url}",config:{soundcloud:{options:{visual:!0,buying:!1,liking:!1,download:!1,sharing:!1,show_comments:!1,show_playcount:!1}},youtube:{playerVars:{playsinline:1,showinfo:0,rel:0,iv_load_policy:3,modestbranding:1},embedOptions:{},onUnstarted:_},facebook:{appId:"1309697205772819",version:"v3.3",playerId:null,attributes:{}},dailymotion:{params:{api:1,"endscreen-enable":!1}},vimeo:{playerOptions:{autopause:!1,byline:!1,portrait:!1,title:!1},title:null},mux:{attributes:{},version:"2"},file:{attributes:{},tracks:[],forceVideo:!1,forceAudio:!1,forceHLS:!1,forceDASH:!1,forceFLV:!1,hlsOptions:{},hlsVersion:"1.1.4",dashVersion:"3.1.3",flvVersion:"1.5.0",forceDisableHls:!1},wistia:{options:{},playerId:null,customControls:null},mixcloud:{options:{hide_cover:1}},twitch:{options:{},playerId:null},vidyard:{options:{}}},onReady:_,onStart:_,onPlay:_,onPause:_,onBuffer:_,onBufferEnd:_,onEnded:_,onError:_,onDuration:_,onSeek:_,onPlaybackRateChange:_,onPlaybackQualityChange:_,onProgress:_,onClickPreview:_,onEnablePIP:_,onDisablePIP:_}},38045:function(e,t,a){var r=Object.create,n=Object.defineProperty,o=Object.getOwnPropertyDescriptor,i=Object.getOwnPropertyNames,l=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,u=(e,t,a,r)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let l of i(t))s.call(e,l)||l===a||n(e,l,{get:()=>t[l],enumerable:!(r=o(t,l))||r.enumerable});return e},p=(e,t,a)=>(a=null!=e?r(l(e)):{},u(!t&&e&&e.__esModule?a:n(a,"default",{value:e,enumerable:!0}),e)),d={};((e,t)=>{for(var a in t)n(e,a,{get:t[a],enumerable:!0})})(d,{callPlayer:()=>E,getConfig:()=>I,getSDK:()=>S,isBlobUrl:()=>A,isMediaStream:()=>j,lazy:()=>f,omit:()=>R,parseEndTime:()=>O,parseStartTime:()=>v,queryString:()=>_,randomString:()=>k,supportsWebKitPresentationMode:()=>L}),e.exports=u(n({},"__esModule",{value:!0}),d);var y=p(a(67294)),c=p(a(49090)),h=p(a(9996));let f=e=>y.default.lazy(async()=>{let t=await e();return"function"==typeof t.default?t:t.default}),m=/[?&#](?:start|t)=([0-9hms]+)/,b=/[?&#]end=([0-9hms]+)/,P=/(\d+)(h|m|s)/g,g=/^\d+$/;function w(e,t){if(e instanceof Array)return;let a=e.match(t);if(a){let e=a[1];if(e.match(P))return function(e){let t=0,a=P.exec(e);for(;null!==a;){let[,r,n]=a;"h"===n&&(t+=3600*parseInt(r,10)),"m"===n&&(t+=60*parseInt(r,10)),"s"===n&&(t+=parseInt(r,10)),a=P.exec(e)}return t}(e);if(g.test(e))return parseInt(e)}}function v(e){return w(e,m)}function O(e){return w(e,b)}function k(){return Math.random().toString(36).substr(2,5)}function _(e){return Object.keys(e).map(t=>`${t}=${e[t]}`).join("&")}function T(e){return window[e]?window[e]:window.exports&&window.exports[e]?window.exports[e]:window.module&&window.module.exports&&window.module.exports[e]?window.module.exports[e]:null}let C={},S=function(e,t,a=null,r=()=>!0,n=c.default){let o=T(t);return o&&r(o)?Promise.resolve(o):new Promise((r,o)=>{if(C[e]){C[e].push({resolve:r,reject:o});return}C[e]=[{resolve:r,reject:o}];let i=t=>{C[e].forEach(e=>e.resolve(t))};if(a){let e=window[a];window[a]=function(){e&&e(),i(T(t))}}n(e,r=>{r?(C[e].forEach(e=>e.reject(r)),C[e]=null):a||i(T(t))})})};function I(e,t){return(0,h.default)(t.config,e.config)}function R(e,...t){let a=[].concat(...t),r={};for(let t of Object.keys(e))-1===a.indexOf(t)&&(r[t]=e[t]);return r}function E(e,...t){if(!this.player||!this.player[e]){let t=`ReactPlayer: ${this.constructor.displayName} player could not call %c${e}%c \u2013 `;return this.player?this.player[e]||(t+="The method was not available"):t+="The player was not available",console.warn(t,"font-weight: bold",""),null}return this.player[e](...t)}function j(e){return"undefined"!=typeof window&&void 0!==window.MediaStream&&e instanceof window.MediaStream}function A(e){return/^blob:/.test(e)}function L(e=document.createElement("video")){let t=!1===/iPhone|iPod/.test(navigator.userAgent);return e.webkitSupportsPresentationMode&&"function"==typeof e.webkitSetPresentationMode&&t}},93967:function(e,t){var a;/*!
	Copyright (c) 2018 Jed Watson.
	Licensed under the MIT License (MIT), see
	http://jedwatson.github.io/classnames
*/!function(){"use strict";var r={}.hasOwnProperty;function n(){for(var e="",t=0;t<arguments.length;t++){var a=arguments[t];a&&(e=o(e,function(e){if("string"==typeof e||"number"==typeof e)return e;if("object"!=typeof e)return"";if(Array.isArray(e))return n.apply(null,e);if(e.toString!==Object.prototype.toString&&!e.toString.toString().includes("[native code]"))return e.toString();var t="";for(var a in e)r.call(e,a)&&e[a]&&(t=o(t,a));return t}(a)))}return e}function o(e,t){return t?e?e+" "+t:e+t:e}e.exports?(n.default=n,e.exports=n):void 0!==(a=(function(){return n}).apply(t,[]))&&(e.exports=a)}()}}]);