zhao/public/js/WebSpeech.min.js
2022-09-16 09:09:32 +08:00

13 lines
56 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

if(void 0===WebSpeech){var WebSpeech={version:"4.2",server:"http://wa.eguidedog.net/cgi-bin/ekho.pl",serverReturnType:"MP3",voice:"EkhoMandarin",speedDelta:0,pitchDelta:0,volumeDelta:0,sm2ready:!1,speechQueue:[],frameStack:[],state:"NONE",rootNode:null,curNode:null,curPos:0,curText:"",curSpeech:null,foundNewParagraph:!1,headingTags:"H1 H2 H3 H4 H5 H6",foundNewHeading:!1,paragraphTags:"P DIV H1 H2 H3 H4 H5 H6 HR BR",preHighLightNode:null,highLightNode:null,seperators:[".","。",",","",";","","(","",")","","\n"],cacheNode:null,cachePos:0,cacheCount:0,cacheMaxCount:5,isCtrlKeyDown:!1,isShiftKeyDown:!1,htmlStartId:null,onready:function(){this.sm2ready=!0,WebSpeech.playNextSpeech()},ready:function(f){this.onready=function(){this.sm2ready=!0,f()}},onfinish:function(){},text2url:{},text2audio:{},debug:!0,log:function(msg){var logDiv=document.getElementById("WebSpeechLog");logDiv&&this.debug&&(logDiv.innerHTML+=msg+"<br/>")},getStyle:function(elem,styleName){if(1!==elem.nodeType)return null;try{if(elem.currentStyle)return elem.currentStyle[styleName];if(window.getComputedStyle)return window.getComputedStyle(elem,null).getPropertyValue(styleName)}catch(e){return null}},getUrl:function(cmd,text){return this.server+"?cmd="+cmd+"&voice="+this.voice+"&speedDelta="+this.speedDelta+"&pitchDelta="+this.pitchDelta+"&volumeDelta="+this.volumeDelta+"&text="+encodeURIComponent(text)},playNextSpeech:function(){var text,speechId,url,speechRef;"None"!==this.voice?soundManager.supported()&&(this.sm2ready?0!==this.speechQueue.length?this.text2url[this.speechQueue[0]]&&(speechId=this.speechQueue.shift(),this.text2audio[speechId]||(this.text2audio[speechId]=soundManager.createSound({id:speechId,url:this.text2url[speechId],multiShot:!0})),"NONE"!==this.state&&this.highLightCurText(),speechRef=this,soundManager._writeDebug("play "+speechId),this.text2audio[speechId].play({onfinish:function(){speechRef.playNextSpeech()}}),this.curSpeech=this.text2audio[speechId],this.cacheCount>0&&(this.cacheCount-=1),this.cacheNextSpeech()):"SPEAKHTML"===this.state&&(text=this.getNextClause())?(speechId=this.getSpeechId(text),this.speechQueue.push(speechId),this.text2url[speechId]||(url=this.getUrl("SPEAK",text),"URL"===this.serverReturnType?(speechRef=this,OX.AJAST.call(url,"callback",(function(isSuccess,result){isSuccess&&(speechRef.text2url[speechId]=result,speechRef.playNextSpeech())}))):this.text2url[speechId]=url),this.playNextSpeech()):this.onfinish():soundManager.onready((function(){WebSpeech.playNextSpeech()}))):this.speechQueue=[]},speak:function(text){var speechId,speechRef,url;speechId=this.getSpeechId(text),this.speechQueue.push(speechId),url=this.getUrl("SPEAK",text),this.text2url[speechId]?this.playNextSpeech():"URL"===this.serverReturnType?(speechRef=this,OX.AJAST.call(url,"callback",(function(isSuccess,result){isSuccess&&(speechRef.text2url[speechId]=result,speechRef.playNextSpeech())}))):(this.text2url[speechId]=url,this.playNextSpeech())},getSpeechId:function(text){return"s"+this.voice+"s"+this.speedDelta+"p"+this.pitchDelta+"v"+this.volumeDelta+MD5(text)},disableHighLight:function(){var parentNode;this.highLightNode&&((parentNode=this.highLightNode.parentNode).replaceChild(this.preHighLightNode,this.highLightNode),this.curNode.parentNode===this.highLightNode?(this.curNode.previousSibling&&("SPAN"===this.curNode.previousSibling.tagName?(this.curPos+=this.curNode.previousSibling.firstChild.length,this.curNode.previousSibling.previousSibling&&(this.curPos+=this.curNode.previousSibling.previousSibling.length)):this.curPos+=this.curNode.previousSibling.length),this.curNode=this.preHighLightNode):this.curNode.parentNode&&this.curNode.parentNode.parentNode===this.highLightNode&&(this.curNode=this.preHighLightNode),this.preHighLightNode=null,this.highLightNode=null)},highLightCurText:function(){var part1,part2,part3,parentNode;this.disableHighLight(),this.curNode.nodeValue&&(part1=this.curNode.nodeValue.substr(0,this.curPos-this.curText.length),part2='<span id="WebSpeechHighLight" style="background-color:#ff0; color:#000">'+this.curText+"</span>",part3=this.curNode.nodeValue.substr(this.curPos),this.highLightNode=document.createElement("span"),this.highLightNode.innerHTML=part1+part2+part3,parentNode=this.curNode.parentNode,this.preHighLightNode=this.curNode,parentNode.replaceChild(this.highLightNode,this.curNode),"SPAN"===this.highLightNode.childNodes[0].tagName?this.curNode=this.highLightNode.childNodes[0].firstChild:this.curNode=this.highLightNode.childNodes[1].firstChild)},cacheSpeech:function(speechId){var speechRef;"None"!==this.voice&&soundManager.supported()&&(this.text2audio[speechId]?this.cacheNextSpeech():(speechRef=this,this.text2audio[speechId]=soundManager.createSound({id:speechId,url:this.text2url[speechId],multiShot:!0,onfinish:function(){speechRef.cacheNextSpeech()}})))},cacheNextSpeech:function(){var curNode,curPos,curText,text,speechId,url,speechRef;this.cacheCount>=this.cacheMaxCount||(this.cacheCount+=1,curNode=this.curNode,curPos=this.curPos,curText=this.curText,(text=this.getNextClause())&&(speechId=this.getSpeechId(text),url=this.getUrl("SPEAK",text),this.text2url[speechId]?this.cacheSpeech(speechId):"URL"===this.serverReturnType?(speechRef=this,OX.AJAST.call(url,"callback",(function(isSuccess,result){isSuccess&&(speechRef.text2url[speechId]=result,speechRef.cacheSpeech(speechId))}))):(this.text2url[speechId]=url,this.cacheSpeech(speechId))),this.curText=curText,this.curPos=curPos,this.curNode=curNode)},setHtmlStartId:function(id){this.htmlStartId=id},speakHtml:function(id){var text,speechId,url,speechRef;this.speechQueue=[],"None"!==this.voice&&(this.state="SPEAKHTML",id?this.rootNode=document.getElementById(id):this.htmlStartId?this.rootNode=document.getElementById(this.htmlStartId):this.rootNode=document.body,this.curNode=this.rootNode,this.curPos=0,(text=this.getNextClause())&&(this.cacheNode=this.curNode,this.cachePos=this.curPos,this.speak(text),this.cacheNextSpeech()))},speakPreviousClause:function(){var text,speechId,url;this.stopHtml(),this.state="SPEAK_ONE_CLAUSE",text=this.getPreviousClause(),text=this.getPreviousClause(),this.curPos+=text.length,text&&(this.cacheNode=this.curNode,this.cachePos=this.curPos,this.speak(text))},speakNextClause:function(){var text;this.stopHtml(),this.state="SPEAK_ONE_CLAUSE",(text=this.getNextClause())&&(this.cacheNode=this.curNode,this.cachePos=this.curPos,this.speak(text),this.cacheNextSpeech())},speakNextParagraph:function(){var text;this.stopHtml(),this.state="SPEAK_PARAGRAPH",this.foundNewParagraph=!1;do{text=this.getNextClause()}while(!this.foundNewParagraph&&text);this.foundNewParagraph||(text="No more paragraphs."),this.speak(text)},speakPreviousParagraph:function(){var text;this.stopHtml(),this.state="SPEAK_PARAGRAPH",this.getPreviousClause(),this.getPreviousClause(),this.foundNewParagraph=!1;do{text=this.getPreviousClause()}while(!this.foundNewParagraph&&text);this.foundNewParagraph?(text=this.getNextClause(),text=this.getNextClause()):text="No more paragraphs.",this.speak(text)},speakNextHeading:function(){var text;this.stopHtml(),this.state="SPEAK_HEADING",this.foundNewHeading=!1;do{text=this.getNextClause()}while(!this.foundNewHeading&&text);this.foundNewHeading||(text="No more headings."),this.speak(text)},speakPreviousHeading:function(){var text;this.stopHtml(),this.state="SPEAK_HEADING",this.getPreviousClause(),this.getPreviousClause(),this.foundNewHeading=!1;do{text=this.getPreviousClause()}while(!this.foundNewHeading&&text);this.foundNewHeading?text?(text=this.getNextClause(),text=this.getNextClause()):text=this.getNextClause():text="No more headings.",this.speak(text)},getFirstClause:function(text){var i;for(i in this.seperators)text=text.split(this.seperators[i],2)[0];return text=text.replace(/(^\s*)|(\s*$)/g,"")},getLastClause:function(text){var i,clauses;for(i in this.seperators)clauses=text.split(this.seperators[i]),text=clauses[clauses.length-1];return text=text.replace(/(^\s*)|(\s*$)/g,"")},getPreviousClause:function(){var text;if(!this.curNode)return"";if("FRAME"!==this.curNode.nodeName&&"IFRAME"!==this.curNode.nodeName||this.curNode.contentDocument&&(this.frameStack.push(this.curNode),this.curNode=this.curNode.contentDocument.body),"NOFRAMES"===this.curNode.nodeName||"#comment"===this.curNode.nodeName||"NOSCRIPT"===this.curNode.nodeName||"none"===this.getStyle(this.curNode,"display")||"hidden"===this.getStyle(this.curNode,"visibility"))text="";else{if(this.curNode.hasChildNodes()){for(;this.curNode.lastChild;)this.curNode=this.curNode.lastChild;return this.curPos=this.curNode.length,this.curText="",this.getPreviousClause()}if(this.curNode.nodeValue){if((text=this.curNode.nodeValue.substr(0,this.curPos)).length>0&&(text=this.getLastClause(text)).length>0)return this.curPos=this.curNode.nodeValue.lastIndexOf(text,this.curPos-1),this.curText=text,text;do{this.curPos-=1}while(this.curPos>=0&&this.curNode.nodeValue.charAt(this.curPos).match(/\s/));if(this.curPos>=0)return this.getPreviousClause()}}if(this.curNode.previousSibling&&this.curNode!==this.rootNode)return this.curNode=this.curNode.previousSibling,this.curPos=this.curNode.length,this.curText="",this.getPreviousClause();do{this.curNode.parentNode?(this.curNode=this.curNode.parentNode,this.headingTags.indexOf(this.curNode.nodeName)>=0&&(this.foundNewHeading=!0),this.paragraphTags.indexOf(this.curNode.nodeName)>=0&&(this.foundNewParagraph=!0)):"#document"===this.curNode.nodeName&&this.frameStack.length>0?this.curNode=this.frameStack.pop():(this.log("no parent"),this.curNode=this.rootNode)}while(this.curNode!==this.rootNode&&!this.curNode.previousSibling);return this.curPos=this.curNode.length,this.curText="",this.curNode===this.rootNode?"":(this.curNode=this.curNode.previousSibling,this.getPreviousClause())},getNextClause:function(){var text;if(!this.curNode)return"";if(this.headingTags.indexOf(this.curNode.nodeName)>=0&&(this.foundNewHeading=!0),this.paragraphTags.indexOf(this.curNode.nodeName)>=0&&(this.foundNewParagraph=!0),"NOFRAMES"===this.curNode.nodeName||"#comment"===this.curNode.nodeName||"NOSCRIPT"===this.curNode.nodeName||"none"===this.getStyle(this.curNode,"display")||"hidden"===this.getStyle(this.curNode,"visibility"))text="";else if("FRAME"===this.curNode.nodeName||"IFRAME"===this.curNode.nodeName){this.curPos=0,this.curText="";try{if(this.curNode.contentDocument)return this.frameStack.push(this.curNode),this.curNode=this.curNode.contentDocument.body,this.getNextClause()}catch(e){text=""}}else{if(this.curNode.hasChildNodes())return this.curPos=0,this.curText="",this.curNode=this.curNode.firstChild,this.getNextClause();if(this.curNode.nodeValue){if((text=this.curNode.nodeValue.substr(this.curPos,this.curNode.nodeValue.length-this.curPos)).length>0&&(text=this.getFirstClause(text)).length>0)return this.curPos=this.curNode.nodeValue.indexOf(text,this.curPos)+text.length,this.curText=text,text;do{this.curPos+=1}while(this.curPos<this.curNode.nodeValue.length&&this.curNode.nodeValue.charAt(this.curPos).match(/\s/));if(this.curPos<this.curNode.nodeValue.length)return this.getNextClause()}}if(this.curNode.nextSibling&&this.curNode!==this.rootNode)return this.curNode=this.curNode.nextSibling,this.curPos=0,this.curText="",this.getNextClause();this.curPos=0,this.curText="";do{this.curNode.parentNode?this.curNode=this.curNode.parentNode:"#document"===this.curNode.nodeName&&this.frameStack.length>0?this.curNode=this.frameStack.pop():(this.log("no parent"),this.curNode=this.rootNode)}while(this.curNode!==this.rootNode&&!this.curNode.nextSibling);return this.curNode===this.rootNode?"":(this.curNode=this.curNode.nextSibling,this.getNextClause())},handleNavigationKeyUp:function(e){var code;switch(window.event?code=e.keyCode:e.which&&(code=e.which),code){case 17:return this.isCtrlKeyDown=!1,!1;case 16:return this.isShiftKeyDown=!1,!1;case 38:return"SPEAKHTML"===this.state&&(this.speakPreviousClause(),!0);case 40:return"SPEAKHTML"===this.state&&(this.speakNextClause(),!0);case 72:return"SPEAKHTML"===this.state&&(this.isShiftKeyDown?this.speakPreviousHeading():this.speakNextHeading(),!0);case 80:return"SPEAKHTML"===this.state&&(this.isShiftKeyDown?this.speakPreviousParagraph():this.speakNextParagraph(),!0);default:return!1}},handleNavigationKeyDown:function(e){var code;switch(window.event?code=e.keyCode:e.which&&(code=e.which),code){case 17:return this.isCtrlKeyDown=!0,this.isShiftKeyDown?"SPEAKHTML"===this.state?this.stopHtml():this.speakHtml():this.pauseHtml(),!0;case 16:return this.isShiftKeyDown=!0,this.isCtrlKeyDown?"SPEAKHTML"===this.state?this.stopHtml():this.speakHtml():this.resumeHtml(),!0;default:return!1}},play:function(name){soundManager.supported()?soundManager.play(name,"sounds/"+name+".mp3"):soundManager.onready((function(){WebSpeech.play(name)}))},saveMp3:function(text){window.open(this.getUrl("SAVEMP3",text))},saveOgg:function(text){window.open(this.getUrl("SAVEOGG",text))},getPhonSymbols:function(text,callback){OX.AJAST.call(this.getUrl("GETPHONSYMBOLS",text),"callback",callback)},setVoice:function(voice){soundManager.supported()?this.voice=voice:soundManager.onready((function(){WebSpeech.setVoice(voice)}))},getSpeedDelta:function(){return this.speedDelta},setSpeedDelta:function(speedDelta){if(soundManager.supported())return speedDelta>=-50&&speedDelta<=100&&(this.speedDelta=speedDelta),this.speedDelta;soundManager.onready((function(){WebSpeech.setSpeedDelta(speedDelta)}))},getPitchDelta:function(){return this.pitchDelta},setPitchDelta:function(pitchDelta){if(soundManager.supported())return pitchDelta>=-100&&pitchDelta<=100&&(this.pitchDelta=pitchDelta),this.pitchDelta;soundManager.onready((function(){WebSpeech.setPitchDelta(pitchDelta)}))},getVolumeDelta:function(){return this.volumeDelta},setVolumeDelta:function(volumeDelta){if(soundManager.supported())return volumeDelta>=-100&&volumeDelta<=100&&(this.volumeDelta=volumeDelta),this.volumeDelta;soundManager.onready((function(){WebSpeech.setVolumeDelta(volumeDelta)}))},pause:function(){this.curSpeech&&this.curSpeech.pause()},pauseHtml:function(){this.curSpeech&&this.curSpeech.pause()},resume:function(){this.curSpeech&&this.curSpeech.paused&&this.curSpeech.resume()},resumeHtml:function(){"SPEAK_ONE_CLAUSE"===this.state&&(this.state="SPEAKHTML"),this.curSpeech&&this.curSpeech.paused?this.curSpeech.resume():this.playNextSpeech()},stop:function(){if(this.speechQueue.length>0)for(soundManager.stop(this.speechQueue[0]);this.speechQueue.length>0;)this.speechQueue.pop()},stopHtml:function(){this.speechQueue=[],this.curSpeech&&this.curSpeech.stop(),this.state="NONE",this.disableHighLight(),this.cacheCount=0}};"undefined"==typeof OX&&(OX={}),OX.AJAST={Broker:function(url,callbackparameter,optional_decode_json_response,optional_timeout_milliseconds,optional_default_params){if(this.url=url,this.cb=callbackparameter,this.params=[],this.timeout=optional_timeout_milliseconds||15e3,void 0!==optional_default_params)for(p in optional_default_params)this.params.push(p+"="+encodeURIComponent(optional_default_params[p]));this.jsonmode=optional_decode_json_response||!1},__callbacks__:{},__callid__:1,call:function(url,callbackparameter,callbackfunction,optional_timeout,optional_decode_json_response){var callbackid="callback"+OX.AJAST.__callid__;url+="&"+encodeURIComponent(callbackparameter)+"="+encodeURIComponent("OX.AJAST.__callbacks__."+callbackid);var tag=OX.AJAST.createScriptTag(url),head=document.getElementsByTagName("head").item(0),timedout=function(){"undefined"!==OX.AJAST.__callbacks__[callbackid]&&(OX.AJAST.__callbacks__[callbackid]=function(){delete OX.AJAST.__callbacks__[callbackid]},callbackfunction(!1),head.removeChild(tag))},timer=setTimeout(timedout,optional_timeout||15e3),decode_response=optional_decode_json_response||!1;OX.AJAST.__callbacks__[callbackid]=function(data){clearTimeout(timer),void 0===data?callbackfunction(!1):callbackfunction(!0,decode_response?eval(data):data),delete OX.AJAST.__callbacks__[callbackid],head.removeChild(tag)},head.appendChild(tag)},createScriptTag:function(url){var s=document.createElement("script");return s.setAttribute("type","text/javascript"),s.setAttribute("id","oxajastcall"+OX.AJAST.Broker.__callid__++),s.setAttribute("src",url),s}},OX.AJAST.Broker.prototype.call=function(params,callback){var args=[];for(p in params)args.push(p+"="+encodeURIComponent(params[p]));for(p in this.params)args.push(this.params[p]);OX.AJAST.call(this.url+"?"+args.join("&"),this.cb,callback,this.timeout,this.jsonmode)};var MD5=function(string){function RotateLeft(lValue,iShiftBits){return lValue<<iShiftBits|lValue>>>32-iShiftBits}function AddUnsigned(lX,lY){var lX4,lY4,lX8,lY8,lResult;return lX8=2147483648&lX,lY8=2147483648&lY,lResult=(1073741823&lX)+(1073741823&lY),(lX4=1073741824&lX)&(lY4=1073741824&lY)?2147483648^lResult^lX8^lY8:lX4|lY4?1073741824&lResult?3221225472^lResult^lX8^lY8:1073741824^lResult^lX8^lY8:lResult^lX8^lY8}function F(x,y,z){return x&y|~x&z}function G(x,y,z){return x&z|y&~z}function H(x,y,z){return x^y^z}function I(x,y,z){return y^(x|~z)}function FF(a,b,c,d,x,s,ac){return a=AddUnsigned(a,AddUnsigned(AddUnsigned(F(b,c,d),x),ac)),AddUnsigned(RotateLeft(a,s),b)}function GG(a,b,c,d,x,s,ac){return a=AddUnsigned(a,AddUnsigned(AddUnsigned(G(b,c,d),x),ac)),AddUnsigned(RotateLeft(a,s),b)}function HH(a,b,c,d,x,s,ac){return a=AddUnsigned(a,AddUnsigned(AddUnsigned(H(b,c,d),x),ac)),AddUnsigned(RotateLeft(a,s),b)}function II(a,b,c,d,x,s,ac){return a=AddUnsigned(a,AddUnsigned(AddUnsigned(I(b,c,d),x),ac)),AddUnsigned(RotateLeft(a,s),b)}function ConvertToWordArray(string){for(var lWordCount,lMessageLength=string.length,lNumberOfWords_temp1=lMessageLength+8,lNumberOfWords_temp2,lNumberOfWords=16*((lNumberOfWords_temp1-lNumberOfWords_temp1%64)/64+1),lWordArray=Array(lNumberOfWords-1),lBytePosition=0,lByteCount=0;lByteCount<lMessageLength;)lBytePosition=lByteCount%4*8,lWordArray[lWordCount=(lByteCount-lByteCount%4)/4]=lWordArray[lWordCount]|string.charCodeAt(lByteCount)<<lBytePosition,lByteCount++;return lBytePosition=lByteCount%4*8,lWordArray[lWordCount=(lByteCount-lByteCount%4)/4]=lWordArray[lWordCount]|128<<lBytePosition,lWordArray[lNumberOfWords-2]=lMessageLength<<3,lWordArray[lNumberOfWords-1]=lMessageLength>>>29,lWordArray}function WordToHex(lValue){var WordToHexValue="",WordToHexValue_temp="",lByte,lCount;for(lCount=0;lCount<=3;lCount++)WordToHexValue+=(WordToHexValue_temp="0"+(lByte=lValue>>>8*lCount&255).toString(16)).substr(WordToHexValue_temp.length-2,2);return WordToHexValue}function Utf8Encode(string){string=string.replace(/\r\n/g,"\n");for(var utftext="",n=0;n<string.length;n++){var c=string.charCodeAt(n);c<128?utftext+=String.fromCharCode(c):c>127&&c<2048?(utftext+=String.fromCharCode(c>>6|192),utftext+=String.fromCharCode(63&c|128)):(utftext+=String.fromCharCode(c>>12|224),utftext+=String.fromCharCode(c>>6&63|128),utftext+=String.fromCharCode(63&c|128))}return utftext}var x=Array(),k,AA,BB,CC,DD,a,b,c,d,S11=7,S12=12,S13=17,S14=22,S21=5,S22=9,S23=14,S24=20,S31=4,S32=11,S33=16,S34=23,S41=6,S42=10,S43=15,S44=21,temp;for(x=ConvertToWordArray(string=Utf8Encode(string)),a=1732584193,b=4023233417,c=2562383102,d=271733878,k=0;k<x.length;k+=16)AA=a,BB=b,CC=c,DD=d,a=FF(a,b,c,d,x[k+0],7,3614090360),d=FF(d,a,b,c,x[k+1],12,3905402710),c=FF(c,d,a,b,x[k+2],17,606105819),b=FF(b,c,d,a,x[k+3],22,3250441966),a=FF(a,b,c,d,x[k+4],7,4118548399),d=FF(d,a,b,c,x[k+5],12,1200080426),c=FF(c,d,a,b,x[k+6],17,2821735955),b=FF(b,c,d,a,x[k+7],22,4249261313),a=FF(a,b,c,d,x[k+8],7,1770035416),d=FF(d,a,b,c,x[k+9],12,2336552879),c=FF(c,d,a,b,x[k+10],17,4294925233),b=FF(b,c,d,a,x[k+11],22,2304563134),a=FF(a,b,c,d,x[k+12],7,1804603682),d=FF(d,a,b,c,x[k+13],12,4254626195),c=FF(c,d,a,b,x[k+14],17,2792965006),a=GG(a,b=FF(b,c,d,a,x[k+15],22,1236535329),c,d,x[k+1],5,4129170786),d=GG(d,a,b,c,x[k+6],9,3225465664),c=GG(c,d,a,b,x[k+11],14,643717713),b=GG(b,c,d,a,x[k+0],20,3921069994),a=GG(a,b,c,d,x[k+5],5,3593408605),d=GG(d,a,b,c,x[k+10],9,38016083),c=GG(c,d,a,b,x[k+15],14,3634488961),b=GG(b,c,d,a,x[k+4],20,3889429448),a=GG(a,b,c,d,x[k+9],5,568446438),d=GG(d,a,b,c,x[k+14],9,3275163606),c=GG(c,d,a,b,x[k+3],14,4107603335),b=GG(b,c,d,a,x[k+8],20,1163531501),a=GG(a,b,c,d,x[k+13],5,2850285829),d=GG(d,a,b,c,x[k+2],9,4243563512),c=GG(c,d,a,b,x[k+7],14,1735328473),a=HH(a,b=GG(b,c,d,a,x[k+12],20,2368359562),c,d,x[k+5],4,4294588738),d=HH(d,a,b,c,x[k+8],11,2272392833),c=HH(c,d,a,b,x[k+11],16,1839030562),b=HH(b,c,d,a,x[k+14],23,4259657740),a=HH(a,b,c,d,x[k+1],4,2763975236),d=HH(d,a,b,c,x[k+4],11,1272893353),c=HH(c,d,a,b,x[k+7],16,4139469664),b=HH(b,c,d,a,x[k+10],23,3200236656),a=HH(a,b,c,d,x[k+13],4,681279174),d=HH(d,a,b,c,x[k+0],11,3936430074),c=HH(c,d,a,b,x[k+3],16,3572445317),b=HH(b,c,d,a,x[k+6],23,76029189),a=HH(a,b,c,d,x[k+9],4,3654602809),d=HH(d,a,b,c,x[k+12],11,3873151461),c=HH(c,d,a,b,x[k+15],16,530742520),a=II(a,b=HH(b,c,d,a,x[k+2],23,3299628645),c,d,x[k+0],6,4096336452),d=II(d,a,b,c,x[k+7],10,1126891415),c=II(c,d,a,b,x[k+14],15,2878612391),b=II(b,c,d,a,x[k+5],21,4237533241),a=II(a,b,c,d,x[k+12],6,1700485571),d=II(d,a,b,c,x[k+3],10,2399980690),c=II(c,d,a,b,x[k+10],15,4293915773),b=II(b,c,d,a,x[k+1],21,2240044497),a=II(a,b,c,d,x[k+8],6,1873313359),d=II(d,a,b,c,x[k+15],10,4264355552),c=II(c,d,a,b,x[k+6],15,2734768916),b=II(b,c,d,a,x[k+13],21,1309151649),a=II(a,b,c,d,x[k+4],6,4149444226),d=II(d,a,b,c,x[k+11],10,3174756917),c=II(c,d,a,b,x[k+2],15,718787259),b=II(b,c,d,a,x[k+9],21,3951481745),a=AddUnsigned(a,AA),b=AddUnsigned(b,BB),c=AddUnsigned(c,CC),d=AddUnsigned(d,DD);return(WordToHex(a)+WordToHex(b)+WordToHex(c)+WordToHex(d)).toLowerCase()};
/** @license
*
* SoundManager 2: JavaScript Sound for the Web
* ----------------------------------------------
* http://schillmania.com/projects/soundmanager2/
*
* Copyright (c) 2007, Scott Schiller. All rights reserved.
* Code provided under the BSD License:
* http://schillmania.com/projects/soundmanager2/license.txt
*
* V2.97a.20140901
*/!function(g,h){function G(F,G){function W(b){return c.preferFlash&&v&&!c.ignoreFlash&&c.flash[b]!==h&&c.flash[b]}function r(b){return function(c){var d=this._s;return d&&d._a?b.call(this,c):null}}this.setupOptions={url:F||null,flashVersion:8,debugMode:!0,debugFlash:!1,useConsole:!0,consoleOnly:!0,waitForWindowLoad:!1,bgColor:"#ffffff",useHighPerformance:!1,flashPollingInterval:null,html5PollingInterval:null,flashLoadTimeout:1e3,wmode:null,allowScriptAccess:"always",useFlashBlock:!1,useHTML5Audio:!0,html5Test:/^(probably|maybe)$/i,preferFlash:!1,noSWFCache:!1,idPrefix:"sound"},this.defaultOptions={autoLoad:!1,autoPlay:!1,from:null,loops:1,onid3:null,onload:null,whileloading:null,onplay:null,onpause:null,onresume:null,whileplaying:null,onposition:null,onstop:null,onfailure:null,onfinish:null,multiShot:!0,multiShotEvents:!1,position:null,pan:0,stream:!0,to:null,type:null,usePolicyFile:!1,volume:100},this.flash9Options={isMovieStar:null,usePeakData:!1,useWaveformData:!1,useEQData:!1,onbufferchange:null,ondataerror:null},this.movieStarOptions={bufferTime:3,serverURL:null,onconnect:null,duration:null},this.audioFormats={mp3:{type:['audio/mpeg; codecs="mp3"',"audio/mpeg","audio/mp3","audio/MPA","audio/mpa-robust"],required:!0},mp4:{related:["aac","m4a","m4b"],type:['audio/mp4; codecs="mp4a.40.2"',"audio/aac","audio/x-m4a","audio/MP4A-LATM","audio/mpeg4-generic"],required:!1},ogg:{type:["audio/ogg; codecs=vorbis"],required:!1},opus:{type:["audio/ogg; codecs=opus","audio/opus"],required:!1},wav:{type:['audio/wav; codecs="1"',"audio/wav","audio/wave","audio/x-wav"],required:!1}},this.movieID="sm2-container",this.id=G||"sm2movie",this.debugID="soundmanager-debug",this.debugURLParam=/([#?&])debug=1/i,this.versionNumber="V2.97a.20140901",this.altURL=this.movieURL=this.version=null,this.enabled=this.swfLoaded=!1,this.oMC=null,this.sounds={},this.soundIDs=[],this.didFlashBlock=this.muted=!1,this.filePattern=null,this.filePatterns={flash8:/\.mp3(\?.*)?$/i,flash9:/\.mp3(\?.*)?$/i},this.features={buffering:!1,peakData:!1,waveformData:!1,eqData:!1,movieStar:!1},this.sandbox={},this.html5={usingFlash:null},this.flash={},this.ignoreFlash=this.html5Only=!1;var Ja,c=this,Ka=null,k=null,X,t=navigator.userAgent,La=g.location.href.toString(),p=document,la,Ma,ma,n,x=[],M=!1,N=!1,m=!1,y=!1,na=!1,O,w,oa,Y,pa,D,H,I,Na,qa,ra,Z,sa,$,ta,E,ua,P,va,aa,J,Oa,wa,Pa,xa,Qa,Q=null,ya=null,R,za,K,ba,ca,q,S=!1,Aa=!1,Ra,Sa,Ta,da=0,T=null,ea,Ua=[],U,u=null,Va,fa,V,z,ga,Ba,Wa,s,fb=Array.prototype.slice,A=!1,Ca,v,Da,Xa,B,ha,Ya=0,ia=t.match(/(ipad|iphone|ipod)/i),Za=t.match(/android/i),C=t.match(/msie/i),gb=t.match(/webkit/i),ja=t.match(/safari/i)&&!t.match(/chrome/i),Ea=t.match(/opera/i),Fa=t.match(/(mobile|pre\/|xoom)/i)||ia||Za,$a=!La.match(/usehtml5audio/i)&&!La.match(/sm2\-ignorebadua/i)&&ja&&!t.match(/silk/i)&&t.match(/OS X 10_6_([3-7])/i),Ga=p.hasFocus!==h?p.hasFocus():null,ka=ja&&(p.hasFocus===h||!p.hasFocus()),ab=!ka,bb=/(mp3|mp4|mpa|m4a|m4b)/i,Ha=p.location?p.location.protocol.match(/http/i):null,cb=Ha?"":"http://",db=/^\s*audio\/(?:x-)?(?:mpeg4|aac|flv|mov|mp4||m4v|m4a|m4b|mp4v|3gp|3g2)\s*(?:$|;)/i,eb="mpeg4 aac flv mov mp4 m4v f4v m4a m4b mp4v 3gp 3g2".split(" "),hb=RegExp("\\.("+eb.join("|")+")(\\?.*)?$","i"),Ia;this.mimePattern=/^\s*audio\/(?:x-)?(?:mp(?:eg|3))\s*(?:$|;)/i,this.useAltURL=!Ha;try{Ia=Audio!==h&&(Ea&&opera!==h&&10>opera.version()?new Audio(null):new Audio).canPlayType!==h}catch(ib){Ia=!1}this.hasHTML5=Ia,this.setup=function(b){var e=!c.url;return b!==h&&m&&u&&c.ok(),oa(b),b&&(e&&P&&b.url!==h&&c.beginDelayedInit(),!P&&b.url!==h&&"complete"===p.readyState&&setTimeout(E,1)),c},this.supported=this.ok=function(){return u?m&&!y:c.useHTML5Audio&&c.hasHTML5},this.getMovie=function(b){return X(b)||p[b]||g[b]},this.createSound=function(b,e){function d(){return a=ba(a),c.sounds[a.id]=new Ja(a),c.soundIDs.push(a.id),c.sounds[a.id]}var a,f=null;if(!m||!c.ok())return!1;if(e!==h&&(b={id:b,url:e}),(a=w(b)).url=ea(a.url),void 0===a.id&&(a.id=c.setupOptions.idPrefix+Ya++),q(a.id,!0))return c.sounds[a.id];if(fa(a))(f=d())._setup_html5(a);else{if(c.html5Only||c.html5.usingFlash&&a.url&&a.url.match(/data\:/i))return d();8<n&&null===a.isMovieStar&&(a.isMovieStar=!(!a.serverURL&&!(a.type&&a.type.match(db)||a.url&&a.url.match(hb)))),a=ca(a,void 0),f=d(),8===n?k._createSound(a.id,a.loops||1,a.usePolicyFile):(k._createSound(a.id,a.url,a.usePeakData,a.useWaveformData,a.useEQData,a.isMovieStar,!!a.isMovieStar&&a.bufferTime,a.loops||1,a.serverURL,a.duration||null,a.autoPlay,!0,a.autoLoad,a.usePolicyFile),a.serverURL||(f.connected=!0,a.onconnect&&a.onconnect.apply(f))),!a.serverURL&&(a.autoLoad||a.autoPlay)&&f.load(a)}return!a.serverURL&&a.autoPlay&&f.play(),f},this.destroySound=function(b,e){if(!q(b))return!1;var d=c.sounds[b],a;for(d._iO={},d.stop(),d.unload(),a=0;a<c.soundIDs.length;a++)if(c.soundIDs[a]===b){c.soundIDs.splice(a,1);break}return e||d.destruct(!0),delete c.sounds[b],!0},this.load=function(b,e){return!!q(b)&&c.sounds[b].load(e)},this.unload=function(b){return!!q(b)&&c.sounds[b].unload()},this.onposition=this.onPosition=function(b,e,d,a){return!!q(b)&&c.sounds[b].onposition(e,d,a)},this.clearOnPosition=function(b,e,d){return!!q(b)&&c.sounds[b].clearOnPosition(e,d)},this.start=this.play=function(b,e){var d=null,a=e&&!(e instanceof Object);if(!m||!c.ok())return!1;if(q(b,a))a&&(e={url:e});else{if(!a)return!1;a&&(e={url:e}),e&&e.url&&(e.id=b,d=c.createSound(e).play())}return null===d&&(d=c.sounds[b].play(e)),d},this.setPosition=function(b,e){return!!q(b)&&c.sounds[b].setPosition(e)},this.stop=function(b){return!!q(b)&&c.sounds[b].stop()},this.stopAll=function(){for(var b in c.sounds)c.sounds.hasOwnProperty(b)&&c.sounds[b].stop()},this.pause=function(b){return!!q(b)&&c.sounds[b].pause()},this.pauseAll=function(){var b;for(b=c.soundIDs.length-1;0<=b;b--)c.sounds[c.soundIDs[b]].pause()},this.resume=function(b){return!!q(b)&&c.sounds[b].resume()},this.resumeAll=function(){var b;for(b=c.soundIDs.length-1;0<=b;b--)c.sounds[c.soundIDs[b]].resume()},this.togglePause=function(b){return!!q(b)&&c.sounds[b].togglePause()},this.setPan=function(b,e){return!!q(b)&&c.sounds[b].setPan(e)},this.setVolume=function(b,e){return!!q(b)&&c.sounds[b].setVolume(e)},this.mute=function(b){var e=0;if(b instanceof String&&(b=null),b)return!!q(b)&&c.sounds[b].mute();for(e=c.soundIDs.length-1;0<=e;e--)c.sounds[c.soundIDs[e]].mute();return c.muted=!0},this.muteAll=function(){c.mute()},this.unmute=function(b){if(b instanceof String&&(b=null),b)return!!q(b)&&c.sounds[b].unmute();for(b=c.soundIDs.length-1;0<=b;b--)c.sounds[c.soundIDs[b]].unmute();return c.muted=!1,!0},this.unmuteAll=function(){c.unmute()},this.toggleMute=function(b){return!!q(b)&&c.sounds[b].toggleMute()},this.getMemoryUse=function(){var b=0;return k&&8!==n&&(b=parseInt(k._getMemoryUse(),10)),b},this.disable=function(b){var e;if(b===h&&(b=!1),y)return!1;for(y=!0,e=c.soundIDs.length-1;0<=e;e--)Pa(c.sounds[c.soundIDs[e]]);return O(b),s.remove(g,"load",H),!0},this.canPlayMIME=function(b){var e;return c.hasHTML5&&(e=V({type:b})),!e&&u&&(e=b&&c.ok()?!!(8<n&&b.match(db)||b.match(c.mimePattern)):null),e},this.canPlayURL=function(b){var e;return c.hasHTML5&&(e=V({url:b})),!e&&u&&(e=b&&c.ok()?!!b.match(c.filePattern):null),e},this.canPlayLink=function(b){return!(b.type===h||!b.type||!c.canPlayMIME(b.type))||c.canPlayURL(b.href)},this.getSoundById=function(b,e){return b?c.sounds[b]:null},this.onready=function(b,c){if("function"!=typeof b)throw R("needFunction","onready");return c||(c=g),pa("onready",b,c),D(),!0},this.ontimeout=function(b,c){if("function"!=typeof b)throw R("needFunction","ontimeout");return c||(c=g),pa("ontimeout",b,c),D({type:"ontimeout"}),!0},this._wD=this._writeDebug=function(b,c){return!0},this._debug=function(){},this.reboot=function(b,e){var d,a,f;for(d=c.soundIDs.length-1;0<=d;d--)c.sounds[c.soundIDs[d]].destruct();if(k)try{C&&(ya=k.innerHTML),Q=k.parentNode.removeChild(k)}catch(h){}if(ya=Q=u=k=null,c.enabled=P=m=S=Aa=M=N=y=A=c.swfLoaded=!1,c.soundIDs=[],c.sounds={},Ya=0,b)x=[];else for(d in x)if(x.hasOwnProperty(d))for(a=0,f=x[d].length;a<f;a++)x[d][a].fired=!1;return c.html5={usingFlash:null},c.flash={},c.html5Only=!1,c.ignoreFlash=!1,g.setTimeout((function(){ta(),e||c.beginDelayedInit()}),20),c},this.reset=function(){return c.reboot(!0,!0)},this.getMoviePercent=function(){return k&&"PercentLoaded"in k?k.PercentLoaded():null},this.beginDelayedInit=function(){na=!0,E(),setTimeout((function(){return!Aa&&(aa(),$(),Aa=!0)}),20),I()},this.destruct=function(){c.disable(!0)},Ja=function(b){var e,d,a=this,f,l,L,g,p,r,t=!1,m=[],u=0,x,y,v=null,z;d=e=null,this.sID=this.id=b.id,this.url=b.url,this._iO=this.instanceOptions=this.options=w(b),this.pan=this.options.pan,this.volume=this.options.volume,this.isHTML5=!1,this._a=null,z=!this.url,this.id3={},this._debug=function(){},this.load=function(b){var e=null,d;if(b!==h?a._iO=w(b,a.options):(b=a.options,a._iO=b,v&&v!==a.url&&(a._iO.url=a.url,a.url=null)),a._iO.url||(a._iO.url=a.url),a._iO.url=ea(a._iO.url),!(d=a.instanceOptions=a._iO).url&&!a.url)return a;if(d.url===a.url&&0!==a.readyState&&2!==a.readyState)return 3===a.readyState&&d.onload&&ha(a,(function(){d.onload.apply(a,[!!a.duration])})),a;if(a.loaded=!1,a.readyState=1,a.playState=0,a.id3={},fa(d))(e=a._setup_html5(d))._called_load||(a._html5_canplay=!1,a.url!==d.url&&(a._a.src=d.url,a.setPosition(0)),a._a.autobuffer="auto",a._a.preload="auto",a._a._called_load=!0);else{if(c.html5Only||a._iO.url&&a._iO.url.match(/data\:/i))return a;try{a.isHTML5=!1,a._iO=ca(ba(d)),a._iO.autoPlay&&(a._iO.position||a._iO.from)&&(a._iO.autoPlay=!1),d=a._iO,8===n?k._load(a.id,d.url,d.stream,d.autoPlay,d.usePolicyFile):k._load(a.id,d.url,!!d.stream,!!d.autoPlay,d.loops||1,!!d.autoLoad,d.usePolicyFile)}catch(f){J({type:"SMSOUND_LOAD_JS_EXCEPTION",fatal:!0})}}return a.url=d.url,a},this.unload=function(){return 0!==a.readyState&&(a.isHTML5?(g(),a._a&&(a._a.pause(),v=ga(a._a))):8===n?k._unload(a.id,"about:blank"):k._unload(a.id),f()),a},this.destruct=function(b){a.isHTML5?(g(),a._a&&(a._a.pause(),ga(a._a),A||L(),a._a._s=null,a._a=null)):(a._iO.onfailure=null,k._destroySound(a.id)),b||c.destroySound(a.id,!0)},this.start=this.play=function(b,e){var d,f,l,g,L;if(f=!0,f=null,e=e===h||e,b||(b={}),a.url&&(a._iO.url=a.url),a._iO=w(a._iO,a.options),a._iO=w(b,a._iO),a._iO.url=ea(a._iO.url),a.instanceOptions=a._iO,!a.isHTML5&&a._iO.serverURL&&!a.connected)return a.getAutoPlay()||a.setAutoPlay(!0),a;if(fa(a._iO)&&(a._setup_html5(a._iO),p()),1===a.playState&&!a.paused&&((d=a._iO.multiShot)||(a.isHTML5&&a.setPosition(a._iO.position),f=a)),null!==f)return f;if(b.url&&b.url!==a.url&&(a.readyState||a.isHTML5||8!==n||!z?a.load(a._iO):z=!1),a.loaded||(0===a.readyState?(a.isHTML5||c.html5Only?a.isHTML5?a.load(a._iO):f=a:(a._iO.autoPlay=!0,a.load(a._iO)),a.instanceOptions=a._iO):2===a.readyState&&(f=a)),null!==f)return f;if(!a.isHTML5&&9===n&&0<a.position&&a.position===a.duration&&(b.position=0),a.paused&&0<=a.position&&(!a._iO.serverURL||0<a.position))a.resume();else{if(a._iO=w(b,a._iO),(!a.isHTML5&&null!==a._iO.position&&0<a._iO.position||null!==a._iO.from&&0<a._iO.from||null!==a._iO.to)&&0===a.instanceCount&&0===a.playState&&!a._iO.serverURL){if(d=function(){a._iO=w(b,a._iO),a.play(a._iO)},a.isHTML5&&!a._html5_canplay?(a.load({_oncanplay:d}),f=!1):a.isHTML5||a.loaded||a.readyState&&2===a.readyState||(a.load({onload:d}),f=!1),null!==f)return f;a._iO=y()}(!a.instanceCount||a._iO.multiShotEvents||a.isHTML5&&a._iO.multiShot&&!A||!a.isHTML5&&8<n&&!a.getAutoPlay())&&a.instanceCount++,a._iO.onposition&&0===a.playState&&r(a),a.playState=1,a.paused=!1,a.position=a._iO.position===h||isNaN(a._iO.position)?0:a._iO.position,a.isHTML5||(a._iO=ca(ba(a._iO))),a._iO.onplay&&e&&(a._iO.onplay.apply(a),t=!0),a.setVolume(a._iO.volume,!0),a.setPan(a._iO.pan,!0),a.isHTML5?2>a.instanceCount?(p(),f=a._setup_html5(),a.setPosition(a._iO.position),f.play()):(l=new Audio(a._iO.url),g=function(){s.remove(l,"ended",g),a._onfinish(a),ga(l),l=null},L=function(){s.remove(l,"canplay",L);try{l.currentTime=a._iO.position/1e3}catch(b){}l.play()},s.add(l,"ended",g),void 0!==a._iO.volume&&(l.volume=Math.max(0,Math.min(1,a._iO.volume/100))),a.muted&&(l.muted=!0),a._iO.position?s.add(l,"canplay",L):l.play()):(f=k._start(a.id,a._iO.loops||1,9===n?a.position:a.position/1e3,a._iO.multiShot||!1),9===n&&!f&&a._iO.onplayerror&&a._iO.onplayerror.apply(a))}return a},this.stop=function(b){var c=a._iO;return 1===a.playState&&(a._onbufferchange(0),a._resetOnPosition(0),a.paused=!1,a.isHTML5||(a.playState=0),x(),c.to&&a.clearOnPosition(c.to),a.isHTML5?a._a&&(b=a.position,a.setPosition(0),a.position=b,a._a.pause(),a.playState=0,a._onTimer(),g()):(k._stop(a.id,b),c.serverURL&&a.unload()),a.instanceCount=0,a._iO={},c.onstop&&c.onstop.apply(a)),a},this.setAutoPlay=function(b){a._iO.autoPlay=b,a.isHTML5||(k._setAutoPlay(a.id,b),b&&!a.instanceCount&&1===a.readyState&&a.instanceCount++)},this.getAutoPlay=function(){return a._iO.autoPlay},this.setPosition=function(b){b===h&&(b=0);var c=a.isHTML5?Math.max(b,0):Math.min(a.duration||a._iO.duration,Math.max(b,0));if(a.position=c,b=a.position/1e3,a._resetOnPosition(a.position),a._iO.position=c,a.isHTML5){if(a._a){if(a._html5_canplay){if(a._a.currentTime!==b)try{a._a.currentTime=b,(0===a.playState||a.paused)&&a._a.pause()}catch(e){}}else if(b)return a;a.paused&&a._onTimer(!0)}}else b=9===n?a.position:b,a.readyState&&2!==a.readyState&&k._setPosition(a.id,b,a.paused||!a.playState,a._iO.multiShot);return a},this.pause=function(b){return a.paused||0===a.playState&&1!==a.readyState?a:(a.paused=!0,a.isHTML5?(a._setup_html5().pause(),g()):(b||b===h)&&k._pause(a.id,a._iO.multiShot),a._iO.onpause&&a._iO.onpause.apply(a),a)},this.resume=function(){var b=a._iO;return a.paused?(a.paused=!1,a.playState=1,a.isHTML5?(a._setup_html5().play(),p()):(b.isMovieStar&&!b.serverURL&&a.setPosition(a.position),k._pause(a.id,b.multiShot)),!t&&b.onplay?(b.onplay.apply(a),t=!0):b.onresume&&b.onresume.apply(a),a):a},this.togglePause=function(){return 0===a.playState?(a.play({position:9!==n||a.isHTML5?a.position/1e3:a.position}),a):(a.paused?a.resume():a.pause(),a)},this.setPan=function(b,c){return b===h&&(b=0),c===h&&(c=!1),a.isHTML5||k._setPan(a.id,b),a._iO.pan=b,c||(a.pan=b,a.options.pan=b),a},this.setVolume=function(b,e){return b===h&&(b=100),e===h&&(e=!1),a.isHTML5?a._a&&(c.muted&&!a.muted&&(a.muted=!0,a._a.muted=!0),a._a.volume=Math.max(0,Math.min(1,b/100))):k._setVolume(a.id,c.muted&&!a.muted||a.muted?0:b),a._iO.volume=b,e||(a.volume=b,a.options.volume=b),a},this.mute=function(){return a.muted=!0,a.isHTML5?a._a&&(a._a.muted=!0):k._setVolume(a.id,0),a},this.unmute=function(){a.muted=!1;var b=a._iO.volume!==h;return a.isHTML5?a._a&&(a._a.muted=!1):k._setVolume(a.id,b?a._iO.volume:a.options.volume),a},this.toggleMute=function(){return a.muted?a.unmute():a.mute()},this.onposition=this.onPosition=function(b,c,e){return m.push({position:parseInt(b,10),method:c,scope:e!==h?e:a,fired:!1}),a},this.clearOnPosition=function(a,b){var c;if(a=parseInt(a,10),isNaN(a))return!1;for(c=0;c<m.length;c++)a!==m[c].position||b&&b!==m[c].method||(m[c].fired&&u--,m.splice(c,1))},this._processOnPosition=function(){var b,c;if(!(b=m.length)||!a.playState||u>=b)return!1;for(b-=1;0<=b;b--)!(c=m[b]).fired&&a.position>=c.position&&(c.fired=!0,u++,c.method.apply(c.scope,[c.position]));return!0},this._resetOnPosition=function(a){var b,c;if(!(b=m.length))return!1;for(b-=1;0<=b;b--)(c=m[b]).fired&&a<=c.position&&(c.fired=!1,u--);return!0},y=function(){var b=a._iO,c=b.from,e=b.to,d,f;return f=function(){a.clearOnPosition(e,f),a.stop()},d=function(){null===e||isNaN(e)||a.onPosition(e,f)},null!==c&&!isNaN(c)&&(b.position=c,b.multiShot=!1,d()),b},r=function(){var b,c=a._iO.onposition;if(c)for(b in c)c.hasOwnProperty(b)&&a.onPosition(parseInt(b,10),c[b])},x=function(){var b,c=a._iO.onposition;if(c)for(b in c)c.hasOwnProperty(b)&&a.clearOnPosition(parseInt(b,10))},p=function(){a.isHTML5&&Ra(a)},g=function(){a.isHTML5&&Sa(a)},(f=function(b){b||(m=[],u=0),t=!1,a._hasTimer=null,a._a=null,a._html5_canplay=!1,a.bytesLoaded=null,a.bytesTotal=null,a.duration=a._iO&&a._iO.duration?a._iO.duration:null,a.durationEstimate=null,a.buffered=[],a.eqData=[],a.eqData.left=[],a.eqData.right=[],a.failures=0,a.isBuffering=!1,a.instanceOptions={},a.instanceCount=0,a.loaded=!1,a.metadata={},a.readyState=0,a.muted=!1,a.paused=!1,a.peakData={left:0,right:0},a.waveformData={left:[],right:[]},a.playState=0,a.position=null,a.id3={}})(),this._onTimer=function(b){var c,f=!1,l={};if(a._hasTimer||b)return a._a&&(b||(0<a.playState||1===a.readyState)&&!a.paused)&&((c=a._get_html5_duration())!==e&&(e=c,a.duration=c,f=!0),a.durationEstimate=a.duration,(c=1e3*a._a.currentTime||0)!==d&&(d=c,f=!0),(f||b)&&a._whileplaying(c,l,l,l,l)),f},this._get_html5_duration=function(){var b=a._iO;return(b=a._a&&a._a.duration?1e3*a._a.duration:b&&b.duration?b.duration:null)&&!isNaN(b)&&1/0!==b?b:null},this._apply_loop=function(a,b){a.loop=1<b?"loop":""},this._setup_html5=function(b){b=w(a._iO,b);var c=A?Ka:a._a,e=decodeURI(b.url),d;if(A?e===decodeURI(Ca)&&(d=!0):e===decodeURI(v)&&(d=!0),c){if(c._s)if(A)c._s&&c._s.playState&&!d&&c._s.stop();else if(!A&&e===decodeURI(v))return a._apply_loop(c,b.loops),c;d||(v&&f(!1),c.src=b.url,Ca=v=a.url=b.url,c._called_load=!1)}else b.autoLoad||b.autoPlay?(a._a=new Audio(b.url),a._a.load()):a._a=Ea&&10>opera.version()?new Audio(null):new Audio,(c=a._a)._called_load=!1,A&&(Ka=c);return a.isHTML5=!0,a._a=c,c._s=a,l(),a._apply_loop(c,b.loops),b.autoLoad||b.autoPlay?a.load():(c.autobuffer=!1,c.preload="auto"),c},l=function(){if(a._a._added_events)return!1;var b;for(b in a._a._added_events=!0,B)B.hasOwnProperty(b)&&a._a&&a._a.addEventListener(b,B[b],!1);return!0},L=function(){var b;for(b in a._a._added_events=!1,B)B.hasOwnProperty(b)&&a._a&&a._a.removeEventListener(b,B[b],!1)},this._onload=function(b){var c=!!b||!a.isHTML5&&8===n&&a.duration;return a.loaded=c,a.readyState=c?3:2,a._onbufferchange(0),a._iO.onload&&ha(a,(function(){a._iO.onload.apply(a,[c])})),!0},this._onbufferchange=function(b){return!(0===a.playState||b&&a.isBuffering||!b&&!a.isBuffering)&&(a.isBuffering=1===b,a._iO.onbufferchange&&a._iO.onbufferchange.apply(a,[b]),!0)},this._onsuspend=function(){return a._iO.onsuspend&&a._iO.onsuspend.apply(a),!0},this._onfailure=function(b,c,e){a.failures++,a._iO.onfailure&&1===a.failures&&a._iO.onfailure(b,c,e)},this._onwarning=function(b,c,e){a._iO.onwarning&&a._iO.onwarning(b,c,e)},this._onfinish=function(){var b=a._iO.onfinish;a._onbufferchange(0),a._resetOnPosition(0),a.instanceCount&&(a.instanceCount--,a.instanceCount||(x(),a.playState=0,a.paused=!1,a.instanceCount=0,a.instanceOptions={},a._iO={},g(),a.isHTML5&&(a.position=0)),(!a.instanceCount||a._iO.multiShotEvents)&&b&&ha(a,(function(){b.apply(a)})))},this._whileloading=function(b,c,e,d){var f=a._iO;a.bytesLoaded=b,a.bytesTotal=c,a.duration=Math.floor(e),a.bufferLength=d,a.durationEstimate=a.isHTML5||f.isMovieStar?a.duration:f.duration?a.duration>f.duration?a.duration:f.duration:parseInt(a.bytesTotal/a.bytesLoaded*a.duration,10),a.isHTML5||(a.buffered=[{start:0,end:a.duration}]),(3!==a.readyState||a.isHTML5)&&f.whileloading&&f.whileloading.apply(a)},this._whileplaying=function(b,c,e,d,f){var l=a._iO;return!isNaN(b)&&null!==b&&(a.position=Math.max(0,b),a._processOnPosition(),!a.isHTML5&&8<n&&(l.usePeakData&&c!==h&&c&&(a.peakData={left:c.leftPeak,right:c.rightPeak}),l.useWaveformData&&e!==h&&e&&(a.waveformData={left:e.split(","),right:d.split(",")}),l.useEQData&&f!==h&&f&&f.leftEQ&&(b=f.leftEQ.split(","),a.eqData=b,a.eqData.left=b,f.rightEQ!==h&&f.rightEQ&&(a.eqData.right=f.rightEQ.split(",")))),1===a.playState&&(!a.isHTML5&&8===n&&!a.position&&a.isBuffering&&a._onbufferchange(0),l.whileplaying&&l.whileplaying.apply(a)),!0)},this._oncaptiondata=function(b){a.captiondata=b,a._iO.oncaptiondata&&a._iO.oncaptiondata.apply(a,[b])},this._onmetadata=function(b,c){var e={},d,f;for(d=0,f=b.length;d<f;d++)e[b[d]]=c[d];a.metadata=e,console.log("updated metadata",a.metadata),a._iO.onmetadata&&a._iO.onmetadata.call(a,a.metadata)},this._onid3=function(b,c){var e=[],d,f;for(d=0,f=b.length;d<f;d++)e[b[d]]=c[d];a.id3=w(a.id3,e),a._iO.onid3&&a._iO.onid3.apply(a)},this._onconnect=function(b){b=1===b,(a.connected=b)&&(a.failures=0,q(a.id)&&(a.getAutoPlay()?a.play(h,a.getAutoPlay()):a._iO.autoLoad&&a.load()),a._iO.onconnect&&a._iO.onconnect.apply(a,[b]))},this._ondataerror=function(b){0<a.playState&&a._iO.ondataerror&&a._iO.ondataerror.apply(a)}},va=function(){return p.body||p.getElementsByTagName("div")[0]},X=function(b){return p.getElementById(b)},w=function(b,e){var d=b||{},a,f;for(f in a=e===h?c.defaultOptions:e)a.hasOwnProperty(f)&&d[f]===h&&(d[f]="object"!=typeof a[f]||null===a[f]?a[f]:w(d[f],a[f]));return d},ha=function(b,c){b.isHTML5||8!==n?c():g.setTimeout(c,0)},Y={onready:1,ontimeout:1,defaultOptions:1,flash9Options:1,movieStarOptions:1},oa=function(b,e){var d,a=!0,f=e!==h,l=c.setupOptions;for(d in b)if(b.hasOwnProperty(d))if("object"!=typeof b[d]||null===b[d]||b[d]instanceof Array||b[d]instanceof RegExp)f&&Y[e]!==h?c[e][d]=b[d]:l[d]!==h?(c.setupOptions[d]=b[d],c[d]=b[d]):Y[d]===h?a=!1:c[d]instanceof Function?c[d].apply(c,b[d]instanceof Array?b[d]:[b[d]]):c[d]=b[d];else{if(Y[d]!==h)return oa(b[d],d);a=!1}return a},s=function(){function b(a){var b=(a=fb.call(a)).length;return d?(a[1]="on"+a[1],3<b&&a.pop()):3===b&&a.push(!1),a}function c(b,e){var h=b.shift(),g=[a[e]];d?h[g](b[0],b[1]):h[g].apply(h,b)}var d=g.attachEvent,a={add:d?"attachEvent":"addEventListener",remove:d?"detachEvent":"removeEventListener"};return{add:function(){c(b(arguments),"add")},remove:function(){c(b(arguments),"remove")}}}(),B={abort:r((function(){})),canplay:r((function(){var b=this._s,c;if(b._html5_canplay)return!0;if(b._html5_canplay=!0,b._onbufferchange(0),c=b._iO.position===h||isNaN(b._iO.position)?null:b._iO.position/1e3,this.currentTime!==c)try{this.currentTime=c}catch(d){}b._iO._oncanplay&&b._iO._oncanplay()})),canplaythrough:r((function(){var b=this._s;b.loaded||(b._onbufferchange(0),b._whileloading(b.bytesLoaded,b.bytesTotal,b._get_html5_duration()),b._onload(!0))})),durationchange:r((function(){var b=this._s,c;c=b._get_html5_duration(),!isNaN(c)&&c!==b.duration&&(b.durationEstimate=b.duration=c)})),ended:r((function(){this._s._onfinish()})),error:r((function(){this._s._onload(!1)})),loadeddata:r((function(){var b=this._s;!b._loaded&&!ja&&(b.duration=b._get_html5_duration())})),loadedmetadata:r((function(){})),loadstart:r((function(){this._s._onbufferchange(1)})),play:r((function(){this._s._onbufferchange(0)})),playing:r((function(){this._s._onbufferchange(0)})),progress:r((function(b){var c=this._s,d,a,f=0,f=b.target.buffered;d=b.loaded||0;var l=b.total||1;if(c.buffered=[],f&&f.length){for(d=0,a=f.length;d<a;d++)c.buffered.push({start:1e3*f.start(d),end:1e3*f.end(d)});f=1e3*(f.end(0)-f.start(0)),d=Math.min(1,f/(1e3*b.target.duration))}isNaN(d)||(c._whileloading(d,l,c._get_html5_duration()),d&&l&&d===l&&B.canplaythrough.call(this,b))})),ratechange:r((function(){})),suspend:r((function(b){var c=this._s;B.progress.call(this,b),c._onsuspend()})),stalled:r((function(){})),timeupdate:r((function(){this._s._onTimer()})),waiting:r((function(){this._s._onbufferchange(1)}))},fa=function(b){return!(!b||!(b.type||b.url||b.serverURL))&&(!(b.serverURL||b.type&&W(b.type))&&(b.type?V({type:b.type}):V({url:b.url})||c.html5Only||b.url.match(/data\:/i)))},ga=function(b){var e;return b&&(e=ja?"about:blank":c.html5.canPlayType("audio/wav")?"data:audio/wave;base64,/UklGRiYAAABXQVZFZm10IBAAAAABAAEARKwAAIhYAQACABAAZGF0YQIAAAD//w==":"about:blank",b.src=e,void 0!==b._called_unload&&(b._called_load=!1)),A&&(Ca=null),e},V=function(b){if(!c.useHTML5Audio||!c.hasHTML5)return!1;var e=b.url||null;b=b.type||null;var d=c.audioFormats,a;if(b&&c.html5[b]!==h)return c.html5[b]&&!W(b);if(!z){for(a in z=[],d)d.hasOwnProperty(a)&&(z.push(a),d[a].related&&(z=z.concat(d[a].related)));z=RegExp("\\.("+z.join("|")+")(\\?.*)?$","i")}return(a=e?e.toLowerCase().match(z):null)&&a.length?a=a[1]:b&&(a=(-1!==(e=b.indexOf(";"))?b.substr(0,e):b).substr(6)),a&&c.html5[a]!==h?e=c.html5[a]&&!W(a):(b="audio/"+a,e=c.html5.canPlayType({type:b}),e=(c.html5[a]=e)&&c.html5[b]&&!W(b)),e},Wa=function(){function b(a){var b,d=b=!1;if(!e||"function"!=typeof e.canPlayType)return b;if(a instanceof Array){for(g=0,b=a.length;g<b;g++)(c.html5[a[g]]||e.canPlayType(a[g]).match(c.html5Test))&&(d=!0,c.html5[a[g]]=!0,c.flash[a[g]]=!!a[g].match(bb));b=d}else b=!(!(a=!(!e||"function"!=typeof e.canPlayType)&&e.canPlayType(a))||!a.match(c.html5Test));return b}if(!c.useHTML5Audio||!c.hasHTML5)return u=c.html5.usingFlash=!0,!1;var e=Audio!==h?Ea&&10>opera.version()?new Audio(null):new Audio:null,d,a,f={},l,g;for(d in l=c.audioFormats)if(l.hasOwnProperty(d)&&(a="audio/"+d,f[d]=b(l[d].type),f[a]=f[d],d.match(bb)?(c.flash[d]=!0,c.flash[a]=!0):(c.flash[d]=!1,c.flash[a]=!1),l[d]&&l[d].related))for(g=l[d].related.length-1;0<=g;g--)f["audio/"+l[d].related[g]]=f[d],c.html5[l[d].related[g]]=f[d],c.flash[l[d].related[g]]=f[d];return f.canPlayType=e?b:null,c.html5=w(c.html5,f),c.html5.usingFlash=Va(),u=c.html5.usingFlash,!0},sa={},R=function(){},ba=function(b){return 8===n&&1<b.loops&&b.stream&&(b.stream=!1),b},ca=function(b,c){return b&&!b.usePolicyFile&&(b.onid3||b.usePeakData||b.useWaveformData||b.useEQData)&&(b.usePolicyFile=!0),b},la=function(){return!1},Pa=function(b){for(var c in b)b.hasOwnProperty(c)&&"function"==typeof b[c]&&(b[c]=la)},xa=function(b){b===h&&(b=!1),(y||b)&&c.disable(b)},Qa=function(b){var e=null;if(b)if(b.match(/\.swf(\?.*)?$/i)){if(e=b.substr(b.toLowerCase().lastIndexOf(".swf?")+4))return b}else b.lastIndexOf("/")!==b.length-1&&(b+="/");return b=(b&&-1!==b.lastIndexOf("/")?b.substr(0,b.lastIndexOf("/")+1):"./")+c.movieURL,c.noSWFCache&&(b+="?ts="+(new Date).getTime()),b},ra=function(){8!==(n=parseInt(c.flashVersion,10))&&9!==n&&(c.flashVersion=n=8);var b=c.debugMode||c.debugFlash?"_debug.swf":".swf";c.useHTML5Audio&&!c.html5Only&&c.audioFormats.mp4.required&&9>n&&(c.flashVersion=n=9),c.version=c.versionNumber+(c.html5Only?" (HTML5-only mode)":9===n?" (AS3/Flash 9)":" (AS2/Flash 8)"),8<n?(c.defaultOptions=w(c.defaultOptions,c.flash9Options),c.features.buffering=!0,c.defaultOptions=w(c.defaultOptions,c.movieStarOptions),c.filePatterns.flash9=RegExp("\\.(mp3|"+eb.join("|")+")(\\?.*)?$","i"),c.features.movieStar=!0):c.features.movieStar=!1,c.filePattern=c.filePatterns[8!==n?"flash9":"flash8"],c.movieURL=(8===n?"soundmanager2.swf":"soundmanager2_flash9.swf").replace(".swf",b),c.features.peakData=c.features.waveformData=c.features.eqData=8<n},Oa=function(b,c){if(!k)return!1;k._setPolling(b,c)},wa=function(){},q=this.getSoundById,K=function(){var b=[];return c.debugMode&&b.push("sm2_debug"),c.debugFlash&&b.push("flash_debug"),c.useHighPerformance&&b.push("high_performance"),b.join(" ")},za=function(){R("fbHandler");var b=c.getMoviePercent(),e={type:"FLASHBLOCK"};if(c.html5Only)return!1;c.ok()?c.oMC&&(c.oMC.className=[K(),"movieContainer","swf_loaded"+(c.didFlashBlock?" swf_unblocked":"")].join(" ")):(u&&(c.oMC.className=K()+" movieContainer "+(null===b?"swf_timedout":"swf_error")),c.didFlashBlock=!0,D({type:"ontimeout",ignoreInit:!0,error:e}),J(e))},pa=function(b,c,d){x[b]===h&&(x[b]=[]),x[b].push({method:c,scope:d||null,fired:!1})},D=function(b){if(b||(b={type:c.ok()?"onready":"ontimeout"}),!m&&b&&!b.ignoreInit||"ontimeout"===b.type&&(c.ok()||y&&!b.ignoreInit))return!1;var e={success:b&&b.ignoreInit?c.ok():!y},d=b&&b.type&&x[b.type]||[],a=[],f,e=[e],g=u&&!c.ok();for(b.error&&(e[0].error=b.error),b=0,f=d.length;b<f;b++)!0!==d[b].fired&&a.push(d[b]);if(a.length)for(b=0,f=a.length;b<f;b++)a[b].scope?a[b].method.apply(a[b].scope,e):a[b].method.apply(this,e),g||(a[b].fired=!0);return!0},H=function(){g.setTimeout((function(){c.useFlashBlock&&za(),D(),"function"==typeof c.onload&&c.onload.apply(g),c.waitForWindowLoad&&s.add(g,"load",H)}),1)},Da=function(){if(v!==h)return v;var b=!1,c=navigator,d=c.plugins,a,f=g.ActiveXObject;if(d&&d.length)(c=c.mimeTypes)&&c["application/x-shockwave-flash"]&&c["application/x-shockwave-flash"].enabledPlugin&&c["application/x-shockwave-flash"].enabledPlugin.description&&(b=!0);else if(f!==h&&!t.match(/MSAppHost/i)){try{a=new f("ShockwaveFlash.ShockwaveFlash")}catch(l){a=null}b=!!a}return v=b},Va=function(){var b,e,d=c.audioFormats;if(ia&&t.match(/os (1|2|3_0|3_1)\s/i)?(c.hasHTML5=!1,c.html5Only=!0,c.oMC&&(c.oMC.style.display="none")):!c.useHTML5Audio||c.html5&&c.html5.canPlayType||(c.hasHTML5=!1),c.useHTML5Audio&&c.hasHTML5)for(e in U=!0,d)d.hasOwnProperty(e)&&d[e].required&&(c.html5.canPlayType(d[e].type)?c.preferFlash&&(c.flash[e]||c.flash[d[e].type])&&(b=!0):(U=!1,b=!0));return c.ignoreFlash&&(b=!1,U=!0),c.html5Only=c.hasHTML5&&c.useHTML5Audio&&!b,!c.html5Only},ea=function(b){var e,d,a=0;if(b instanceof Array){for(e=0,d=b.length;e<d;e++)if(b[e]instanceof Object){if(c.canPlayMIME(b[e].type)){a=e;break}}else if(c.canPlayURL(b[e])){a=e;break}b[a].url&&(b[a]=b[a].url),b=b[a]}return b},Ra=function(b){b._hasTimer||(b._hasTimer=!0,!Fa&&c.html5PollingInterval&&(null===T&&0===da&&(T=setInterval(Ta,c.html5PollingInterval)),da++))},Sa=function(b){b._hasTimer&&(b._hasTimer=!1,!Fa&&c.html5PollingInterval&&da--)},Ta=function(){var b;if(null!==T&&!da)return clearInterval(T),T=null,!1;for(b=c.soundIDs.length-1;0<=b;b--)c.sounds[c.soundIDs[b]].isHTML5&&c.sounds[c.soundIDs[b]]._hasTimer&&c.sounds[c.soundIDs[b]]._onTimer()},J=function(b){b=b!==h?b:{},"function"==typeof c.onerror&&c.onerror.apply(g,[{type:b.type!==h?b.type:null}]),b.fatal!==h&&b.fatal&&c.disable()},Xa=function(){if(!$a||!Da())return!1;var b=c.audioFormats,e,d;for(d in b)if(b.hasOwnProperty(d)&&("mp3"===d||"mp4"===d)&&(c.html5[d]=!1,b[d]&&b[d].related))for(e=b[d].related.length-1;0<=e;e--)c.html5[b[d].related[e]]=!1},this._setSandboxType=function(b){},this._externalInterfaceOK=function(b){if(c.swfLoaded)return!1;c.swfLoaded=!0,ka=!1,$a&&Xa(),setTimeout(ma,C?100:1)},aa=function(b,e){function d(a,b){return'<param name="'+a+'" value="'+b+'" />'}if(M&&N)return!1;if(c.html5Only)return ra(),c.oMC=X(c.movieID),ma(),N=M=!0,!1;var a=e||c.url,f=c.altURL||a,g=va(),k=K(),n=null,n,m,r,q,n=(n=p.getElementsByTagName("html")[0])&&n.dir&&n.dir.match(/rtl/i);if(b=b===h?c.id:b,ra(),c.url=Qa(Ha?a:f),e=c.url,c.wmode=!c.wmode&&c.useHighPerformance?"transparent":c.wmode,null!==c.wmode&&(t.match(/msie 8/i)||!C&&!c.useHighPerformance)&&navigator.platform.match(/win32|win64/i)&&(Ua.push(sa.spcWmode),c.wmode=null),g={name:b,id:b,src:e,quality:"high",allowScriptAccess:c.allowScriptAccess,bgcolor:c.bgColor,pluginspage:cb+"www.macromedia.com/go/getflashplayer",title:"JS/Flash audio component (SoundManager 2)",type:"application/x-shockwave-flash",wmode:c.wmode,hasPriority:"true"},c.debugFlash&&(g.FlashVars="debug=1"),c.wmode||delete g.wmode,C)a=p.createElement("div"),r=['<object id="'+b+'" data="'+e+'" type="'+g.type+'" title="'+g.title+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="'+cb+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">',d("movie",e),d("AllowScriptAccess",c.allowScriptAccess),d("quality",g.quality),c.wmode?d("wmode",c.wmode):"",d("bgcolor",c.bgColor),d("hasPriority","true"),c.debugFlash?d("FlashVars",g.FlashVars):"","</object>"].join("");else for(m in a=p.createElement("embed"),g)g.hasOwnProperty(m)&&a.setAttribute(m,g[m]);if(k=K(),g=va())if(c.oMC=X(c.movieID)||p.createElement("div"),c.oMC.id)q=c.oMC.className,c.oMC.className=(q?q+" ":"movieContainer")+(k?" "+k:""),c.oMC.appendChild(a),C&&((m=c.oMC.appendChild(p.createElement("div"))).className="sm2-object-box",m.innerHTML=r),N=!0;else{if(c.oMC.id=c.movieID,c.oMC.className="movieContainer "+k,m=k=null,c.useFlashBlock||(c.useHighPerformance?k={position:"fixed",width:"8px",height:"8px",bottom:"0px",left:"0px",overflow:"hidden"}:(k={position:"absolute",width:"6px",height:"6px",top:"-9999px",left:"-9999px"},n&&(k.left=Math.abs(parseInt(k.left,10))+"px"))),gb&&(c.oMC.style.zIndex=1e4),!c.debugFlash)for(q in k)k.hasOwnProperty(q)&&(c.oMC.style[q]=k[q]);try{C||c.oMC.appendChild(a),g.appendChild(c.oMC),C&&((m=c.oMC.appendChild(p.createElement("div"))).className="sm2-object-box",m.innerHTML=r),N=!0}catch(s){throw Error(R("domError")+" \n"+s.toString())}}return M=!0},$=function(){return c.html5Only?(aa(),!1):!(k||!c.url)&&((k=c.getMovie(c.id))||(Q?(C?c.oMC.innerHTML=ya:c.oMC.appendChild(Q),Q=null,M=!0):aa(c.id,c.url),k=c.getMovie(c.id)),"function"==typeof c.oninitmovie&&setTimeout(c.oninitmovie,1),!0)},I=function(){setTimeout(Na,1e3)},qa=function(){g.setTimeout((function(){c.setup({preferFlash:!1}).reboot(),c.didFlashBlock=!0,c.beginDelayedInit()}),1)},Na=function(){var b,e=!1;return!(!c.url||S)&&(S=!0,s.remove(g,"load",I),!(v&&ka&&!Ga)&&(m||0<(b=c.getMoviePercent())&&100>b&&(e=!0),void setTimeout((function(){if(b=c.getMoviePercent(),e)return S=!1,g.setTimeout(I,1),!1;!m&&ab&&(null===b?c.useFlashBlock||0===c.flashLoadTimeout?c.useFlashBlock&&za():!c.useFlashBlock&&U?qa():D({type:"ontimeout",ignoreInit:!0,error:{type:"INIT_FLASHBLOCK"}}):0!==c.flashLoadTimeout&&(!c.useFlashBlock&&U?qa():xa(!0)))}),c.flashLoadTimeout)))},Z=function(){return Ga||!ka?(s.remove(g,"focus",Z),!0):(Ga=ab=!0,S=!1,I(),s.remove(g,"focus",Z),!0)},O=function(b){if(m)return!1;if(c.html5Only)return m=!0,H(),!0;var e=!0,d;return c.useFlashBlock&&c.flashLoadTimeout&&!c.getMoviePercent()||(m=!0),d={type:!v&&u?"NO_FLASH":"INIT_TIMEOUT"},(y||b)&&(c.useFlashBlock&&c.oMC&&(c.oMC.className=K()+" "+(null===c.getMoviePercent()?"swf_timedout":"swf_error")),D({type:"ontimeout",error:d,ignoreInit:!0}),J(d),e=!1),y||(c.waitForWindowLoad&&!na?s.add(g,"load",H):H()),e},Ma=function(){var b,e=c.setupOptions;for(b in e)e.hasOwnProperty(b)&&(c[b]===h?c[b]=e[b]:c[b]!==e[b]&&(c.setupOptions[b]=c[b]))},ma=function(){if(m)return!1;if(c.html5Only)return m||(s.remove(g,"load",c.beginDelayedInit),c.enabled=!0,O()),!0;$();try{k._externalInterfaceTest(!1),Oa(!0,c.flashPollingInterval||(c.useHighPerformance?10:50)),c.debugMode||k._disableDebug(),c.enabled=!0,c.html5Only||s.add(g,"unload",la)}catch(b){return J({type:"JS_TO_FLASH_EXCEPTION",fatal:!0}),xa(!0),O(),!1}return O(),s.remove(g,"load",c.beginDelayedInit),!0},E=function(){return!P&&(P=!0,Ma(),!v&&c.hasHTML5&&c.setup({useHTML5Audio:!0,preferFlash:!1}),Wa(),!v&&u&&(Ua.push(sa.needFlash),c.setup({flashLoadTimeout:1})),p.removeEventListener&&p.removeEventListener("DOMContentLoaded",E,!1),$(),!0)},Ba=function(){return"complete"===p.readyState&&(E(),p.detachEvent("onreadystatechange",Ba)),!0},ua=function(){na=!0,E(),s.remove(g,"load",ua)},(ta=function(){Fa&&(c.setupOptions.useHTML5Audio=!0,c.setupOptions.preferFlash=!1,ia||Za&&!t.match(/android\s2\.3/i))&&(ia&&(c.ignoreFlash=!0),A=!0)})(),Da(),s.add(g,"focus",Z),s.add(g,"load",I),s.add(g,"load",ua),p.addEventListener?p.addEventListener("DOMContentLoaded",E,!1):p.attachEvent?p.attachEvent("onreadystatechange",Ba):J({type:"NO_DOM2_EVENTS",fatal:!0})}if(!g||!g.document)throw Error("SoundManager requires a browser with window and document objects.");var F=null;void 0!==g.SM2_DEFER&&SM2_DEFER||(F=new G),"object"==typeof module&&module&&"object"==typeof module.exports?(g.soundManager=F,module.exports.SoundManager=G,module.exports.soundManager=F):"function"==typeof define&&define.amd?define("SoundManager",[],(function(){return{SoundManager:G,soundManager:F}})):(g.SoundManager=G,g.soundManager=F)}(window),soundManager.url="/WebSpeech/soundmanager2",soundManager.debugMode=!1,soundManager.onready((function(){WebSpeech.onready()}))}